diff --git a/.github/scripts/changed-modules.sh b/.github/scripts/changed-modules.sh index 584bd564c5..3c5d1e18f1 100755 --- a/.github/scripts/changed-modules.sh +++ b/.github/scripts/changed-modules.sh @@ -2,16 +2,16 @@ set -euo pipefail FROM_TAG=$1 +INCLUDE_TOKENS_SUBMODULES=${2:-false} echo "🔍 Detecting changed modules since $FROM_TAG" +echo "📦 Include token submodules :apps and :docs is $INCLUDE_TOKENS_SUBMODULES" # Track if affected special dirs UIKIT_COMPOSE_CHANGED=false +INTEGR_COMPOSE_CHANGED=false UIKIT_CHANGED=false -TESTING_CHANGED=false -TESTING_CHANGED_TARGET="" -TESTING_SEEN_VS=false -TESTING_SEEN_COMPOSE=false +INTEGR_CHANGED=false declare -a MODULES_SET=() CHANGED_TOKENS=false @@ -20,10 +20,6 @@ INCLUDE_SANDBOX=false while IFS= read -r FILE; do echo "➡️ Checking file: $FILE" - if [[ "$FILE" == sdds-core/*/* ]]; then - INCLUDE_SANDBOX=true - fi - # sdds-haze if [[ "$FILE" == third-party/sdds-haze/*/* ]]; then FIRST=$(echo "$FILE" | cut -d '/' -f3) @@ -38,19 +34,10 @@ while IFS= read -r FILE; do # sdds-core (excluding icons/ and testing/) if [[ "$FILE" == sdds-core/*/* ]]; then FIRST=$(echo "$FILE" | cut -d '/' -f2) - if [[ "$FIRST" == "uikit-compose" || "$FIRST" == "uikit-compose-fixtures" ]]; then + if [[ "$FIRST" == "uikit-compose" ]]; then UIKIT_COMPOSE_CHANGED=true - elif [[ "$FIRST" == "uikit" || "$FIRST" == "uikit-fixtures" ]]; then + elif [[ "$FIRST" == "uikit" ]]; then UIKIT_CHANGED=true - elif [[ "$FIRST" == "testing" ]]; then - TESTING_CHANGED=true - # Track which testing flavors changed - if [[ "$FILE" == */vs/* ]]; then - TESTING_SEEN_VS=true - fi - if [[ "$FILE" == */compose/* ]]; then - TESTING_SEEN_COMPOSE=true - fi fi if [[ "$FIRST" != "icons" && "$FIRST" != "testing" && "$FIRST" != "gradle" ]]; then MODULE=":sdds-core:$FIRST" @@ -62,6 +49,14 @@ while IFS= read -r FILE; do # integration-core if [[ "$FILE" == integration-core/*/* ]]; then FIRST=$(echo "$FILE" | cut -d '/' -f2) + if [[ "$FIRST" == "uikit-compose-fixtures" || "$FIRST" == "sandbox-compose" ]]; then + INTEGR_COMPOSE_CHANGED=true + elif [[ "$FIRST" == "uikit-fixtures" || "$FIRST" == "sandbox-view" ]]; then + INTEGR_CHANGED=true + elif [[ "$FIRST" == "sandbox-ksp" || "$FIRST" == "sandbox-core" ]]; then + INTEGR_COMPOSE_CHANGED=true + INTEGR_CHANGED=true + fi MODULE=":integration-core:$FIRST" MODULES_SET+=("$MODULE") echo "✅ Matched: $MODULE" @@ -69,37 +64,11 @@ while IFS= read -r FILE; do # tokens/* if [[ "$FILE" == tokens/* ]]; then - INCLUDE_SANDBOX=true CHANGED_TOKENS=true fi - - # playground/sandbox-compose - if [[ "$FILE" == playground/sandbox-compose/* ]]; then - MODULE=":playground:sandbox-compose" - MODULES_SET+=("$MODULE") - echo "✅ Matched: $MODULE" - fi done < <(git diff --name-only "$FROM_TAG" HEAD) -# Resolve testing target based on observed paths -if [[ "$TESTING_CHANGED" == true ]]; then - if [[ "$TESTING_SEEN_VS" == true && "$TESTING_SEEN_COMPOSE" == true ]]; then - TESTING_CHANGED_TARGET="all" - elif [[ "$TESTING_SEEN_VS" == true ]]; then - TESTING_CHANGED_TARGET="view" - elif [[ "$TESTING_SEEN_COMPOSE" == true ]]; then - TESTING_CHANGED_TARGET="compose" - else - # Default when testing changed but neither subfolder matched explicitly - TESTING_CHANGED_TARGET="none" - fi -else - TESTING_CHANGED_TARGET="none" -fi - -echo "🧪 Testing target resolved: $TESTING_CHANGED_TARGET" - -if [[ "$UIKIT_COMPOSE_CHANGED" == true || "$UIKIT_CHANGED" == true || "$TESTING_CHANGED" == true ]]; then +if [[ "$UIKIT_COMPOSE_CHANGED" == true || "$UIKIT_CHANGED" == true || "$INTEGR_COMPOSE_CHANGED" == true || "$INTEGR_CHANGED" == true ]]; then echo "🔁 Resolving token modules due to changes in uikit or testing" for DIR in tokens/*/; do @@ -112,18 +81,14 @@ if [[ "$UIKIT_COMPOSE_CHANGED" == true || "$UIKIT_CHANGED" == true || "$TESTING_ MODULE=":tokens:$NAME" MODULES_SET+=("$MODULE") echo "🔗 Added view token module due to uikit change: $MODULE" - elif [[ "$TESTING_CHANGED_TARGET" == "view" && "$NAME" == *view* ]]; then - MODULE=":tokens:$NAME" - MODULES_SET+=("$MODULE") - echo "🔗 Added view token module due to testing change: $MODULE" - elif [[ "$TESTING_CHANGED_TARGET" == "compose" && "$NAME" == *compose* ]]; then + elif [[ "$INTEGR_CHANGED" == true && "$NAME" == *view* ]]; then MODULE=":tokens:$NAME" MODULES_SET+=("$MODULE") - echo "🔗 Added compose token module due to testing change: $MODULE" - elif [[ "$TESTING_CHANGED_TARGET" == "all" && ( "$NAME" == *view* || "$NAME" == *compose* ) ]]; then + echo "🔗 Added view token module due to integration change: $MODULE" + elif [[ "$INTEGR_COMPOSE_CHANGED" == true && "$NAME" == *compose* ]]; then MODULE=":tokens:$NAME" MODULES_SET+=("$MODULE") - echo "🔗 Added token module for all testing targets: $MODULE" + echo "🔗 Added compose token module due to integration compose change: $MODULE" fi done fi @@ -145,13 +110,8 @@ if [[ "$CHANGED_TOKENS" == true ]]; then done fi -if [[ "$INCLUDE_SANDBOX" == true ]]; then - MODULE=":playground:sandbox-compose" - MODULES_SET+=("$MODULE") - echo "📦 Included sandbox-compose due to core/tokens changes" -fi - UNIQUE_MODULES=$(printf "%s\n" "${MODULES_SET[@]:-}" | sort -u | xargs) +echo "✅ Pre Final module list: $UNIQUE_MODULES" # Apply ignore list from .ignore-changed-modules (if exists) IGNORED_MODULES=() @@ -182,6 +142,32 @@ if [[ ${#IGNORED_MODULES[@]} -gt 0 ]]; then UNIQUE_MODULES=$(printf "%s " "${FILTERED_MODULES[@]}") fi +if [[ "$INCLUDE_TOKENS_SUBMODULES" == "true" ]]; then + echo "📦 Adding :app and :docs submodules for token modules" + + MODULES_WITH_TOKEN_SUBMODULES=() + for MODULE in $UNIQUE_MODULES; do + MODULES_WITH_TOKEN_SUBMODULES+=("$MODULE") + + if [[ "$MODULE" == :tokens:* && "$MODULE" != *:app && "$MODULE" != *:docs ]]; then + for SUBMODULE in app docs; do + TOKEN_SUBMODULE="$MODULE:$SUBMODULE" + TOKEN_SUBMODULE_PATH="${TOKEN_SUBMODULE#:}" + TOKEN_SUBMODULE_PATH="${TOKEN_SUBMODULE_PATH//://}" + + if [[ -d "$TOKEN_SUBMODULE_PATH" ]]; then + MODULES_WITH_TOKEN_SUBMODULES+=("$TOKEN_SUBMODULE") + echo "✅ Added token $SUBMODULE module: $TOKEN_SUBMODULE" + else + echo "⏭ Skipped missing token $SUBMODULE module: $TOKEN_SUBMODULE" + fi + done + fi + done + + UNIQUE_MODULES=$(printf "%s\n" "${MODULES_WITH_TOKEN_SUBMODULES[@]:-}" | sort -u | xargs) +fi + # Check which modules actually exist (to handle deleted modules) EXISTING_MODULES=() NON_EXISTENT_MODULES=() @@ -207,12 +193,9 @@ if (( ${#NON_EXISTENT_MODULES[@]} > 0 )); then fi # Replace CLEANED_MODULES with only existing modules -UNIQUE_MODULES=$(printf "%s " "${EXISTING_MODULES[@]}") +UNIQUE_MODULES=$(printf "%s " "${EXISTING_MODULES[@]:-}") echo "✅ Final module list: $UNIQUE_MODULES" -# Output testing target for GitHub Actions -echo "testing_changed_target=$TESTING_CHANGED_TARGET" >> "$GITHUB_OUTPUT" - # Output for GitHub Actions -echo "modules=$UNIQUE_MODULES" >> "$GITHUB_OUTPUT" \ No newline at end of file +echo "modules=$UNIQUE_MODULES" >> "$GITHUB_OUTPUT" diff --git a/.github/scripts/dispatch-publish.sh b/.github/scripts/dispatch-publish.sh index 044f298b82..f487dd1117 100644 --- a/.github/scripts/dispatch-publish.sh +++ b/.github/scripts/dispatch-publish.sh @@ -48,10 +48,6 @@ for MODULE in "${MODULES[@]}"; do EVENT_TYPE="publish-plugin-theme-builder" PAYLOAD="{\"tag\": \"$TAG\"}" ;; - ":playground:sandbox-compose") - EVENT_TYPE="publish-sandbox" - PAYLOAD="{\"tag\": \"$TAG\"}" - ;; ":sdds-haze:haze") EVENT_TYPE="publish-haze" PAYLOAD="{\"tag\": \"$TAG\"}" diff --git a/.github/templates/apk-installation-instructions.md b/.github/templates/apk-installation-instructions.md index 060178f8c9..fee3b9873e 100644 --- a/.github/templates/apk-installation-instructions.md +++ b/.github/templates/apk-installation-instructions.md @@ -1,6 +1,3 @@ -### 📦 Собранные APK -- 📥 [Скачать архив с APK](__APK_URL__) - #### 📲 Как установить APK на Android-устройство: 1. Распакуйте архив. 2. Скопируйте нужный `.apk` на устройство (через USB, Telegram, Google Drive и т.д.). diff --git a/.github/workflows/android-code-quality-check.yml b/.github/workflows/android-code-quality-check.yml index 9424149c39..8fad87fd52 100644 --- a/.github/workflows/android-code-quality-check.yml +++ b/.github/workflows/android-code-quality-check.yml @@ -18,6 +18,8 @@ jobs: detect_changes: name: Detect changes uses: ./.github/workflows/detect-changes.yml + with: + includeTokensSubmodules: true lint: name: Perform lint analysis needs: detect_changes diff --git a/.github/workflows/build-debug.yml b/.github/workflows/build-debug.yml index ff0760df74..6f5d00d50b 100644 --- a/.github/workflows/build-debug.yml +++ b/.github/workflows/build-debug.yml @@ -12,47 +12,68 @@ concurrency: cancel-in-progress: true jobs: - build: - name: Build debug artifacts + detect_changes: + name: Detect changes + uses: ./.github/workflows/detect-changes.yml + + build_apps: + name: Build debug APKs + needs: detect_changes + if: ${{ join(fromJson(needs.detect_changes.outputs.changed_tokens)) != '' }} + uses: ./.github/workflows/build-token-apps-common.yml + secrets: inherit + with: + modules: ${{ needs.detect_changes.outputs.changed_tokens }} + ref: ${{ github.head_ref }} + release: false + + create_comment: + name: Attach APK comment + needs: build_apps runs-on: ubuntu-latest + if: always() && needs.build_apps.result == 'success' steps: - name: Checkout the code uses: actions/checkout@v4 - - name: Prepare environment - uses: ./.github/actions/prepare-android-env + - name: Download APK metadata artifacts + uses: actions/download-artifact@v4 + with: + pattern: sandbox-*-debug-metadata + path: apk-results - - name: Extract branch name - id: extract_branch + - name: Collect APK URLs and generate summary + id: collect_summary shell: bash - run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + run: | + if [ ! -d apk-results ]; then + echo "No APK metadata artifacts found." >> $GITHUB_STEP_SUMMARY + exit 0 + fi - - name: Run sandbox-compose assembleDebug - run: ./gradlew :playground:sandbox-compose:assembleDebug -PbranchName=${{ steps.extract_branch.outputs.branch }} + : > build-summary.md + echo "### 📦 Собранные Debug APK" >> build-summary.md - - name: Upload APK - id: upload_apk - if: success() - uses: actions/upload-artifact@v4.3.1 - with: - name: artifacts - path: | - **/build/outputs/apk/**/*.apk - - - name: Generate comment with artifact link - shell: bash - if: ${{ steps.upload_apk.outputs.artifact-url }} - run: | - echo "Artifact url is ${{ steps.upload_apk.outputs.artifact-url || 'empty' }}" - sed "s|__APK_URL__|${{ steps.upload_apk.outputs.artifact-url }}|g" \ - .github/templates/apk-installation-instructions.md > build-summary.md - - cat build-summary.md + find apk-results -name artifact.json | sort | while read -r path; do + module=$(jq -r '.module' "$path") + url=$(jq -r '.artifactUrl' "$path") + + if [[ -z "$url" || "$url" == "null" ]]; then + echo "Skipping $module because artifact URL is empty" + continue + fi + + echo "- 📥 [$module]($url)" >> build-summary.md + done + + echo >> build-summary.md + cat .github/templates/apk-installation-instructions.md >> build-summary.md + cat build-summary.md >> "$GITHUB_STEP_SUMMARY" - - name: Attach comment to PR + - name: Attach comment + if: success() && hashFiles('build-summary.md') != '' uses: marocchino/sticky-pull-request-comment@v2 - if: ${{ steps.upload_apk.outputs.artifact-url }} with: - header: apk + header: apk-debug path: build-summary.md GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 34d4fc1121..baae2525bc 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -13,43 +13,68 @@ concurrency: cancel-in-progress: true jobs: - build-release: - name: Build release artifacts + detect_changes: + name: Detect changes + uses: ./.github/workflows/detect-changes.yml + + build_apps: + name: Build release APKs + needs: detect_changes + if: ${{ join(fromJson(needs.detect_changes.outputs.changed_tokens)) != '' }} + uses: ./.github/workflows/build-token-apps-common.yml + secrets: inherit + with: + modules: ${{ needs.detect_changes.outputs.changed_tokens }} + ref: ${{ github.head_ref }} + release: true + + create_comment: + name: Attach APK comment + needs: build_apps runs-on: ubuntu-latest + if: always() && needs.build_apps.result == 'success' steps: - name: Checkout the code uses: actions/checkout@v4 - - name: Prepare environment - uses: ./.github/actions/prepare-android-env + - name: Download APK metadata artifacts + uses: actions/download-artifact@v4 + with: + pattern: sandbox-*-release-metadata + path: apk-results - - name: Extract branch name - id: extract_branch + - name: Collect APK URLs and generate summary + id: collect_summary shell: bash - run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + run: | + if [ ! -d apk-results ]; then + echo "No APK metadata artifacts found." >> $GITHUB_STEP_SUMMARY + exit 0 + fi - - name: Run assembleReleaseAll - run: ./gradlew :playground:sandbox-compose:assembleRelease -PbranchName=${{ steps.extract_branch.outputs.branch }} + : > build-summary.md + echo "### 📦 Собранные Release APK" >> build-summary.md - - name: Upload APK - id: upload_apk - if: success() - uses: actions/upload-artifact@v4.3.1 - with: - name: artifacts - path: | - **/build/outputs/apk/**/*.apk + find apk-results -name artifact.json | sort | while read -r path; do + module=$(jq -r '.module' "$path") + url=$(jq -r '.artifactUrl' "$path") - - name: Generate comment with artifact link - shell: bash - if: steps.upload_apk.outputs.artifact-url - run: | - sed "s|__APK_URL__|${{ steps.upload_apk.outputs.artifact-url }}|g" \ - .github/templates/apk-installation-instructions.md > build-summary.md + if [[ -z "$url" || "$url" == "null" ]]; then + echo "Skipping $module because artifact URL is empty" + continue + fi + + echo "- 📥 [$module]($url)" >> build-summary.md + done + + echo >> build-summary.md + cat .github/templates/apk-installation-instructions.md >> build-summary.md + cat build-summary.md >> "$GITHUB_STEP_SUMMARY" - - name: Attach comment to PR + - name: Attach comment + if: success() && hashFiles('build-summary.md') != '' uses: marocchino/sticky-pull-request-comment@v2 - if: steps.upload_apk.outputs.artifact-url with: + header: apk-release path: build-summary.md GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} diff --git a/.github/workflows/build-token-apps-common.yml b/.github/workflows/build-token-apps-common.yml new file mode 100644 index 0000000000..5173815cc8 --- /dev/null +++ b/.github/workflows/build-token-apps-common.yml @@ -0,0 +1,121 @@ +name: 'Build tokens apps common' + +on: + workflow_call: + inputs: + modules: + type: string + description: 'Список модулей в формате json (например, [":tokens:plasma-stards", ":tokens:plasma-stards-compose"])' + required: true + ref: + type: string + description: 'Название ветки, тэга или хэш коммита' + required: true + is_repository_dispatch: + type: boolean + description: 'True если workflow вызван через repository_dispatch' + required: false + default: false + release: + type: boolean + description: 'Собирать release APK, иначе debug' + required: false + default: false + +jobs: + build: + name: Build apps + runs-on: ubuntu-latest + if: inputs.modules != '' && inputs.modules != '[]' && inputs.ref != '' + strategy: + fail-fast: false + matrix: + module: ${{ fromJson(inputs.modules) }} + steps: + - name: Checkout the code + uses: actions/checkout@v4 + with: + ref: ${{ inputs.ref }} + + - name: Prepare environment + uses: ./.github/actions/prepare-android-env + + - name: Extract branch name + id: extract_branch + shell: bash + run: | + if [[ "${{ inputs.is_repository_dispatch }}" == "true" ]]; then + echo "branch=main" >> $GITHUB_OUTPUT + else + echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + fi + + - name: Prepare artifact info + shell: bash + run: | + module="${{ matrix.module }}" + module="${module#:}" + safe_path="${module//:/\/}" + build_type="debug" + if [[ "${{ inputs.release }}" == "true" ]]; then + build_type="release" + fi + artifact_name="sandbox-${module//:/_}-${build_type}-apk" + metadata_name="sandbox-${module//:/_}-${build_type}-metadata" + echo "MODULE_PATH=$safe_path/app" >> $GITHUB_ENV + echo "SAFE_MODULE=$module" >> $GITHUB_ENV + echo "ARTIFACT_NAME=$artifact_name" >> $GITHUB_ENV + echo "METADATA_ARTIFACT_NAME=$metadata_name" >> $GITHUB_ENV + echo "BUILD_TYPE=$build_type" >> $GITHUB_ENV + + - name: Decrypt Keystore + if: inputs.release + run: | + echo "${{ secrets.KEY_STORE_FILE }}" | base64 -d -i > ${{ env.MODULE_PATH }}/keystore.jks + + - name: Build APK + env: + KEY_STORE_FILE: "keystore.jks" + RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }} + RELEASE_KEY_ALIAS: ${{ secrets.SANDBOX_CMP_RELEASE_KEY_ALIAS }} + RELEASE_KEY_PASSWORD: ${{ secrets.SANDBOX_CMP_RELEASE_KEY_PASSWORD }} + run: | + task="assembleDebug" + if [[ "${{ inputs.release }}" == "true" ]]; then + task="assembleRelease" + fi + ./gradlew ${{ matrix.module }}:app:${task} -PbranchName=${{ steps.extract_branch.outputs.branch }} + + - name: Upload APK + id: upload_apk + uses: actions/upload-artifact@v4 + with: + name: ${{ env.ARTIFACT_NAME }} + path: ${{ env.MODULE_PATH }}/build/outputs/apk/${{ env.BUILD_TYPE }}/*.apk + + - name: Prepare artifact metadata + if: success() + env: + ARTIFACT_ID: ${{ steps.upload_apk.outputs.artifact-id }} + shell: bash + run: | + mkdir -p artifact-metadata + artifact_url="${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/artifacts/$ARTIFACT_ID" + jq -n \ + --arg module ":${{ env.SAFE_MODULE }}" \ + --arg buildType "${{ env.BUILD_TYPE }}" \ + --arg artifactName "${{ env.ARTIFACT_NAME }}" \ + --arg artifactUrl "$artifact_url" \ + '{ + module: $module, + buildType: $buildType, + artifactName: $artifactName, + artifactUrl: $artifactUrl + }' > artifact-metadata/artifact.json + + - name: Upload artifact metadata + if: success() + uses: actions/upload-artifact@v4 + with: + name: ${{ env.METADATA_ARTIFACT_NAME }} + path: artifact-metadata/artifact.json diff --git a/.github/workflows/deploy-token-apps.yml b/.github/workflows/deploy-token-apps.yml new file mode 100644 index 0000000000..04602cb9a4 --- /dev/null +++ b/.github/workflows/deploy-token-apps.yml @@ -0,0 +1,77 @@ +name: 'Deploy tokens apps' + +on: + repository_dispatch: + types: [publish-tokens] + workflow_dispatch: + inputs: + modules: + type: string + description: 'Список модулей в формате json (например, [":tokens:plasma-stards", ":tokens:plasma-stards-compose"])' + required: true + tag: + description: "Тэг для релиза" + required: true + +concurrency: + # New commit on branch cancels running workflows of the same branch + group: ${{ github.workflow }}-${{ github.head_ref }} + cancel-in-progress: true + +jobs: + state: + name: Prepare state + runs-on: ubuntu-latest + outputs: + ref: ${{ steps.prepare.outputs.ref }} + modules: ${{ steps.prepare.outputs.modules }} + + steps: + - name: Prepare modules and tag + id: prepare + run: | + if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then + echo "Using modules and tag from repository_dispatch event" + # Ensure modules is a JSON string for downstream fromJson() + echo "modules=${{ toJson(github.event.client_payload.modules) }}" >> $GITHUB_OUTPUT + echo "ref=${{ github.event.client_payload.tag }}" >> $GITHUB_OUTPUT + echo "Debug: modules (json) -> ${{ toJson(github.event.client_payload.modules) }}" + else + echo "Using modules and tag from workflow_dispatch input" + echo "Input modules ${{ github.event.inputs.modules }}" + echo "modules=${{ github.event.inputs.modules }}" >> $GITHUB_OUTPUT + echo "ref=${{ github.event.inputs.tag }}" >> $GITHUB_OUTPUT + fi + + deploy: + name: Deploy Apps + needs: state + uses: ./.github/workflows/build-token-apps-common.yml + secrets: inherit + with: + modules: ${{ needs.state.outputs.modules }} + ref: ${{ needs.state.outputs.ref }} + is_repository_dispatch: ${{ github.event_name == 'repository_dispatch' }} + release: true + + release: + name: Create Release + needs: deploy + runs-on: ubuntu-latest + steps: + - name: Download APK artifacts + uses: actions/download-artifact@v4 + with: + pattern: sandbox-*-release-apk + path: artifacts + + - name: Create or Update Release + uses: ncipollo/release-action@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + tag: ${{ needs.state.outputs.ref }} + draft: true + allowUpdates: true + omitBody: true + generateReleaseNotes: true + artifacts: artifacts/**/*.apk diff --git a/.github/workflows/detect-changes.yml b/.github/workflows/detect-changes.yml index 79b5a5fa85..a0bd2f02e6 100644 --- a/.github/workflows/detect-changes.yml +++ b/.github/workflows/detect-changes.yml @@ -2,6 +2,12 @@ name: 'Detect changes' on: workflow_call: + inputs: + includeTokensSubmodules: + type: boolean + description: 'If true, :app and :docs submodules of tokens: modules will be included' + default: false + required: false outputs: changed: description: 'All changed modules' @@ -31,7 +37,7 @@ jobs: - name: Determine changed modules id: changed_modules run: | - .github/scripts/changed-modules.sh "${{ github.event.pull_request.base.ref }}" + .github/scripts/changed-modules.sh "${{ github.event.pull_request.base.ref }}" ${{ inputs.includeTokensSubmodules }} - name: Filter modules id: filtered_modules diff --git a/.github/workflows/publish-sandbox-compose.yml b/.github/workflows/publish-sandbox-compose.yml deleted file mode 100644 index da5da8eaec..0000000000 --- a/.github/workflows/publish-sandbox-compose.yml +++ /dev/null @@ -1,99 +0,0 @@ -name: 'Publish Sandbox-Compose Release' - -on: - repository_dispatch: - types: [publish-sandbox] - workflow_dispatch: - inputs: - tag: - description: "Тэг для релиза" - required: true - -concurrency: - group: ${{ github.workflow }}-${{ github.head-ref }} - cancel-in-progress: true - -jobs: - publish_and_release_apk: - name: Build release artifacts - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - ref: main - - - name: Prepare environment - uses: ./.github/actions/prepare-android-env - - - name: Decrypt Keystore - run: | - echo "${{ secrets.KEY_STORE_FILE }}" | base64 -d -i > playground/sandbox-compose/keystore.jks - - - name: Determine tag - id: inputs - run: | - if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then - TAG="${{ github.event.client_payload.tag }}" - else - TAG="${{ github.event.inputs.tag }}" - fi - echo "tag=$TAG" >> $GITHUB_OUTPUT - - - name: Build Release APK - env: - KEY_STORE_FILE: "keystore.jks" - RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }} - RELEASE_KEY_ALIAS: ${{ secrets.SANDBOX_CMP_RELEASE_KEY_ALIAS }} - RELEASE_KEY_PASSWORD: ${{ secrets.SANDBOX_CMP_RELEASE_KEY_PASSWORD }} - run: ./gradlew :playground:sandbox-compose:assembleAppRelease - - - name: Upload APK - uses: actions/upload-artifact@v4 - with: - name: sandbox-compose-release - path: playground/sandbox-compose/build/outputs/apk/app/release/*.apk - - - name: Build Release StarDS APK - env: - KEY_STORE_FILE: "keystore.jks" - RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }} - STAR_RELEASE_KEY_ALIAS: ${{ secrets.STAR_RELEASE_KEY_ALIAS }} - STAR_RELEASE_KEY_PASSWORD: ${{ secrets.STAR_RELEASE_KEY_PASSWORD }} - STAR_APP_ID: ${{ secrets.STAR_APP_ID }} - run: ./gradlew :playground:sandbox-compose:assembleStarAppRelease - - - name: Upload APK - uses: actions/upload-artifact@v4 - with: - name: sandbox-compose-starApp-release - path: playground/sandbox-compose/build/outputs/apk/starApp/release/*.apk - - - name: Build versions.json - run: ./gradlew :playground:sandbox-compose:generateVersionDescription - - - name: Upload versions.json - uses: actions/upload-artifact@v4 - with: - name: versions - path: playground/sandbox-compose/build/outputs/versions.json - - - name: Create or Update Release - uses: ncipollo/release-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - tag: ${{ steps.inputs.outputs.tag }} - draft: true - allowUpdates: true - omitBody: true - generateReleaseNotes: true - artifacts: > - playground/sandbox-compose/build/outputs/apk/app/release/*.apk, - playground/sandbox-compose/build/outputs/apk/starApp/release/*.apk, - playground/sandbox-compose/build/outputs/versions.json, - - - name: Distribute to testers - env: - TESTFAIRY_API_KEY: ${{ secrets.TESTFAIRY_API_KEY }} - run: sh .github/scripts/testfairy-uploader.sh playground/sandbox-compose/build/outputs/apk/app/release/*.apk diff --git a/.ignore-changed-modules b/.ignore-changed-modules index 9952575ea3..e44ffe69cd 100644 --- a/.ignore-changed-modules +++ b/.ignore-changed-modules @@ -5,5 +5,5 @@ :sdds-core:docs-compose :sdds-core:docs-ksp :sdds-core:docs-views -:sdds-core:uikit-compose-fixtures -:sdds-core:uikit-fixtures +:integration-core:uikit-compose-fixtures +:integration-core:uikit-fixtures diff --git a/build-system/conventions/src/main/kotlin/convention.documentation-compose.gradle.kts b/build-system/conventions/src/main/kotlin/convention.documentation-compose.gradle.kts index 21c43f731a..9356dbec69 100644 --- a/build-system/conventions/src/main/kotlin/convention.documentation-compose.gradle.kts +++ b/build-system/conventions/src/main/kotlin/convention.documentation-compose.gradle.kts @@ -11,7 +11,7 @@ extensions.configure("docusaurus") { } dependencies { - "docsSnippets"("sdds-core:uikit-compose-fixtures:unspecified:docs@jar") + "docsSnippets"("integration-core:uikit-compose-fixtures:unspecified:docs@jar") "implementation"("sdds-core:docs-compose") - "testImplementation"("sdds-core:uikit-compose-fixtures") + "testImplementation"("integration-core:uikit-compose-fixtures") } \ No newline at end of file diff --git a/build-system/conventions/src/main/kotlin/convention.documentation-view.gradle.kts b/build-system/conventions/src/main/kotlin/convention.documentation-view.gradle.kts index a41f66c947..d247b6d03c 100644 --- a/build-system/conventions/src/main/kotlin/convention.documentation-view.gradle.kts +++ b/build-system/conventions/src/main/kotlin/convention.documentation-view.gradle.kts @@ -11,6 +11,6 @@ extensions.configure("docusaurus") { dependencies { "implementation"("sdds-core:docs-views") - "docsSnippets"("sdds-core:uikit-fixtures:unspecified:docs@jar") - "testImplementation"("sdds-core:uikit-fixtures") + "docsSnippets"("integration-core:uikit-fixtures:unspecified:docs@jar") + "testImplementation"("integration-core:uikit-fixtures") } \ No newline at end of file diff --git a/build-system/conventions/src/main/kotlin/convention.sandbox-app.gradle.kts b/build-system/conventions/src/main/kotlin/convention.sandbox-app.gradle.kts index 1ff33044c8..762d197223 100644 --- a/build-system/conventions/src/main/kotlin/convention.sandbox-app.gradle.kts +++ b/build-system/conventions/src/main/kotlin/convention.sandbox-app.gradle.kts @@ -19,6 +19,7 @@ android { compileSdk = versions.global.compileSdk.get().toInt() defaultConfig { + resourceConfigurations += setOf("en", "ru") minSdk = versions.global.minSdk.get().toInt() targetSdk = versions.global.targetSdk.get().toInt() testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" @@ -37,6 +38,7 @@ android { } lint { + disable += "NotificationPermission" xmlReport = false textReport = false sarifReport = false @@ -82,7 +84,8 @@ android { if (System.getenv("KEY_STORE_FILE") != null) { signingConfig = signingConfigs.getByName("release") } - isMinifyEnabled = false + isShrinkResources = true + isMinifyEnabled = true proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") } } diff --git a/build-system/conventions/src/main/kotlin/convention.testing-compose.gradle.kts b/build-system/conventions/src/main/kotlin/convention.testing-compose.gradle.kts index 39ca46437f..912ef459f1 100644 --- a/build-system/conventions/src/main/kotlin/convention.testing-compose.gradle.kts +++ b/build-system/conventions/src/main/kotlin/convention.testing-compose.gradle.kts @@ -6,6 +6,7 @@ plugins { withVersionCatalogs { dependencies { + add("testImplementation", "integration-core:uikit-compose-testcases") add("testImplementation", base.test.ui.compose.jUnit4) add("testImplementation", test.roborazzi.compose) } diff --git a/build-system/conventions/src/main/kotlin/convention.testing.gradle.kts b/build-system/conventions/src/main/kotlin/convention.testing.gradle.kts index 7628ac8d26..e608f2def1 100644 --- a/build-system/conventions/src/main/kotlin/convention.testing.gradle.kts +++ b/build-system/conventions/src/main/kotlin/convention.testing.gradle.kts @@ -17,6 +17,7 @@ android { withVersionCatalogs { dependencies { + add("testImplementation", "integration-core:uikit-testcases") add("testImplementation", base.test.unit.jUnit) add("testImplementation", test.roborazzi) add("testImplementation", test.roborazzi.rule) diff --git a/build-system/docs-template/GUIDELINES.md b/build-system/docs-template/GUIDELINES.md index ffe0248b00..2f4e93b0ac 100644 --- a/build-system/docs-template/GUIDELINES.md +++ b/build-system/docs-template/GUIDELINES.md @@ -30,7 +30,7 @@ sdds-uikit-compose-fixtures/ Для sdds-core:uikit: ``` -sdds-core/uikit-fixtures/ +integration-core/uikit-fixtures/ └── src/main/kotlin/ └── com/sdds/uikit/fixtures/samples/button/ └── ButtonSamples.kt @@ -120,7 +120,7 @@ Button( ### 1. Где писать XML примеры -XML‑примеры должны лежать в `res/` директории модуля `sdds-core/uikit-fixtures` или подмодуля `tokens/*/docs` +XML‑примеры должны лежать в `res/` директории модуля `integration-core/uikit-fixtures` или подмодуля `tokens/*/docs` --- diff --git a/integration-core/sandbox-compose/build.gradle.kts b/integration-core/sandbox-compose/build.gradle.kts index 5a019d1785..54d1254fa8 100644 --- a/integration-core/sandbox-compose/build.gradle.kts +++ b/integration-core/sandbox-compose/build.gradle.kts @@ -19,6 +19,10 @@ group = "integration-core" android { namespace = "com.sdds.compose.sandbox" + + buildFeatures { + buildConfig = true + } } themeBuilder { @@ -43,6 +47,7 @@ dependencies { implementation(libs.base.androidX.activity) implementation(libs.base.androidX.lifecycle.compose.viewmodel) implementation(libs.base.androidX.navigation.compose) + implementation(libs.base.kotlin.serialization.json) // Preview support diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateChecker.kt b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateChecker.kt similarity index 86% rename from playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateChecker.kt rename to integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateChecker.kt index 2773b1cee2..8d929c3b3c 100644 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateChecker.kt +++ b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateChecker.kt @@ -1,7 +1,7 @@ -package com.sdds.playground.sandbox.core.updates +package com.sdds.compose.sandbox.updater import android.util.Log -import com.sdds.playground.sandbox.BuildConfig +import com.sdds.compose.sandbox.BuildConfig import kotlinx.coroutines.CoroutineDispatcher import kotlinx.coroutines.withContext import kotlinx.serialization.ExperimentalSerializationApi @@ -36,15 +36,15 @@ internal class UpdateChecker(private val dispatcher: CoroutineDispatcher) { connection.connect() if (connection.responseCode != HttpURLConnection.HTTP_OK) return@withContext UpdateInfo.None val release = json.decodeFromStream(connection.inputStream) - val appAsset = release.assets.firstOrNull { it.name.contains(BuildConfig.DIST_NAME) } + val appAsset = release.assets.firstOrNull { it.name.contains(DIST_NAME) } val version = release.getVersion() Log.d( "UpdateChecker", - "getUpdateInfo: latest release: $version, current = ${BuildConfig.VERSION_CODE}, appAsset = $appAsset", + "getUpdateInfo: latest release: $version, current = $VERSION_CODE, appAsset = $appAsset", ) - if (version.code <= BuildConfig.VERSION_CODE || appAsset == null) { + if (version.code <= VERSION_CODE || appAsset == null) { return@withContext UpdateInfo.None } @@ -68,7 +68,7 @@ internal class UpdateChecker(private val dispatcher: CoroutineDispatcher) { * @return Числовой код версии из файла или [BuildConfig.VERSION_CODE] по умолчанию. */ private suspend fun GitHubRelease.getVersion(): AppVersion = withContext(dispatcher) { - val fallbackVersion = AppVersion("", BuildConfig.VERSION_CODE) + val fallbackVersion = AppVersion("", VERSION_CODE) val versionsAsset = assets.firstOrNull { it.name == "versions.json" } ?: return@withContext fallbackVersion val connection = URL(versionsAsset.browserDownloadUrl).openConnection() as HttpURLConnection connection.setRequestProperty("Accept", "application/vnd.github+json") @@ -78,7 +78,7 @@ internal class UpdateChecker(private val dispatcher: CoroutineDispatcher) { val versions = runCatching { json.decodeFromStream>(connection.inputStream) } .onFailure { Log.e("UpdateChecker", "failed to get version info ${it.message}") } .getOrElse { emptyMap() } - versions[BuildConfig.DIST_NAME] ?: fallbackVersion + versions[DIST_NAME] ?: fallbackVersion } private companion object { @@ -115,3 +115,13 @@ internal sealed class UpdateInfo { object None : UpdateInfo() } + +// val DEBUG = "true".toBoolean() +internal const val APPLICATION_ID = "com.sdds.playground.sandbox.compose" +internal const val BUILD_TYPE = "debug" +internal const val FLAVOR = "app" +internal const val VERSION_CODE = 34000 +internal const val VERSION_NAME = "0.34.0-(feature_plasma-6963-part2)_03042026_1159" + +// Field from product flavor: app +internal const val DIST_NAME = "sandbox-compose-app-release" diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateDownloadManager.kt b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateDownloadManager.kt similarity index 97% rename from playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateDownloadManager.kt rename to integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateDownloadManager.kt index a60925f41b..a0e5369305 100644 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateDownloadManager.kt +++ b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateDownloadManager.kt @@ -1,4 +1,4 @@ -package com.sdds.playground.sandbox.core.updates +package com.sdds.compose.sandbox.updater import android.app.DownloadManager import android.content.BroadcastReceiver @@ -9,7 +9,7 @@ import android.net.Uri import android.os.Environment import android.util.Log import androidx.core.content.ContextCompat -import com.sdds.playground.sandbox.R +import com.sdds.compose.sandbox.R import kotlinx.coroutines.channels.awaitClose import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.callbackFlow diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateInstaller.kt b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateInstaller.kt similarity index 98% rename from playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateInstaller.kt rename to integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateInstaller.kt index c5d0319499..09d5fd0edb 100644 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateInstaller.kt +++ b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateInstaller.kt @@ -1,4 +1,4 @@ -package com.sdds.playground.sandbox.core.updates +package com.sdds.compose.sandbox.updater import android.app.PendingIntent import android.content.BroadcastReceiver diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateManager.kt b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateManager.kt similarity index 98% rename from playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateManager.kt rename to integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateManager.kt index de49f98693..8f2d6d2af3 100644 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdateManager.kt +++ b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdateManager.kt @@ -1,4 +1,4 @@ -package com.sdds.playground.sandbox.core.updates +package com.sdds.compose.sandbox.updater import android.content.Context import kotlinx.coroutines.CoroutineDispatcher diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdatesViewModel.kt b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdatesViewModel.kt similarity index 96% rename from playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdatesViewModel.kt rename to integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdatesViewModel.kt index 896a63e070..c6b4590e7a 100644 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/updates/UpdatesViewModel.kt +++ b/integration-core/sandbox-compose/src/main/kotlin/com/sdds/compose/sandbox/updater/UpdatesViewModel.kt @@ -1,9 +1,8 @@ -package com.sdds.playground.sandbox.core.updates +package com.sdds.compose.sandbox.updater import androidx.lifecycle.ViewModel import androidx.lifecycle.ViewModelProvider import androidx.lifecycle.viewModelScope -import com.sdds.playground.sandbox.BuildConfig import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.StateFlow import kotlinx.coroutines.flow.asStateFlow @@ -81,7 +80,7 @@ internal sealed class UpdateState { /** * Текущая версия приложения */ - val versionInfo: String = BuildConfig.VERSION_NAME +// val versionInfo: String = BuildConfig.VERSION_NAME /** * Состояние "Нет доступных обновлений" diff --git a/integration-core/sandbox-compose/src/main/res/values/strings.xml b/integration-core/sandbox-compose/src/main/res/values/strings.xml new file mode 100644 index 0000000000..d3a861996a --- /dev/null +++ b/integration-core/sandbox-compose/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + + SDDS Sandbox + Загружаем обновление… + \ No newline at end of file diff --git a/integration-core/settings.gradle.kts b/integration-core/settings.gradle.kts index 428b003a9b..37701ca4cf 100644 --- a/integration-core/settings.gradle.kts +++ b/integration-core/settings.gradle.kts @@ -25,4 +25,8 @@ include( ":sandbox-compose", ":sandbox-view", ":sandbox-ksp", + ":uikit-fixtures", + ":uikit-testcases", + ":uikit-compose-fixtures", + ":uikit-compose-testcases", ) diff --git a/integration-core/uikit-compose-fixtures/build.gradle.kts b/integration-core/uikit-compose-fixtures/build.gradle.kts new file mode 100644 index 0000000000..95abc3400e --- /dev/null +++ b/integration-core/uikit-compose-fixtures/build.gradle.kts @@ -0,0 +1,41 @@ +plugins { + id("convention.android-lib") + id("convention.compose") + id("convention.maven-publish") + id("convention.core-fixtures") + alias(libs.plugins.ksp) +} + +group = "integration-core" + +android { + namespace = "com.sdds.compose.uikit.fixtures" + buildFeatures { + viewBinding = true + } + testOptions { + unitTests { + isIncludeAndroidResources = true + } + } +} + +ksp { + arg("packageName", "com.sdds.compose.docs") + arg("sandbox.packageName", "com.sdds.compose.uikit.fixtures.stories") +} + +dependencies { + implementation(project(":sandbox-core")) + implementation(project(":sandbox-compose")) + ksp(project(":sandbox-ksp")) + implementation("sdds-core:uikit-compose") + implementation("sdds-core:icons") + implementation("sdds-core:docs") + implementation("sdds-core:docs-compose") + ksp("sdds-core:docs-ksp") + + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) + implementation(libs.base.koil.compose) +} diff --git a/sdds-core/uikit-compose-fixtures/gradle.properties b/integration-core/uikit-compose-fixtures/gradle.properties similarity index 100% rename from sdds-core/uikit-compose-fixtures/gradle.properties rename to integration-core/uikit-compose-fixtures/gradle.properties diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/accordion/AccordionSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/accordion/AccordionSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/accordion/AccordionSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/accordion/AccordionSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/AvatarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/AvatarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/AvatarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/AvatarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/badge/BadgeSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/badge/BadgeSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/badge/BadgeSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/badge/BadgeSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/blur/BlurSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/blur/BlurSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/blur/BlurSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/blur/BlurSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/bottomsheet/BottomSheetSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/bottomsheet/BottomSheetSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/bottomsheet/BottomSheetSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/bottomsheet/BottomSheetSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/ButtonSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/ButtonSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/ButtonSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/ButtonSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/IconButtonSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/IconButtonSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/IconButtonSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/button/IconButtonSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/buttongroup/ButtonGroupSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/buttongroup/ButtonGroupSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/buttongroup/ButtonGroupSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/buttongroup/ButtonGroupSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/card/CardSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/card/CardSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/card/CardSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/card/CardSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/carousel/CarouselSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/carousel/CarouselSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/carousel/CarouselSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/carousel/CarouselSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/cell/CellSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/cell/CellSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/cell/CellSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/cell/CellSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/ChipSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/ChipSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/ChipSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/ChipSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codefield/CodeFieldSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codefield/CodeFieldSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codefield/CodeFieldSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codefield/CodeFieldSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codeinput/CodeInputSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codeinput/CodeInputSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codeinput/CodeInputSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/codeinput/CodeInputSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/collapsingnavigationbar/CollapsingNavigationBarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/collapsingnavigationbar/CollapsingNavigationBarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/collapsingnavigationbar/CollapsingNavigationBarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/collapsingnavigationbar/CollapsingNavigationBarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/counter/CounterSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/counter/CounterSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/counter/CounterSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/counter/CounterSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/divider/DividerSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/divider/DividerSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/divider/DividerSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/divider/DividerSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/drawer/DrawerSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/drawer/DrawerSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/drawer/DrawerSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/drawer/DrawerSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/dropdownmenu/DropdownMenuSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/dropdownmenu/DropdownMenuSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/dropdownmenu/DropdownMenuSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/dropdownmenu/DropdownMenuSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/editable/EditableSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/editable/EditableSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/editable/EditableSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/editable/EditableSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/file/FileSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/file/FileSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/file/FileSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/file/FileSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/formitem/FormItemSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/formitem/FormItemSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/formitem/FormItemSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/formitem/FormItemSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/icon/IconSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/icon/IconSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/icon/IconSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/icon/IconSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/image/ImageSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/image/ImageSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/image/ImageSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/image/ImageSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/indicator/IndicatorSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/indicator/IndicatorSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/indicator/IndicatorSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/indicator/IndicatorSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/list/ListSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/list/ListSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/list/ListSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/list/ListSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/loader/LoaderSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/loader/LoaderSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/loader/LoaderSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/loader/LoaderSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/mask/MaskSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/mask/MaskSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/mask/MaskSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/mask/MaskSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/modal/ModalSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/modal/ModalSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/modal/ModalSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/modal/ModalSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/note/NoteSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/note/NoteSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/note/NoteSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/note/NoteSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notification/NotificationSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notification/NotificationSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notification/NotificationSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notification/NotificationSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notificationcontent/NotificationContentSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notificationcontent/NotificationContentSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notificationcontent/NotificationContentSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/notificationcontent/NotificationContentSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/overlay/OverlaySamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/overlay/OverlaySamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/overlay/OverlaySamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/overlay/OverlaySamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/popover/PopoverSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/popover/PopoverSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/popover/PopoverSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/popover/PopoverSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/CircularProgressSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/CircularProgressSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/CircularProgressSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/CircularProgressSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/ProgressSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/ProgressSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/ProgressSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/progress/ProgressSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentItemSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentItemSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentItemSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentItemSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/segment/SegmentSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/select/SelectSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/select/SelectSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/select/SelectSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/select/SelectSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/slider/SliderSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/slider/SliderSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/slider/SliderSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/slider/SliderSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/spinner/SpinnerSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/spinner/SpinnerSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/spinner/SpinnerSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/spinner/SpinnerSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/switcher/SwitcherSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/switcher/SwitcherSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/switcher/SwitcherSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/switcher/SwitcherSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabbar/TabBarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabbar/TabBarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabbar/TabBarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabbar/TabBarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabs/TabsSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabs/TabsSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabs/TabsSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tabs/TabsSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/text/TextSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/text/TextSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/text/TextSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/text/TextSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textfield/TextFieldSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textfield/TextFieldSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textfield/TextFieldSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textfield/TextFieldSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toast/ToastSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toast/ToastSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toast/ToastSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toast/ToastSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toolbar/ToolBarSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toolbar/ToolBarSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toolbar/ToolBarSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/toolbar/ToolBarSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tooltip/TooltipSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tooltip/TooltipSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tooltip/TooltipSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/tooltip/TooltipSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/wheel/WheelSamples.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/wheel/WheelSamples.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/wheel/WheelSamples.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/samples/wheel/WheelSamples.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/Utils.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/Utils.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/Utils.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/Utils.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/accordion/AccordionStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/accordion/AccordionStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/accordion/AccordionStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/accordion/AccordionStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/avatar/AvatarStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/avatar/AvatarStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/avatar/AvatarStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/avatar/AvatarStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/badge/BadgeStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/badge/BadgeStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/badge/BadgeStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/badge/BadgeStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/bottomsheet/BottomSheetStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/bottomsheet/BottomSheetStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/bottomsheet/BottomSheetStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/bottomsheet/BottomSheetStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonGroupStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonGroupStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonGroupStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonGroupStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/button/ButtonStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/card/CardStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/card/CardStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/card/CardStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/card/CardStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/carousel/CarouselStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/carousel/CarouselStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/carousel/CarouselStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/carousel/CarouselStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/cell/CellStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/cell/CellStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/cell/CellStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/cell/CellStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkbox/CheckBoxStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkbox/CheckBoxStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkbox/CheckBoxStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkbox/CheckBoxStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkboxgroup/CheckBoxGroupStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkboxgroup/CheckBoxGroupStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkboxgroup/CheckBoxGroupStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/checkboxgroup/CheckBoxGroupStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chip/ChipStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chip/ChipStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chip/ChipStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chip/ChipStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chipgroup/ChipGroupStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chipgroup/ChipGroupStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chipgroup/ChipGroupStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/chipgroup/ChipGroupStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/circularprogress/CircularProgressStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/circularprogress/CircularProgressStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/circularprogress/CircularProgressStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/circularprogress/CircularProgressStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codefield/CodeFieldStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codefield/CodeFieldStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codefield/CodeFieldStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codefield/CodeFieldStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codeinput/CodeInputStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codeinput/CodeInputStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codeinput/CodeInputStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/codeinput/CodeInputStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/collapsingnavigationbar/CollapsingNavigationBarStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/collapsingnavigationbar/CollapsingNavigationBarStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/collapsingnavigationbar/CollapsingNavigationBarStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/collapsingnavigationbar/CollapsingNavigationBarStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/counter/CounterStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/counter/CounterStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/counter/CounterStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/counter/CounterStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/divider/DividerStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/divider/DividerStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/divider/DividerStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/divider/DividerStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/drawer/DrawerStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/drawer/DrawerStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/drawer/DrawerStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/drawer/DrawerStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/editable/EditableStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/editable/EditableStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/editable/EditableStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/editable/EditableStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/file/FileStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/file/FileStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/file/FileStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/file/FileStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/form/FormItemStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/form/FormItemStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/form/FormItemStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/form/FormItemStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbadge/IconBadgeStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbadge/IconBadgeStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbadge/IconBadgeStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbadge/IconBadgeStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbutton/IconButtonStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbutton/IconButtonStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbutton/IconButtonStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/iconbutton/IconButtonStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/image/ImageStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/image/ImageStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/image/ImageStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/image/ImageStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/indicator/IndicatorStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/indicator/IndicatorStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/indicator/IndicatorStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/indicator/IndicatorStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/linkbutton/LinkButtonStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/linkbutton/LinkButtonStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/linkbutton/LinkButtonStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/linkbutton/LinkButtonStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/list/ListStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/list/ListStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/list/ListStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/list/ListStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/loader/LoaderStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/loader/LoaderStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/loader/LoaderStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/loader/LoaderStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/maskedtextfield/MaskedTextFieldStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/maskedtextfield/MaskedTextFieldStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/maskedtextfield/MaskedTextFieldStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/maskedtextfield/MaskedTextFieldStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/modal/ModalStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/modal/ModalStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/modal/ModalStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/modal/ModalStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/note/NoteStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/note/NoteStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/note/NoteStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/note/NoteStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notification/NotificationStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notification/NotificationStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notification/NotificationStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notification/NotificationStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/overlay/OverlayStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/overlay/OverlayStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/overlay/OverlayStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/overlay/OverlayStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/popover/PopoverStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/popover/PopoverStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/popover/PopoverStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/popover/PopoverStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/progress/ProgressStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/progress/ProgressStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/progress/ProgressStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/progress/ProgressStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radiobox/RadioBoxStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radiobox/RadioBoxStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radiobox/RadioBoxStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radiobox/RadioBoxStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radioboxgroup/RadioBoxGroupStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radioboxgroup/RadioBoxGroupStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radioboxgroup/RadioBoxGroupStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/radioboxgroup/RadioBoxGroupStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/rectskeleton/RectSkeletonStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/rectskeleton/RectSkeletonStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/rectskeleton/RectSkeletonStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/rectskeleton/RectSkeletonStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segment/SegmentStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segment/SegmentStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segment/SegmentStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segment/SegmentStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segmentitem/SegmentItemStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segmentitem/SegmentItemStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segmentitem/SegmentItemStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/segmentitem/SegmentItemStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/select/SelectStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/select/SelectStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/select/SelectStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/select/SelectStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/slider/SliderStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/slider/SliderStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/slider/SliderStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/slider/SliderStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/spinner/SpinnerStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/spinner/SpinnerStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/spinner/SpinnerStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/spinner/SpinnerStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/switcher/SwitchStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/switcher/SwitchStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/switcher/SwitchStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/switcher/SwitchStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabbar/TabBarStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabbar/TabBarStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabbar/TabBarStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabbar/TabBarStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt similarity index 86% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt index 3fc3a4862a..a8a270999c 100644 --- a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt +++ b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/tabs/TabsStory.kt @@ -96,6 +96,40 @@ object TabsStory : ComposeBaseStory( } } } + + @Composable + override fun Preview( + style: TabsStyle, + key: ComponentKey, + ) { + var selectedTab by remember { mutableIntStateOf(0) } + Tabs( + modifier = Modifier, + style = style, + selectedTabIndex = selectedTab, + onTabClicked = { + selectedTab = it + }, + ) { + repeat(3) { index -> + val label = "Tab$index" + tab(dropdownAlias = label) { selected -> + TabItem( + isSelected = selected, + label = label, + startContent = { + Icon( + painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), + contentDescription = "", + ) + }, + actionIcon = com.sdds.icons.R.drawable.ic_close_24, + onActionClicked = {}, + ) + } + } + } + } } @Story @@ -145,25 +179,24 @@ object IconTabsStory : ComposeBaseStory( ) { var selectedTab by remember { mutableIntStateOf(0) } Tabs( - modifier = Modifier, style = style, + enabled = true, selectedTabIndex = selectedTab, onTabClicked = { selectedTab = it }, + clip = TabsClip.Scroll, + stretch = false, + indicatorEnabled = false, + dividerEnabled = false, ) { repeat(3) { index -> val label = "Tab$index" tab(dropdownAlias = label) { selected -> - TabItem( + IconTabItem( isSelected = selected, - label = label, - startContent = { - Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), - contentDescription = "", - ) - }, + count = null, + icon = R.drawable.ic_plasma_24, actionIcon = com.sdds.icons.R.drawable.ic_close_24, onActionClicked = {}, ) diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textfield/TextFieldStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textfield/TextFieldStory.kt similarity index 100% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textfield/TextFieldStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textfield/TextFieldStory.kt diff --git a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt similarity index 92% rename from sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt rename to integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt index 3f9dc9667b..7e234cded3 100644 --- a/sdds-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt +++ b/integration-core/uikit-compose-fixtures/src/main/kotlin/com/sdds/compose/uikit/fixtures/stories/textskeleton/TextSkeletonStory.kt @@ -81,8 +81,14 @@ object TextSkeletonStory : ComposeBaseStory Context.findActivity(): T? { + if (this is T) return this + + var ctx = this + while (ctx is ContextWrapper) { + if (ctx is T) return ctx + ctx = ctx.baseContext + } + return null +} diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/accordion/AccordionSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/accordion/AccordionSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/accordion/AccordionSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/accordion/AccordionSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocompelete/AutocompleteSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocompelete/AutocompleteSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocompelete/AutocompleteSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocompelete/AutocompleteSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/autocomplete/AutocompleteSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/AvatarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/AvatarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/AvatarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/AvatarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/avatar/group/AvatarGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/badge/BadgeSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/badge/BadgeSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/badge/BadgeSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/badge/BadgeSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/ButtonSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/ButtonSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/ButtonSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/ButtonSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/IconButtonSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/IconButtonSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/IconButtonSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/IconButtonSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/LinkButtonSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/LinkButtonSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/LinkButtonSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/LinkButtonSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/ButtonGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/ButtonGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/ButtonGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/ButtonGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/IconButtonGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/IconButtonGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/IconButtonGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/button/group/IconButtonGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/card/CardSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/card/CardSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/card/CardSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/card/CardSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/carousel/CarouselSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/carousel/CarouselSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/carousel/CarouselSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/carousel/CarouselSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/cell/CellLayoutSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/cell/CellLayoutSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/cell/CellLayoutSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/cell/CellLayoutSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/CheckBoxSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/checkbox/group/CheckBoxGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/ChipSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/ChipSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/ChipSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/ChipSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/chip/group/ChipGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codefield/CodeFieldSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codefield/CodeFieldSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codefield/CodeFieldSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codefield/CodeFieldSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codeinput/CodeInputSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codeinput/CodeInputSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codeinput/CodeInputSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/codeinput/CodeInputSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/notification/content/NotificationContentSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/content/NotificationContentSamples.kt similarity index 86% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/notification/content/NotificationContentSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/content/NotificationContentSamples.kt index d641575b70..6839de7974 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/notification/content/NotificationContentSamples.kt +++ b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/content/NotificationContentSamples.kt @@ -1,4 +1,4 @@ -package com.sdds.uikit.fixtures.samples.notification.content +package com.sdds.uikit.fixtures.samples.content import android.content.Context import android.view.LayoutInflater diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/counter/CounterSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/counter/CounterSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/counter/CounterSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/counter/CounterSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/divider/DividerSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/divider/DividerSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/divider/DividerSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/divider/DividerSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/draver/DrawerSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/draver/DrawerSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/draver/DrawerSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/draver/DrawerSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/editable/EditableSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/editable/EditableSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/editable/EditableSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/editable/EditableSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/file/FileSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/file/FileSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/file/FileSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/file/FileSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/flow/FlowLayoutSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/flow/FlowLayoutSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/flow/FlowLayoutSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/flow/FlowLayoutSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/indicator/IndicatorSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/indicator/IndicatorSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/indicator/IndicatorSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/indicator/IndicatorSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/ListSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/ListSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/ListSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/ListSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/item/ListItemSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/item/ListItemSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/item/ListItemSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/list/item/ListItemSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/loader/LoaderSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/loader/LoaderSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/loader/LoaderSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/loader/LoaderSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/mask/MaskSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/mask/MaskSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/mask/MaskSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/mask/MaskSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/navigationbar/NavigationBarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/note/NoteSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/note/NoteSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/note/NoteSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/note/NoteSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/overlay/OverlaySamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/overlay/OverlaySamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/overlay/OverlaySamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/overlay/OverlaySamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/paginationdots/PaginationDotsSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/ProgrerssBarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/ProgrerssBarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/ProgrerssBarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/ProgrerssBarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/circular/CircularProgressBarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/circular/CircularProgressBarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/circular/CircularProgressBarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/progressbar/circular/CircularProgressBarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/RadioBoxSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/radiobox/group/RadioBoxGroupSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/rectskeleton/RectSkeletonSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/scrollbar/ScrollBarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/SegmentSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/SegmentSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/SegmentSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/SegmentSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/item/SegmentItemSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/item/SegmentItemSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/item/SegmentItemSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/segment/item/SegmentItemSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/SelectSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/SelectSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/SelectSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/SelectSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/item/SelectItemSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/item/SelectItemSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/item/SelectItemSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/select/item/SelectItemSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/slider/SliderSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/slider/SliderSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/slider/SliderSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/slider/SliderSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/spinner/SpinnerSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/spinner/SpinnerSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/spinner/SpinnerSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/spinner/SpinnerSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/switcher/SwitchSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/switcher/SwitchSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/switcher/SwitchSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/switcher/SwitchSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/tabs/TabsSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/tabs/TabsSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/tabs/TabsSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/tabs/TabsSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textarea/TextAreaSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textarea/TextAreaSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textarea/TextAreaSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textarea/TextAreaSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textfield/TextFieldSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textfield/TextFieldSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textfield/TextFieldSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textfield/TextFieldSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/textskeleton/TextSkeletonSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/toolbar/ToolBarSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/toolbar/ToolBarSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/toolbar/ToolBarSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/toolbar/ToolBarSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/wheel/WheelSamples.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/wheel/WheelSamples.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/wheel/WheelSamples.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/wheel/WheelSamples.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/Utils.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/Utils.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/Utils.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/Utils.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/accordion/AccordionUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/autocomplete/AutocompleteUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/avatar/AvatarUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/BadgeUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/IconBadgeStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/IconBadgeStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/IconBadgeStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/badge/IconBadgeStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/BasicButtonStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/BasicButtonStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/BasicButtonStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/BasicButtonStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonGroupStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonGroupStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonGroupStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonGroupStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/ButtonUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/IconButtonStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/IconButtonStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/IconButtonStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/IconButtonStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/LinkButtonStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/LinkButtonStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/LinkButtonStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/button/LinkButtonStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/card/CardUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/carousel/CarouselUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/cell/CellUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxGroupStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxGroupStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxGroupStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxGroupStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/checkbox/CheckBoxUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipGroupStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipGroupStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipGroupStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipGroupStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/chip/ChipUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codefield/CodeFieldUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/codeinput/CodeInputUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/counter/CounterUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/divider/DividerUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/drawer/DrawerUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/dropdownmenu/DropdownMenuUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/editable/EditableUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/file/FileUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/flow/FlowUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/image/ImageUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/indicator/IndicatorUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/list/ListUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/loader/LoaderUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/mask/MaskUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/modal/ModalUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationbar/NavigationBarUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/navigationdrawer/NavigationDrawerUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/note/NoteUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notification/NotificationUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/notificationcontent/NotificationContentUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/overlay/OverlayUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/paginationdots/PaginationDotsUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/popover/PopoverUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressBarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressBarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressBarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressBarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/CircularProgressUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressBarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressBarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressBarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressBarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/progress/ProgressUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxGroupStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxGroupStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxGroupStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxGroupStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/radiobox/RadioBoxUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/scrollbar/ScrollBarUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentItemStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentItemStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentItemStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentItemStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/segment/SegmentUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/select/SelectUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/RectSkeletonUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/SkeletonFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/SkeletonFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/SkeletonFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/SkeletonFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/skeleton/TextSkeletonUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/slider/SliderUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/spinner/SpinnerUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/switcher/SwitchUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/IconTabsStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/IconTabsStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/IconTabsStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/IconTabsStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tabs/TabsUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextAreaStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextAreaStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextAreaStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextAreaStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/textfield/TextFieldUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toast/ToastUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/toolbar/ToolBarUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/tooltip/TooltipUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelFactory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelFactory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelFactory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelFactory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelStory.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelStory.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelStory.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelStory.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelUiState.kt b/integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelUiState.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelUiState.kt rename to integration-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/stories/wheel/WheelUiState.kt diff --git a/sdds-core/uikit-fixtures/src/main/res/color/bg_switch_sample.xml b/integration-core/uikit-fixtures/src/main/res/color/bg_switch_sample.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/color/bg_switch_sample.xml rename to integration-core/uikit-fixtures/src/main/res/color/bg_switch_sample.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/drawable/il_avatar_for_test.xml b/integration-core/uikit-fixtures/src/main/res/drawable/il_avatar_for_test.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/drawable/il_avatar_for_test.xml rename to integration-core/uikit-fixtures/src/main/res/drawable/il_avatar_for_test.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_autocomplete.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_autocomplete.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_autocomplete.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_autocomplete.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_card.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_card.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_card.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_card.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_carousel_item.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_carousel_item.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_carousel_item.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_carousel_item.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_cell.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_cell.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_cell.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_cell.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_file.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_file.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_file.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_file.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_flow.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_flow.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_flow.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_flow.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/layout_component_select.xml b/integration-core/uikit-fixtures/src/main/res/layout/layout_component_select.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/layout_component_select.xml rename to integration-core/uikit-fixtures/src/main/res/layout/layout_component_select.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_accordion.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_accordion.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_accordion.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_accordion.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_autocomplete.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_autocomplete.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_autocomplete.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_autocomplete.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_avatar.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_avatar.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_avatar.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_avatar.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_avatar_group.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_avatar_group.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_avatar_group.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_avatar_group.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_badge.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_badge.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_badge.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_badge.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_button.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_button.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_button.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_button.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_button_group.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_button_group.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_button_group.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_button_group.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_card.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_card.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_card.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_card.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_carousel.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_carousel.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_carousel.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_carousel.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_cell_layout.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_cell_layout.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_cell_layout.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_cell_layout.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_checkbox.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_checkbox.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_checkbox.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_checkbox.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_checkbox_group.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_checkbox_group.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_checkbox_group.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_checkbox_group.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_chip.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_chip.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_chip.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_chip.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_chip_group.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_chip_group.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_chip_group.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_chip_group.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_circullar_progressbar.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_circullar_progressbar.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_circullar_progressbar.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_circullar_progressbar.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_codefield.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_codefield.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_codefield.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_codefield.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_codeinput.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_codeinput.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_codeinput.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_codeinput.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_counter.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_counter.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_counter.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_counter.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_divider.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_divider.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_divider.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_divider.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_drawer.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_drawer.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_drawer.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_drawer.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_drawer_layout.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_drawer_layout.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_drawer_layout.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_drawer_layout.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_editable.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_editable.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_editable.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_editable.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_file.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_file.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_file.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_file.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_flow_layout.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_flow_layout.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_flow_layout.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_flow_layout.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_indicator.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_indicator.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_indicator.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_indicator.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_list.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_list.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_list.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_list.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_list_item.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_list_item.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_list_item.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_list_item.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_loader.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_loader.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_loader.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_loader.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_mask.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_mask.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_mask.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_mask.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_navigationbar.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_navigationbar.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_navigationbar.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_navigationbar.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_note.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_note.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_note.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_note.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_notification_content.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_notification_content.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_notification_content.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_notification_content.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_overlay.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_overlay.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_overlay.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_overlay.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_pagination_dots.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_pagination_dots.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_pagination_dots.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_pagination_dots.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_progress.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_progress.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_progress.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_progress.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_radiobox.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_radiobox.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_radiobox.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_radiobox.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_radiobox_group.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_radiobox_group.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_radiobox_group.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_radiobox_group.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_rect_skeleton.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_rect_skeleton.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_rect_skeleton.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_rect_skeleton.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_scrollbar.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_scrollbar.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_scrollbar.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_scrollbar.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_segment.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_segment.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_segment.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_segment.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_segment_item.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_segment_item.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_segment_item.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_segment_item.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_select.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_select.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_select.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_select.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_select_item.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_select_item.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_select_item.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_select_item.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_slider.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_slider.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_slider.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_slider.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_spinner.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_spinner.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_spinner.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_spinner.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_switch.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_switch.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_switch.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_switch.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_tabs.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_tabs.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_tabs.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_tabs.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_text_skeleton.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_text_skeleton.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_text_skeleton.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_text_skeleton.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_textfield.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_textfield.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_textfield.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_textfield.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_toolbar.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_toolbar.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_toolbar.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_toolbar.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/layout/samples_wheel.xml b/integration-core/uikit-fixtures/src/main/res/layout/samples_wheel.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/layout/samples_wheel.xml rename to integration-core/uikit-fixtures/src/main/res/layout/samples_wheel.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values-night/test_theme.xml b/integration-core/uikit-fixtures/src/main/res/values-night/test_theme.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values-night/test_theme.xml rename to integration-core/uikit-fixtures/src/main/res/values-night/test_theme.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values-night/theme.xml b/integration-core/uikit-fixtures/src/main/res/values-night/theme.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values-night/theme.xml rename to integration-core/uikit-fixtures/src/main/res/values-night/theme.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/components_id.xml b/integration-core/uikit-fixtures/src/main/res/values/components_id.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/components_id.xml rename to integration-core/uikit-fixtures/src/main/res/values/components_id.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/sample_button_style.xml b/integration-core/uikit-fixtures/src/main/res/values/sample_button_style.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/sample_button_style.xml rename to integration-core/uikit-fixtures/src/main/res/values/sample_button_style.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/sample_editable_style.xml b/integration-core/uikit-fixtures/src/main/res/values/sample_editable_style.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/sample_editable_style.xml rename to integration-core/uikit-fixtures/src/main/res/values/sample_editable_style.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/sample_navigationbar_style.xml b/integration-core/uikit-fixtures/src/main/res/values/sample_navigationbar_style.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/sample_navigationbar_style.xml rename to integration-core/uikit-fixtures/src/main/res/values/sample_navigationbar_style.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/test_attrs.xml b/integration-core/uikit-fixtures/src/main/res/values/test_attrs.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/test_attrs.xml rename to integration-core/uikit-fixtures/src/main/res/values/test_attrs.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/test_shapes.xml b/integration-core/uikit-fixtures/src/main/res/values/test_shapes.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/test_shapes.xml rename to integration-core/uikit-fixtures/src/main/res/values/test_shapes.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/test_string.xml b/integration-core/uikit-fixtures/src/main/res/values/test_string.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/test_string.xml rename to integration-core/uikit-fixtures/src/main/res/values/test_string.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/test_text_appearance.xml b/integration-core/uikit-fixtures/src/main/res/values/test_text_appearance.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/test_text_appearance.xml rename to integration-core/uikit-fixtures/src/main/res/values/test_text_appearance.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/test_theme.xml b/integration-core/uikit-fixtures/src/main/res/values/test_theme.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/test_theme.xml rename to integration-core/uikit-fixtures/src/main/res/values/test_theme.xml diff --git a/sdds-core/uikit-fixtures/src/main/res/values/theme.xml b/integration-core/uikit-fixtures/src/main/res/values/theme.xml similarity index 100% rename from sdds-core/uikit-fixtures/src/main/res/values/theme.xml rename to integration-core/uikit-fixtures/src/main/res/values/theme.xml diff --git a/integration-core/uikit-testcases/build.gradle.kts b/integration-core/uikit-testcases/build.gradle.kts new file mode 100644 index 0000000000..6dab5f1d51 --- /dev/null +++ b/integration-core/uikit-testcases/build.gradle.kts @@ -0,0 +1,41 @@ +plugins { + id("convention.android-lib") + id("kotlin-parcelize") +} + +group = "integration-core" + +android { + namespace = "com.sdds.uikit.fixtures.testcases" + buildFeatures { + viewBinding = true + } + testOptions { + unitTests { + isIncludeAndroidResources = true + } + } +} + +dependencies { + implementation(project(":sandbox-core")) + implementation(project(":sandbox-compose")) + implementation(project(":sandbox-view")) + implementation(project(":uikit-fixtures")) + implementation("sdds-core:docs") + implementation("sdds-core:docs-views") + implementation("sdds-core:uikit") + implementation("sdds-core:icons") + + implementation(libs.base.glide) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.recyclerView) + implementation(libs.base.androidX.core) + implementation(libs.base.androidX.constraintLayout) + implementation(libs.base.android.material) + implementation(libs.base.test.unit.jUnit) + implementation(libs.test.roborazzi) + implementation(libs.test.roborazzi.rule) + implementation(libs.base.test.unit.robolectric) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt similarity index 96% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt index 31b8ee0b18..a724524f2c 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/ComponentScope.kt @@ -8,7 +8,6 @@ import android.view.ViewGroup.MarginLayoutParams import android.widget.FrameLayout.LayoutParams import android.widget.HorizontalScrollView import android.widget.ScrollView -import androidx.annotation.StyleRes import androidx.fragment.app.FragmentActivity import androidx.test.espresso.Espresso.onView import androidx.test.espresso.matcher.ViewMatchers @@ -111,12 +110,6 @@ fun component( } } -/** - * Оборачивает [Context] в [ContextThemeWrapper] с overlay стилем [style] - */ -fun Context.styleWrapper(@StyleRes style: Int? = null): Context = - style?.let { ContextThemeWrapper(this, it) } ?: this - private fun View.horizontalScrollable(): HorizontalScrollView { return HorizontalScrollView(context).apply { isHorizontalScrollBarEnabled = false diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/Constant.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/Constant.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/Constant.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/Constant.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/RoborazziConfig.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/RoborazziConfig.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/RoborazziConfig.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/RoborazziConfig.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt similarity index 85% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt index e41bfc60e2..ba79585754 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/samples/RoborazziConfigDocsXml.kt @@ -13,11 +13,15 @@ import java.io.File /** * Базовая конфигурация Roborazzi для тестов + * @property viewSample информация о примере */ open class RoborazziConfigDocsXml( val viewSample: ViewSampleInfo, ) { + /** + * Устанавливает тему для скриншотов + */ @Before fun setUpTheme() { TextAppearanceConfig.shouldLoadFontSynchronously = true @@ -45,6 +49,11 @@ open class RoborazziConfigDocsXml( ), ) + /** + * Информация о примере + * @property id идентификатор примера + * @property sample обертка над примеров в документацию + */ @Suppress("UndocumentedPublicClass") data class ViewSampleInfo(val id: String, val sample: ViewSample) diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AccordionTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AccordionTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AccordionTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AccordionTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AutocompleteTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AutocompleteTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AutocompleteTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AutocompleteTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AvatarTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AvatarTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AvatarTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/AvatarTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/BadgeTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/BadgeTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/BadgeTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/BadgeTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ButtonTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ButtonTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ButtonTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ButtonTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CardTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CardTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CardTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CardTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CarouselTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CarouselTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CarouselTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CarouselTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CellTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CellTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CellTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CellTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CheckBoxTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CheckBoxTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CheckBoxTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CheckBoxTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ChipTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ChipTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ChipTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ChipTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CircularProgressTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CircularProgressTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CircularProgressTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CircularProgressTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeFieldTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeFieldTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeFieldTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeFieldTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeInputTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeInputTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeInputTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CodeInputTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CounterTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CounterTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CounterTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/CounterTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DividerTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DividerTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DividerTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DividerTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DrawerTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DrawerTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DrawerTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DrawerTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DropDownMenuTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DropDownMenuTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DropDownMenuTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/DropDownMenuTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/EditableTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/EditableTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/EditableTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/EditableTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FileTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FileTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FileTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FileTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt similarity index 99% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt index 2581b86847..c6da323ca9 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/FlowTestCases.kt @@ -8,7 +8,6 @@ import com.sdds.uikit.fixtures.stories.flow.FlowArrangement import com.sdds.uikit.fixtures.stories.flow.FlowOrientation import com.sdds.uikit.fixtures.stories.flow.FlowUiState import com.sdds.uikit.fixtures.stories.flow.flowLayout -import java.util.concurrent.Flow /** * Тест-кейсы для [Flow] diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ImageTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ImageTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ImageTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ImageTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/IndicatorTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/IndicatorTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/IndicatorTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/IndicatorTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ListTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ListTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ListTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ListTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/LoaderTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/LoaderTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/LoaderTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/LoaderTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/MaskTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/MaskTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/MaskTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/MaskTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ModalTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ModalTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ModalTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ModalTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationBarTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationBarTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationBarTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationBarTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationDrawerTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationDrawerTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationDrawerTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NavigationDrawerTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NoteTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NoteTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NoteTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NoteTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationContentTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationContentTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationContentTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationContentTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/NotificationTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/OverlayTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/OverlayTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/OverlayTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/OverlayTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PaginationDotsTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PaginationDotsTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PaginationDotsTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PaginationDotsTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PopoverTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PopoverTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PopoverTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/PopoverTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ProgressBarTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ProgressBarTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ProgressBarTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ProgressBarTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RadioBoxTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RadioBoxTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RadioBoxTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RadioBoxTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RectSkeletonTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RectSkeletonTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RectSkeletonTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/RectSkeletonTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt similarity index 98% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt index 6b0f66528c..201f85a325 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ScrollBarTestCases.kt @@ -1,7 +1,6 @@ package com.sdds.uikit.fixtures.testcases import android.view.ViewGroup -import com.sdds.uikit.ScrollBar import com.sdds.uikit.fixtures.ComponentScope import com.sdds.uikit.fixtures.RoborazziConfig import com.sdds.uikit.fixtures.stories.scrollbar.ScrollBarUiState diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SegmentTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SegmentTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SegmentTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SegmentTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt similarity index 98% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt index 048d28e5d2..cad139994d 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SelectTestCases.kt @@ -1,6 +1,6 @@ package com.sdds.uikit.fixtures.testcases -import android.view.ViewGroup.LayoutParams.WRAP_CONTENT +import android.view.ViewGroup import android.widget.FrameLayout import com.sdds.uikit.Select import com.sdds.uikit.fixtures.ComponentScope @@ -78,8 +78,8 @@ abstract class SelectTestCases(mode: String) : RoborazziConfig(mode) { state, ).apply { layoutParams = FrameLayout.LayoutParams( - WRAP_CONTENT, - WRAP_CONTENT, + ViewGroup.LayoutParams.WRAP_CONTENT, + ViewGroup.LayoutParams.WRAP_CONTENT, ).apply { gravity = state.triggerAlignment.toGravity() } diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SliderTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SliderTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SliderTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SliderTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SpinnerTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SpinnerTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SpinnerTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SpinnerTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SwitchTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SwitchTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SwitchTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/SwitchTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TabsTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TabsTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TabsTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TabsTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextAreaTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextAreaTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextAreaTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextAreaTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextFieldTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextFieldTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextFieldTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextFieldTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt similarity index 98% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt index d34c66658e..05cf092278 100644 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt +++ b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TextSkeletonTestCases.kt @@ -1,7 +1,6 @@ package com.sdds.uikit.fixtures.testcases import android.view.View -import com.sdds.uikit.TextSkeleton import com.sdds.uikit.fixtures.ComponentScope import com.sdds.uikit.fixtures.RoborazziConfig import com.sdds.uikit.fixtures.stories.skeleton.TextSkeletonUiState diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToastTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToastTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToastTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToastTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToolBarTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToolBarTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToolBarTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/ToolBarTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TooltipTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TooltipTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TooltipTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/TooltipTestCases.kt diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/WheelTestCases.kt b/integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/WheelTestCases.kt similarity index 100% rename from sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/testcases/WheelTestCases.kt rename to integration-core/uikit-testcases/src/main/kotlin/com/sdds/uikit/fixtures/testcases/WheelTestCases.kt diff --git a/playground/.detekt/config.yml b/playground/.detekt/config.yml deleted file mode 100644 index 4adec6b378..0000000000 --- a/playground/.detekt/config.yml +++ /dev/null @@ -1,687 +0,0 @@ -build: - maxIssues: 0 - excludeCorrectable: false - weights: - # complexity: 2 - # LongParameterList: 1 - # style: 1 - # comments: 1 - -config: - validation: true - warningsAsErrors: false - # when writing own rules with new properties, exclude the property path e.g.: 'my_rule_set,.*>.*>[my_property]' - excludes: '' - -processors: - active: true - exclude: - - 'DetektProgressListener' - # - 'FunctionCountProcessor' - # - 'PropertyCountProcessor' - # - 'ClassCountProcessor' - # - 'PackageCountProcessor' - # - 'KtFileCountProcessor' - -console-reports: - active: true - exclude: - - 'ProjectStatisticsReport' - - 'ComplexityReport' - - 'NotificationReport' - # - 'FindingsReport' - - 'FileBasedFindingsReport' - -output-reports: - active: true - exclude: - # - 'TxtOutputReport' - # - 'XmlOutputReport' - # - 'HtmlOutputReport' - -comments: - active: true - AbsentOrWrongFileLicense: - active: false - licenseTemplateFile: 'license.template' - CommentOverPrivateFunction: - active: false - CommentOverPrivateProperty: - active: false - EndOfSentenceFormat: - active: false - endOfSentenceFormat: '([.?!][ \t\n\r\f<])|([.?!:]$)' - UndocumentedPublicClass: - active: true - searchInNestedClass: true - searchInInnerClass: true - searchInInnerObject: true - searchInInnerInterface: true - UndocumentedPublicFunction: - active: true - UndocumentedPublicProperty: - active: true - -complexity: - active: true - ComplexCondition: - active: true - threshold: 4 - ComplexInterface: - active: false - threshold: 10 - includeStaticDeclarations: false - includePrivateDeclarations: false - CyclomaticComplexMethod: - active: true - threshold: 15 - ignoreSingleWhenExpression: false - ignoreSimpleWhenEntries: false - ignoreNestingFunctions: false - nestingFunctions: [run, let, apply, with, also, use, forEach, isNotNull, ifNull] - LabeledExpression: - active: false - ignoredLabels: [] - LargeClass: - active: false - threshold: 600 - LongMethod: - active: true - threshold: 60 - LongParameterList: - active: true - functionThreshold: 16 - constructorThreshold: 20 - ignoreDefaultParameters: false - ignoreDataClasses: true - ignoreAnnotated: [Composable] - excludes: [] - MethodOverloading: - active: false - threshold: 6 - NamedArguments: - active: false - threshold: 3 - NestedBlockDepth: - active: true - threshold: 4 - ReplaceSafeCallChainWithRun: - active: false - StringLiteralDuplication: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**'] - threshold: 3 - ignoreAnnotation: true - excludeStringsWithLessThan5Characters: true - ignoreStringsRegex: '$^' - TooManyFunctions: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**'] - thresholdInFiles: 11 - thresholdInClasses: 11 - thresholdInInterfaces: 11 - thresholdInObjects: 11 - thresholdInEnums: 11 - ignoreDeprecated: false - ignorePrivate: false - ignoreOverridden: false - -coroutines: - active: false - GlobalCoroutineUsage: - active: false - RedundantSuspendModifier: - active: false - SuspendFunWithFlowReturnType: - active: false - -custom-rules: - active: true - CompanionObjectInEnd: - active: true - excludes: ['**/buildSrc/**'] - SuppressLintUsage: - active: true - TodoPattern: - active: true - -empty-blocks: - active: true - EmptyCatchBlock: - active: true - allowedExceptionNameRegex: '_|(ignore|expected).*' - EmptyClassBlock: - active: true - EmptyDefaultConstructor: - active: true - EmptyDoWhileBlock: - active: true - EmptyElseBlock: - active: true - EmptyFinallyBlock: - active: true - EmptyForBlock: - active: true - EmptyFunctionBlock: - active: true - ignoreOverridden: false - EmptyIfBlock: - active: true - EmptyInitBlock: - active: true - EmptyKtFile: - active: true - EmptySecondaryConstructor: - active: true - EmptyTryBlock: - active: true - EmptyWhenBlock: - active: true - EmptyWhileBlock: - active: true - -exceptions: - active: true - ExceptionRaisedInUnexpectedLocation: - active: false - methodNames: [toString, hashCode, equals, finalize] - InstanceOfCheckForException: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - NotImplementedDeclaration: - active: false - PrintStackTrace: - active: false - RethrowCaughtException: - active: false - ReturnFromFinally: - active: false - ignoreLabeled: false - SwallowedException: - active: false - ignoredExceptionTypes: - - InterruptedException - - NumberFormatException - - ParseException - - MalformedURLException - allowedExceptionNameRegex: '_|(ignore|expected).*' - ThrowingExceptionFromFinally: - active: false - ThrowingExceptionInMain: - active: false - ThrowingExceptionsWithoutMessageOrCause: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - exceptions: - - IllegalArgumentException - - IllegalStateException - - IOException - ThrowingNewInstanceOfSameException: - active: false - TooGenericExceptionCaught: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - exceptionNames: - - ArrayIndexOutOfBoundsException - - Error - - Exception - - IllegalMonitorStateException - - NullPointerException - - IndexOutOfBoundsException - - RuntimeException - - Throwable - allowedExceptionNameRegex: '_|(ignore|expected).*' - TooGenericExceptionThrown: - active: true - exceptionNames: - - Error - - Exception - - Throwable - - RuntimeException - -formatting: - active: true - AnnotationOnSeparateLine: - active: false - autoCorrect: true - AnnotationSpacing: - active: false - autoCorrect: true - ArgumentListWrapping: - active: false - autoCorrect: true - ChainWrapping: - active: true - autoCorrect: true - CommentSpacing: - active: true - autoCorrect: true - EnumEntryNameCase: - active: false - autoCorrect: true - Filename: - active: false - FinalNewline: - active: false - autoCorrect: true - insertFinalNewLine: true - ImportOrdering: - active: false - autoCorrect: true - layout: 'idea' - Indentation: - active: false - autoCorrect: true - indentSize: 4 - MaximumLineLength: - active: false - maxLineLength: 120 - ModifierOrdering: - active: true - autoCorrect: true - MultiLineIfElse: - active: true - autoCorrect: true - NoBlankLineBeforeRbrace: - active: true - autoCorrect: true - NoConsecutiveBlankLines: - active: true - autoCorrect: true - NoEmptyClassBody: - active: true - autoCorrect: true - NoEmptyFirstLineInMethodBlock: - active: false - autoCorrect: true - NoLineBreakAfterElse: - active: true - autoCorrect: true - NoLineBreakBeforeAssignment: - active: true - autoCorrect: true - NoMultipleSpaces: - active: true - autoCorrect: true - NoSemicolons: - active: true - autoCorrect: true - NoTrailingSpaces: - active: true - autoCorrect: true - NoUnitReturn: - active: true - autoCorrect: true - NoUnusedImports: - active: true - autoCorrect: true - NoWildcardImports: - active: true - PackageName: - active: true - autoCorrect: true - ParameterListWrapping: - active: true - autoCorrect: true - SpacingAroundColon: - active: false - autoCorrect: true - SpacingAroundComma: - active: false - autoCorrect: true - SpacingAroundCurly: - active: false - autoCorrect: true - SpacingAroundDot: - active: false - autoCorrect: true - SpacingAroundDoubleColon: - active: false - autoCorrect: true - SpacingAroundKeyword: - active: false - autoCorrect: true - SpacingAroundOperators: - active: false - autoCorrect: true - SpacingAroundParens: - active: false - autoCorrect: true - SpacingAroundRangeOperator: - active: false - autoCorrect: true - SpacingBetweenDeclarationsWithAnnotations: - active: false - autoCorrect: true - SpacingBetweenDeclarationsWithComments: - active: false - autoCorrect: true - StringTemplate: - active: true - autoCorrect: true - TrailingCommaOnCallSite: - active: true - autoCorrect: true - useTrailingCommaOnCallSite: true - TrailingCommaOnDeclarationSite: - active: true - autoCorrect: true - useTrailingCommaOnDeclarationSite: true - -naming: - active: true - ClassNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - classPattern: '[A-Z][a-zA-Z0-9]*' - ConstructorParameterNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - parameterPattern: '[a-z][A-Za-z0-9]*' - privateParameterPattern: '[a-z][A-Za-z0-9]*' - excludeClassPattern: '$^' - ignoreOverridden: true - EnumNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - enumEntryPattern: '[A-Z][_a-zA-Z0-9]*' - ForbiddenClassName: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - forbiddenName: [] - FunctionMaxLength: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - maximumFunctionNameLength: 30 - FunctionMinLength: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - minimumFunctionNameLength: 3 - FunctionNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - functionPattern: '([a-z][a-zA-Z0-9]*)|(`.*`)' - excludeClassPattern: '$^' - ignoreOverridden: true - ignoreAnnotated: ['Composable'] - FunctionParameterNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - parameterPattern: '[a-z][A-Za-z0-9]*' - excludeClassPattern: '$^' - ignoreOverridden: true - InvalidPackageDeclaration: - active: false - rootPackage: '' - MatchingDeclarationName: - active: true - mustBeFirst: true - MemberNameEqualsClassName: - active: true - ignoreOverridden: true - NonBooleanPropertyPrefixedWithIs: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - ObjectPropertyNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - constantPattern: '[A-Za-z][_A-Za-z0-9]*' - propertyPattern: '[A-Za-z][_A-Za-z0-9]*' - privatePropertyPattern: '(_)?[A-Za-z][_A-Za-z0-9]*' - PackageNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - packagePattern: '[a-z]+(\.[a-z][A-Za-z0-9]*)*' - TopLevelPropertyNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - constantPattern: '[A-Z][_A-Z0-9]*' - propertyPattern: '[A-Za-z][_A-Za-z0-9]*' - privatePropertyPattern: '_?[A-Za-z][_A-Za-z0-9]*' - VariableMaxLength: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - maximumVariableNameLength: 64 - VariableMinLength: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - minimumVariableNameLength: 1 - VariableNaming: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - variablePattern: '[a-z][A-Za-z0-9]*' - privateVariablePattern: '(_)?[a-z][A-Za-z0-9]*' - excludeClassPattern: '$^' - ignoreOverridden: true - -performance: - active: true - ArrayPrimitive: - active: true - ForEachOnRange: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - SpreadOperator: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - UnnecessaryTemporaryInstantiation: - active: true - -potential-bugs: - active: true - Deprecation: - active: false - EqualsAlwaysReturnsTrueOrFalse: - active: true - EqualsWithHashCodeExist: - active: true - ExplicitGarbageCollectionCall: - active: true - HasPlatformType: - active: false - IgnoredReturnValue: - active: false - restrictToConfig: true - returnValueAnnotations: ['*.CheckReturnValue', '*.CheckResult'] - ImplicitDefaultLocale: - active: false - ImplicitUnitReturnType: - active: false - allowExplicitReturnType: true - InvalidRange: - active: true - IteratorHasNextCallsNextMethod: - active: true - IteratorNotThrowingNoSuchElementException: - active: true - LateinitUsage: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - ignoreOnClassesPattern: '' - MapGetWithNotNullAssertionOperator: - active: false - NullableToStringCall: - active: false - UnconditionalJumpStatementInLoop: - active: false - UnnecessaryNotNullOperator: - active: false - UnnecessarySafeCall: - active: false - UnreachableCode: - active: true - UnsafeCallOnNullableType: - active: true - UnsafeCast: - active: false - UselessPostfixExpression: - active: false - WrongEqualsTypeParameter: - active: true - -style: - active: true - ClassOrdering: - active: false - CollapsibleIfStatements: - active: false - DataClassContainsFunctions: - active: false - conversionFunctionPrefix: ['to'] - DataClassShouldBeImmutable: - active: false - EqualsNullCall: - active: true - EqualsOnSignatureLine: - active: false - ExplicitCollectionElementAccessMethod: - active: false - ExplicitItLambdaParameter: - active: false - ExpressionBodySyntax: - active: false - includeLineWrapping: false - ForbiddenComment: - active: true - values: ['FIXME:', 'STOPSHIP:'] - allowedPatterns: '' - ForbiddenImport: - active: false - imports: [] - forbiddenPatterns: '' - ForbiddenMethodCall: - active: false - methods: ['kotlin.io.println', 'kotlin.io.print'] - ForbiddenVoid: - active: false - ignoreOverridden: false - ignoreUsageInGenerics: false - FunctionOnlyReturningConstant: - active: true - ignoreOverridableFunction: true - excludedFunctions: ['describeContents'] - ignoreAnnotated: ['dagger.Provides'] - LoopWithTooManyJumpStatements: - active: true - maxJumpCount: 1 - MagicNumber: - active: false - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - ignoreNumbers: ['-1', '0', '1', '2'] - ignoreHashCodeFunction: true - ignorePropertyDeclaration: false - ignoreLocalVariableDeclaration: false - ignoreConstantDeclaration: true - ignoreCompanionObjectPropertyDeclaration: true - ignoreAnnotation: false - ignoreNamedArgument: true - ignoreEnums: false - ignoreRanges: false - MandatoryBracesIfStatements: - active: true - MandatoryBracesLoops: - active: true - MaxLineLength: - active: false - maxLineLength: 120 - excludePackageStatements: true - excludeImportStatements: true - excludeCommentStatements: true - MayBeConst: - active: true - ModifierOrder: - active: true - NestedClassesVisibility: - active: false - NewLineAtEndOfFile: - active: false - NoTabs: - active: false - OptionalAbstractKeyword: - active: true - OptionalUnit: - active: false - OptionalWhenBraces: - active: false - PreferToOverPairSyntax: - active: false - ProtectedMemberInFinalClass: - active: true - RedundantExplicitType: - active: false - RedundantHigherOrderMapUsage: - active: false - RedundantVisibilityModifierRule: - active: false - ReturnCount: - active: true - max: 3 - excludedFunctions: ['equals'] - excludeLabeled: false - excludeReturnFromLambda: true - excludeGuardClauses: false - SafeCast: - active: true - SerialVersionUIDInSerializableClass: - active: false - SpacingBetweenPackageAndImports: - active: false - ThrowsCount: - active: true - max: 2 - TrailingWhitespace: - active: false - UnderscoresInNumericLiterals: - active: false - acceptableLength: 5 - UnnecessaryAbstractClass: - active: true - ignoreAnnotated: ['dagger.Module'] - UnnecessaryAnnotationUseSiteTarget: - active: false - UnnecessaryApply: - active: false - UnnecessaryInheritance: - active: true - UnnecessaryLet: - active: false - UnnecessaryParentheses: - active: false - UntilInsteadOfRangeTo: - active: false - UnusedImports: - active: false - UnusedPrivateClass: - active: true - UnusedPrivateMember: - active: false - allowedNames: '(_|ignored|expected|serialVersionUID)' - UseArrayLiteralsInAnnotations: - active: false - UseCheckNotNull: - active: false - UseCheckOrError: - active: false - UseDataClass: - active: false - allowVars: false - UseEmptyCounterpart: - active: false - UseIfEmptyOrIfBlank: - active: false - UseIfInsteadOfWhen: - active: false - UseRequire: - active: false - UseRequireNotNull: - active: false - UselessCallOnNotNull: - active: true - UtilityClassWithPublicConstructor: - active: true - VarCouldBeVal: - active: false - WildcardImport: - active: true - excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - excludeImports: ['java.util.*', 'kotlinx.android.synthetic.*'] diff --git a/playground/sandbox-compose/README.MD b/playground/sandbox-compose/README.MD deleted file mode 100644 index 94ee4fb7df..0000000000 --- a/playground/sandbox-compose/README.MD +++ /dev/null @@ -1,11 +0,0 @@ -### SDDS Sandbox Android App - -Android приложение-песочница для демонстрации компонентов и токенов на Compose. - -## Установка при помощи ADB -Для установки приложения на устройство через ADB, нужно: -- установить SdkManager и ADB [см. тут] (https://developer.android.com/tools) -- запустить в терминале -```bash -./gradlew :sandbox-compose:installDebug -``` diff --git a/playground/sandbox-compose/build.gradle.kts b/playground/sandbox-compose/build.gradle.kts deleted file mode 100644 index 7fb79830fb..0000000000 --- a/playground/sandbox-compose/build.gradle.kts +++ /dev/null @@ -1,207 +0,0 @@ -import com.android.build.gradle.tasks.MapSourceSetPathsTask -import com.android.build.gradle.tasks.MergeResources -import kotlinx.serialization.json.buildJsonObject -import kotlinx.serialization.json.put -import ru.sberdevices.starplugin.stardimens.GenerateStarDimensTask -import ru.sberdevices.starplugin.stardimens.StarDimensGeneratorPluginExtension -import utils.versionInfo - -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-app") - id("convention.auto-bump") - id("convention.compose") - id("kotlin-parcelize") - alias(libs.plugins.roborazzi) - alias(libs.plugins.kotlin.android) - alias(libs.plugins.kotlin.serialization) - id("star-dimens-generator") -} - -val APP_DISTRIBUTION_NAME = "sandbox-compose-app-release" -val STAR_APP_DISTRIBUTION_NAME = "sandbox-compose-starApp-release" - -android { - namespace = "com.sdds.playground.sandbox" - - buildFeatures { - viewBinding = true - buildConfig = true - } - - testOptions { - unitTests.isIncludeAndroidResources = true - } - tasks.withType { - maxHeapSize = "4096m" - } - kotlinOptions { - //comment following lines (freeCompilerArgs) to disable compose-metrics - freeCompilerArgs += listOf( - "-P", - "plugin:androidx.compose.compiler.plugins.kotlin:metricsDestination=" + project.buildDir.absolutePath + "/compose_metrics" - ) - freeCompilerArgs += listOf( - "-P", - "plugin:androidx.compose.compiler.plugins.kotlin:reportsDestination=" + project.buildDir.absolutePath + "/compose_metrics" - ) - } - - flavorDimensions += "target" - productFlavors { - create("app") { - applicationId = "com.sdds.playground.sandbox.compose" - buildConfigField("String", "DIST_NAME", "\"$APP_DISTRIBUTION_NAME\"") - } - create("starApp") { - applicationId = System.getenv("STAR_APP_ID") ?: "com.sdds.playground.sandbox.stards" - buildConfigField("String", "DIST_NAME", "\"$STAR_APP_DISTRIBUTION_NAME\"") - } - } - - signingConfigs { - create("appRelease") { - if (System.getenv("KEY_STORE_FILE") != null) { - storeFile = file(System.getenv("KEY_STORE_FILE")) - storePassword = System.getenv("RELEASE_STORE_PASSWORD") - keyAlias = System.getenv("RELEASE_KEY_ALIAS") - keyPassword = System.getenv("RELEASE_KEY_PASSWORD") - } - } - - create("starAppRelease") { - if (System.getenv("KEY_STORE_FILE") != null) { - storeFile = file(System.getenv("KEY_STORE_FILE")) - storePassword = System.getenv("RELEASE_STORE_PASSWORD") - keyAlias = System.getenv("STAR_RELEASE_KEY_ALIAS") - keyPassword = System.getenv("STAR_RELEASE_KEY_PASSWORD") - } - } - } - - buildTypes { - release { - if (System.getenv("KEY_STORE_FILE") != null) { - productFlavors.getByName("app").signingConfig = signingConfigs.getByName("appRelease") - } - if (System.getenv("KEY_STORE_FILE") != null) { - productFlavors.getByName("starApp").signingConfig = signingConfigs.getByName("starAppRelease") - } - isMinifyEnabled = false - proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") - } - } -} - -configure { - flavorsSupport(true) - excludeFlavor("app") -} - -tasks.withType().configureEach { - dependsOn(tasks.withType()) -} - -tasks.withType().configureEach { - dependsOn(tasks.withType()) -} - -tasks.register("generateVersionDescription") { - group = "build" - description = "Generates versions.json with versionCodes for both release variants" - - val outputFile = file("$buildDir/outputs/versions.json") - doLast { - val version = versionInfo() - val json = buildJsonObject { - val versionObj = buildJsonObject { - put("code", version.code) - put("name", version.name) - } - put(APP_DISTRIBUTION_NAME, versionObj) - put(STAR_APP_DISTRIBUTION_NAME, versionObj) - } - outputFile.writeText(json.toString()) - } -} - -dependencies { - implementation("sdds-core:uikit-fixtures") - implementation("sdds-core:uikit-compose-fixtures") - implementation(icons.sdds.icons) - implementation("tokens:sdds.serv.view") - implementation("tokens:sdds.serv.compose") - implementation(project(":sandbox-sdds-serv-integration")) - - implementation("tokens:plasma.sd.service.view") - implementation("tokens:plasma.sd.service.compose") - implementation(project(":sandbox-plasma-sd-service-integration")) - - implementation("tokens:stylessalute.view") - implementation("tokens:stylessalute.compose") - implementation(project(":sandbox-stylessalute-integration")) - - implementation("tokens:plasma.giga.compose") - implementation(project(":sandbox-plasma-giga-integration")) - - implementation("tokens:plasma.giga.app.compose") - implementation(project(":sandbox-plasma-giga-app-integration")) - - implementation("tokens:plasma.homeds.compose") - implementation(project(":sandbox-plasma-homeds-integration")) - - "starAppImplementation"("tokens:plasma-stards-view") - "starAppImplementation"("tokens:plasma-stards-compose") - "starAppImplementation"(project(":sandbox-plasma-stards-integration")) - - implementation("tokens:sdds-sbcom-compose") - implementation(project(":sandbox-sdds-sbcom-integration")) - - implementation(project(":sandbox-core-integration")) - - implementation("integration-core:sandbox-core") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.androidX.compose.material) - implementation(libs.base.androidX.compose.animation) - implementation(libs.base.androidX.activity.compose) - implementation(libs.base.androidX.lifecycle.compose.viewmodel) - implementation(libs.base.koil.compose) - - implementation(libs.base.android.material) - implementation(libs.base.androidX.constraintLayout) - implementation(libs.base.androidX.lifecycle.viewmodel) - implementation(libs.base.androidX.navigation.fragment) - implementation(libs.base.androidX.navigation.ui) - implementation(libs.base.androidX.navigation.compose) - implementation(libs.base.androidX.activity.ktx) - implementation(libs.base.glide) - implementation(libs.base.kotlin.serialization.json) - - // Preview support - implementation(libs.base.androidX.compose.uiTooling.preview) - debugImplementation(libs.base.androidX.compose.uiTooling) - - // UI Tests - androidTestImplementation(libs.base.test.ui.compose.jUnit4) - debugImplementation(libs.base.test.ui.compose.uiTestManifest) - - // Unit tests - testImplementation(libs.base.test.unit.jUnit) - testImplementation(libs.base.test.ui.compose.jUnit4) - - //Screenshot tests - testImplementation(libs.test.roborazzi) - testImplementation(libs.test.roborazzi.compose) - testImplementation(libs.test.roborazzi.rule) - testImplementation(libs.base.test.unit.robolectric) -} - -tasks.matching { it.name.matches(Regex("generate\\w+Resources")) }.configureEach { - dependsOn(tasks.withType()) -} diff --git a/playground/sandbox-compose/gradle.properties b/playground/sandbox-compose/gradle.properties deleted file mode 100644 index 01d47abfb2..0000000000 --- a/playground/sandbox-compose/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -versionMajor=0 -versionMinor=34 -versionPatch=0 diff --git a/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/SandboxTheme.kt b/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/SandboxTheme.kt deleted file mode 100644 index f61f18db81..0000000000 --- a/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/SandboxTheme.kt +++ /dev/null @@ -1,305 +0,0 @@ -package com.sdds.playground.sandbox - -import android.app.Activity -import android.graphics.Color -import androidx.compose.foundation.BorderStroke -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.foundation.layout.PaddingValues -import androidx.compose.foundation.shape.CornerSize -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.SideEffect -import androidx.compose.ui.graphics.toArgb -import androidx.compose.ui.platform.LocalView -import androidx.compose.ui.unit.dp -import androidx.core.view.WindowCompat -import com.sdds.compose.uikit.LocalAvatarGroupStyle -import com.sdds.compose.uikit.LocalAvatarStyle -import com.sdds.compose.uikit.LocalButtonStyle -import com.sdds.compose.uikit.LocalCardStyle -import com.sdds.compose.uikit.LocalCellStyle -import com.sdds.compose.uikit.LocalCheckBoxGroupStyle -import com.sdds.compose.uikit.LocalCheckBoxStyle -import com.sdds.compose.uikit.LocalChipStyle -import com.sdds.compose.uikit.LocalIconButtonStyle -import com.sdds.compose.uikit.LocalModalBottomSheetStyle -import com.sdds.compose.uikit.LocalProgressBarStyle -import com.sdds.compose.uikit.LocalRadioBoxGroupStyle -import com.sdds.compose.uikit.LocalRadioBoxStyle -import com.sdds.compose.uikit.LocalSegmentItemStyle -import com.sdds.compose.uikit.LocalSelectStyle -import com.sdds.compose.uikit.LocalSpinnerStyle -import com.sdds.compose.uikit.LocalSwitchStyle -import com.sdds.compose.uikit.LocalTextFieldStyle -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.internal.focusselector.FocusSelectorMode -import com.sdds.compose.uikit.internal.focusselector.LocalFocusSelectorMode -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.compose.LocalNavigationViewStyle -import com.sdds.playground.sandbox.core.compose.LocalPropertiesListStyle -import com.sdds.playground.sandbox.core.compose.LocalPropertyEditorStyle -import com.sdds.playground.sandbox.core.compose.LocalSandboxStyle -import com.sdds.playground.sandbox.core.compose.LocalTopBarStyle -import com.sdds.playground.sandbox.core.compose.NavigationViewStyle -import com.sdds.playground.sandbox.core.compose.PropertiesListStyle -import com.sdds.playground.sandbox.core.compose.PropertyEditorStyle -import com.sdds.playground.sandbox.core.compose.SandboxStyle -import com.sdds.playground.sandbox.core.compose.TopBarStyle -import com.sdds.serv.styles.avatar.Avatar -import com.sdds.serv.styles.avatar.M -import com.sdds.serv.styles.avatargroup.AvatarGroup -import com.sdds.serv.styles.avatargroup.S -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.M -import com.sdds.serv.styles.bottomsheet.Default -import com.sdds.serv.styles.bottomsheet.ModalBottomSheet -import com.sdds.serv.styles.card.CardSolid -import com.sdds.serv.styles.card.L -import com.sdds.serv.styles.card.M -import com.sdds.serv.styles.cell.Cell -import com.sdds.serv.styles.cell.M -import com.sdds.serv.styles.checkbox.CheckBox -import com.sdds.serv.styles.checkbox.M -import com.sdds.serv.styles.checkboxgroup.CheckBoxGroup -import com.sdds.serv.styles.checkboxgroup.M -import com.sdds.serv.styles.chip.Chip -import com.sdds.serv.styles.chip.Default -import com.sdds.serv.styles.chip.M -import com.sdds.serv.styles.iconbutton.Clear -import com.sdds.serv.styles.iconbutton.Default -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.M -import com.sdds.serv.styles.iconbutton.Pilled -import com.sdds.serv.styles.iconbutton.Xs -import com.sdds.serv.styles.progressbar.Default -import com.sdds.serv.styles.progressbar.ProgressBar -import com.sdds.serv.styles.radiobox.M -import com.sdds.serv.styles.radiobox.RadioBox -import com.sdds.serv.styles.radioboxgroup.M -import com.sdds.serv.styles.radioboxgroup.RadioBoxGroup -import com.sdds.serv.styles.segmentitem.M -import com.sdds.serv.styles.segmentitem.Primary -import com.sdds.serv.styles.segmentitem.SegmentItem -import com.sdds.serv.styles.select.M -import com.sdds.serv.styles.select.SelectMultipleNormal -import com.sdds.serv.styles.spinner.Default -import com.sdds.serv.styles.spinner.Spinner -import com.sdds.serv.styles.spinner.Xs -import com.sdds.serv.styles.switcher.M -import com.sdds.serv.styles.switcher.Switch -import com.sdds.serv.styles.switcher.ToggleS -import com.sdds.serv.styles.textfield.Default -import com.sdds.serv.styles.textfield.InnerLabel -import com.sdds.serv.styles.textfield.M -import com.sdds.serv.styles.textfield.OuterLabel -import com.sdds.serv.styles.textfield.S -import com.sdds.serv.styles.textfield.TextField -import com.sdds.serv.theme.SddsServTheme -import com.sdds.serv.theme.darkSddsServColors -import com.sdds.serv.theme.darkSddsServGradients -import com.sdds.serv.theme.lightSddsServColors -import com.sdds.serv.theme.lightSddsServGradients -import androidx.compose.ui.graphics.Color.Companion as ComposeColor - -private val DarkColors = darkSddsServColors() -private val LightColors = lightSddsServColors() -private val DarkGradients = darkSddsServGradients() -private val LightGradients = lightSddsServGradients() - -internal const val FieldFocusSelectorModeSwitch = true - -/** - * Тема демо-приложения - */ -@Composable -fun SandboxTheme( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - val view = LocalView.current - if (!view.isInEditMode) { - SideEffect { - val window = (view.context as Activity).window - window.statusBarColor = Color.TRANSPARENT - window.navigationBarColor = Color.TRANSPARENT - window.decorView.setBackgroundColor(colorScheme.backgroundDefaultPrimary.toArgb()) - WindowCompat.getInsetsController(window, view).apply { - isAppearanceLightStatusBars = !darkTheme - isAppearanceLightNavigationBars = !darkTheme - } - } - } - - SddsServTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - content = { - CompositionLocalProvider( - LocalFocusSelectorMode provides FocusSelectorMode.Border( - borderStroke = BorderStroke(1.dp, colorScheme.surfaceDefaultAccent), - strokePadding = 2.dp, - ), - LocalSegmentItemStyle provides SegmentItem.M.Primary.style(), - LocalSwitchStyle provides Switch.M.style(), - LocalSpinnerStyle provides Spinner.Xs.Default.style(), - LocalButtonStyle provides BasicButton.M.Default.style(), - LocalIconButtonStyle provides IconButton.M.Default.style(), - LocalModalBottomSheetStyle provides ModalBottomSheet.Default.style(), - LocalCheckBoxStyle provides CheckBox.M.style(), - LocalCheckBoxGroupStyle provides CheckBoxGroup.M.style(), - LocalRadioBoxStyle provides RadioBox.M.style(), - LocalRadioBoxGroupStyle provides RadioBoxGroup.M.style(), - LocalProgressBarStyle provides ProgressBar.Default.style(), - LocalAvatarStyle provides Avatar.M.style(), - LocalAvatarGroupStyle provides AvatarGroup.S.style(), - LocalChipStyle provides Chip.M.Default.style(), - LocalTextFieldStyle provides TextField.M.OuterLabel.Default.style(), - LocalSelectStyle provides SelectMultipleNormal.M.style(), - LocalCellStyle provides Cell.M.style(), - LocalCardStyle provides CardSolid.M.style(), - LocalSandboxStyle provides SandboxStyle.create( - drawerBackgroundColor = colorScheme.surfaceDefaultSolidSecondary, - sheetBackgroundColor = colorScheme.surfaceDefaultSolidCard, - sheetShape = SddsServTheme.shapes.roundS.copy( - CornerSize(0.dp), - CornerSize(0.dp), - ), - componentBackgroundColor = ComposeColor.Transparent.asStatefulValue( - setOf(SubTheme.INVERSE) to colorScheme.backgroundInversePrimary, - setOf(SubTheme.ON_DARK) to ComposeColor.Black, - setOf(SubTheme.ON_LIGHT) to ComposeColor.White, - ), - componentBackgroundShape = SddsServTheme.shapes.roundM, - ), - LocalNavigationViewStyle provides NavigationViewStyle.create( - itemTextStyle = SddsServTheme.typography.bodyMBold, - itemTextColor = colorScheme.textDefaultPrimary.asInteractive( - focused = if (darkTheme) { - colorScheme.textInversePrimary - } else { - colorScheme.textDefaultPrimary - }, - ), - itemBackground = ComposeColor.Transparent.asInteractive( - focused = if (darkTheme) { - colorScheme.surfaceDefaultSolidDefault - } else { - colorScheme.surfaceDefaultTransparentSecondary - }, - ), - itemCard = CardSolid.L.builder - .colors { - backgroundColor(colorScheme.surfaceDefaultSolidCard) - } - .style(), - headerTextColor = colorScheme.textDefaultPrimary, - headerTextStyle = SddsServTheme.typography.bodyMBold, - ), - LocalTopBarStyle provides TopBarStyle.create( - titleStyle = SddsServTheme.typography.bodyMBold, - dropItemTextStyle = SddsServTheme.typography.bodyMNormal, - titleColor = colorScheme.textDefaultPrimary.asInteractive( - focused = colorScheme.textInversePrimary, - ), - backgroundColor = colorScheme.surfaceDefaultSolidCard, - contentColor = colorScheme.textDefaultPrimary, - navigationButtonStyle = IconButton.M.Pilled.Clear.style(), - actionButtonStyle = IconButton.M.Pilled.Clear.style(), - shapeDropDown = SddsServTheme.shapes.roundXxs, - dropItemBackground = ComposeColor.Transparent.asInteractive( - focused = colorScheme.surfaceDefaultSolidDefault, - selected = colorScheme.surfaceDefaultSolidSecondary, - ), - ), - LocalPropertiesListStyle provides defaultPropertiesListStyle(darkTheme), - LocalPropertyEditorStyle provides PropertyEditorStyle.create( - headerHeight = 74.dp, - shape = SddsServTheme.shapes.roundM, - labelTextStyle = SddsServTheme.typography.bodyMBold, - labelTextColor = colorScheme.textDefaultPrimary, - editorItemBackground = ComposeColor.Transparent.asInteractive( - focused = colorScheme.surfaceDefaultSolidDefault, - selected = colorScheme.surfaceDefaultSolidSecondary, - ), - editorItemShape = SddsServTheme.shapes.roundXs, - editorItemPadding = 6.dp, - editorItemHeight = 24.dp, - textEditorStyle = TextField.S.InnerLabel.builder - .labelStyle(SddsServTheme.typography.bodyXsNormal) - .valueStyle(SddsServTheme.typography.bodyLNormal) - .dimensions { - boxPaddingStart(6.dp) - } - .colors { - labelColor(colorScheme.textDefaultSecondary) - valueColor(colorScheme.textDefaultPrimary) - backgroundColor(ComposeColor.Transparent) - dividerColor(ComposeColor.Transparent) - }.style(), - backgroundColor = colorScheme.surfaceDefaultSolidCard, - editorItemTextStyle = SddsServTheme.typography.bodyMNormal, - editorItemTextColor = colorScheme.textDefaultPrimary.asInteractive( - focused = colorScheme.textInversePrimary, - ), - choiceEditorTextColor = colorScheme.textDefaultSecondary, - spacing = 14.dp, - ), - content = content, - ) - }, - ) -} - -@Composable -private fun defaultPropertiesListStyle( - darkTheme: Boolean, -): PropertiesListStyle = - PropertiesListStyle.create( - shape = SddsServTheme.shapes.roundM, - borderWidth = 1.dp, - borderColor = SddsServTheme.colors.surfaceDefaultSolidTertiary, - backgroundColor = SddsServTheme.colors.surfaceDefaultSolidCard, - headerBackgroundColor = SddsServTheme.colors.surfaceDefaultSolidSecondary, - headerHeight = 74.dp, - headerPaddings = PaddingValues(16.dp), - headerTextStyle = SddsServTheme.typography.bodyMBold, - headerTextColor = SddsServTheme.colors.textDefaultPrimary, - headerDescriptionTextColor = SddsServTheme.colors.textDefaultSecondary, - propertyLabelTextStyle = SddsServTheme.typography.bodyMNormal, - propertyValueTextColor = SddsServTheme.colors.textDefaultPrimary.asInteractive( - focused = if (darkTheme) { - SddsServTheme.colors.textInversePrimary - } else { - SddsServTheme.colors.textDefaultPrimary - }, - ), - propertyValueTextStyle = SddsServTheme.typography.bodyMNormal, - propertyLabelTextColor = SddsServTheme.colors.textDefaultSecondary.asInteractive( - focused = if (darkTheme) { - SddsServTheme.colors.textInverseSecondary - } else { - SddsServTheme.colors.textDefaultSecondary - }, - ), - propertyBackgroundColor = ComposeColor.Transparent.asInteractive( - focused = if (darkTheme) { - SddsServTheme.colors.surfaceDefaultSolidDefault - } else { - SddsServTheme.colors.surfaceDefaultTransparentSecondary - }, - ), - propertyPaddings = 6.dp, - spaceBetweenProperties = 14.dp, - propertySwitchStyle = Switch.M.ToggleS.style(), - propertyItemShape = SddsServTheme.shapes.roundXs, - propertyHeight = 24.dp, - dividerWidth = 1.dp, - dividerColor = SddsServTheme.colors.surfaceDefaultSolidSecondary, - resetButtonStyle = IconButton.Xs.Pilled.Clear.style(), - ) diff --git a/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/Theme.kt b/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/Theme.kt deleted file mode 100644 index 9ca52e79e3..0000000000 --- a/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/Theme.kt +++ /dev/null @@ -1,168 +0,0 @@ -package com.sdds.playground.sandbox - -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.subthemes.Default -import com.sdds.plasma.giga.app.theme.subthemes.Inverse -import com.sdds.plasma.giga.app.theme.subthemes.OnDark -import com.sdds.plasma.giga.app.theme.subthemes.OnLight -import com.sdds.plasma.giga.theme.PlasmaGigaTheme -import com.sdds.plasma.giga.theme.subthemes.Default -import com.sdds.plasma.giga.theme.subthemes.Inverse -import com.sdds.plasma.giga.theme.subthemes.OnDark -import com.sdds.plasma.giga.theme.subthemes.OnLight -import com.sdds.plasma.homeds.theme.PlasmaHomeDsTheme -import com.sdds.plasma.homeds.theme.subthemes.Default -import com.sdds.plasma.homeds.theme.subthemes.Inverse -import com.sdds.plasma.homeds.theme.subthemes.OnDark -import com.sdds.plasma.homeds.theme.subthemes.OnLight -import com.sdds.plasma.sd.service.theme.PlasmaSdServiceTheme -import com.sdds.plasma.sd.service.theme.subthemes.Default -import com.sdds.plasma.sd.service.theme.subthemes.Inverse -import com.sdds.plasma.sd.service.theme.subthemes.OnDark -import com.sdds.plasma.sd.service.theme.subthemes.OnLight -import com.sdds.playground.sandbox.plasma.giga.app.integration.PlasmaGigaAppThemeWrapper -import com.sdds.playground.sandbox.plasma.giga.app.integration.compose.PlasmaGigaAppComposeComponents -import com.sdds.playground.sandbox.plasma.giga.integration.PlasmaGigaThemeWrapper -import com.sdds.playground.sandbox.plasma.giga.integration.compose.PlasmaGigaComposeComponents -import com.sdds.playground.sandbox.plasma.homeds.integration.PlasmaHomeDsThemeWrapper -import com.sdds.playground.sandbox.plasma.homeds.integration.compose.PlasmaHomedsComposeComponents -import com.sdds.playground.sandbox.plasma.sd.service.integration.PlasmaSdServiceThemeWrapper -import com.sdds.playground.sandbox.plasma.sd.service.integration.compose.PlasmaB2cComposeComponents -import com.sdds.playground.sandbox.plasma.sd.service.integration.view.PlasmaB2cViewComponents -import com.sdds.playground.sandbox.sdds.sbcom.integration.SddsSbComThemeWrapper -import com.sdds.playground.sandbox.sdds.sbcom.integration.compose.SddsSbcomComposeComponents -import com.sdds.playground.sandbox.sdds.serv.integration.SddsServThemeWrapper -import com.sdds.playground.sandbox.sdds.serv.integration.compose.SddsServComposeComponents -import com.sdds.playground.sandbox.sdds.serv.integration.view.SddsServViewComponents -import com.sdds.playground.sandbox.stylessalute.integration.StylesSaluteThemeWrapper -import com.sdds.playground.sandbox.stylessalute.integration.compose.StylesSaluteComposeComponents -import com.sdds.playground.sandbox.stylessalute.integration.view.StylesSaluteViewComponents -import com.sdds.sbcom.theme.SddsSbComTheme -import com.sdds.sbcom.theme.subthemes.Default -import com.sdds.sbcom.theme.subthemes.Inverse -import com.sdds.sbcom.theme.subthemes.OnDark -import com.sdds.sbcom.theme.subthemes.OnLight -import com.sdds.serv.theme.SddsServTheme -import com.sdds.serv.theme.subthemes.Default -import com.sdds.serv.theme.subthemes.Inverse -import com.sdds.serv.theme.subthemes.OnDark -import com.sdds.serv.theme.subthemes.OnLight - -internal enum class Theme { - SddsServ, - PlasmaSdService, - StylesSalute, - PlasmaGiga, - PlasmaGigaApp, - PlasmaHomeDs, - SddsSbCom, - ; - - internal companion object { - val Default = SddsServ - } -} - -internal val composeThemes: List = listOf( - ThemeInfoCompose( - theme = Theme.SddsServ, - components = SddsServComposeComponents, - themeWrapper = { SddsServThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { SddsServTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { SddsServTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { SddsServTheme.OnDark(content = it) }, - SubTheme.INVERSE to { SddsServTheme.Inverse(content = it) }, - ), - ), - ThemeInfoCompose( - theme = Theme.PlasmaSdService, - components = PlasmaB2cComposeComponents, - themeWrapper = { PlasmaSdServiceThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { PlasmaSdServiceTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { PlasmaSdServiceTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { PlasmaSdServiceTheme.OnDark(content = it) }, - SubTheme.INVERSE to { PlasmaSdServiceTheme.Inverse(content = it) }, - ), - ), - ThemeInfoCompose( - theme = Theme.StylesSalute, - components = StylesSaluteComposeComponents, - themeWrapper = { StylesSaluteThemeWrapper(it) }, - ), - ThemeInfoCompose( - theme = Theme.PlasmaGiga, - components = PlasmaGigaComposeComponents, - themeWrapper = { PlasmaGigaThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { PlasmaGigaTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { PlasmaGigaTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { PlasmaGigaTheme.OnDark(content = it) }, - SubTheme.INVERSE to { PlasmaGigaTheme.Inverse(content = it) }, - ), - ), - ThemeInfoCompose( - theme = Theme.PlasmaGigaApp, - components = PlasmaGigaAppComposeComponents, - themeWrapper = { PlasmaGigaAppThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { PlasmaGigaAppTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { PlasmaGigaAppTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { PlasmaGigaAppTheme.OnDark(content = it) }, - SubTheme.INVERSE to { PlasmaGigaAppTheme.Inverse(content = it) }, - ), - ), - ThemeInfoCompose( - theme = Theme.PlasmaHomeDs, - components = PlasmaHomedsComposeComponents, - themeWrapper = { PlasmaHomeDsThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { PlasmaHomeDsTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { PlasmaHomeDsTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { PlasmaHomeDsTheme.OnDark(content = it) }, - SubTheme.INVERSE to { PlasmaHomeDsTheme.Inverse(content = it) }, - ), - ), - ThemeInfoCompose( - theme = Theme.SddsSbCom, - components = SddsSbcomComposeComponents, - themeWrapper = { SddsSbComThemeWrapper(it) }, - subthemes = mapOf( - SubTheme.DEFAULT to { SddsSbComTheme.Default(content = it) }, - SubTheme.ON_LIGHT to { SddsSbComTheme.OnLight(content = it) }, - SubTheme.ON_DARK to { SddsSbComTheme.OnDark(content = it) }, - SubTheme.INVERSE to { SddsSbComTheme.Inverse(content = it) }, - ), - ), -) - -internal val viewThemes: List = listOf( - ThemeInfoView( - theme = Theme.SddsServ, - components = SddsServViewComponents, - themeRes = com.sdds.serv.R.style.Serv_Sdds_MaterialComponents_DayNight, - subthemes = mapOf( - SubTheme.DEFAULT to com.sdds.serv.R.style.Serv_Sdds_Default, - SubTheme.ON_LIGHT to com.sdds.serv.R.style.Serv_Sdds_OnLight, - SubTheme.ON_DARK to com.sdds.serv.R.style.Serv_Sdds_OnDark, - SubTheme.INVERSE to com.sdds.serv.R.style.Serv_Sdds_Inverse, - ), - ), - ThemeInfoView( - theme = Theme.PlasmaSdService, - components = PlasmaB2cViewComponents, - themeRes = com.sdds.plasma.sd.service.R.style.Plasma_SdService_MaterialComponents_DayNight, - subthemes = mapOf( - SubTheme.DEFAULT to com.sdds.plasma.sd.service.R.style.Plasma_SdService_Default, - SubTheme.ON_LIGHT to com.sdds.plasma.sd.service.R.style.Plasma_SdService_OnLight, - SubTheme.ON_DARK to com.sdds.plasma.sd.service.R.style.Plasma_SdService_OnDark, - SubTheme.INVERSE to com.sdds.plasma.sd.service.R.style.Plasma_SdService_Inverse, - ), - ), - ThemeInfoView( - theme = Theme.StylesSalute, - components = StylesSaluteViewComponents, - themeRes = com.sdds.stylessalute.R.style.Salute_StylesSalute_MaterialComponents_DayNight, - ), -) diff --git a/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/core/compose/ComponentScaffold.kt b/playground/sandbox-compose/src/app/kotlin/com/sdds/playground/sandbox/core/compose/ComponentScaffold.kt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/playground/sandbox-compose/src/app/res/color-night/bg_property_choice_item.xml b/playground/sandbox-compose/src/app/res/color-night/bg_property_choice_item.xml deleted file mode 100644 index cf9a43b479..0000000000 --- a/playground/sandbox-compose/src/app/res/color-night/bg_property_choice_item.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/app/res/color-night/bg_property_item.xml b/playground/sandbox-compose/src/app/res/color-night/bg_property_item.xml deleted file mode 100644 index 915819ba90..0000000000 --- a/playground/sandbox-compose/src/app/res/color-night/bg_property_item.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/app/res/color-night/color_navigation_item_label.xml b/playground/sandbox-compose/src/app/res/color-night/color_navigation_item_label.xml deleted file mode 100644 index 40f7f247f7..0000000000 --- a/playground/sandbox-compose/src/app/res/color-night/color_navigation_item_label.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/app/res/color-night/color_property_item_label.xml b/playground/sandbox-compose/src/app/res/color-night/color_property_item_label.xml deleted file mode 100644 index 6b167e98f0..0000000000 --- a/playground/sandbox-compose/src/app/res/color-night/color_property_item_label.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/app/res/color-night/color_property_item_value.xml b/playground/sandbox-compose/src/app/res/color-night/color_property_item_value.xml deleted file mode 100644 index 40f7f247f7..0000000000 --- a/playground/sandbox-compose/src/app/res/color-night/color_property_item_value.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/AndroidManifest.xml b/playground/sandbox-compose/src/main/AndroidManifest.xml deleted file mode 100644 index a2f43491e7..0000000000 --- a/playground/sandbox-compose/src/main/AndroidManifest.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/MainSandboxActivity.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/MainSandboxActivity.kt deleted file mode 100644 index e0f345708d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/MainSandboxActivity.kt +++ /dev/null @@ -1,86 +0,0 @@ -package com.sdds.playground.sandbox - -import android.content.Intent -import android.os.Bundle -import android.view.LayoutInflater -import androidx.activity.viewModels -import androidx.appcompat.app.AppCompatActivity -import androidx.core.view.WindowCompat -import androidx.core.view.isVisible -import androidx.lifecycle.Lifecycle -import androidx.lifecycle.flowWithLifecycle -import androidx.lifecycle.lifecycleScope -import com.sdds.playground.sandbox.activities.compose.SandboxActivityCompose -import com.sdds.playground.sandbox.core.updates.UpdateManager -import com.sdds.playground.sandbox.core.updates.UpdateState -import com.sdds.playground.sandbox.core.updates.UpdatesViewModel -import com.sdds.playground.sandbox.core.updates.UpdatesViewModelFactory -import com.sdds.playground.sandbox.core.vs.SandboxActivity -import com.sdds.playground.sandbox.databinding.ActivityMainSandboxBinding -import com.sdds.uikit.Toast -import kotlinx.coroutines.flow.launchIn -import kotlinx.coroutines.flow.onEach - -/** - * Стартовая Активити демо-приложения - */ -class MainSandboxActivity : AppCompatActivity() { - - private val updatesViewModel: UpdatesViewModel by viewModels { - UpdatesViewModelFactory(UpdateManager.getInstance(this)) - } - - private var _binding: ActivityMainSandboxBinding? = null - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - WindowCompat.setDecorFitsSystemWindows(window, false) - _binding = ActivityMainSandboxBinding.inflate(LayoutInflater.from(this)) - .apply { - setContentView(root) - bView.setOnClickListener { - startActivity(Intent(this@MainSandboxActivity, SandboxActivity::class.java)) - } - bCompose.setOnClickListener { - startActivity(Intent(this@MainSandboxActivity, SandboxActivityCompose::class.java)) - } - } - - updatesViewModel.updateState - .flowWithLifecycle(lifecycle, Lifecycle.State.RESUMED) - .onEach { updateState -> updateVersionInfo(updateState) } - .launchIn(lifecycleScope) - - updatesViewModel.checkUpdates() - } - - private fun updateVersionInfo(updateState: UpdateState) { - _binding?.apply { - appVersion.text = getString(R.string.sandbox_current_verstion_title, updateState.versionInfo) - updateSection.root.isVisible = updateState is UpdateState.PendingUpdate - when (updateState) { - UpdateState.None -> Unit - is UpdateState.PendingUpdate -> updateSection.apply { - sectionLabel.text = getString(R.string.sandbox_new_verstion_title, updateState.info.version) - updateButton.isLoading = updateState.isLoading - updateButton.setOnClickListener { - if (!updateButton.isLoading) { - updatesViewModel.installUpdate(updateState.info) - } - } - } - - is UpdateState.UpdateFailed -> { - showUpdateFailedNotification(updateState) - } - } - } - } - - private fun showUpdateFailedNotification(fail: UpdateState.UpdateFailed) { - Toast.simpleToast( - this, - message = fail.message ?: getString(R.string.update_downloading), - ).show() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/ThemeInfo.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/ThemeInfo.kt deleted file mode 100644 index 029de1defd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/ThemeInfo.kt +++ /dev/null @@ -1,59 +0,0 @@ -package com.sdds.playground.sandbox - -import android.util.Log -import androidx.annotation.StyleRes -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.interactions.ValueState -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView - -internal class ThemeInfoCompose( - val theme: Theme, - val components: ComponentsProviderCompose, - val themeWrapper: @Composable (@Composable () -> Unit) -> Unit, - val subthemes: Map Unit) -> Unit> = emptyMap(), -) - -internal class ThemeInfoView( - val theme: Theme, - val components: ComponentsProviderView, - @StyleRes val themeRes: Int, - val subthemes: Map = emptyMap(), -) - -internal enum class SubTheme(val key: String) : ValueState { - DEFAULT("Default"), - ON_DARK("OnDark"), - ON_LIGHT("OnLight"), - INVERSE("Inverse"), -} - -internal fun composeTheme(theme: Theme): ThemeInfoCompose = - composeThemes.firstOrNull { it.theme == theme } - ?: composeThemes - .firstOrNull { it.theme == Theme.Default } - .also { - Log.e( - "Sdds sandbox", - "Compose theme $theme not found, default theme ${Theme.Default} will be used", - ) - } - ?: throw NoSuchElementException("Compose theme not found") - -internal fun viewTheme(theme: Theme): ThemeInfoView = - viewThemes.firstOrNull { it.theme == theme } - ?: viewThemes - .firstOrNull { it.theme == Theme.Default } - .also { - Log.e( - "Sdds sandbox", - "View theme $theme not found, default theme ${Theme.Default} will be used", - ) - } - ?: throw NoSuchElementException("View theme not found") - -internal val allComposeThemes: List - get() = composeThemes.map { it.theme } - -internal val allViewThemes: List - get() = viewThemes.map { it.theme } diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionScreen.kt deleted file mode 100644 index 12075b6ffe..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionScreen.kt +++ /dev/null @@ -1,92 +0,0 @@ -package com.sdds.playground.sandbox.accordion - -import androidx.compose.animation.EnterTransition -import androidx.compose.animation.ExitTransition -import androidx.compose.animation.core.AnimationSpec -import androidx.compose.animation.core.spring -import androidx.compose.animation.expandVertically -import androidx.compose.animation.fadeIn -import androidx.compose.animation.fadeOut -import androidx.compose.animation.shrinkVertically -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Accordion -import com.sdds.compose.uikit.AccordionItem -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.Divider -import com.sdds.compose.uikit.Text -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Accordion] - */ -@Composable -internal fun AccordionScreen(componentKey: ComponentKey = ComponentKey.Accordion) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = AccordionViewModelFactory( - defaultState = AccordionUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { accordionUiState, style -> - Accordion( - style = style, - modifier = Modifier.verticalScroll(rememberScrollState()), - ) { - repeat(accordionUiState.amount) { - var opened by remember { mutableStateOf(false) } - AccordionItem( - opened = opened, - onClick = { opened = !opened }, - title = accordionUiState.title, - iconAnimationSpec = iconAnimationSpec(accordionUiState.animation), - openTransition = openTransition(accordionUiState.animation), - closeTransition = closeTransition(accordionUiState.animation), - ) { Text(text = accordionUiState.contentText) } - if (accordionUiState.hasDivider && it != accordionUiState.amount - 1) { - Divider() - } - } - } - }, - ) -} - -@Composable -private fun iconAnimationSpec(animationEnabled: Boolean): AnimationSpec? = - if (animationEnabled) remember { spring() } else null - -@Composable -private fun openTransition(animationEnabled: Boolean): EnterTransition = - if (animationEnabled) remember { fadeIn() + expandVertically() } else EnterTransition.None - -@Composable -private fun closeTransition(animationEnabled: Boolean): ExitTransition = - if (animationEnabled) remember { fadeOut() + shrinkVertically() } else ExitTransition.None - -@Composable -internal fun AccordionPreview(style: AccordionStyle) { - SandboxTheme { - Accordion(style = style) { - var opened by remember { mutableStateOf(false) } - AccordionItem( - opened = opened, - onClick = { opened = !opened }, - title = "Title", - content = { Text("Content text") }, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionUiState.kt deleted file mode 100644 index fd5756d73d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionUiState.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.accordion - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class AccordionUiState( - override val variant: String = "", - override val appearance: String = "", - val amount: Int = 9, - val title: String = "Title", - val contentText: String = "Content text", - val animation: Boolean = true, - val hasDivider: Boolean = false, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionViewModel.kt deleted file mode 100644 index f3d4ff653a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/AccordionViewModel.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.accordion - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Accordion - */ -internal class AccordionViewModel( - defaultState: AccordionUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun AccordionUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { internalUiState.value = internalUiState.value.copy(amount = it) }, - ), - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "contentText", - value = contentText, - onApply = { internalUiState.value = internalUiState.value.copy(contentText = it) }, - ), - Property.BooleanProperty( - name = "hasDivider", - value = hasDivider, - onApply = { internalUiState.value = internalUiState.value.copy(hasDivider = it) }, - ), - Property.BooleanProperty( - name = "animation", - value = animation, - onApply = { internalUiState.value = internalUiState.value.copy(animation = it) }, - ), - ) - } -} - -internal class AccordionViewModelFactory( - private val defaultState: AccordionUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AccordionViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionFragment.kt deleted file mode 100644 index f2b863e4d0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.accordion.view - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Accordion -import com.sdds.uikit.fixtures.stories.accordion.AccordionUiState -import com.sdds.uikit.fixtures.stories.accordion.accordion -import com.sdds.uikit.fixtures.stories.accordion.applyState - -internal class AccordionFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - AccordionViewModelFactory( - defaultState = getState { AccordionUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = super.defaultLayoutParams.apply { - width = resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_160x) - height = FrameLayout.LayoutParams.MATCH_PARENT - topMargin = resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_20x) - } - - override val defaultGravity: Int - get() = Gravity.TOP or Gravity.CENTER_HORIZONTAL - - override fun getComponent(contextWrapper: ContextThemeWrapper): Accordion { - return accordion(contextWrapper) - } - - override fun onComponentUpdate(component: Accordion?, state: AccordionUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionViewModel.kt deleted file mode 100644 index cfc0610534..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/accordion/view/AccordionViewModel.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.accordion.view - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.accordion.AccordionUiState - -internal class AccordionViewModel( - defaultState: AccordionUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.ItemTitle -> currentState.copy(title = valueString) - PropertyName.ItemContentText -> currentState.copy(contentText = valueString) - PropertyName.HasDivider -> currentState.copy(hasDivider = valueString.toBoolean()) - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - } - } - - override fun AccordionUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - Property.StringProperty( - name = PropertyName.ItemTitle.value, - value = title, - ), - Property.StringProperty( - name = PropertyName.ItemContentText.value, - value = contentText, - ), - Property.BooleanProperty( - name = PropertyName.HasDivider.value, - value = hasDivider, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - ItemTitle("itemTitle"), - ItemContentText("itemContentText"), - HasDivider("hasDivider"), - } -} - -internal class AccordionViewModelFactory( - private val defaultState: AccordionUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AccordionViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/activities/compose/SandboxActivityCompose.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/activities/compose/SandboxActivityCompose.kt deleted file mode 100644 index 17c72c7522..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/activities/compose/SandboxActivityCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.activities.compose - -import android.os.Bundle -import androidx.activity.compose.setContent -import androidx.core.view.WindowCompat -import androidx.fragment.app.FragmentActivity -import com.sdds.compose.uikit.overlay.OverlayHost -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.MainContent - -/** - * Активити демо-приложения на compose - */ -class SandboxActivityCompose : FragmentActivity() { - override fun onCreate(savedInstanceState: Bundle?) { - WindowCompat.setDecorFitsSystemWindows(window, false) - super.onCreate(savedInstanceState) - setContent { - SandboxTheme { - OverlayHost { - MainContent() - } - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteScreen.kt deleted file mode 100644 index 1cf6d4c033..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteScreen.kt +++ /dev/null @@ -1,248 +0,0 @@ -package com.sdds.playground.sandbox.autocomplete - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.WindowInsets -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.ime -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.lazy.LazyListScope -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.TextRange -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Autocomplete -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.EmptyState -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.ListItem -import com.sdds.compose.uikit.Spinner -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Autocomplete] - */ -@Composable -@Suppress("LongMethod") -internal fun AutocompleteScreen(componentKey: ComponentKey = ComponentKey.Autocomplete) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = AutocompleteViewModelFactory(AutocompleteUiState(), componentKey), - key = componentKey.toString(), - ), - component = { autocompleteUiState, style -> - Box( - modifier = Modifier - .offset(y = -keyboardHeight / 2) - .fillMaxWidth() - .height(screenHeight), - ) { - var showDropdown by remember { mutableStateOf(false) } - var text by remember { mutableStateOf(TextFieldValue()) } - val filteredList = - remember { - mutableListOf().apply { - addAll( - AutocompleteSuggestions.filterSuggestions(text.text), - ) - } - } - val showEmptyState = autocompleteUiState.withEmptyState && filteredList.isEmpty() - Autocomplete( - modifier = Modifier.align(autocompleteUiState.fieldAlignment.alignment), - showDropdown = showDropdown, - onDismissRequest = { showDropdown = false }, - style = style, - dropdownProperties = autocompleteUiState.dropdownProperties, - field = { - TextField( - modifier = Modifier.width(240.dp), - value = text, - placeholderText = "Сотрудник", - captionText = "Введите имя Алексей", - onValueChange = { - text = it - filteredList.clear() - filteredList.addAll(AutocompleteSuggestions.filterSuggestions(text.text)) - showDropdown = filteredList.isNotEmpty() || autocompleteUiState.withEmptyState - }, - endContent = { - Icon( - painterResource(com.sdds.icons.R.drawable.ic_search_24), - "", - ) - }, - focusSelectorSettings = FocusSelectorSettings.None, - ) - }, - showEmptyState = showEmptyState, - emptyState = { - EmptyState( - iconRes = com.sdds.icons.R.drawable.ic_plasma_36, - description = "Empty State", - buttonLabel = "Action", - ) - }, - footer = if (autocompleteUiState.showLoading) { { Loading() } } else null, - listContent = { - listContent( - filteredList = filteredList, - onClick = { - text = text.copy(it, TextRange(it.length)) - showDropdown = false - }, - ) - }, - ) - } - }, - ) -} - -private val keyboardHeight: Dp - @Composable get() { - val windowInsets = WindowInsets.ime - val density = LocalDensity.current - return with(density) { windowInsets.getBottom(density).toDp() } - } - -private val screenHeight: Dp - @Composable get() { - val componentScreenPaddings = 32.dp - val screenSize = LocalConfiguration.current.screenHeightDp.dp - return screenSize - keyboardHeight - componentScreenPaddings - } - -private fun LazyListScope.listContent( - filteredList: List, - onClick: (String) -> Unit, -) { - items(filteredList.size) { index -> - ListItem( - modifier = Modifier - .fillMaxWidth() - .clickable( - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { - onClick.invoke(filteredList[index]) - }, - text = filteredList[index], - ) - } -} - -@Composable -internal fun AutocompletePreview(style: AutocompleteStyle) { - var text by remember { mutableStateOf(TextFieldValue()) } - var showDropdown by remember { mutableStateOf(false) } - val textFieldInteractionSource = remember { MutableInteractionSource() } - val filteredList = AutocompleteSuggestions.filterSuggestions(text.text) - val showEmptyState = filteredList.isEmpty() - - Autocomplete( - showDropdown = showDropdown, - onDismissRequest = { showDropdown = false }, - style = style, - field = { - TextField( - modifier = Modifier.width(240.dp), - value = text, - placeholderText = "Сотрудник", - captionText = "Введите имя Алексей", - onValueChange = { - text = it - showDropdown = true - }, - endContent = { - Icon(painter = painterResource(com.sdds.icons.R.drawable.ic_search_24), "") - }, - focusSelectorSettings = FocusSelectorSettings.None, - interactionSource = textFieldInteractionSource, - ) - }, - showEmptyState = showEmptyState, - emptyState = { - EmptyState( - iconRes = com.sdds.icons.R.drawable.ic_plasma_36, - description = "Empty State", - buttonLabel = "Action", - ) - }, - footer = { Loading() }, - ) { - items(filteredList.size) { index -> - ListItem( - modifier = Modifier - .fillMaxWidth() - .clickable( - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { - text = TextFieldValue( - text = filteredList[index], - selection = TextRange(filteredList[index].length), - ) - showDropdown = false - }, - text = filteredList[index], - ) - } - } -} - -private val AutocompleteSuggestions = setOf( - "Иван Иванов", - "Пётр Петров", - "Сергей Сергеев", - "Алексей Алексеев", - "Анна Смирнова", - "Мария Кузнецова", - "Дмитрий Попов", - "Елена Соколова", - "Ольга Морозова", - "Николай Волков", -) - -private fun Set.filterSuggestions(text: String): List { - return this.filter { suggestion -> suggestion.contains(text, ignoreCase = true) } -} - -@Composable -private fun Loading( - label: String = "Загрузка", -) { - Row( - modifier = Modifier.height(40.dp), - verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.Center, - ) { - Spinner() - Text( - modifier = Modifier.padding(start = 4.dp), - text = label, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteUiState.kt deleted file mode 100644 index 4773839206..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteUiState.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.autocomplete - -import androidx.compose.ui.Alignment -import com.sdds.compose.uikit.DropdownProperties -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class AutocompleteUiState( - override val variant: String = "", - override val appearance: String = "", - val showLoading: Boolean = false, - val withEmptyState: Boolean = true, - val fieldAlignment: AutocompleteFieldAlignment = AutocompleteFieldAlignment.TopCenter, - val dropdownProperties: DropdownProperties = DropdownProperties(), -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class AutocompleteFieldAlignment(val alignment: Alignment) { - TopStart(Alignment.TopStart), - TopEnd(Alignment.TopEnd), - TopCenter(Alignment.TopCenter), - Center(Alignment.Center), - CenterStart(Alignment.CenterStart), - CenterEnd(Alignment.CenterEnd), - BottomStart(Alignment.BottomStart), - BottomEnd(Alignment.BottomEnd), - BottomCenter(Alignment.BottomCenter), -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteViewModel.kt deleted file mode 100644 index 21c4055ee3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/AutocompleteViewModel.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.autocomplete - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Autocomplete - */ -internal class AutocompleteViewModel( - defaultState: AutocompleteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun AutocompleteUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "withEmptyState", - value = withEmptyState, - onApply = { - internalUiState.value = internalUiState.value.copy(withEmptyState = it) - }, - ), - Property.BooleanProperty( - name = "showLoading", - value = showLoading, - onApply = { - internalUiState.value = internalUiState.value.copy(showLoading = it) - }, - ), - enumProperty( - name = "fieldAlignment", - value = fieldAlignment, - onApply = { - internalUiState.value = internalUiState.value.copy(fieldAlignment = it) - }, - ), - enumProperty( - name = "placement", - value = dropdownProperties.placement, - onApply = { - internalUiState.value = internalUiState.value.copy( - dropdownProperties = internalUiState.value.dropdownProperties.copy( - placement = it, - ), - ) - }, - ), - enumProperty( - name = "placementMode", - value = dropdownProperties.placementMode, - onApply = { - internalUiState.value = internalUiState.value.copy( - dropdownProperties = internalUiState.value.dropdownProperties.copy( - placementMode = it, - ), - ) - }, - ), - ) - } -} - -internal class AutocompleteViewModelFactory( - private val defaultState: AutocompleteUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AutocompleteViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteFragment.kt deleted file mode 100644 index 357474f687..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteFragment.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.autocomplete.view - -import android.view.ContextThemeWrapper -import android.view.Gravity -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Autocomplete -import com.sdds.uikit.fixtures.stories.autocomplete.AutocompleteUiState -import com.sdds.uikit.fixtures.stories.autocomplete.applyState -import com.sdds.uikit.fixtures.stories.autocomplete.autocomplete -import com.sdds.uikit.fixtures.stories.popover.toGravity - -internal class AutocompleteFragment : ComponentFragment() { - - private var currentTriggerGravity: Int = Gravity.CENTER - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - AutocompleteViewModelFactory( - defaultState = getState { AutocompleteUiState() }, - componentKey = componentKey, - ) - } - - override val defaultGravity: Int - get() = currentTriggerGravity - - override fun shouldRecreateComponentOnStateUpdate(state: AutocompleteUiState): Boolean { - val newGravity = state.fieldAlignment.toGravity() - if (newGravity != currentTriggerGravity) { - currentTriggerGravity = newGravity - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Autocomplete { - return autocomplete(contextWrapper) - } - - override fun onComponentUpdate(component: Autocomplete?, state: AutocompleteUiState) { - component?.applyState(state) - } - - override fun onComponentOffsetChanged(component: Autocomplete, offset: Float) { - super.onComponentOffsetChanged(component, offset) - component.updateDropdownLocation() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteViewModel.kt deleted file mode 100644 index 52697bad27..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/autocomplete/view/AutocompleteViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.autocomplete.view - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.autocomplete.AutocompleteUiState -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacementMode -import com.sdds.uikit.fixtures.stories.popover.PopoverTriggerAlignment - -internal class AutocompleteViewModel( - defaultState: AutocompleteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = AutocompleteProperties.values().find { it.value == name } ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - AutocompleteProperties.ShowLoading -> currentState.copy(showLoading = valueString.toBoolean()) - AutocompleteProperties.EmptyState -> currentState.copy(withEmptyState = valueString.toBoolean()) - AutocompleteProperties.FieldAlignment -> currentState.copy( - fieldAlignment = PopoverTriggerAlignment.valueOf( - valueString, - ), - ) - - AutocompleteProperties.DropdownPlacementMode -> currentState.copy( - dropdownPlacementMode = PopoverPlacementMode.valueOf( - valueString, - ), - ) - } - } - - override fun AutocompleteUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = AutocompleteProperties.ShowLoading.value, - value = showLoading, - ), - - Property.BooleanProperty( - name = AutocompleteProperties.EmptyState.value, - value = withEmptyState, - ), - enumProperty( - name = AutocompleteProperties.FieldAlignment.value, - value = fieldAlignment, - ), - enumProperty( - name = AutocompleteProperties.DropdownPlacementMode.value, - value = dropdownPlacementMode, - ), - ) - } - - private enum class AutocompleteProperties(val value: String) { - ShowLoading("loading"), - EmptyState("emptyState"), - FieldAlignment("fieldAlignment"), - DropdownPlacementMode("dropdownPlacementMode"), - } -} - -internal class AutocompleteViewModelFactory( - private val defaultState: AutocompleteUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AutocompleteViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarPreviews.kt deleted file mode 100644 index 932817f690..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarPreviews.kt +++ /dev/null @@ -1,83 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.Avatar -import com.sdds.compose.uikit.AvatarCounter -import com.sdds.compose.uikit.AvatarGroup -import com.sdds.compose.uikit.AvatarPlaceholder -import com.sdds.compose.uikit.AvatarStatus -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.avatar.Avatar -import com.sdds.serv.styles.avatar.M -import com.sdds.serv.styles.avatar.S -import com.sdds.serv.styles.avatar.Xxl -import com.sdds.serv.styles.avatargroup.AvatarGroup -import com.sdds.serv.styles.avatargroup.S - -/** - * Превью [Avatar] - */ -@Composable -@Preview(showBackground = true) -internal fun AvatarPreviewSizeXXL() { - SandboxTheme { - Avatar( - style = Avatar.Xxl.style(), - status = AvatarStatus.Active, - painter = painterResource(id = R.drawable.il_avatar_test), - actionEnabled = false, - placeholder = AvatarPlaceholder.Name("Michael Scott"), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun AvatarPreviewSizeM() { - SandboxTheme { - Avatar( - style = Avatar.M.style(), - status = AvatarStatus.Active, - actionEnabled = false, - placeholder = AvatarPlaceholder.Name("Michael Scott"), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun AvatarGroupPreviewSizeS() { - SandboxTheme { - AvatarGroup( - style = AvatarGroup.S.style(), - threshold = 1, - ) { - avatar { - Avatar( - style = Avatar.S.style(), - status = AvatarStatus.Active, - actionEnabled = false, - placeholder = AvatarPlaceholder.Name("Michael Scott"), - painter = painterResource(id = R.drawable.il_avatar_test), - contentScale = ContentScale.Fit, - ) - } - avatar { - Avatar( - style = Avatar.S.style(), - status = AvatarStatus.Active, - actionEnabled = false, - placeholder = AvatarPlaceholder.Name("Michael Scott"), - ) - } - counter { - AvatarCounter(3) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarScreen.kt deleted file mode 100644 index 96df288e5f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarScreen.kt +++ /dev/null @@ -1,115 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose - -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import coil.compose.AsyncImage -import com.sdds.compose.uikit.Avatar -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.Badge -import com.sdds.compose.uikit.Counter -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Image -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [Avatar] - */ -@Composable -internal fun AvatarScreen(componentKey: ComponentKey = ComponentKey.Avatar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = AvatarViewModelFactory(AvatarUiState(), componentKey), - key = componentKey.toString(), - ), - component = { avatarUiState, avatarStyle -> - Avatar( - style = avatarStyle, - status = avatarUiState.status, - placeholder = avatarUiState.placeholder, - extra = { AvatarExtra(avatarUiState, avatarStyle) }, - ) { - AvatarContent(avatarUiState) - } - }, - ) -} - -@Composable -private fun BoxScope.AvatarExtra(avatarUiState: AvatarUiState, avatarStyle: AvatarStyle) { - if (avatarUiState.extra == AvatarExtra.Badge && avatarStyle.badgeStyle != null) { - Badge( - modifier = Modifier.align(avatarUiState.extraPlacement.alignment), - label = avatarUiState.badgeText, - startContent = startContent(avatarUiState.badgeContentStart), - endContent = endContent(avatarUiState.badgeContentEnd), - ) - } else if (avatarUiState.extra == AvatarExtra.Counter && avatarStyle.counterStyle != null) { - Counter( - modifier = Modifier.align(avatarUiState.extraPlacement.alignment), - count = avatarUiState.counterText, - ) - } -} - -@Composable -private fun BoxScope.AvatarContent(avatarUiState: AvatarUiState) { - when (avatarUiState.exampleMode) { - ExampleMode.Local -> Image( - modifier = Modifier.matchParentSize(), - contentScale = ContentScale.Crop, - painter = painterResource(id = R.drawable.il_avatar_test), - contentDescription = "Avatar", - ) - - ExampleMode.Remote -> AsyncImage( - modifier = Modifier.matchParentSize(), - contentScale = ContentScale.Crop, - model = "https://cdn.costumewall.com/wp-content/uploads/2018/09/michael-scott.jpg", - contentDescription = "AsyncAvatar", - ) - ExampleMode.Placeholder -> {} - } -} - -private fun startContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_plasma_16), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun endContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_plasma_16), - contentDescription = "", - ) - } - } else { - null - } -} - -@Preview(showBackground = true) -@Composable -private fun AvatarScreenPreview() { - SandboxTheme { - AvatarScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarUiState.kt deleted file mode 100644 index 19ca4ddaf7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarUiState.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose - -import androidx.compose.ui.Alignment -import com.sdds.compose.uikit.Avatar -import com.sdds.compose.uikit.AvatarPlaceholder -import com.sdds.compose.uikit.AvatarStatus -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние [Avatar] - * - * @property status статус [AvatarStatus] - * @property exampleMode режим отображения аватара - * @property placeholder текст-заглушка - * @property threshold максимальное кол-во отображаемых [Avatar] - * @property extra обвесы (badge, counter) - * @property extraPlacement расположение обвесов - * @property badgeText текст badge - * @property badgeContentStart иконка badge вначале - * @property badgeContentEnd иконка badge вконце - * @property counterText текст счетчика - */ -internal data class AvatarUiState( - override val variant: String = "", - override val appearance: String = "", - val status: AvatarStatus = AvatarStatus.Active, - val exampleMode: ExampleMode = ExampleMode.Local, - val placeholder: AvatarPlaceholder? = AvatarPlaceholder.Name("Michael Scott"), - val threshold: Int = DEFAULT_THRESHOLD, - val extra: AvatarExtra = AvatarExtra.None, - val extraPlacement: AvatarExtraPlacement = AvatarExtraPlacement.TopStart, - val badgeText: String = "Label", - val badgeContentStart: Boolean = false, - val badgeContentEnd: Boolean = false, - val counterText: String = "1", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -/** - * Режим отображения аватара. - * Нужен только для песочницы, чтобы показать, что аватар может работать в нескольких режимах. - */ -internal enum class ExampleMode { - /** - * Аватар будет отображать локальное изображение - */ - Local, - - /** - * Аватар будет отображать изображение, загруженное из интернета - */ - Remote, - - /** - * Аватар будет отображать заглушку - */ - Placeholder, -} - -/** - * Обвесы аватара - */ -enum class AvatarExtra { - /** - * Без обвеса - */ - None, - - /** - * Бейдж - */ - Badge, - - /** - * Счетчик - */ - Counter, -} - -/** - * Расположение обвесов [Avatar] - * @property alignment значение расположения - */ -enum class AvatarExtraPlacement(val alignment: Alignment) { - TopStart(Alignment.TopStart), - TopEnd(Alignment.TopEnd), - BottomEnd(Alignment.BottomEnd), - BottomStart(Alignment.BottomStart), -} - -private const val DEFAULT_THRESHOLD = 3 diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarViewModel.kt deleted file mode 100644 index b4b538b2c4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/AvatarViewModel.kt +++ /dev/null @@ -1,145 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.AvatarPlaceholder -import com.sdds.compose.uikit.AvatarStatus -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Avatar - */ -internal class AvatarViewModel( - defaultState: AvatarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateDisplayType(type: ExampleMode) { - internalUiState.value = internalUiState.value.copy(exampleMode = type) - } - - private fun updateStatus(status: AvatarStatus) { - internalUiState.value = internalUiState.value.copy(status = status) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholder = if (text.isNotBlank()) { - AvatarPlaceholder.Name(text) - } else { - null - }, - ) - } - - private fun updateExtra(extra: AvatarExtra) { - internalUiState.value = internalUiState.value.copy(extra = extra) - } - - private fun updateExtraPlacement(extraPlacement: AvatarExtraPlacement) { - internalUiState.value = internalUiState.value.copy(extraPlacement = extraPlacement) - } - - private fun updateBadgeText(badgeText: String) { - internalUiState.value = internalUiState.value.copy(badgeText = badgeText) - } - - private fun updateBadgeContentStart(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(badgeContentStart = enabled) - } - - private fun updateBadgeContentEnd(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(badgeContentEnd = enabled) - } - - private fun updateCounterText(counterText: String) { - internalUiState.value = internalUiState.value.copy(counterText = counterText) - } - - override fun AvatarUiState.toProps(): List> { - return mutableListOf>().apply { - enumProperty( - name = "exampleMode", - value = exampleMode, - onApply = { updateDisplayType(it) }, - ).let(::add) - - enumProperty( - name = "status", - value = status, - onApply = { updateStatus(it) }, - ).let(::add) - - Property.StringProperty( - name = "placeholder", - value = placeholder?.name.orEmpty(), - onApply = { updatePlaceholder(it) }, - ).let(::add) - - enumProperty( - name = "extra", - value = extra, - onApply = { updateExtra(it) }, - ).let(::add) - - if (extra != AvatarExtra.None) { - enumProperty( - name = "extraPlacement", - value = extraPlacement, - onApply = { updateExtraPlacement(it) }, - ).let(::add) - } - - if (extra == AvatarExtra.Badge) { - Property.StringProperty( - name = "badgeText", - value = badgeText, - onApply = { updateBadgeText(it) }, - ).let(::add) - - Property.BooleanProperty( - name = "badgeContentStart", - value = badgeContentStart, - onApply = { updateBadgeContentStart(it) }, - ).let(::add) - - Property.BooleanProperty( - name = "badgeContentEnd", - value = badgeContentEnd, - onApply = { updateBadgeContentEnd(it) }, - ).let(::add) - } - - if (extra == AvatarExtra.Counter) { - Property.StringProperty( - name = "counterText", - value = counterText, - onApply = { updateCounterText(it) }, - ).let(::add) - } - } - } - - companion object { - - val AvatarPlaceholder.name get() = (this as? AvatarPlaceholder.Name)?.fullName - } -} - -/** - * Фабрика [AvatarViewModel] - */ -internal class AvatarViewModelFactory( - private val defaultState: AvatarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AvatarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupScreen.kt deleted file mode 100644 index eed81f6efc..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupScreen.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose.group - -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import coil.compose.AsyncImage -import com.sdds.compose.uikit.Avatar -import com.sdds.compose.uikit.AvatarCounter -import com.sdds.compose.uikit.AvatarGroup -import com.sdds.compose.uikit.Image -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.avatar.compose.AvatarScreen -import com.sdds.playground.sandbox.avatar.compose.AvatarUiState -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [AvatarGroup] - */ -@Composable -internal fun AvatarGroupScreen(componentKey: ComponentKey = ComponentKey.AvatarGroup) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = AvatarGroupViewModelFactory(AvatarUiState(), componentKey), - key = componentKey.toString(), - ), - component = { avatarUiState, style -> - AvatarGroup( - style = style, - threshold = avatarUiState.threshold, - ) { - avatars(3) { index -> - if (index % 2 == 0) { - Avatar(placeholder = avatarUiState.placeholder) - } else { - Avatar { - AsyncImage( - modifier = Modifier.matchParentSize(), - contentScale = ContentScale.Crop, - model = "https://cdn.costumewall.com/wp-content/uploads/2018/09/michael-scott.jpg", - contentDescription = "AsyncAvatar", - ) - } - } - } - - avatar { - Avatar { - Image( - modifier = Modifier.matchParentSize(), - contentScale = ContentScale.Crop, - painter = painterResource(id = R.drawable.il_avatar_test), - contentDescription = "Avatar", - ) - } - } - counter { - AvatarCounter(displayCount = it) - } - } - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun AvatarScreenPreview() { - SandboxTheme { - AvatarScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupViewModel.kt deleted file mode 100644 index b4afd3c4c2..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/compose/group/AvatarGroupViewModel.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.avatar.compose.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.AvatarPlaceholder -import com.sdds.playground.sandbox.avatar.compose.AvatarUiState -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Avatar - */ -internal class AvatarGroupViewModel( - defaultState: AvatarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholder = if (text.isNotBlank()) { - AvatarPlaceholder.Name(text) - } else { - null - }, - ) - } - - private fun updateThreshold(threshold: Int) { - internalUiState.value = internalUiState.value.copy(threshold = threshold) - } - - override fun AvatarUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "placeholder", - value = placeholder?.name.orEmpty(), - onApply = { updatePlaceholder(it) }, - ), - Property.IntProperty( - name = "threshold", - value = threshold, - onApply = { updateThreshold(it) }, - ), - ) - } - - companion object { - val AvatarPlaceholder.name get() = (this as? AvatarPlaceholder.Name)?.fullName - } -} - -/** - * Фабрика [AvatarGroupViewModel] - */ -internal class AvatarGroupViewModelFactory( - private val defaultState: AvatarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AvatarGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarFragment.kt deleted file mode 100644 index b29ba77435..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.avatar.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Avatar -import com.sdds.uikit.fixtures.stories.avatar.AvatarUiState -import com.sdds.uikit.fixtures.stories.avatar.applyState -import com.sdds.uikit.fixtures.stories.avatar.avatar - -/** - * Фрагмент с компонентом Avatar - * @author Малышев Александр on 19.08.2024 - */ -internal class AvatarFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - AvatarViewModelFactory( - defaultState = getState { AvatarUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Avatar { - return avatar(contextWrapper) - } - - override fun onComponentUpdate(component: Avatar?, state: AvatarUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupFragment.kt deleted file mode 100644 index 8dea0b07b8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.avatar.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.AvatarGroup -import com.sdds.uikit.fixtures.stories.avatar.AvatarUiState -import com.sdds.uikit.fixtures.stories.avatar.applyState -import com.sdds.uikit.fixtures.stories.avatar.avatarGroup - -/** - * Фрагмент с компонентом AvatarGroup - * @author Малышев Александр on 19.08.2024 - */ -internal class AvatarGroupFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - AvatarGroupViewModelFactory( - defaultState = getState { AvatarUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): AvatarGroup { - return avatarGroup(contextWrapper) - } - - override fun onComponentUpdate(component: AvatarGroup?, state: AvatarUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupViewModel.kt deleted file mode 100644 index ba913b1022..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarGroupViewModel.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.avatar.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import androidx.lifecycle.viewmodel.CreationExtras -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.Avatar -import com.sdds.uikit.fixtures.stories.avatar.AvatarUiState -import com.sdds.uikit.fixtures.stories.avatar.ExampleMode - -/** - * ViewModel для экранов с компонентом [AvatarGroup] - */ -internal class AvatarGroupViewModel( - defaultState: AvatarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = AvatarPropertyName.values().find { it.value == name } - when (pName) { - AvatarPropertyName.ExampleMode -> updateDisplayType(ExampleMode.valueOf(value?.toString() ?: return)) - AvatarPropertyName.Status -> updateStatus(Avatar.Status.valueOf(value?.toString() ?: return)) - AvatarPropertyName.Placeholder -> updatePlaceholder(value?.toString()) - AvatarPropertyName.Threshold -> updateThreshold(value?.toString()?.toIntOrNull() ?: 0) - else -> Unit - } - } - - private fun updateDisplayType(type: ExampleMode) { - internalUiState.value = internalUiState.value.copy(exampleMode = type) - } - - private fun updateStatus(status: Avatar.Status) { - internalUiState.value = internalUiState.value.copy(status = status) - } - - private fun updatePlaceholder(text: String?) { - internalUiState.value = internalUiState.value.copy(fullName = text) - } - - private fun updateThreshold(threshold: Int) { - internalUiState.value = internalUiState.value.copy(threshold = threshold) - } - - override fun AvatarUiState.toProps(): List> { - return mutableListOf>().apply { - add( - Property.StringProperty( - name = AvatarPropertyName.Placeholder.value, - value = fullName.orEmpty(), - ), - ) - add( - Property.IntProperty( - name = AvatarPropertyName.Threshold.value, - value = threshold, - ), - ) - } - } - - private enum class AvatarPropertyName(val value: String) { - ExampleMode("example mode"), - Status("status"), - Placeholder("placeholder"), - Threshold("threshold"), - } -} - -/** - * Фабрика [AvatarGroupViewModel] - */ -internal class AvatarGroupViewModelFactory( - private val defaultState: AvatarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class, extras: CreationExtras): T { - return AvatarGroupViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarViewModel.kt deleted file mode 100644 index 2f6da5d547..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/avatar/vs/AvatarViewModel.kt +++ /dev/null @@ -1,176 +0,0 @@ -package com.sdds.playground.sandbox.avatar.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.Avatar -import com.sdds.uikit.fixtures.stories.avatar.AvatarExtra -import com.sdds.uikit.fixtures.stories.avatar.AvatarExtraPlacement -import com.sdds.uikit.fixtures.stories.avatar.AvatarUiState -import com.sdds.uikit.fixtures.stories.avatar.ExampleMode - -/** - * ViewModel для экранов с компонентом [Avatar] - */ -internal class AvatarViewModel( - defaultState: AvatarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = AvatarPropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - AvatarPropertyName.ExampleMode -> updateDisplayType(ExampleMode.valueOf(valueString)) - AvatarPropertyName.Status -> updateStatus(Avatar.Status.valueOf(valueString)) - AvatarPropertyName.Placeholder -> updatePlaceholder(valueString) - AvatarPropertyName.Threshold -> updateThreshold(valueString.toIntOrNull() ?: 0) - AvatarPropertyName.Extra -> updateExtra(AvatarExtra.valueOf(valueString)) - AvatarPropertyName.ExtraPlacement -> updateExtraPlacement(AvatarExtraPlacement.valueOf(valueString)) - AvatarPropertyName.BadgeText -> updateBadgeText(valueString) - AvatarPropertyName.BadgeContentStart -> updateBadgeContentStart(valueString.toBoolean()) - AvatarPropertyName.BadgeContentEnd -> updateBadgeContentEnd(valueString.toBoolean()) - AvatarPropertyName.CounterText -> updateCounterText(valueString) - null -> Unit - } - } - - private fun updateDisplayType(type: ExampleMode) { - internalUiState.value = internalUiState.value.copy(exampleMode = type) - } - - private fun updateStatus(status: Avatar.Status) { - internalUiState.value = internalUiState.value.copy(status = status) - } - - private fun updatePlaceholder(text: String?) { - internalUiState.value = internalUiState.value.copy(fullName = text) - } - - private fun updateThreshold(threshold: Int) { - internalUiState.value = internalUiState.value.copy(threshold = threshold) - } - - private fun updateExtra(extra: AvatarExtra) { - internalUiState.value = internalUiState.value.copy(extra = extra) - } - - private fun updateExtraPlacement(extraPlacement: AvatarExtraPlacement) { - internalUiState.value = internalUiState.value.copy(extraPlacement = extraPlacement) - } - - private fun updateBadgeText(badgeText: String) { - internalUiState.value = internalUiState.value.copy(badgeText = badgeText) - } - - private fun updateBadgeContentStart(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(badgeContentStart = enabled) - } - - private fun updateBadgeContentEnd(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(badgeContentEnd = enabled) - } - - private fun updateCounterText(counterText: String) { - internalUiState.value = internalUiState.value.copy(counterText = counterText) - } - - @Suppress("LongMethod") - override fun AvatarUiState.toProps(): List> { - return mutableListOf>().apply { - add( - enumProperty( - name = AvatarPropertyName.ExampleMode.value, - value = exampleMode, - ), - ) - add( - enumProperty( - name = AvatarPropertyName.Status.value, - value = status, - ), - ) - add( - Property.StringProperty( - name = AvatarPropertyName.Placeholder.value, - value = fullName.orEmpty(), - ), - ) - add( - enumProperty( - name = AvatarPropertyName.Extra.value, - value = extra, - ), - ) - if (extra != AvatarExtra.None) { - add( - enumProperty( - name = AvatarPropertyName.ExtraPlacement.value, - value = extraPlacement, - ), - ) - } - if (extra == AvatarExtra.Badge) { - add( - Property.StringProperty( - name = AvatarPropertyName.BadgeText.value, - value = badgeText, - ), - ) - add( - Property.BooleanProperty( - name = AvatarPropertyName.BadgeContentStart.value, - value = badgeContentStart, - ), - ) - add( - Property.BooleanProperty( - name = AvatarPropertyName.BadgeContentEnd.value, - value = badgeContentEnd, - ), - ) - } - if (extra == AvatarExtra.Counter) { - add( - Property.StringProperty( - name = AvatarPropertyName.CounterText.value, - value = counterText, - ), - ) - } - } - } - - private enum class AvatarPropertyName(val value: String) { - ExampleMode("exampleMode"), - Status("status"), - Placeholder("placeholder"), - Threshold("threshold"), - Extra("extra"), - ExtraPlacement("extraPlacement"), - BadgeText("badgeText"), - BadgeContentStart("badgeContentStart"), - BadgeContentEnd("badgeContentEnd"), - CounterText("counterText"), - } -} - -/** - * Фабрика [AvatarGroupViewModel] - * @param groupMode режим группы аватаров - */ -internal class AvatarViewModelFactory( - private val defaultState: AvatarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return AvatarViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeParametersViewModel.kt deleted file mode 100644 index ccb3c8ffef..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeParametersViewModel.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.badge.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Badge - */ -internal class BadgeParametersViewModel( - defaultState: BadgeUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text) - } - - private fun updateContentLeft(contentLeft: Boolean) { - internalUiState.value = internalUiState.value.copy(contentLeft = contentLeft) - } - - private fun updateContentRight(contentRight: Boolean) { - internalUiState.value = internalUiState.value.copy(contentRight = contentRight) - } - - override fun BadgeUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "label", - value = label, - onApply = { updateLabel(it) }, - ), - - Property.BooleanProperty( - name = "left content", - value = contentLeft, - onApply = { updateContentLeft(it) }, - ), - - Property.BooleanProperty( - name = "right content", - value = contentRight, - onApply = { updateContentRight(it) }, - ), - - ) - } -} - -/** - * Фабрика [BadgeParametersViewModel] - */ -internal class BadgeParametersViewModelFactory( - private val defaultState: BadgeUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return BadgeParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeScreen.kt deleted file mode 100644 index 9e0ed71f53..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeScreen.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.badge.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Badge -import com.sdds.compose.uikit.Icon -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [Badge] - */ -@Composable -internal fun BadgeScreen(componentKey: ComponentKey = ComponentKey.Badge) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = BadgeParametersViewModelFactory(BadgeUiState(), componentKey), - key = componentKey.toString(), - ), - component = { badgeUiState, badgeStyle -> - Badge( - style = badgeStyle, - label = badgeUiState.label, - startContent = startContent(badgeUiState.contentLeft), - endContent = endContent(badgeUiState.contentRight), - ) - }, - ) -} - -private fun startContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = R.drawable.ic_plasma_16), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun endContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = R.drawable.ic_plasma_16), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun BadgeScreenPreview() { - SandboxTheme { - BadgeScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeUiState.kt deleted file mode 100644 index 7507ad8713..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/BadgeUiState.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.badge.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние Badge - * @property type вариации стилией - * @see [BadgeType] - * @property label текст - * @property contentLeft контент слева - * @property contentRight контент справа - */ -internal data class BadgeUiState( - override val variant: String = "", - override val appearance: String = "", - val label: String = "Label", - val contentLeft: Boolean = true, - val contentRight: Boolean = false, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeParametersViewModel.kt deleted file mode 100644 index 6c187789f1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeParametersViewModel.kt +++ /dev/null @@ -1,35 +0,0 @@ -package com.sdds.playground.sandbox.badge.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом IconBadge - */ -internal class IconBadgeParametersViewModel( - defaultState: BadgeUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun BadgeUiState.toProps(): List> { - return emptyList() - } -} - -/** - * Фабрика [IconBadgeParametersViewModel] - */ -internal class IconBadgeParametersViewModelFactory( - private val defaultState: BadgeUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconBadgeParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeScreen.kt deleted file mode 100644 index 8e6382d98d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/compose/IconBadgeScreen.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.badge.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.IconBadge -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun IconBadgeScreen(componentKey: ComponentKey = ComponentKey.IconBadge) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = IconBadgeParametersViewModelFactory(BadgeUiState(), componentKey), - key = componentKey.toString(), - ), - component = { badgeUiState, style -> - IconBadge( - style = style, - content = startContent(badgeUiState.contentLeft), - ) - }, - ) -} - -private fun startContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = R.drawable.ic_plasma_16), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun IconBadgeScreenPreview() { - SandboxTheme { - IconBadgeScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeFragment.kt deleted file mode 100644 index 5d88bed06b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeFragment.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.badge.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Badge -import com.sdds.uikit.fixtures.stories.badge.BadgeUiState -import com.sdds.uikit.fixtures.stories.badge.applyState -import com.sdds.uikit.fixtures.stories.badge.badge - -/** - * Фрагмент с компонентом Badge - */ -internal class BadgeFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - BadgeParametersViewModelFactory( - defaultState = getState { BadgeUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Badge { - return badge(contextWrapper) - } - - override fun onComponentUpdate(component: Badge?, state: BadgeUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeParametersViewModel.kt deleted file mode 100644 index 03e1192299..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/BadgeParametersViewModel.kt +++ /dev/null @@ -1,69 +0,0 @@ -package com.sdds.playground.sandbox.badge.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.badge.BadgeUiState - -/** - * ViewModel для экранов с компонентом Badge и IconBadge - */ -internal class BadgeParametersViewModel( - defaultState: BadgeUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentName = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.Label -> currentName.copy(label = valueString) - PropertyName.ContentLeft -> currentName.copy(contentLeft = valueString.toBoolean()) - PropertyName.ContentRight -> currentName.copy(contentRight = valueString.toBoolean()) - } - } - - override fun BadgeUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = PropertyName.Label.value, - value = label, - ), - Property.BooleanProperty( - name = PropertyName.ContentLeft.value, - value = contentLeft, - ), - Property.BooleanProperty( - name = PropertyName.ContentRight.value, - value = contentRight, - ), - ) - } - - private enum class PropertyName(val value: String) { - Label("Label"), - ContentLeft("ContentLeft"), - ContentRight("ContentRight"), - } -} - -/** - * Фабрика [BadgeParametersViewModel] - */ -internal class BadgeParametersViewModelFactory( - private val defaultState: BadgeUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return BadgeParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeFragment.kt deleted file mode 100644 index a24c7319aa..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeFragment.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.badge.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.IconBadge -import com.sdds.uikit.fixtures.stories.badge.BadgeUiState -import com.sdds.uikit.fixtures.stories.badge.iconBadge - -/** - * Фрагмент с компонентом IconBadge - */ -internal class IconBadgeFragment : ComponentFragment() { - override val viewModelFactory: ViewModelProvider.Factory by lazy { - IconBadgeParametersViewModelFactory( - defaultState = getState { BadgeUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): IconBadge { - return iconBadge(contextWrapper) - } - - override fun onComponentUpdate(component: IconBadge?, state: BadgeUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeParametersViewModel.kt deleted file mode 100644 index 3e0caa727d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/badge/vs/IconBadgeParametersViewModel.kt +++ /dev/null @@ -1,35 +0,0 @@ -package com.sdds.playground.sandbox.badge.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.badge.BadgeUiState - -/** - * ViewModel для экранов с компонентом Badge и IconBadge - */ -internal class IconBadgeParametersViewModel( - defaultState: BadgeUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun BadgeUiState.toProps(): List> { - return emptyList() - } -} - -/** - * Фабрика [BadgeParametersViewModel] - */ -internal class IconBadgeParametersViewModelFactory( - private val defaultState: BadgeUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconBadgeParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetParametersViewModel.kt deleted file mode 100644 index 0f80235bb9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetParametersViewModel.kt +++ /dev/null @@ -1,155 +0,0 @@ -package com.sdds.playground.sandbox.bottomsheet.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.BottomSheetHandlePlacement -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом BottomSheet - */ -internal class BottomSheetParametersViewModel( - defaultState: BottomSheetUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun BottomSheetUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = "handlePlacement", - value = handlePlacement, - onApply = { updateHandlePlacement(it) }, - ), - Property.BooleanProperty( - name = "header", - value = header, - onApply = { updateHeader(it) }, - ), - Property.BooleanProperty( - name = "footer", - value = footer, - onApply = { updateFooter(it) }, - ), - Property.BooleanProperty( - name = "fixedHeader", - value = fixedHeader, - onApply = { updateFixedHeader(it) }, - ), - Property.BooleanProperty( - name = "fixedFooter", - value = fixedFooter, - onApply = { updateFixedFooter(it) }, - ), - Property.BooleanProperty( - name = "fitContent", - value = fitContent, - onApply = { updateFitContent(it) }, - ), - Property.BooleanProperty( - name = "skipHalfExpanded", - value = skipHalfExpanded, - onApply = { updateSkipHalfExpanded(it) }, - ), - Property.BooleanProperty( - name = "edgeToEdge", - value = edgeToEdge, - onApply = { updateEdgeToEdge(it) }, - ), - Property.BooleanProperty( - name = "littleContent", - value = littleContent, - onApply = { updateLittleContent(it) }, - ), - Property.BooleanProperty( - name = "dimBackground", - value = dimBackground, - onApply = { updateDimBackground(it) }, - ), - Property.BooleanProperty( - name = "useNativeBlackout", - value = useNativeBlackout, - onApply = { updateUseNativeBlackout(it) }, - ), - ) - } - - private fun updateHandlePlacement(handlePlacement: BottomSheetHandlePlacement) { - internalUiState.value = internalUiState.value.copy( - handlePlacement = handlePlacement, - ) - } - - private fun updateHeader(header: Boolean) { - internalUiState.value = internalUiState.value.copy( - header = header, - ) - } - - private fun updateFooter(footer: Boolean) { - internalUiState.value = internalUiState.value.copy( - footer = footer, - ) - } - - private fun updateFixedHeader(fixedHeader: Boolean) { - internalUiState.value = internalUiState.value.copy( - fixedHeader = fixedHeader, - ) - } - - private fun updateFixedFooter(fixedFooter: Boolean) { - internalUiState.value = internalUiState.value.copy( - fixedFooter = fixedFooter, - ) - } - private fun updateFitContent(fitContent: Boolean) { - internalUiState.value = internalUiState.value.copy( - fitContent = fitContent, - ) - } - private fun updateSkipHalfExpanded(skipHalfExpanded: Boolean) { - internalUiState.value = internalUiState.value.copy( - skipHalfExpanded = skipHalfExpanded, - ) - } - private fun updateEdgeToEdge(edgeToEdge: Boolean) { - internalUiState.value = internalUiState.value.copy( - edgeToEdge = edgeToEdge, - ) - } - private fun updateLittleContent(littleContent: Boolean) { - internalUiState.value = internalUiState.value.copy( - littleContent = littleContent, - ) - } - - private fun updateDimBackground(dimBackground: Boolean) { - internalUiState.value = internalUiState.value.copy( - dimBackground = dimBackground, - ) - } - - private fun updateUseNativeBlackout(useNativeBlackout: Boolean) { - internalUiState.value = internalUiState.value.copy( - useNativeBlackout = useNativeBlackout, - ) - } -} - -/** - * Фабрика [BottomSheetParametersViewModel] - */ -internal class BottomSheetParametersViewModelFactory( - private val defaultState: BottomSheetUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return BottomSheetParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetScreen.kt deleted file mode 100644 index 918362bfc9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetScreen.kt +++ /dev/null @@ -1,193 +0,0 @@ -package com.sdds.playground.sandbox.bottomsheet.compose - -import android.util.Log -import androidx.compose.foundation.background -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.heightIn -import androidx.compose.foundation.layout.imePadding -import androidx.compose.foundation.layout.navigationBarsPadding -import androidx.compose.foundation.layout.statusBarsPadding -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.ModalBottomSheet -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.internal.modal.BottomSheetValue -import com.sdds.compose.uikit.internal.modal.rememberModalBottomSheetState -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import kotlinx.coroutines.launch - -/** - * Экран с [ModalBottomSheet] - */ -@Suppress("LongMethod") -@Composable -internal fun BottomSheetScreen(componentKey: ComponentKey = ComponentKey.BottomSheet) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = BottomSheetParametersViewModelFactory(BottomSheetUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - val sheetState = rememberModalBottomSheetState( - initialValue = BottomSheetValue.Hidden, - skipHalfExpanded = uiState.skipHalfExpanded, - ) - val interactionSource = remember { MutableInteractionSource() } - val backgroundColor = style.colors.backgroundColor.colorForInteraction(interactionSource) - val scope = rememberCoroutineScope() - val scrollState = rememberScrollState() - Button( - label = "показать BottomSheet", - onClick = { - scope.launch { - sheetState.show() - } - }, - ) - val bottomInsetsModifier = Modifier.navigationBarsPadding() - .imePadding() - ModalBottomSheet( - modifier = Modifier.statusBarsPadding(), - style = style, - sheetState = sheetState, - onDismiss = { Log.d("BottomSheetScreen", "OnDismiss") }, - dimBackground = uiState.dimBackground, - useNativeBlackout = uiState.useNativeBlackout, - handlePlacement = uiState.handlePlacement, - fitContent = uiState.fitContent, - edgeToEdge = uiState.edgeToEdge, - header = { if (uiState.header && uiState.fixedHeader) Header(backgroundColor) }, - footer = { - if (uiState.footer && uiState.fixedFooter) { - Footer(backgroundColor = backgroundColor, modifier = bottomInsetsModifier) - } - }, - ) { - Column( - modifier = Modifier - .then(if (!uiState.footer && !uiState.fixedFooter) bottomInsetsModifier else Modifier) - .verticalScroll(scrollState), - ) { - if (uiState.header && !uiState.fixedHeader) { - Header(backgroundColor) - } - if (uiState.littleContent) { - SmallBody() - } else { - LargeBody() - } - if (uiState.footer && !uiState.fixedFooter) { - Footer(backgroundColor) - } - } - } - }, - ) -} - -@Composable -private fun Header(backgroundColor: Color) { - Box( - Modifier - .fillMaxWidth() - .heightIn(min = 60.dp) - .background(backgroundColor), - contentAlignment = Alignment.Center, - ) { - Text("Introduction to Android Development") - } -} - -@Composable -private fun Footer( - backgroundColor: Color, - modifier: Modifier = Modifier, -) { - Box( - modifier = Modifier - .background(backgroundColor) - .then(modifier) - .fillMaxWidth(), - ) { - TextField( - modifier = Modifier - .fillMaxWidth(), - value = "", - placeholderText = "Для проверки клавиатуры", - onValueChange = {}, - focusSelectorSettings = FocusSelectorSettings.None, - ) - } -} - -@Composable -private fun LargeBody() { - Text( - "Android operating system is the largest" + - "installed base among various mobile platforms" + - "across the globe. Hundreds of millions of mobile devices" + - "are powered by Android in more than 190 countries of the world." + - " It conquered around 71% of the global market share by the end of 2021," + - "and this trend is growing bigger every other day." + - "The company named Open Handset Alliance developed Android" + - " for the first time that is based on the modified version " + - "of the Linux kernel and other open-source software. " + - "Google sponsored the project at initial stages and in the year 2005" + - " it acquired the whole company. In September 2008, the first Android-powered device" + - " was launched in the market. Android dominates the mobile OS industry" + - " because of the long list of features it provides. It’s user-friendly," + - " has huge community support, provides a greater extent of customization," + - " and a large number of companies build Android-compatible smartphones." + - " As a result, the market observes a sharp increase in the demand" + - " for developing Android mobile applications, and with that companies" + - " need smart developers with the right skill set. At first, the purpose" + - " of Android was thought of as a mobile operating system. However, " + - "with the advancement of code libraries and its popularity among developers" + - " of the divergent domain, Android becomes an absolute set of software" + - " for all devices like tablets, wearables, set-top boxes, smart TVs, notebooks, etc." + - "It is stated that “If you give me six hours to chop down a tree then" + - " I will spend the first four hours in sharpening the axe”. " + - "So in the Android Development World if we consider Android Development " + - "as the tree then Android Studio should be the axe. Yes, if you are starting" + - " Android Development then you must be familiar with Android Studio i.e. the tool" + - " that is used for developing Android applications. Android Studio is the official " + - "IDE (Integrated Development Environment) for Android app development, and it is based o" + - "n JetBrains’ IntelliJ IDEA software.", - ) -} - -@Composable -private fun SmallBody() { - Text( - "Android operating system is the largest" + - "installed base among various mobile platforms" + - "across the globe. Hundreds of millions of mobile devices" + - "are powered by Android in more than 190 countries of the world.", - ) -} - -@Preview(showBackground = true) -@Composable -private fun CounterScreenPreview() { - SandboxTheme { - BottomSheetScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetUiState.kt deleted file mode 100644 index 301ccbe2b4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/bottomsheet/compose/BottomSheetUiState.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.bottomsheet.compose - -import com.sdds.compose.uikit.BottomSheetHandlePlacement -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние BottomSheet - */ -internal data class BottomSheetUiState( - override val variant: String = "", - override val appearance: String = "", - val header: Boolean = false, - val footer: Boolean = false, - val fixedHeader: Boolean = false, - val fixedFooter: Boolean = false, - val handlePlacement: BottomSheetHandlePlacement = BottomSheetHandlePlacement.Auto, - val fitContent: Boolean = false, - val skipHalfExpanded: Boolean = false, - val edgeToEdge: Boolean = true, - val littleContent: Boolean = false, - val dimBackground: Boolean = true, - val useNativeBlackout: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupScreen.kt deleted file mode 100644 index 6fbe13deea..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupScreen.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.buttongroup.compose - -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.ButtonGroup -import com.sdds.compose.uikit.ButtonGroupOrientation -import com.sdds.compose.uikit.ButtonGroupScope -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.IconButton -import com.sdds.icons.R -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [ButtonGroup] - */ -@Composable -internal fun ButtonGroupScreen(componentKey: ComponentKey = ComponentKey.ButtonGroup) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ButtonGroupViewModelFactory( - defaultState = ButtonGroupUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { btnGroupUiState, style -> - val scrollModifier = when (btnGroupUiState.orientation) { - ButtonGroupOrientation.Vertical -> Modifier.verticalScroll(rememberScrollState()) - ButtonGroupOrientation.Horizontal -> Modifier.horizontalScroll(rememberScrollState()) - } - Box(modifier = scrollModifier) { - ButtonGroup( - style = style, - modifier = Modifier.padding(12.dp), - orientation = btnGroupUiState.orientation, - ) { - repeat(btnGroupUiState.amount) { - buttonContent(btnGroupUiState.appearance) - } - } - } - }, - ) -} - -@Composable -internal fun ButtonGroupPreview(style: ButtonGroupStyle) { - ButtonGroup( - style = style, - orientation = ButtonGroupOrientation.Horizontal, - ) { - repeat(3) { - buttonContent() - } - } -} - -private fun ButtonGroupScope.buttonContent(appearance: String = "") { - if (appearance.contains("Icon")) { - button { IconButton(painterResource(R.drawable.ic_plasma_24), {}) } - } else { - button { - Button( - label = "label", - value = "value", - onClick = {}, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupUiState.kt deleted file mode 100644 index 74338fc654..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupUiState.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.buttongroup.compose - -import com.sdds.compose.uikit.ButtonGroupOrientation -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ButtonGroupUiState( - override val variant: String = "", - override val appearance: String = "", - val orientation: ButtonGroupOrientation = ButtonGroupOrientation.Horizontal, - val amount: Int = 3, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupViewModel.kt deleted file mode 100644 index 8dff04ebf0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/compose/ButtonGroupViewModel.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.buttongroup.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента ButtonGroup - */ -internal class ButtonGroupViewModel( - defaultState: ButtonGroupUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ButtonGroupUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { - if (it in 1..10) internalUiState.value = internalUiState.value.copy(amount = it) - }, - ), - enumProperty( - name = "orientation", - value = orientation, - onApply = { internalUiState.value = internalUiState.value.copy(orientation = it) }, - ), - ) - } -} - -internal class ButtonGroupViewModelFactory( - private val defaultState: ButtonGroupUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ButtonGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupFragment.kt deleted file mode 100644 index 22bb4e9a47..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupFragment.kt +++ /dev/null @@ -1,49 +0,0 @@ -package com.sdds.playground.sandbox.buttongroup.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ButtonGroup -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.GroupOrientation -import com.sdds.uikit.fixtures.stories.button.applyState -import com.sdds.uikit.fixtures.stories.button.buttonGroup - -/** - * Фрагмент с компонентом ButtonGroup - */ -internal class ButtonGroupFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ButtonGroupParametersViewModelFactory( - defaultState = getState { ButtonUiState() }, - componentKey = componentKey, - ) - } - - override val scrollMode: ScrollMode - get() = if (orientation == GroupOrientation.Vertical) ScrollMode.VERTICAL else ScrollMode.HORIZONTAL - - private var orientation: GroupOrientation = GroupOrientation.Horizontal - - override fun shouldRecreateComponentOnStateUpdate(state: ButtonUiState): Boolean { - return if (orientation != state.orientation) { - orientation = state.orientation - true - } else { - false - } - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): ButtonGroup { - return buttonGroup(contextWrapper) - } - - override fun onComponentUpdate(component: ButtonGroup?, state: ButtonUiState) { - if (componentKey.value.contains("Icon")) { - component?.applyState(state, true) - } else { - component?.applyState(state) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupParametersViewModel.kt deleted file mode 100644 index f535c14991..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttongroup/vs/ButtonGroupParametersViewModel.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.buttongroup.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.Button -import com.sdds.uikit.fixtures.stories.button.ButtonIcon -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.GroupOrientation - -/** - * ViewModel для экранов с компонентом ButtonGroup - */ -internal class ButtonGroupParametersViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val pName = PropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - PropertyName.Icon -> updateIcon( - when (valueString) { - ButtonIcon.Start::class.simpleName -> ButtonIcon.Start - ButtonIcon.End::class.simpleName -> ButtonIcon.End - else -> ButtonIcon.No - }, - ) - - PropertyName.Label -> updateLabel(value.toString()) - PropertyName.Value -> updateValue(valueString) - PropertyName.Spacing -> updateSpacing(Button.Spacing.valueOf(valueString)) - PropertyName.Loading -> updateLoadingState(valueString.toBoolean()) - PropertyName.Enabled -> updateEnabledState(valueString.toBoolean()) - PropertyName.Orientation -> updateOrientation(GroupOrientation.valueOf(valueString)) - PropertyName.Amount -> if (valueString.matches(Regex("[0-9]+"))) { - updateAmount(valueString.toInt()) - } else { - internalUiState.value.amount - } - - null -> {} - } - } - - private fun updateOrientation(orientation: GroupOrientation) { - internalUiState.value = internalUiState.value.copy( - orientation = orientation, - ) - } - - private fun updateAmount(amount: Int) { - internalUiState.value = internalUiState.value.copy( - amount = amount, - ) - } - - private fun updateIcon(icon: ButtonIcon) { - internalUiState.value = internalUiState.value.copy( - icon = icon, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - buttonLabel = label, - ) - } - - private fun updateValue(value: String?) { - internalUiState.value = internalUiState.value.copy( - buttonValue = value.takeIf { it?.isNotBlank() == true }, - ) - } - - private fun updateSpacing(spacing: Button.Spacing) { - internalUiState.value = internalUiState.value.copy( - spacing = spacing, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return if (componentKey.value.contains("Icon")) { - this.toIconButtonProps() - } else { - this.toBasicButtonProps() - } - } - - private fun ButtonUiState.toIconButtonProps() = - listOfNotNull( - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Loading.value, - value = loading, - ), - enumProperty( - name = PropertyName.Orientation.value, - value = orientation, - ), - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - ) - - private fun ButtonUiState.toBasicButtonProps() = - listOfNotNull( - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - ButtonIcon.Start::class.simpleName.orEmpty(), - ButtonIcon.End::class.simpleName.orEmpty(), - ButtonIcon.No::class.simpleName.orEmpty(), - ), - ), - - Property.StringProperty( - name = PropertyName.Label.value, - value = buttonLabel, - ), - Property.StringProperty( - name = PropertyName.Value.value, - value = buttonValue.orEmpty(), - ), - enumProperty( - name = PropertyName.Spacing.value, - value = spacing, - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Loading.value, - value = loading, - ), - enumProperty( - name = PropertyName.Orientation.value, - value = orientation, - ), - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - ) - - private enum class PropertyName(val value: String) { - Icon("icon"), - Label("label"), - Value("value"), - Spacing("spacing"), - Loading("loading"), - Enabled("enabled"), - Orientation("orientation"), - Amount("amount"), - } -} - -/** - * Фабрика [ButtonGroupParametersViewModel] - */ -internal class ButtonGroupParametersViewModelFactory( - private val defaultState: ButtonUiState = ButtonUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ButtonGroupParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/BasicButtonScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/BasicButtonScreen.kt deleted file mode 100644 index 5c547dfac8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/BasicButtonScreen.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import android.util.Log -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.rememberScrollState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.ButtonIcons -import com.sdds.compose.uikit.ButtonSpacing -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран со [Button] - */ -@Composable -internal fun BasicButtonScreen(componentKey: ComponentKey = ComponentKey.BasicButton) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ButtonViewModelFactory(ButtonUiState(), componentKey), - key = componentKey.toString(), - ), - component = { buttonState, style -> - val widthModifier = if (buttonState.hasFixedWidth) { - Modifier.width(260.dp) - } else { - Modifier - } - Button( - modifier = widthModifier, - label = buttonState.buttonLabel, - value = buttonState.buttonValue, - style = style, - enabled = buttonState.enabled, - loading = buttonState.loading, - spacing = buttonState.spacing, - icons = when (val icon = buttonState.icon) { - ButtonIcon.End -> ButtonIcons(endRes = icon.iconId) - ButtonIcon.No -> null - ButtonIcon.Start -> ButtonIcons(startRes = icon.iconId) - }, - onClickLabel = "Протестировать текст для Accessibility", - onClick = { - Log.d("BasicButton", "onClick") - }, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun ButtonsScreenPreview() { - SandboxTheme { - BasicButtonScreen() - } -} - -@Preview -@Composable -private fun TestButtonInScrollContainer() { - SandboxTheme { - Row( - Modifier.horizontalScroll(rememberScrollState()), - ) { - repeat(20) { - Button( - modifier = Modifier, - label = "Label$it", - value = "Value", - spacing = ButtonSpacing.SpaceBetween, - onClick = { - Log.d("BasicButton", "onClick") - }, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonPreviews.kt deleted file mode 100644 index 806bef750a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonPreviews.kt +++ /dev/null @@ -1,472 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.ButtonIcons -import com.sdds.compose.uikit.ButtonSpacing -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.basicbutton.Accent -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Clear -import com.sdds.serv.styles.basicbutton.Dark -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.L -import com.sdds.serv.styles.basicbutton.M -import com.sdds.serv.styles.basicbutton.Negative -import com.sdds.serv.styles.basicbutton.Positive -import com.sdds.serv.styles.basicbutton.S -import com.sdds.serv.styles.basicbutton.Secondary -import com.sdds.serv.styles.basicbutton.Warning -import com.sdds.serv.styles.basicbutton.White -import com.sdds.serv.styles.basicbutton.Xs -import com.sdds.serv.styles.iconbutton.Accent -import com.sdds.serv.styles.iconbutton.Clear -import com.sdds.serv.styles.iconbutton.Dark -import com.sdds.serv.styles.iconbutton.Default -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.L -import com.sdds.serv.styles.iconbutton.M -import com.sdds.serv.styles.iconbutton.Negative -import com.sdds.serv.styles.iconbutton.Pilled -import com.sdds.serv.styles.iconbutton.Positive -import com.sdds.serv.styles.iconbutton.S -import com.sdds.serv.styles.iconbutton.Secondary -import com.sdds.serv.styles.iconbutton.Warning -import com.sdds.serv.styles.iconbutton.White -import com.sdds.serv.styles.iconbutton.Xs -import com.sdds.serv.styles.linkbutton.Accent -import com.sdds.serv.styles.linkbutton.Default -import com.sdds.serv.styles.linkbutton.L -import com.sdds.serv.styles.linkbutton.LinkButton -import com.sdds.serv.styles.linkbutton.M -import com.sdds.serv.styles.linkbutton.S -import com.sdds.serv.styles.linkbutton.Warning -import com.sdds.serv.styles.linkbutton.Xs - -/** - * Previews для тестирования - */ -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeLDefault() { - SandboxTheme { - Button( - style = BasicButton.L.Default.style(), - label = "Label", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeMAccent() { - SandboxTheme { - Button( - style = BasicButton.M.Accent.style(), - icons = ButtonIcons(start = painterResource(id = R.drawable.ic_plasma_24)), - label = "Label", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeSWarning() { - SandboxTheme { - Button( - style = BasicButton.S.Warning.style(), - icons = ButtonIcons(end = painterResource(id = R.drawable.ic_plasma_24)), - label = "Label", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeXSDark() { - SandboxTheme { - Button( - style = BasicButton.Xs.Dark.style(), - label = "Label", - value = "Value", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeLIsLoading() { - SandboxTheme { - Button( - style = BasicButton.L.Default.style(), - label = "Label", - value = "", - enabled = true, - loading = true, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeLDisabled() { - SandboxTheme { - Button( - style = BasicButton.L.Default.style(), - spacing = ButtonSpacing.Packed, - label = "Label", - value = "", - enabled = false, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeLSecondary() { - SandboxTheme { - Button( - style = BasicButton.L.Secondary.style(), - icons = ButtonIcons(start = painterResource(id = R.drawable.ic_plasma_24)), - spacing = ButtonSpacing.Packed, - label = "Label", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeMSpaceBetween() { - SandboxTheme { - Button( - style = BasicButton.M.Clear.style(), - icons = ButtonIcons(start = painterResource(id = R.drawable.ic_plasma_16)), - spacing = ButtonSpacing.SpaceBetween, - label = "Label", - value = "Value", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeSLongText() { - SandboxTheme { - Button( - style = BasicButton.S.Positive.style(), - icons = ButtonIcons(end = painterResource(id = R.drawable.ic_plasma_16)), - spacing = ButtonSpacing.Packed, - label = "LabelLabelLabelLabelLabelLabelLabelLabelLabelLabelLabelLabelLabelLabel", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeXSNegative() { - SandboxTheme { - Button( - style = BasicButton.Xs.Negative.style(), - icons = ButtonIcons(end = painterResource(id = R.drawable.ic_plasma_16)), - spacing = ButtonSpacing.Packed, - label = "Label", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxButtonPreviewSizeLWhite() { - SandboxTheme { - Button( - style = BasicButton.L.White.style(), - icons = ButtonIcons(end = painterResource(id = R.drawable.ic_plasma_24)), - spacing = ButtonSpacing.Packed, - label = "Label", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewLDefault() { - SandboxTheme { - IconButton( - style = IconButton.L.Default.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewMAccent() { - SandboxTheme { - IconButton( - style = IconButton.M.Accent.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewSWarning() { - SandboxTheme { - IconButton( - style = IconButton.S.Warning.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewXSDark() { - SandboxTheme { - IconButton( - style = IconButton.Xs.Dark.style(), - icon = painterResource(id = R.drawable.ic_plasma_16), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewIsLoading() { - SandboxTheme { - IconButton( - style = IconButton.L.Default.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewLDisabled() { - SandboxTheme { - IconButton( - style = IconButton.L.Default.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = false, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewLSecondary() { - SandboxTheme { - IconButton( - style = IconButton.L.Pilled.Secondary.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewMClear() { - SandboxTheme { - IconButton( - style = IconButton.M.Clear.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewSPositive() { - SandboxTheme { - IconButton( - style = IconButton.S.Positive.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewXSNegative() { - SandboxTheme { - IconButton( - style = IconButton.Xs.Pilled.Negative.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxIconButtonPreviewLWhiteDarkTheme() { - SandboxTheme { - IconButton( - style = IconButton.L.White.style(), - icon = painterResource(id = R.drawable.ic_plasma_24), - onClick = {}, - enabled = true, - loading = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeLDefault() { - SandboxTheme { - Button( - style = LinkButton.L.Default.style(), - label = "Label", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeLIsLoading() { - SandboxTheme { - Button( - style = LinkButton.L.Default.style(), - label = "Label", - value = "", - enabled = true, - loading = true, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeMAccent() { - SandboxTheme { - Button( - style = LinkButton.M.Accent.style(), - icons = ButtonIcons(start = painterResource(id = R.drawable.ic_plasma_24)), - label = "Label", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeLDisabled() { - SandboxTheme { - Button( - style = LinkButton.L.Default.style(), - spacing = ButtonSpacing.Packed, - label = "Label", - value = "", - enabled = false, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeSWarning() { - SandboxTheme { - Button( - style = LinkButton.S.Warning.style(), - icons = ButtonIcons(end = painterResource(id = R.drawable.ic_plasma_24)), - label = "Label", - value = "", - enabled = true, - loading = false, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxLinkButtonPreviewSizeXSAccent() { - SandboxTheme { - Button( - style = LinkButton.Xs.Accent.style(), - label = "Label", - enabled = true, - loading = false, - onClick = {}, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonUiState.kt deleted file mode 100644 index 035bb79808..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonUiState.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import com.sdds.compose.uikit.ButtonSpacing -import com.sdds.playground.sandbox.core.compose.UiState -import com.sdds.icons.R.drawable as Icons - -/** - * Состояние кнопки - * @property icon положение и ресурс иконки кнопки [ButtonIcon] - * @property buttonLabel подпись кнопки - * @property buttonValue значение кнопки - * @property spacing способ группировки контента в кнопке [ButtonSpacing] - * @property enabled включена ли кнопка - * @property loading индикация загрузки - */ -internal data class ButtonUiState( - override val variant: String = "", - override val appearance: String = "", - val icon: ButtonIcon = ButtonIcon.Start, - val buttonLabel: String = "Label", - val buttonValue: String? = null, - val spacing: ButtonSpacing = ButtonSpacing.Packed, - val hasFixedWidth: Boolean = false, - val enabled: Boolean = true, - val loading: Boolean = false, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -/** - * Иконка кнопки - */ -internal sealed class ButtonIcon(val iconId: Int = Icons.ic_plasma_24) { - - /** - * Иконка вначале кнопки - */ - object Start : ButtonIcon() - - /** - * Иконка вконце кнопки - */ - object End : ButtonIcon() - - /** - * Отсутствие иконки - */ - object No : ButtonIcon(0) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonViewModel.kt deleted file mode 100644 index f6f4837d95..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/ButtonViewModel.kt +++ /dev/null @@ -1,129 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ButtonSpacing -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом BasicButton - */ -internal class ButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateIcon(icon: ButtonIcon) { - internalUiState.value = internalUiState.value.copy( - icon = icon, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - buttonLabel = label, - ) - } - - private fun updateValue(value: String?) { - internalUiState.value = internalUiState.value.copy( - buttonValue = value.takeIf { it?.isNotBlank() == true }, - ) - } - - private fun updateSpacing(spacing: ButtonSpacing) { - internalUiState.value = internalUiState.value.copy( - spacing = spacing, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateHasFixedWidthState(hasFixedWidth: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasFixedWidth = hasFixedWidth, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.SingleChoiceProperty( - name = "icon", - value = icon::class.simpleName.orEmpty(), - variants = listOf( - ButtonIcon.Start::class.simpleName.orEmpty(), - ButtonIcon.End::class.simpleName.orEmpty(), - ButtonIcon.No::class.simpleName.orEmpty(), - ), - onApply = { variantName -> - updateIcon( - when (variantName) { - ButtonIcon.Start::class.simpleName -> ButtonIcon.Start - ButtonIcon.End::class.simpleName -> ButtonIcon.End - else -> ButtonIcon.No - }, - ) - }, - ), - - Property.StringProperty( - name = "buttonLabel", - value = buttonLabel, - onApply = { updateLabel(it) }, - ), - Property.StringProperty( - name = "buttonValue", - value = buttonValue.orEmpty(), - onApply = { updateValue(it) }, - ), - enumProperty( - name = "spacing", - value = spacing, - onApply = { updateSpacing(it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "hasFixedWidth", - value = hasFixedWidth, - onApply = { updateHasFixedWidthState(it) }, - ), - Property.BooleanProperty( - name = "loading", - value = loading, - onApply = { updateLoadingState(it) }, - ), - ) - } -} - -/** - * Фабрика [ButtonViewModel] - */ -internal class ButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ButtonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonScreen.kt deleted file mode 100644 index db53070a2a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonScreen.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.IconButton -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с IconButton - */ -@Composable -internal fun IconButtonScreen(componentKey: ComponentKey = ComponentKey.IconButton) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = IconButtonViewModelFactory(ButtonUiState(), componentKey), - key = componentKey.toString(), - ), - component = { buttonState, style -> - IconButton( - iconRes = buttonState.icon.iconId, - onClick = { }, - style = style, - enabled = buttonState.enabled, - loading = buttonState.loading, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun IconButtonsScreenPreview() { - SandboxTheme { - IconButtonScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonViewModel.kt deleted file mode 100644 index 188e165b5b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/IconButtonViewModel.kt +++ /dev/null @@ -1,59 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.PropertiesOwner -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом IconButton - */ -internal class IconButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey), PropertiesOwner { - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "loading", - value = loading, - onApply = { updateLoadingState(it) }, - ), - ) - } -} - -/** - * Фабрика [ButtonViewModel] - */ -internal class IconButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconButtonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonScreen.kt deleted file mode 100644 index 52b391ec61..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonScreen.kt +++ /dev/null @@ -1,49 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.ButtonIcons -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с LinkButton - */ -@Composable -internal fun LinkButtonScreen(componentKey: ComponentKey = ComponentKey.LinkButton) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = LinkButtonViewModelFactory(ButtonUiState(), componentKey), - key = componentKey.toString(), - ), - component = { buttonState, style -> - Button( - label = buttonState.buttonLabel, - value = buttonState.buttonValue, - style = style, - enabled = buttonState.enabled, - loading = buttonState.loading, - spacing = buttonState.spacing, - icons = when (val icon = buttonState.icon) { - ButtonIcon.End -> ButtonIcons(end = painterResource(id = icon.iconId)) - ButtonIcon.No -> null - ButtonIcon.Start -> ButtonIcons(start = painterResource(id = icon.iconId)) - }, - onClick = {}, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun LinkButtonsScreenPreview() { - SandboxTheme { - LinkButtonScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonViewModel.kt deleted file mode 100644 index 1fccef4c8b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/compose/LinkButtonViewModel.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.playground.sandbox.buttons.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом LinkButton - */ -internal class LinkButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateIcon(icon: ButtonIcon) { - internalUiState.value = internalUiState.value.copy( - icon = icon, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - buttonLabel = label, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.SingleChoiceProperty( - name = "icon", - value = icon::class.simpleName.orEmpty(), - variants = listOf( - ButtonIcon.Start::class.simpleName.orEmpty(), - ButtonIcon.End::class.simpleName.orEmpty(), - ButtonIcon.No::class.simpleName.orEmpty(), - ), - onApply = { variantName -> - updateIcon( - when (variantName) { - ButtonIcon.Start::class.simpleName -> ButtonIcon.Start - ButtonIcon.End::class.simpleName -> ButtonIcon.End - else -> ButtonIcon.No - }, - ) - }, - ), - - Property.StringProperty( - name = "buttonLabel", - value = buttonLabel, - onApply = { updateLabel(it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "loading", - value = loading, - onApply = { updateLoadingState(it) }, - ), - ) - } -} - -/** - * Фабрика [ButtonViewModel] - */ -internal class LinkButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return LinkButtonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonFragment.kt deleted file mode 100644 index 3487e04ec6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonFragment.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Button -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.applyState -import com.sdds.uikit.fixtures.stories.button.basicButton - -/** - * Фрагмент с компонентом BasicButton - * @author Малышев Александр on 31.07.2024 - */ -internal class BasicButtonFragment : ComponentFragment() { - - private var isFixedSize: Boolean = false - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - BasicButtonViewModelFactory( - defaultState = getState { ButtonUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = if (isFixedSize) { - FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } else { - super.defaultLayoutParams - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Button { - return basicButton(contextWrapper) - } - - override fun shouldRecreateComponentOnStateUpdate(state: ButtonUiState): Boolean { - return if (isFixedSize != state.fixedSize) { - isFixedSize = state.fixedSize - true - } else { - false - } - } - - override fun onComponentUpdate(component: Button?, state: ButtonUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonViewModel.kt deleted file mode 100644 index c4b8ee86c4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/BasicButtonViewModel.kt +++ /dev/null @@ -1,154 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.PropertiesOwner -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.Button -import com.sdds.uikit.fixtures.stories.button.ButtonIcon -import com.sdds.uikit.fixtures.stories.button.ButtonUiState - -/** - * ViewModel для экранов с компонентом BasicButton и IconButton - */ -internal class BasicButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - /** - * @see PropertiesOwner.updateProperty - */ - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = PropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - PropertyName.Icon -> updateIcon( - when (valueString) { - ButtonIcon.Start::class.simpleName -> ButtonIcon.Start - ButtonIcon.End::class.simpleName -> ButtonIcon.End - else -> ButtonIcon.No - }, - ) - - PropertyName.Label -> updateLabel(value?.toString().orEmpty()) - PropertyName.Value -> updateValue(valueString) - PropertyName.Spacing -> updateSpacing(Button.Spacing.valueOf(valueString)) - PropertyName.Loading -> updateLoadingState(valueString.toBoolean()) - PropertyName.Enabled -> updateEnabledState(valueString.toBoolean()) - PropertyName.FixedSize -> updateFixedSize(valueString.toBoolean()) - null -> {} - } - } - - private fun updateIcon(icon: ButtonIcon) { - internalUiState.value = internalUiState.value.copy( - icon = icon, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - buttonLabel = label, - ) - } - - private fun updateValue(value: String?) { - internalUiState.value = internalUiState.value.copy( - buttonValue = value.takeIf { it?.isNotBlank() == true }, - ) - } - - private fun updateSpacing(spacing: Button.Spacing) { - internalUiState.value = internalUiState.value.copy( - spacing = spacing, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - private fun updateFixedSize(fixedSize: Boolean) { - internalUiState.value = internalUiState.value.copy( - fixedSize = fixedSize, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - ButtonIcon.Start::class.simpleName.orEmpty(), - ButtonIcon.End::class.simpleName.orEmpty(), - ButtonIcon.No::class.simpleName.orEmpty(), - ), - ), - - Property.StringProperty( - name = PropertyName.Label.value, - value = buttonLabel, - ), - Property.StringProperty( - name = PropertyName.Value.value, - value = buttonValue.orEmpty(), - ), - enumProperty( - name = PropertyName.Spacing.value, - value = spacing, - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Loading.value, - value = loading, - ), - Property.BooleanProperty( - name = PropertyName.FixedSize.value, - value = fixedSize, - ), - ) - } - - private enum class PropertyName(val value: String) { - Icon("icon"), - Label("label"), - Value("value"), - Spacing("spacing"), - Loading("loading"), - Enabled("enabled"), - FixedSize("fixedSize"), - } -} - -/** - * Фабрика [BasicButtonViewModel] - */ -internal class BasicButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return BasicButtonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonFragment.kt deleted file mode 100644 index fed20e6d10..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.IconButton -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.applyState -import com.sdds.uikit.fixtures.stories.button.iconButton - -/** - * Фрагмент с компонентом IconButton - * @author Малышев Александр on 31.07.2024 - */ -internal class IconButtonFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - IconButtonViewModelFactory( - defaultState = getState { ButtonUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): IconButton { - return iconButton(contextWrapper) - } - - override fun onComponentUpdate(component: IconButton?, state: ButtonUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonViewModel.kt deleted file mode 100644 index 7d1afedd38..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/IconButtonViewModel.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.PropertiesOwner -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.button.ButtonUiState - -/** - * ViewModel для экрана с компонентом IconButton - */ -internal class IconButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - /** - * @see PropertiesOwner.updateProperty - */ - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val pName = PropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - PropertyName.Loading -> updateLoadingState(valueString.toBoolean()) - PropertyName.Enabled -> updateEnabledState(valueString.toBoolean()) - null -> {} - } - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Loading.value, - value = loading, - ), - ) - } - - private enum class PropertyName(val value: String) { - Loading("loading"), - Enabled("enabled"), - } -} - -/** - * Фабрика [IconButtonViewModel] - */ -internal class IconButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconButtonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonFragment.kt deleted file mode 100644 index f48b1fc179..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.LinkButton -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.applyState -import com.sdds.uikit.fixtures.stories.button.linkButton - -/** - * Фрагмент с компонентом LinkButton - * @author Малышев Александр on 31.07.2024 - */ -internal class LinkButtonFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - LinkButtonViewModelFactory( - defaultState = getState { ButtonUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): LinkButton { - return linkButton(contextWrapper) - } - - override fun onComponentUpdate(component: LinkButton?, state: ButtonUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonViewModel.kt deleted file mode 100644 index 732968d046..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/buttons/vs/LinkButtonViewModel.kt +++ /dev/null @@ -1,115 +0,0 @@ -package com.sdds.playground.sandbox.buttons.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.PropertiesOwner -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.button.ButtonIcon -import com.sdds.uikit.fixtures.stories.button.ButtonUiState - -/** - * ViewModel для экранов с компонентом LinkButton - */ -internal class LinkButtonViewModel( - defaultState: ButtonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - /** - * @see PropertiesOwner.updateProperty - */ - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = PropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - PropertyName.Icon -> updateIcon( - when (valueString) { - ButtonIcon.Start::class.simpleName -> ButtonIcon.Start - ButtonIcon.End::class.simpleName -> ButtonIcon.End - else -> ButtonIcon.No - }, - ) - PropertyName.Label -> updateLabel(value?.toString().orEmpty()) - PropertyName.Loading -> updateLoadingState(valueString.toBoolean()) - PropertyName.Enabled -> updateEnabledState(valueString.toBoolean()) - null -> {} - } - } - - private fun updateIcon(icon: ButtonIcon) { - internalUiState.value = internalUiState.value.copy( - icon = icon, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - buttonLabel = label, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateLoadingState(loading: Boolean) { - internalUiState.value = internalUiState.value.copy( - loading = loading, - ) - } - - override fun ButtonUiState.toProps(): List> { - return listOfNotNull( - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - ButtonIcon.Start::class.simpleName.orEmpty(), - ButtonIcon.End::class.simpleName.orEmpty(), - ButtonIcon.No::class.simpleName.orEmpty(), - ), - ), - - Property.StringProperty( - name = PropertyName.Label.value, - value = buttonLabel, - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Loading.value, - value = loading, - ), - ) - } - - private enum class PropertyName(val value: String) { - Icon("icon"), - Label("label"), - Loading("loading"), - Enabled("enabled"), - } -} - -/** - * Фабрика [BasicButtonViewModel] - */ -internal class LinkButtonViewModelFactory( - private val defaultState: ButtonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return LinkButtonViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardParametersViewModel.kt deleted file mode 100644 index 4ba44785f8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardParametersViewModel.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.playground.sandbox.card.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CardStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Card - */ -internal class CardParametersViewModel( - defaultState: CardUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun CardUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = "orientation", - value = orientation, - onApply = { updateOrientation(it) }, - ), - Property.StringProperty( - name = "label", - value = label, - onApply = { updateLabel(it) }, - ), - Property.BooleanProperty( - name = "hasExtra", - value = hasExtra, - onApply = { updateHasExtra(it) }, - ), - ) - } - - private fun updateOrientation(orientation: Orientation) { - internalUiState.value = internalUiState.value.copy( - orientation = orientation, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - label = label, - ) - } - - private fun updateHasExtra(hasExtra: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasExtra = hasExtra, - ) - } -} - -internal class CardParametersViewModelFactory( - private val defaultState: CardUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CardParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardScreen.kt deleted file mode 100644 index 73e28c158b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardScreen.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.card.compose - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Card -import com.sdds.compose.uikit.CardOrientation -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.Image -import com.sdds.compose.uikit.Text -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.icons.R.drawable as Icons - -/** - * Экран с Card - */ -@Composable -internal fun CardScreen( - componentKey: ComponentKey = ComponentKey.Card, -) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CardParametersViewModelFactory(CardUiState(), componentKey), - key = componentKey.toString(), - ), - component = { cardUiState, style -> - Card( - style = style, - orientation = when (cardUiState.orientation) { - Orientation.VERTICAL -> CardOrientation.Vertical - else -> CardOrientation.Horizontal - }, - label = { Text(cardUiState.label) }, - extra = if (cardUiState.hasExtra) getExtra() else null, - ) { - Box( - modifier = Modifier - .width(250.dp) - .height(250.dp), - ) { - Image( - modifier = Modifier.fillMaxSize(), - contentScale = ContentScale.Crop, - painter = painterResource(id = R.drawable.il_avatar_test), - contentDescription = "Android", - ) - } - } - }, - ) -} - -private fun getExtra(): (@Composable BoxScope.() -> Unit) = { - IconButton( - iconRes = Icons.ic_plasma_24, - modifier = Modifier.align(Alignment.BottomEnd), - onClick = {}, - ) -} - -@Composable -@Preview -internal fun CardScreenPreview() { - SandboxTheme { - CardScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardUiState.kt deleted file mode 100644 index 44a59b399c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/compose/CardUiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.card.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Card - * @property variant состояние компонента - */ -internal data class CardUiState( - override val variant: String = "", - override val appearance: String = "", - val orientation: Orientation = Orientation.VERTICAL, - val label: String = "Title", - val hasExtra: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class Orientation { - VERTICAL, - HORIZONTAL, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardFragment.kt deleted file mode 100644 index 7c81ae6708..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardFragment.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.card.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Card -import com.sdds.uikit.fixtures.stories.card.CardUiState -import com.sdds.uikit.fixtures.stories.card.applyState -import com.sdds.uikit.fixtures.stories.card.card - -/** - * Фрагмент с компонентом Card - * @author Малышев Александр on 14.03.2025 - */ -internal class CardFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CardViewModelFactory( - defaultState = getState { CardUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): Card { - return card(contextWrapper) - .apply { id = R.id.card } - } - - override fun onComponentUpdate(component: Card?, state: CardUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardViewModel.kt deleted file mode 100644 index 55a83e4a10..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/card/vs/CardViewModel.kt +++ /dev/null @@ -1,59 +0,0 @@ -package com.sdds.playground.sandbox.card.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.card.CardOrientation -import com.sdds.uikit.fixtures.stories.card.CardUiState - -/** - * ViewModel компонента Card - * @author Малышев Александр on 14.08.2025 - */ -internal class CardViewModel( - defaultState: CardUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = CardPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - CardPropertyName.Orientation -> currentState.copy(orientation = CardOrientation.valueOf(valueString)) - else -> currentState - } - } - - override fun CardUiState.toProps(): List> { - return listOf( - enumProperty( - name = CardPropertyName.Orientation.value, - value = orientation, - ), - ) - } - - private enum class CardPropertyName(val value: String) { - Orientation("orientation"), - } -} - -/** - * Фабрика для [CardViewModel] - */ -internal class CardViewModelFactory( - private val defaultState: CardUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CardViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselExample.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselExample.kt deleted file mode 100644 index ecdda45809..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselExample.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.carousel.compose - -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.pager.PageSize -import androidx.compose.foundation.pager.rememberPagerState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.Card -import com.sdds.compose.uikit.Carousel -import com.sdds.compose.uikit.CarouselButtonsPlacement -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.paginationdots.M -import com.sdds.plasma.sd.service.styles.paginationdots.PaginationDotsHorizontal -import com.sdds.playground.sandbox.SandboxTheme - -@Composable -@Preview(showBackground = true) -private fun CarouselExamplePreview() { - SandboxTheme { - val data = listOf( - "Слайд 1", - "Слайд 2", - "Слайд 3", - "Слайд 4", - "Слайд 5", - "Слайд 6", - "Слайд 7", - "Слайд 8", - "Слайд 9", - "Слайд 10", - "Слайд 11", - "Слайд 12", - ) - val state = rememberPagerState(1) { data.size } - Carousel( - state = state, - style = CarouselStyle.builder() - .prevButtonIcon(com.sdds.icons.R.drawable.ic_chevron_left_16) - .nextButtonIcon(com.sdds.icons.R.drawable.ic_chevron_right_16) - .buttonsPlacement(CarouselButtonsPlacement.Inner) - .indicatorStyle(PaginationDotsHorizontal.M.style()) - .dimensions { - indicatorPadding(8.dp) - prevButtonPadding(8.dp) - nextButtonPadding(8.dp) - } - .style(), - pageSize = PageSize.Fixed(250.dp), - hasIndicator = true, - hasControls = true, - ) { - Card( - modifier = Modifier - .fillMaxWidth() - .height(250.dp), - ) { - Text(text = data[it]) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselScreen.kt deleted file mode 100644 index 857896ef96..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselScreen.kt +++ /dev/null @@ -1,124 +0,0 @@ -package com.sdds.playground.sandbox.carousel.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.pager.PageSize -import androidx.compose.foundation.pager.rememberPagerState -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Carousel -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.compose.uikit.Text -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.theme.SddsServTheme - -/** - * Экран с компонентом [Carousel] - */ -@Composable -internal fun CarouselScreen(componentKey: ComponentKey = ComponentKey.Carousel) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CarouselViewModelFactory( - defaultState = CarouselUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { carouselUiState, style -> - val state = rememberPagerState { carouselUiState.itemCount } - Carousel( - style = style, - state = state, - pageSize = PageSize.Fixed(230.dp), - hasControls = carouselUiState.controlsEnabled, - hasIndicator = carouselUiState.indicatorEnabled, - snapPosition = carouselUiState.alignment.snapPosition, - gap = if (carouselUiState.withGap) { - style.dimensions.gap - } else { - 0.dp - }, - indicatorVisibleCount = carouselUiState.indicatorVisibleItemCount, - ) { - Box( - modifier = Modifier - .fillMaxWidth() - .background( - color = SddsServTheme.colors.surfaceDefaultTransparentInfo, - shape = SddsServTheme.shapes.roundM, - ) - .height(250.dp), - contentAlignment = Alignment.Center, - ) { - Text( - text = it.toString(), - style = SddsServTheme.typography.displayMBold, - color = { Color.White }, - ) - } - } - }, - ) -} - -@Composable -internal fun CarouselPreview(style: CarouselStyle) { - val previewData = listOf( - "Слайд 1", - "Слайд 2", - "Слайд 3", - "Слайд 4", - "Слайд 5", - "Слайд 6", - "Слайд 7", - "Слайд 8", - "Слайд 9", - "Слайд 10", - "Слайд 11", - "Слайд 12", - ) - val state = rememberPagerState { previewData.size } - Carousel( - style = style, - state = state, - pageSize = PageSize.Fixed(250.dp), - hasControls = true, - hasIndicator = true, - ) { - Box( - modifier = Modifier - .fillMaxWidth() - .background( - color = SddsServTheme.colors.surfaceDefaultTransparentInfo, - shape = SddsServTheme.shapes.roundM, - ) - .height(250.dp), - contentAlignment = Alignment.Center, - ) { - Text( - text = it.toString(), - style = SddsServTheme.typography.displayMBold, - color = { Color.White }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -private fun CarouselScreenPreview() { - SandboxTheme { - CarouselScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselUiState.kt deleted file mode 100644 index d55c61bc46..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselUiState.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.sdds.playground.sandbox.carousel.compose - -import androidx.compose.foundation.gestures.snapping.SnapPosition -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class CarouselUiState( - override val variant: String = "", - override val appearance: String = "", - val itemCount: Int = 10, - val alignment: CarouselPageAlignment = CarouselPageAlignment.Center, - val controlsEnabled: Boolean = true, - val indicatorEnabled: Boolean = true, - val indicatorVisibleItemCount: Int = 5, - val withGap: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class CarouselPageAlignment(val snapPosition: SnapPosition) { - Start(SnapPosition.Start), - Center(SnapPosition.Center), - End(SnapPosition.End), -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselViewModel.kt deleted file mode 100644 index 43143ab5a0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/compose/CarouselViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.carousel.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Carousel - */ -internal class CarouselViewModel( - defaultState: CarouselUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun CarouselUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "withGap", - value = withGap, - onApply = { internalUiState.value = internalUiState.value.copy(withGap = it) }, - ), - Property.BooleanProperty( - name = "hasButtons", - value = controlsEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy(controlsEnabled = it) - }, - ), - Property.BooleanProperty( - name = "hasPaginator", - value = indicatorEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy(indicatorEnabled = it) - }, - ), - enumProperty( - name = "alignment", - value = alignment, - onApply = { - internalUiState.value = internalUiState.value.copy(alignment = it) - }, - ), - Property.IntProperty( - name = "itemCount", - value = itemCount, - onApply = { - if (it >= indicatorVisibleItemCount) { - internalUiState.value = internalUiState.value.copy(itemCount = it) - } - }, - ), - Property.IntProperty( - name = "indicatorVisibleItemCount", - value = indicatorVisibleItemCount, - onApply = { - if (it <= itemCount) { - internalUiState.value = - internalUiState.value.copy(indicatorVisibleItemCount = it) - } - }, - ), - ) - } -} - -internal class CarouselViewModelFactory( - private val defaultState: CarouselUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CarouselViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselFragment.kt deleted file mode 100644 index 3686bc0327..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselFragment.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.carousel.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Carousel -import com.sdds.uikit.dp -import com.sdds.uikit.fixtures.stories.carousel.CarouselUiState -import com.sdds.uikit.fixtures.stories.carousel.applyState -import com.sdds.uikit.fixtures.stories.carousel.carousel - -internal class CarouselFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CarouselViewModelFactory( - defaultState = getState { CarouselUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.MATCH_PARENT, - 300.dp, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): Carousel { - return carousel(contextWrapper) - } - - override fun onComponentUpdate(component: Carousel?, state: CarouselUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselViewModel.kt deleted file mode 100644 index 1752890f1f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/carousel/vs/CarouselViewModel.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.carousel.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.carousel.CarouselContentAlignment -import com.sdds.uikit.fixtures.stories.carousel.CarouselUiState - -internal class CarouselViewModel( - defaultState: CarouselUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = CarouselProperty.values().find { it.value == name } ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - CarouselProperty.ITEM_COUNT -> currentState.copy(itemCount = valueString.toIntOrNull() ?: 0) - - CarouselProperty.CONTROLS_ENABLED -> currentState.copy(controlsEnabled = valueString.toBoolean()) - CarouselProperty.INDICATOR_ENABLED -> currentState.copy(indicatorEnabled = valueString.toBoolean()) - CarouselProperty.INDICATOR_VISIBLE_ITEM_COUNT -> currentState.copy( - indicatorVisibleItemCount = valueString.toIntOrNull() ?: 0, - ) - - CarouselProperty.WITH_GAP -> currentState.copy(withGap = valueString.toBoolean()) - CarouselProperty.ALIGNMENT -> currentState.copy(alignment = CarouselContentAlignment.valueOf(valueString)) - } - } - - override fun CarouselUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = CarouselProperty.ITEM_COUNT.value, - value = itemCount, - ), - enumProperty( - name = CarouselProperty.ALIGNMENT.value, - value = alignment, - ), - Property.BooleanProperty( - name = CarouselProperty.CONTROLS_ENABLED.value, - value = controlsEnabled, - ), - Property.BooleanProperty( - name = CarouselProperty.INDICATOR_ENABLED.value, - value = indicatorEnabled, - ), - Property.IntProperty( - name = CarouselProperty.INDICATOR_VISIBLE_ITEM_COUNT.value, - value = indicatorVisibleItemCount, - ), - Property.BooleanProperty( - name = CarouselProperty.WITH_GAP.value, - value = withGap, - ), - ) - } - - private enum class CarouselProperty(val value: String) { - ITEM_COUNT("itemCount"), - ALIGNMENT("contentAlignment"), - CONTROLS_ENABLED("controlsEnabled"), - INDICATOR_ENABLED("indicatorEnabled"), - INDICATOR_VISIBLE_ITEM_COUNT("indicatorCount"), - WITH_GAP("withGap"), - } -} - -/** - * Фабрика для [CarouselViewModel] - */ -internal class CarouselViewModelFactory( - private val defaultState: CarouselUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CarouselViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellScreen.kt deleted file mode 100644 index b05f1e7425..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellScreen.kt +++ /dev/null @@ -1,106 +0,0 @@ -package com.sdds.playground.sandbox.cell.compose - -import androidx.compose.foundation.focusable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.interaction.collectIsFocusedAsState -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Avatar -import com.sdds.compose.uikit.Cell -import com.sdds.compose.uikit.CheckBox -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.RadioBox -import com.sdds.compose.uikit.Switch -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.fs.focusSelector -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun CellScreen(componentKey: ComponentKey = ComponentKey.Cell) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CellViewModelFactory(CellUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - val interactionSource = remember { MutableInteractionSource() } - val isFocused = interactionSource.collectIsFocusedAsState() - - Cell( - modifier = Modifier - .fillMaxWidth(0.8f) - .focusable(interactionSource = interactionSource) - .focusSelector( - settings = LocalFocusSelectorSettings.current, - ) { isFocused.value }, - style = style, - title = AnnotatedString(uiState.title), - subtitle = AnnotatedString(uiState.subtitle), - label = AnnotatedString(uiState.label), - disclosureContentEnabled = uiState.hasDisclosure, - disclosureText = AnnotatedString(uiState.disclosureText), - startContent = cellContent(contentType = uiState.startContent), - endContent = cellContent(contentType = uiState.endContent), - interactionSource = interactionSource, - ) - }, - ) -} - -@Composable -private fun cellContent(contentType: CellContent): (@Composable RowScope.() -> Unit)? { - return if (contentType != CellContent.NONE) { - { - when (contentType) { - CellContent.AVATAR -> Avatar( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_scribble_diagonal_24), - ) - - CellContent.ICON -> Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - - CellContent.SWITCH -> @Composable { - var active by remember { mutableStateOf(false) } - Switch(active = active, onActiveChanged = { active = it }) - } - - CellContent.CHECKBOX -> @Composable { - var checked by remember { mutableStateOf(false) } - CheckBox(checked = checked, onCheckedChange = { checked = it }) - } - - CellContent.RADIOBOX -> @Composable { - var checked by remember { mutableStateOf(false) } - RadioBox(checked = checked, onClick = { checked = true }) - } - - CellContent.NONE -> {} - } - } - } else { - null - } -} - -@Preview -@Composable -internal fun CellScreenPreview() { - SandboxTheme { - CellScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellUiState.kt deleted file mode 100644 index 1949b2fc83..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellUiState.kt +++ /dev/null @@ -1,28 +0,0 @@ -package com.sdds.playground.sandbox.cell.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class CellUiState( - override val variant: String = "", - override val appearance: String = "", - val label: String = "Label", - val title: String = "Title", - val subtitle: String = "Subtitle", - val hasDisclosure: Boolean = true, - val disclosureText: String = "", - val startContent: CellContent = CellContent.AVATAR, - val endContent: CellContent = CellContent.NONE, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class CellContent { - NONE, - AVATAR, - ICON, - SWITCH, - CHECKBOX, - RADIOBOX, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellViewModel.kt deleted file mode 100644 index 9bbc7ca551..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/compose/CellViewModel.kt +++ /dev/null @@ -1,80 +0,0 @@ -package com.sdds.playground.sandbox.cell.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CellStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class CellViewModel( - defaultState: CellUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun CellUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "label", - value = label, - onApply = { - internalUiState.value = internalUiState.value.copy(label = it) - }, - ), - Property.StringProperty( - name = "title", - value = title, - onApply = { - internalUiState.value = internalUiState.value.copy(title = it) - }, - ), - Property.StringProperty( - name = "subtitle", - value = subtitle, - onApply = { - internalUiState.value = internalUiState.value.copy(subtitle = it) - }, - ), - Property.StringProperty( - name = "disclosureText", - value = disclosureText, - onApply = { - internalUiState.value = internalUiState.value.copy(disclosureText = it) - }, - ), - Property.BooleanProperty( - name = "hasDisclosure", - value = hasDisclosure, - onApply = { - internalUiState.value = internalUiState.value.copy(hasDisclosure = it) - }, - ), - enumProperty( - name = "startContent", - value = startContent, - onApply = { - internalUiState.value = internalUiState.value.copy(startContent = it) - }, - ), - enumProperty( - name = "endContent", - value = endContent, - onApply = { - internalUiState.value = internalUiState.value.copy(endContent = it) - }, - ), - ) - } -} - -internal class CellViewModelFactory( - private val defaultState: CellUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CellViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellFragment.kt deleted file mode 100644 index a5cb474bf9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellFragment.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.sdds.playground.sandbox.cell.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CellLayout -import com.sdds.uikit.fixtures.databinding.LayoutComponentCellBinding -import com.sdds.uikit.fixtures.stories.cell.CellUiState -import com.sdds.uikit.fixtures.stories.cell.applyState -import com.sdds.uikit.fixtures.stories.cell.cellLayoutBinding - -/** - * Фрагмент с компонентом CellLayout - * @author Малышев Александр on 14.10.2024 - */ -internal class CellFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CellParametersViewModelFactory( - defaultState = getState { CellUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams by lazy { - FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_160x), - LayoutParams.WRAP_CONTENT, - ) - } - - private var cellLayout: LayoutComponentCellBinding? = null - - override fun getComponent(contextWrapper: ContextThemeWrapper): CellLayout { - return cellLayoutBinding(contextWrapper) - .also { cellLayout = it }.root - .apply { id = R.id.cell } - } - - override fun onComponentUpdate(component: CellLayout?, state: CellUiState) { - cellLayout?.applyState(state) - } - - override fun onDestroyView() { - super.onDestroyView() - cellLayout = null - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellParametersViewModel.kt deleted file mode 100644 index beba12d475..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/cell/vs/CellParametersViewModel.kt +++ /dev/null @@ -1,101 +0,0 @@ -package com.sdds.playground.sandbox.cell.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.cell.CellContent -import com.sdds.uikit.fixtures.stories.cell.CellUiState - -/** - * ViewModel компонента Cell - * @author Малышев Александр on 14.10.2024 - */ -internal class CellParametersViewModel( - defaultState: CellUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = CellPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - CellPropertyName.Label -> currentState.copy(label = valueString) - CellPropertyName.Title -> currentState.copy(title = valueString) - CellPropertyName.Subtitle -> currentState.copy(subtitle = valueString) - CellPropertyName.DisclosureText -> currentState.copy(disclosureText = valueString) - CellPropertyName.HasDisclosure -> currentState.copy(hasDisclosure = valueString.toBoolean()) - CellPropertyName.StartContent -> currentState.copy( - startContent = CellContent.valueOf(valueString), - ) - - CellPropertyName.EndContent -> currentState.copy( - endContent = CellContent.valueOf(valueString), - ) - - else -> currentState - } - } - - override fun CellUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = CellPropertyName.Label.value, - value = label, - ), - Property.StringProperty( - name = CellPropertyName.Title.value, - value = title, - ), - Property.StringProperty( - name = CellPropertyName.Subtitle.value, - value = subtitle, - ), - Property.StringProperty( - name = CellPropertyName.DisclosureText.value, - value = disclosureText, - ), - Property.BooleanProperty( - name = CellPropertyName.HasDisclosure.value, - value = hasDisclosure, - ), - enumProperty( - name = CellPropertyName.StartContent.value, - value = startContent, - ), - enumProperty( - name = CellPropertyName.EndContent.value, - value = endContent, - ), - ) - } - - private enum class CellPropertyName(val value: String) { - Label("label"), - Title("title"), - Subtitle("subtitle"), - DisclosureText("disclosureText"), - HasDisclosure("hasDisclosure"), - StartContent("startContent"), - EndContent("endContent"), - } -} - -/** - * Фабрика для [CellParametersViewModel] - */ -internal class CellParametersViewModelFactory( - private val defaultState: CellUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CellParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxPreviews.kt deleted file mode 100644 index 72db51f4b9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxPreviews.kt +++ /dev/null @@ -1,202 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.state.ToggleableState -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.CheckBox -import com.sdds.compose.uikit.CheckBoxGroup -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.checkbox.CheckBox -import com.sdds.serv.styles.checkbox.M -import com.sdds.serv.styles.checkbox.S -import com.sdds.serv.styles.checkboxgroup.CheckBoxGroup -import com.sdds.serv.styles.checkboxgroup.M -import com.sdds.serv.styles.checkboxgroup.S - -/** - * Превью [CheckBox] - */ -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreview() { - SandboxTheme { - CheckBox( - state = ToggleableState.Indeterminate, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreviewSizeM() { - SandboxTheme { - CheckBox( - style = CheckBox.M.style(), - state = ToggleableState.On, - enabled = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreviewSizeSUnchecked() { - SandboxTheme { - CheckBox( - style = CheckBox.S.style(), - state = ToggleableState.Off, - enabled = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreviewSizeSDisabled() { - SandboxTheme { - CheckBox( - style = CheckBox.S.style(), - state = ToggleableState.On, - enabled = false, - label = "Label", - description = "Description", - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreviewSizeMIndeterminate() { - SandboxTheme { - CheckBox( - style = CheckBox.M.style(), - state = ToggleableState.Indeterminate, - enabled = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxPreviewSizeMediumNoLabelAndDesc() { - SandboxTheme { - CheckBox( - style = CheckBox.M.style(), - state = ToggleableState.On, - enabled = true, - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxGroupPreviewSizeM() { - SandboxTheme { - CheckBoxGroup( - style = CheckBoxGroup.M.style(), - ) { - rootCheckbox { - CheckBox( - state = ToggleableState.On, - label = "Label", - description = "Description", - ) - } - checkbox { - CheckBox( - state = ToggleableState.On, - label = "Label", - description = "Description", - ) - } - checkbox { - CheckBox( - state = ToggleableState.On, - label = "Label", - description = "Description", - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxGroupPreviewSizeS() { - SandboxTheme { - CheckBoxGroup( - style = CheckBoxGroup.S.style(), - ) { - rootCheckbox { - CheckBox( - state = ToggleableState.Indeterminate, - label = "Label", - description = "Description", - ) - } - checkbox { - CheckBox( - state = ToggleableState.On, - label = "Label", - description = "Description", - ) - } - checkbox { - CheckBox( - state = ToggleableState.Off, - label = "Label", - description = "Description", - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun CheckBoxGroupPreviewSizeMDisabled() { - SandboxTheme { - CheckBoxGroup( - style = CheckBoxGroup.M.style(), - ) { - rootCheckbox { - CheckBox( - state = ToggleableState.Off, - label = "Label", - description = "Description", - enabled = false, - ) - } - checkbox { - CheckBox( - state = ToggleableState.Off, - label = "Label", - description = "Description", - enabled = false, - ) - } - checkbox { - CheckBox( - state = ToggleableState.Off, - label = "Label", - description = "Description", - enabled = false, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxScreen.kt deleted file mode 100644 index cb8ae64331..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxScreen.kt +++ /dev/null @@ -1,43 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.CheckBox -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [CheckBox] - */ -@Composable -internal fun CheckBoxScreen(componentKey: ComponentKey = ComponentKey.CheckBox) { - val checkboxViewModel: CheckBoxViewModel = viewModel( - factory = CheckBoxViewModelFactory(CheckBoxUiState(), componentKey), - key = componentKey.toString(), - ) - - ComponentScaffold( - key = componentKey, - viewModel = checkboxViewModel, - component = { checkboxState, style -> - CheckBox( - style = style, - state = checkboxState.state, - label = checkboxState.label, - description = checkboxState.description, - enabled = checkboxState.enabled, - onClick = { checkboxViewModel.updateState(checkboxState.state.toggle()) }, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun ButtonsScreenPreview() { - SandboxTheme { - CheckBoxScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxUiState.kt deleted file mode 100644 index 77f43f93cb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxUiState.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose - -import androidx.compose.ui.state.ToggleableState -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние checkbox - * - * @property state состояние checkbox - * @property label текст лэйбла - * @property description текст описания - * @property enabled включен ли checkbox - */ -internal data class CheckBoxUiState( - override val variant: String = "", - override val appearance: String = "", - val state: ToggleableState = ToggleableState.Indeterminate, - val label: String? = "Label", - val description: String? = "Description", - val enabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal fun ToggleableState.toggle(): ToggleableState { - return if (this == ToggleableState.Off || this == ToggleableState.Indeterminate) { - ToggleableState.On - } else { - ToggleableState.Off - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxViewModel.kt deleted file mode 100644 index be4785261f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/CheckBoxViewModel.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose - -import androidx.compose.ui.state.ToggleableState -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.PropertiesOwner -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом CheckBox - */ -internal class CheckBoxViewModel( - defaultState: CheckBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey), PropertiesOwner { - - fun updateState(state: ToggleableState) { - internalUiState.value = internalUiState.value.copy(state = state) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun CheckBoxUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = "state", - value = state, - onApply = { updateState(it) }, - ), - - Property.StringProperty( - name = "label", - value = label.orEmpty(), - onApply = { updateLabel(it) }, - ), - - Property.StringProperty( - name = "description", - value = description.orEmpty(), - onApply = { updateDescription(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - ) - } -} - -internal class CheckBoxViewModelFactory( - private val defaultState: CheckBoxUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CheckBoxViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupScreen.kt deleted file mode 100644 index 19ab92894a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupScreen.kt +++ /dev/null @@ -1,71 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose.group - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.CheckBox -import com.sdds.compose.uikit.CheckBoxGroup -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [CheckBoxGroup] - */ -@Composable -internal fun CheckBoxGroupScreen(componentKey: ComponentKey = ComponentKey.CheckBoxGroup) { - val checkboxGroupViewModel: CheckBoxGroupViewModel = - viewModel( - factory = CheckBoxGroupViewModelFactory(CheckBoxGroupUiState(), componentKey), - key = componentKey.toString(), - ) - - ComponentScaffold( - key = componentKey, - viewModel = checkboxGroupViewModel, - component = { checkboxGroupState, style -> - CheckBoxGroup( - style = style, - ) { - checkboxGroupState.rootItem?.let { - rootCheckbox { - CheckBox( - state = it.state, - enabled = checkboxGroupState.enabled, - label = it.label, - description = it.description, - onClick = { - checkboxGroupViewModel.rootCheckBoxClicked() - }, - ) - } - } - - checkboxGroupState.items.forEachIndexed { index, item -> - checkbox { - CheckBox( - state = item.state, - enabled = checkboxGroupState.enabled, - label = item.label, - description = item.description, - onClick = { - checkboxGroupViewModel.checkBoxClicked(index) - }, - ) - } - } - } - }, - ) -} - -/** - * Превью [CheckBoxGroupScreen] - */ -@Preview(showBackground = true) -@Composable -private fun ButtonsScreenPreview() { - SandboxTheme { - CheckBoxGroupScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupUiState.kt deleted file mode 100644 index 7b360dbf4b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupUiState.kt +++ /dev/null @@ -1,47 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose.group - -import androidx.compose.ui.state.ToggleableState -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние checkbox group - * - * @property rootItem рутовый checkbox - * @property items дочерние checkbox - * @property enabled включен ли checkbox group - */ -internal data class CheckBoxGroupUiState( - override val variant: String = "", - override val appearance: String = "", - val rootItem: CheckBoxGroupItem? = ROOT_ITEM, - val items: List = ITEMS, - val enabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } - - internal companion object { - val ROOT_ITEM = CheckBoxGroupItem( - label = "root label", - description = "root description", - ) - - val ITEMS = listOf( - CheckBoxGroupItem( - label = "label", - description = "description", - ), - CheckBoxGroupItem( - label = "label", - description = "description", - ), - ) - } -} - -internal data class CheckBoxGroupItem( - val label: String?, - val description: String?, - val state: ToggleableState = ToggleableState.Off, -) diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupViewModel.kt deleted file mode 100644 index 96350368ee..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/CheckBoxGroupViewModel.kt +++ /dev/null @@ -1,126 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose.group - -import androidx.compose.ui.state.ToggleableState -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.playground.sandbox.checkbox.compose.group.CheckBoxGroupUiState.Companion.ROOT_ITEM -import com.sdds.playground.sandbox.checkbox.compose.toggle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом CheckBoxGroup - */ -internal class CheckBoxGroupViewModel( - defaultState: CheckBoxGroupUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun checkBoxClicked(id: Int) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.mapIndexed { i, item -> - if (i == id) { - item.copy(state = item.state.toggle()) - } else { - item - } - }, - ) - internalUiState.value = internalUiState.value.copy( - rootItem = internalUiState.value.rootItem?.copy( - state = internalUiState.value.getParentState(), - ), - ) - } - - fun rootCheckBoxClicked() { - val newState = internalUiState.value.rootItem?.state!!.toggle() - internalUiState.value = internalUiState.value.copy( - rootItem = internalUiState.value.rootItem?.copy( - state = newState, - ), - items = internalUiState.value.items.map { - it.copy(state = newState) - }, - ) - } - - private fun CheckBoxGroupUiState.getParentState(): ToggleableState = - when { - this.items.all { it.state == ToggleableState.On } -> ToggleableState.On - this.items.all { it.state == ToggleableState.Off } -> ToggleableState.Off - else -> ToggleableState.Indeterminate - } - - private fun updateRootState(hasRoot: Boolean) { - val rootItem = if (hasRoot) ROOT_ITEM else null - internalUiState.value = internalUiState.value.copy(rootItem = rootItem) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.map { item -> - item.copy(label = text.takeIf { it.isNotBlank() }) - }, - rootItem = internalUiState.value.rootItem?.copy( - label = text.takeIf { it.isNotBlank() }, - ), - ) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.map { item -> - item.copy(description = text.takeIf { it.isNotBlank() }) - }, - rootItem = internalUiState.value.rootItem?.copy( - description = text.takeIf { it.isNotBlank() }, - ), - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun CheckBoxGroupUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "label", - value = items.first().label ?: "Empty", - onApply = { updateLabel(it) }, - ), - - Property.StringProperty( - name = "description", - value = items.first().description ?: "Empty", - onApply = { updateDescription(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - - Property.BooleanProperty( - name = "hasRoot", - value = rootItem != null, - onApply = { updateRootState(it) }, - ), - ) - } -} - -internal class CheckBoxGroupViewModelFactory( - private val defaultState: CheckBoxGroupUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CheckBoxGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/SandboxCheckBoxGroup.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/SandboxCheckBoxGroup.kt deleted file mode 100644 index 6ace77261e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/compose/group/SandboxCheckBoxGroup.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.compose.group - -import androidx.compose.runtime.Composable -import androidx.compose.ui.state.ToggleableState -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.CheckBox -import com.sdds.compose.uikit.CheckBoxGroup -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.checkboxgroup.CheckBoxGroup -import com.sdds.serv.styles.checkboxgroup.M - -/** - * Превью [CheckBoxGroup] - */ -@Composable -@Preview(showBackground = true) -fun SandboxCheckBoxPreview() { - SandboxTheme { - CheckBoxGroup( - style = CheckBoxGroup.M.style(), - ) { - rootCheckbox { - CheckBox( - state = ToggleableState.Indeterminate, - label = "label", - description = "description", - ) - } - checkbox { - CheckBox( - checked = true, - label = "label", - description = "description", - ) - } - checkbox { - CheckBox( - checked = false, - label = "label", - description = "description", - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxFragment.kt deleted file mode 100644 index c9d6c79a9e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CheckBox -import com.sdds.uikit.fixtures.stories.checkbox.CheckBoxUiState -import com.sdds.uikit.fixtures.stories.checkbox.applyState -import com.sdds.uikit.fixtures.stories.checkbox.checkBox - -/** - * Фрагмент с компонентом CheckBox - * @author Малышев Александр on 15.08.2024 - */ -internal class CheckBoxFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CheckBoxParametersViewModelFactory( - defaultState = getState { CheckBoxUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): CheckBox { - return checkBox(contextWrapper) - } - - override fun onComponentUpdate(component: CheckBox?, state: CheckBoxUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxParametersViewModel.kt deleted file mode 100644 index ffee6daaec..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/CheckBoxParametersViewModel.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.CheckBox -import com.sdds.uikit.fixtures.stories.checkbox.CheckBoxUiState - -/** - * ViewModel для экранов с компонентом CheckBox - */ -internal class CheckBoxParametersViewModel( - defaultState: CheckBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (CheckBoxPropertyName.values().find { it.value == name }) { - CheckBoxPropertyName.State -> - updateState(CheckBox.ToggleableState.valueOf(value?.toString() ?: return)) - - CheckBoxPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - CheckBoxPropertyName.Description -> updateDescription(value?.toString().orEmpty()) - CheckBoxPropertyName.Enabled -> updateEnabledState((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateState(state: CheckBox.ToggleableState) { - internalUiState.value = internalUiState.value.copy(state = state) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun CheckBoxUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = CheckBoxPropertyName.State.value, - value = state, - ), - - Property.StringProperty( - name = CheckBoxPropertyName.Label.value, - value = label.orEmpty(), - ), - - Property.StringProperty( - name = CheckBoxPropertyName.Description.value, - value = description.orEmpty(), - ), - - Property.BooleanProperty( - name = CheckBoxPropertyName.Enabled.value, - value = enabled, - ), - ) - } - - private enum class CheckBoxPropertyName(val value: String) { - State("state"), - Label("label"), - Description("description"), - Enabled("enabled"), - } -} - -/** - * Фабрика [CheckBoxParametersViewModel] - */ -internal class CheckBoxParametersViewModelFactory( - private val defaultState: CheckBoxUiState = CheckBoxUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CheckBoxParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupFragment.kt deleted file mode 100644 index d930ccc2f1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.vs.group - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CheckBoxGroup -import com.sdds.uikit.fixtures.stories.checkbox.CheckBoxUiState -import com.sdds.uikit.fixtures.stories.checkbox.applyState -import com.sdds.uikit.fixtures.stories.checkbox.checkBoxGroup - -/** - * Фрагмент с компонентом CheckBoxGroup - * @author Малышев Александр on 15.08.2024 - */ -internal class CheckBoxGroupFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CheckBoxGroupViewModelFactory( - defaultState = getState { CheckBoxUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): CheckBoxGroup { - return checkBoxGroup(contextWrapper) - } - - override fun onComponentUpdate(component: CheckBoxGroup?, state: CheckBoxUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupViewModel.kt deleted file mode 100644 index d4eac610a0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/checkbox/vs/group/CheckBoxGroupViewModel.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.checkbox.vs.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.checkbox.CheckBoxUiState - -/** - * ViewModel для экранов с компонентом CheckBox - */ -internal class CheckBoxGroupViewModel( - defaultState: CheckBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (CheckBoxPropertyName.values().find { it.value == name }) { - CheckBoxPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - CheckBoxPropertyName.Description -> updateDescription(value?.toString().orEmpty()) - else -> Unit - } - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - override fun CheckBoxUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = CheckBoxPropertyName.Label.value, - value = label.orEmpty(), - ), - - Property.StringProperty( - name = CheckBoxPropertyName.Description.value, - value = description.orEmpty(), - ), - ) - } - - private enum class CheckBoxPropertyName(val value: String) { - Label("label"), - Description("description"), - } -} - -/** - * Фабрика [CheckBoxGroupViewModel] - */ -internal class CheckBoxGroupViewModelFactory( - private val defaultState: CheckBoxUiState = CheckBoxUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CheckBoxGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipPreviews.kt deleted file mode 100644 index 2c63780b68..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipPreviews.kt +++ /dev/null @@ -1,107 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.chip.Accent -import com.sdds.serv.styles.chip.Chip -import com.sdds.serv.styles.chip.Default -import com.sdds.serv.styles.chip.L -import com.sdds.serv.styles.chip.M -import com.sdds.serv.styles.chip.Pilled -import com.sdds.serv.styles.chip.S -import com.sdds.serv.styles.chip.Secondary -import com.sdds.serv.styles.chip.Xs - -@Composable -@Preview(showBackground = true) -internal fun ChipPreview() { - SandboxTheme { - Chip( - style = Chip.M.Default.style(), - label = "label", - isSelected = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_accessibility_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ChipPreviewSizeLDefault() { - SandboxTheme { - Chip( - style = Chip.L.Default.style(), - label = "Label", - onClick = {}, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = null, - ) - }, - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ChipPreviewSizeMSecondaryPilled() { - SandboxTheme { - Chip( - style = Chip.M.Pilled.Secondary.style(), - label = "Label", - onClick = {}, - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ChipPreviewSizeSAccentDisabled() { - SandboxTheme { - Chip( - style = Chip.S.Accent.style(), - label = "Label", - onClick = {}, - enabled = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ChipPreviewSizeXSContentLeft() { - SandboxTheme { - Chip( - style = Chip.Xs.Default.style(), - label = "Label", - onClick = {}, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_plasma_16), - contentDescription = null, - ) - }, - enabled = true, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipScreen.kt deleted file mode 100644 index 11a81aa1f5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipScreen.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun ChipScreen(componentKey: ComponentKey = ComponentKey.Chip) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ChipViewModelFactory(ChipUiState(), componentKey), - key = componentKey.toString(), - ), - component = { chipUiState, style -> - Chip( - onClick = getOnClick(chipUiState.isClickable), - style = style, - label = chipUiState.label, - enabled = chipUiState.enabled, - startContent = startContent(chipUiState.hasStartIcon), - endContent = endContent(chipUiState.hasEndIcon), - ) - }, - ) -} - -private fun getOnClick(isClickable: Boolean): (() -> Unit)? { - return if (isClickable) { - {} - } else { - null - } -} - -private fun startContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_add_fill_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun endContent(hasContent: Boolean): (@Composable () -> Unit)? { - return if (hasContent) { - { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_close_24), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -internal fun ChipScreenPreview() { - SandboxTheme { - ChipScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipUiState.kt deleted file mode 100644 index 175999b58e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipUiState.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ChipUiState( - override val variant: String = "", - override val appearance: String = "", - val isClickable: Boolean = true, - val label: String = "Label", - val hasStartIcon: Boolean = true, - val hasEndIcon: Boolean = true, - val enabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipViewModel.kt deleted file mode 100644 index 2f97d65e85..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/ChipViewModel.kt +++ /dev/null @@ -1,82 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ChipStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Chip - */ -internal class ChipViewModel( - defaultState: ChipUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(hasStartIcon = hasIcon) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(hasEndIcon = hasIcon) - } - - private fun updateClickable(isClickable: Boolean) { - internalUiState.value = internalUiState.value.copy(isClickable = isClickable) - } - - override fun ChipUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "label", - value = label, - onApply = { updateLabel(it) }, - ), - - Property.BooleanProperty( - name = "start icon", - value = hasStartIcon, - onApply = { updateStartIcon(it) }, - ), - - Property.BooleanProperty( - name = "end icon", - value = hasEndIcon, - onApply = { updateEndIcon(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - - Property.BooleanProperty( - name = "clickable", - value = isClickable, - onApply = { updateClickable(it) }, - ), - ) - } -} - -internal class ChipViewModelFactory( - private val defaultState: ChipUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ChipViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/SandboxEmbeddedChip.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/SandboxEmbeddedChip.kt deleted file mode 100644 index ea2ff51d23..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/SandboxEmbeddedChip.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.chip.Default -import com.sdds.serv.styles.chip.EmbeddedChip -import com.sdds.serv.styles.chip.M - -@Preview(showBackground = true) -@Composable -internal fun SandboxEmbeddedChipPreview() { - SandboxTheme { - Chip( - label = "label", - style = EmbeddedChip.M.Default.style(), - startContent = { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_accessibility_24), - contentDescription = "", - ) - }, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupScreen.kt deleted file mode 100644 index e86b5046a0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupScreen.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose.group - -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.rememberScrollState -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.ChipGroup -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [ChipGroup] - */ -@Composable -internal fun ChipGroupScreen(componentKey: ComponentKey = ComponentKey.ChipGroup) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ChipGroupViewModelFactory(ChipGroupUiState(), componentKey), - key = componentKey.toString(), - ), - component = { chipGroupState, style -> - ChipGroup( - modifier = if (chipGroupState.shouldWrap) { - Modifier - } else { - Modifier.horizontalScroll(rememberScrollState()) - }, - style = style, - ) { - chipGroupState.items.forEach { - var isSelected by remember { mutableStateOf(false) } - // TODO: https://github.com/salute-developers/plasma-android/issues/306 - Chip( - isSelected = isSelected, - onSelectedChange = { value -> isSelected = value }, - label = it, - enabled = chipGroupState.enabled, - ) - } - } - }, - ) -} - -/** - * Превью [ChipGroupScreen] - */ -@Preview(showBackground = true) -@Composable -private fun ButtonsScreenPreview() { - SandboxTheme { - ChipGroupScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupUiState.kt deleted file mode 100644 index 7bac72d597..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupUiState.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose.group - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ChipGroupUiState( - override val variant: String = "", - override val appearance: String = "", - val items: List = List(3) { "label" }, - val shouldWrap: Boolean = true, - val enabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupViewModel.kt deleted file mode 100644 index 2a8819a391..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/compose/group/ChipGroupViewModel.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.chip.compose.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class ChipGroupViewModel( - defaultState: ChipGroupUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateQuantity(quantity: Int, label: String) { - if (quantity !in 2..10) return - internalUiState.value = internalUiState.value.copy( - items = List(quantity) { label }, - ) - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.map { label }, - ) - } - - private fun updateWrap(wrap: Boolean) { - internalUiState.value = internalUiState.value.copy(shouldWrap = wrap) - } - - private fun updateEnabled(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun ChipGroupUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = "quantity", - value = items.size, - onApply = { updateQuantity(it, items.first()) }, - ), - - Property.StringProperty( - name = "label", - value = items.first(), - onApply = { updateLabel(it) }, - ), - - Property.BooleanProperty( - name = "wrap", - value = shouldWrap, - onApply = { updateWrap(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabled(it) }, - ), - ) - } -} - -internal class ChipGroupViewModelFactory( - private val defaultState: ChipGroupUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ChipGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipFragment.kt deleted file mode 100644 index 468c1a882b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.chip.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Chip -import com.sdds.uikit.fixtures.stories.chip.ChipUiState -import com.sdds.uikit.fixtures.stories.chip.applyState -import com.sdds.uikit.fixtures.stories.chip.chip - -/** - * Фрагмент с компонентом Chip - * @author Малышев Александр on 22.08.2024 - */ -internal class ChipFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ChipParametersViewModelFactory( - defaultState = getState { ChipUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Chip { - return chip(contextWrapper) - } - - override fun onComponentUpdate(component: Chip?, state: ChipUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipParametersViewModel.kt deleted file mode 100644 index 0b7070ec88..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/ChipParametersViewModel.kt +++ /dev/null @@ -1,126 +0,0 @@ -package com.sdds.playground.sandbox.chip.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.ChipGroup -import com.sdds.uikit.fixtures.stories.chip.ChipUiState -import com.sdds.uikit.fixtures.stories.chip.GravityMode - -/** - * ViewModel для экранов с компонентом Chip - * @param defaultState состояние по-умолчанию - */ -internal class ChipParametersViewModel( - defaultState: ChipUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod", "ReturnCount") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = ChipPropertyName.values().find { it.value == name } - when (pName) { - ChipPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - ChipPropertyName.ContentLeft -> updateStartIcon(value as Boolean) - ChipPropertyName.HasClose -> updateEndIcon(value as Boolean) - ChipPropertyName.Enabled -> updateEnabledState(value as Boolean) - ChipPropertyName.Wrapped -> updateWrapped(value as Boolean) - ChipPropertyName.Quantity -> updateQuantity(value?.toString()?.toInt() ?: 0) - ChipPropertyName.GravityMode -> updateGravity(GravityMode.valueOf(value?.toString() ?: return)) - ChipPropertyName.SelectionMode -> updateSelectionMode( - ChipGroup.SelectionMode.valueOf( - value?.toString() ?: return, - ), - ) - else -> Unit - } - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(contentLeft = hasIcon) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(hasClose = hasIcon) - } - - private fun updateWrapped(isWrapped: Boolean) { - internalUiState.value = internalUiState.value.copy(isWrapped = isWrapped) - } - - private fun updateQuantity(quantity: Int) { - internalUiState.value = internalUiState.value.copy(quantity = quantity) - } - - private fun updateGravity(gravityMode: GravityMode) { - internalUiState.value = internalUiState.value.copy(gravityMode = gravityMode) - } - - private fun updateSelectionMode(selectionMode: ChipGroup.SelectionMode) { - internalUiState.value = internalUiState.value.copy(selectionMode = selectionMode) - } - - override fun ChipUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = ChipPropertyName.Label.value, - value = label, - ), - - Property.BooleanProperty( - name = ChipPropertyName.ContentLeft.value, - value = contentLeft, - ), - - Property.BooleanProperty( - name = ChipPropertyName.HasClose.value, - value = hasClose, - ), - - Property.BooleanProperty( - name = ChipPropertyName.Enabled.value, - value = enabled, - ), - ) - } - - private enum class ChipPropertyName(val value: String) { - Label("Label"), - ContentLeft("ContentLeft"), - HasClose("hasClose"), - Enabled("Enabled"), - GapMode("Gap"), - Wrapped("isWrapped"), - Quantity("Quantity"), - GravityMode("Gravity"), - SelectionMode("SelectionMode"), - } -} - -/** - * Фабрика [ChipParametersViewModel] - * @param groupMode режим группы чипов - * @param defaultState состояние по-умолчанию - */ -internal class ChipParametersViewModelFactory( - private val defaultState: ChipUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ChipParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupFragment.kt deleted file mode 100644 index cd2ce89506..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupFragment.kt +++ /dev/null @@ -1,53 +0,0 @@ -package com.sdds.playground.sandbox.chip.vs.group - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ChipGroup -import com.sdds.uikit.fixtures.stories.chip.ChipUiState -import com.sdds.uikit.fixtures.stories.chip.applyState -import com.sdds.uikit.fixtures.stories.chip.chipGroup - -/** - * Фрагмент с компонентом [ChipGroup] - * @author Малышев Александр on 30.08.2024 - */ -internal class ChipGroupFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ChipGroupParametersViewModelFactory( - defaultState = getState { ChipUiState() }, - componentKey = componentKey, - ) - } - - override val scrollMode: ScrollMode - get() = if (isWrapped) ScrollMode.VERTICAL else ScrollMode.HORIZONTAL - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - - private var isWrapped: Boolean = false - - override fun shouldRecreateComponentOnStateUpdate(state: ChipUiState): Boolean { - return if (isWrapped != state.isWrapped) { - isWrapped = state.isWrapped - true - } else { - false - } - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): ChipGroup { - return chipGroup(contextWrapper) - } - - override fun onComponentUpdate(component: ChipGroup?, state: ChipUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupParametersViewModel.kt deleted file mode 100644 index fe7ea2a9a8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/chip/vs/group/ChipGroupParametersViewModel.kt +++ /dev/null @@ -1,137 +0,0 @@ -package com.sdds.playground.sandbox.chip.vs.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.ChipGroup -import com.sdds.uikit.fixtures.stories.chip.ChipUiState -import com.sdds.uikit.fixtures.stories.chip.GravityMode - -/** - * ViewModel для экранов с компонентом Chip - * @param defaultState состояние по-умолчанию - */ -internal class ChipGroupParametersViewModel( - defaultState: ChipUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod", "ReturnCount") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = ChipPropertyName.values().find { it.value == name } - when (pName) { - ChipPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - ChipPropertyName.ContentLeft -> updateStartIcon(value as Boolean) - ChipPropertyName.HasClose -> updateEndIcon(value as Boolean) - ChipPropertyName.Wrapped -> updateWrapped(value as Boolean) - ChipPropertyName.Quantity -> updateQuantity(value?.toString()?.toIntOrNull() ?: 0) - ChipPropertyName.GravityMode -> updateGravity(GravityMode.valueOf(value?.toString() ?: return)) - ChipPropertyName.SelectionMode -> updateSelectionMode( - ChipGroup.SelectionMode.valueOf( - value?.toString() ?: return, - ), - ) - else -> Unit - } - } - - override val colorVariantPropertyName: String - get() = "checkedState" - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(contentLeft = hasIcon) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy(hasClose = hasIcon) - } - - private fun updateWrapped(isWrapped: Boolean) { - internalUiState.value = internalUiState.value.copy(isWrapped = isWrapped) - } - - private fun updateQuantity(quantity: Int) { - internalUiState.value = internalUiState.value.copy(quantity = quantity) - } - - private fun updateGravity(gravityMode: GravityMode) { - internalUiState.value = internalUiState.value.copy(gravityMode = gravityMode) - } - - private fun updateSelectionMode(selectionMode: ChipGroup.SelectionMode) { - internalUiState.value = internalUiState.value.copy(selectionMode = selectionMode) - } - - override fun ChipUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = ChipPropertyName.Label.value, - value = label, - ), - - Property.BooleanProperty( - name = ChipPropertyName.ContentLeft.value, - value = contentLeft, - ), - - Property.BooleanProperty( - name = ChipPropertyName.HasClose.value, - value = hasClose, - ), - - Property.BooleanProperty( - name = ChipPropertyName.Wrapped.value, - value = isWrapped, - ), - - enumProperty( - name = ChipPropertyName.GravityMode.value, - value = gravityMode, - ), - - Property.IntProperty( - name = ChipPropertyName.Quantity.value, - value = quantity, - ), - enumProperty( - name = ChipPropertyName.SelectionMode.value, - value = selectionMode, - ), - ) - } - - private enum class ChipPropertyName(val value: String) { - Label("Label"), - ContentLeft("ContentLeft"), - HasClose("hasClose"), - GapMode("Gap"), - Wrapped("isWrapped"), - Quantity("Quantity"), - GravityMode("Gravity"), - SelectionMode("SelectionMode"), - } -} - -/** - * Фабрика [ChipGroupParametersViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class ChipGroupParametersViewModelFactory( - private val defaultState: ChipUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ChipGroupParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldScreen.kt deleted file mode 100644 index b6295e225d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldScreen.kt +++ /dev/null @@ -1,53 +0,0 @@ -package com.sdds.playground.sandbox.codefield.compose - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.CodeField -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [CodeField] - */ -@Composable -internal fun CodeFieldScreen(componentKey: ComponentKey = ComponentKey.CodeField) { - val focusRequester = remember { FocusRequester() } - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CodeFieldViewModelFactory(CodeFieldUiState(), componentKey), - key = componentKey.toString(), - ), - component = { codeFieldUiState, style -> - val validCode = buildString { repeat(codeFieldUiState.codeLength) { append(it + 1) } } - CodeField( - modifier = Modifier.focusRequester(focusRequester), - style = style, - codeLength = codeFieldUiState.codeLength, - hidden = codeFieldUiState.hidden, - onCodeComplete = { it == validCode }, - isItemValid = { it != codeFieldUiState.errorItem }, - caption = codeFieldUiState.caption, - captionAlignment = codeFieldUiState.captionAlignment, - ) - - LaunchedEffect(Unit) { focusRequester.requestFocus() } - }, - ) -} - -@Composable -internal fun CodeFieldPreview(style: CodeFieldStyle) { - CodeField( - style = style, - codeLength = 6, - hidden = false, - caption = "Caption", - ) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldUiState.kt deleted file mode 100644 index c3612f0d1b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldUiState.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.codefield.compose - -import com.sdds.compose.uikit.CodeFieldCaptionAlignment -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class CodeFieldUiState( - override val variant: String = "", - override val appearance: String = "", - val errorItem: String = "q", - val codeLength: Int = 4, - val hidden: Boolean = false, - val caption: String = "Caption", - val captionAlignment: CodeFieldCaptionAlignment = CodeFieldCaptionAlignment.Center, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldViewModel.kt deleted file mode 100644 index 49f5c5bbd5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/compose/CodeFieldViewModel.kt +++ /dev/null @@ -1,69 +0,0 @@ -package com.sdds.playground.sandbox.codefield.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class CodeFieldViewModel( - defaultState: CodeFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun CodeFieldUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "caption", - value = caption, - onApply = { - internalUiState.value = internalUiState.value.copy(caption = it) - }, - ), - Property.StringProperty( - name = "errorItem", - value = errorItem, - onApply = { - internalUiState.value = - internalUiState.value.copy(errorItem = it.first().toString()) - }, - ), - Property.BooleanProperty( - name = "hidden", - value = hidden, - onApply = { - internalUiState.value = internalUiState.value.copy(hidden = it) - }, - ), - Property.IntProperty( - name = "codeLength", - value = codeLength, - onApply = { - if (it in 3..6) { - internalUiState.value = internalUiState.value.copy(codeLength = it) - } - }, - ), - enumProperty( - name = "captionAlignment", - value = captionAlignment, - onApply = { - internalUiState.value = internalUiState.value.copy(captionAlignment = it) - }, - ), - ) - } -} - -internal class CodeFieldViewModelFactory( - private val defaultState: CodeFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CodeFieldViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldFragment.kt deleted file mode 100644 index 6fecb0e51e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldFragment.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.codefield.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CodeField -import com.sdds.uikit.fixtures.stories.codefield.CodeFieldUiState -import com.sdds.uikit.fixtures.stories.codefield.applyState -import com.sdds.uikit.fixtures.stories.codefield.codeField - -/** - * Фрагмент с компонентом CodeField - */ -internal class CodeFieldFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CodeFieldParametersViewModelFactory( - defaultState = getState { CodeFieldUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): CodeField { - return codeField(contextWrapper) - } - - override fun onComponentUpdate(component: CodeField?, state: CodeFieldUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldParametersViewModel.kt deleted file mode 100644 index 7f864d74ac..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codefield/vs/CodeFieldParametersViewModel.kt +++ /dev/null @@ -1,120 +0,0 @@ -package com.sdds.playground.sandbox.codefield.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.CodeField -import com.sdds.uikit.fixtures.stories.codefield.CodeFieldUiState - -/** - * ViewModel для экрана с компонентом CodeField - * @param defaultState состояние по-умолчанию - */ -internal class CodeFieldParametersViewModel( - defaultState: CodeFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.CodeLength -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(codeLength = valueString.toInt()) - } else { - currentState - } - - PropertyName.Hidden -> currentState.copy(hidden = valueString.toBoolean()) - PropertyName.ErrorItem -> currentState.copy(errorItem = valueString) - PropertyName.Caption -> currentState.copy(caption = valueString) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.CaptionAlignment -> currentState.copy( - captionAlignment = CodeField.CaptionAlignment.valueOf(valueString), - ) - - PropertyName.CodeValidateBehavior -> currentState.copy( - codeValidateBehavior = CodeField.CodeErrorBehavior.valueOf(valueString), - ) - - PropertyName.CharValidateBehavior -> currentState.copy( - charValidateBehavior = CodeField.CharErrorBehavior.valueOf(valueString), - ) - } - } - - override fun CodeFieldUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = PropertyName.ErrorItem.value, - value = errorItem, - ), - - Property.IntProperty( - name = PropertyName.CodeLength.value, - value = codeLength, - ), - - Property.BooleanProperty( - name = PropertyName.Hidden.value, - value = hidden, - ), - - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - - Property.StringProperty( - name = PropertyName.Caption.value, - value = caption, - ), - enumProperty( - name = PropertyName.CaptionAlignment.value, - value = captionAlignment, - ), - enumProperty( - name = PropertyName.CodeValidateBehavior.value, - value = codeValidateBehavior, - ), - enumProperty( - name = PropertyName.CharValidateBehavior.value, - value = charValidateBehavior, - ), - ) - } - - private enum class PropertyName(val value: String) { - ErrorItem("errorItem"), - CodeLength("codeLength"), - Hidden("hidden"), - Caption("caption"), - Enabled("enabled"), - CaptionAlignment("captionAlignment"), - CodeValidateBehavior("codeValidateBehavior"), - CharValidateBehavior("charValidateBehavior"), - } -} - -/** - * Фабрика [CodeFieldParametersViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class CodeFieldParametersViewModelFactory( - private val defaultState: CodeFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CodeFieldParametersViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputScreen.kt deleted file mode 100644 index f90af53a18..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputScreen.kt +++ /dev/null @@ -1,102 +0,0 @@ -package com.sdds.playground.sandbox.codeinput.compose - -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.focus.focusTarget -import androidx.compose.ui.platform.LocalFocusManager -import androidx.compose.ui.res.stringResource -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.CodeInput -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.Switch -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.fs.isEnabled -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.FieldFocusSelectorModeSwitch -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.Xs - -/** - * Экран с [CodeInput] - */ -@Composable -internal fun CodeInputScreen(componentKey: ComponentKey = ComponentKey.CodeInput) { - val focusRequester = remember { FocusRequester() } - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CodeInputViewModelFactory(CodeInputUiState(), componentKey), - key = componentKey.toString(), - ), - component = { codeInputUiState, style -> - val focusManager = LocalFocusManager.current - var isFocusSelectorOn by remember { mutableStateOf(!FieldFocusSelectorModeSwitch) } - Column { - val validCode = - buildString { repeat(codeInputUiState.codeLength) { append(it + 1) } } - CodeInput( - modifier = Modifier - .align(Alignment.CenterHorizontally) - .focusRequester(focusRequester) - .focusTarget(), - style = style, - codeLength = codeInputUiState.codeLength, - hidden = codeInputUiState.hidden, - onCodeComplete = { it == validCode }, - isItemValid = { it != codeInputUiState.errorItem }, - caption = codeInputUiState.caption, - hasItemFocusSelector = if (isFocusSelectorOn) { - LocalFocusSelectorSettings.current.isEnabled() - } else { - false - }, - captionAlignment = codeInputUiState.captionAlignment, - ) - - if (FieldFocusSelectorModeSwitch) { - Spacer(Modifier.size(64.dp)) - Switch( - active = isFocusSelectorOn, - label = stringResource(R.string.sandbox_enable_focus_selector), - onActiveChanged = { isFocusSelectorOn = it }, - ) - Button( - style = BasicButton.Xs.Default.style(), - label = stringResource(R.string.sandbox_clear_focus), - onClick = { focusManager.clearFocus(true) }, - ) - } - LaunchedEffect(Unit) { - focusRequester.requestFocus() - } - } - }, - ) -} - -@Composable -internal fun CodeInputPreview(style: CodeInputStyle) { - CodeInput( - style = style, - codeLength = 6, - hidden = true, - caption = "Caption", - ) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputUiState.kt deleted file mode 100644 index cca9f54f8c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputUiState.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.codeinput.compose - -import com.sdds.compose.uikit.CodeInputCaptionAlignment -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class CodeInputUiState( - override val variant: String = "", - override val appearance: String = "", - val errorItem: String = "q", - val codeLength: Int = 4, - val hidden: Boolean = false, - val caption: String = "Caption", - val captionAlignment: CodeInputCaptionAlignment = CodeInputCaptionAlignment.Center, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputViewModel.kt deleted file mode 100644 index 08ba9a5074..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/compose/CodeInputViewModel.kt +++ /dev/null @@ -1,69 +0,0 @@ -package com.sdds.playground.sandbox.codeinput.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class CodeInputViewModel( - defaultState: CodeInputUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun CodeInputUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "caption", - value = caption, - onApply = { - internalUiState.value = internalUiState.value.copy(caption = it) - }, - ), - Property.StringProperty( - name = "errorItem", - value = errorItem, - onApply = { - internalUiState.value = - internalUiState.value.copy(errorItem = it.first().toString()) - }, - ), - Property.BooleanProperty( - name = "hidden", - value = hidden, - onApply = { - internalUiState.value = internalUiState.value.copy(hidden = it) - }, - ), - Property.IntProperty( - name = "codeLength", - value = codeLength, - onApply = { - if (it in 3..6) { - internalUiState.value = internalUiState.value.copy(codeLength = it) - } - }, - ), - enumProperty( - name = "captionAlignment", - value = captionAlignment, - onApply = { - internalUiState.value = internalUiState.value.copy(captionAlignment = it) - }, - ), - ) - } -} - -internal class CodeInputViewModelFactory( - private val defaultState: CodeInputUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CodeInputViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputFragment.kt deleted file mode 100644 index 98f03960f5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputFragment.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.codeinput.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CodeInput -import com.sdds.uikit.fixtures.stories.codeinput.CodeInputUiState -import com.sdds.uikit.fixtures.stories.codeinput.applyState -import com.sdds.uikit.fixtures.stories.codeinput.codeInput - -/** - * Фрагмент с компонентом CodeInput - */ -internal class CodeInputFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CodeInputParametersViewModelFactory( - defaultState = getState { CodeInputUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): CodeInput { - return codeInput(contextWrapper) - } - - override fun onComponentUpdate(component: CodeInput?, state: CodeInputUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputParametersViewModel.kt deleted file mode 100644 index af9c9b4989..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/codeinput/vs/CodeInputParametersViewModel.kt +++ /dev/null @@ -1,128 +0,0 @@ -package com.sdds.playground.sandbox.codeinput.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.CodeField -import com.sdds.uikit.fixtures.stories.codeinput.CodeInputUiState - -/** - * ViewModel для экрана с компонентом CodeInput - * @param defaultState состояние по-умолчанию - */ -internal class CodeInputParametersViewModel( - defaultState: CodeInputUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.CodeLength -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(codeLength = valueString.toInt()) - } else { - currentState - } - - PropertyName.Hidden -> currentState.copy(hidden = valueString.toBoolean()) - PropertyName.ErrorItem -> currentState.copy(errorItem = valueString) - PropertyName.Caption -> currentState.copy(caption = valueString) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.CaptionAlignment -> currentState.copy( - captionAlignment = CodeField.CaptionAlignment.valueOf(valueString), - ) - - PropertyName.FocusGain -> currentState.copy(focusGain = valueString.toBoolean()) - PropertyName.CodeValidateBehavior -> currentState.copy( - codeValidateBehavior = CodeField.CodeErrorBehavior.valueOf(valueString), - ) - - PropertyName.CharValidateBehavior -> currentState.copy( - charValidateBehavior = CodeField.CharErrorBehavior.valueOf(valueString), - ) - } - } - - override fun CodeInputUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = PropertyName.ErrorItem.value, - value = errorItem, - ), - - Property.IntProperty( - name = PropertyName.CodeLength.value, - value = codeLength, - ), - - Property.BooleanProperty( - name = PropertyName.Hidden.value, - value = hidden, - ), - - Property.StringProperty( - name = PropertyName.Caption.value, - value = caption, - ), - - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - - enumProperty( - name = PropertyName.CaptionAlignment.value, - value = captionAlignment, - ), - - Property.BooleanProperty( - name = PropertyName.FocusGain.value, - value = focusGain, - ), - enumProperty( - name = PropertyName.CodeValidateBehavior.value, - value = codeValidateBehavior, - ), - enumProperty( - name = PropertyName.CharValidateBehavior.value, - value = charValidateBehavior, - ), - ) - } - - private enum class PropertyName(val value: String) { - ErrorItem("errorItem"), - CodeLength("codeLength"), - Hidden("hidden"), - Caption("caption"), - Enabled("enabled"), - CaptionAlignment("captionAlignment"), - FocusGain("focusGain"), - CodeValidateBehavior("codeValidateBehavior"), - CharValidateBehavior("charValidateBehavior"), - } -} - -/** - * Фабрика [CodeInputParametersViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class CodeInputParametersViewModelFactory( - private val defaultState: CodeInputUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CodeInputParametersViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/ThemeManager.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/ThemeManager.kt deleted file mode 100644 index 1e791dcadb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/ThemeManager.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.core - -import com.sdds.playground.sandbox.Theme -import kotlinx.coroutines.flow.MutableStateFlow -import kotlinx.coroutines.flow.StateFlow -import kotlinx.coroutines.flow.asStateFlow - -/** - * - * @author Малышев Александр on 04.03.2025 - */ -internal object ThemeManager { - - private var _currentTheme = MutableStateFlow(Theme.Default) - - val currentTheme: StateFlow - get() = _currentTheme.asStateFlow() - - fun updateTheme(theme: Theme) { - _currentTheme.value = theme - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentScaffold.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentScaffold.kt deleted file mode 100644 index 7f7a828dbf..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentScaffold.kt +++ /dev/null @@ -1,255 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.activity.compose.BackHandler -import androidx.compose.animation.AnimatedContent -import androidx.compose.animation.SizeTransform -import androidx.compose.animation.fadeIn -import androidx.compose.animation.fadeOut -import androidx.compose.animation.slideInHorizontally -import androidx.compose.animation.slideOutHorizontally -import androidx.compose.animation.togetherWith -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.WindowInsets -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.statusBars -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.runtime.collectAsState -import androidx.compose.runtime.derivedStateOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableFloatStateOf -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.layout.onGloballyPositioned -import androidx.compose.ui.layout.positionInRoot -import androidx.compose.ui.platform.LocalContext -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.SubTheme -import com.sdds.playground.sandbox.ThemeInfoCompose -import com.sdds.playground.sandbox.composeTheme -import com.sdds.playground.sandbox.core.ThemeManager -import com.sdds.playground.sandbox.core.compose.bottomsheet.BottomSheetScaffold -import com.sdds.playground.sandbox.core.compose.bottomsheet.BottomSheetValue -import com.sdds.playground.sandbox.core.compose.bottomsheet.rememberBottomSheetState -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun ComponentScaffold( - key: ComponentKey, - viewModel: ComponentViewModel, - themeManager: ThemeManager = ThemeManager, - componentAlignment: (State) -> Alignment = { Alignment.Center }, - component: @Composable BoxScope.(State, S) -> Unit, -) { - if (LocalContext.current.isTvDevice()) { - TvScaffold( - key = key, - viewModel = viewModel, - themeManager = themeManager, - componentAlignment = componentAlignment, - component = component, - ) - } else { - MobileScaffold( - key = key, - viewModel = viewModel, - themeManager = themeManager, - componentAlignment = componentAlignment, - component = component, - ) - } -} - -@Composable -private fun MobileScaffold( - key: ComponentKey, - viewModel: ComponentViewModel, - themeManager: ThemeManager = ThemeManager, - componentAlignment: (State) -> Alignment = { Alignment.Center }, - component: @Composable BoxScope.(State, S) -> Unit, -) { - val sheetState = rememberBottomSheetState(initialValue = BottomSheetValue.Collapsed) - BottomSheetScaffold( - bottomSheetState = sheetState, - sheetPeekHeight = 74.dp, - bottomSheetContent = { - AnimatedMenuProperty(title = "${key.group.displayName},${key.value}", viewModel = viewModel) - }, - ) { sheetHeight -> - var top by remember { mutableFloatStateOf(0f) } - val uiState by viewModel.uiState.collectAsState() - val density = LocalDensity.current - val statusBarHeight = WindowInsets.statusBars.getTop(density).toFloat() - val currentSubTheme by viewModel.subtheme.collectAsState() - val sandboxStyle = LocalSandboxStyle.current - val componentBackground by remember { - derivedStateOf { - val stateSet = currentSubTheme?.let { setOf(it) } ?: emptySet() - sandboxStyle.componentBackgroundColor.getValue(stateSet) - } - } - Box( - modifier = Modifier - .fillMaxSize() - .background(componentBackground, shape = sandboxStyle.componentBackgroundShape) - .padding(16.dp) - .align(componentAlignment(uiState)) - .onGloballyPositioned { layoutCoordinates -> - val pos = layoutCoordinates.positionInRoot() - top = pos.y - } - .graphicsLayer { - val offset = - (sheetState.progressFromCollapsedToExpanded * sheetHeight).coerceAtMost(top - statusBarHeight) - translationY = -offset - }, - contentAlignment = Alignment.Center, - ) { - val currentTheme by themeManager.currentTheme.collectAsState() - val themeInfo = composeTheme(currentTheme) - themeInfo.themeWrapper { - val styleProvider = themeInfo.components.get(key) - .styleProviders[uiState.appearance] - if (styleProvider != null) { - SubTheme(themeInfo, currentSubTheme) { - component( - uiState, - styleProvider.style(uiState.variant), - ) - } - } - } - } - } -} - -@Composable -private fun TvScaffold( - key: ComponentKey, - viewModel: ComponentViewModel, - themeManager: ThemeManager = ThemeManager, - componentAlignment: (State) -> Alignment = { Alignment.Center }, - component: @Composable BoxScope.(State, S) -> Unit, -) { - Row( - modifier = Modifier - .fillMaxSize(), - ) { - Column( - modifier = Modifier - .fillMaxHeight() - .width(240.dp), - ) { - AnimatedMenuProperty(title = "${key.group.displayName},${key.value}", viewModel = viewModel) - } - val uiState by viewModel.uiState.collectAsState() - val currentSubTheme by viewModel.subtheme.collectAsState() - val sandboxStyle = LocalSandboxStyle.current - val componentBackground by remember { - derivedStateOf { - val stateSet = currentSubTheme?.let { setOf(it) } ?: emptySet() - sandboxStyle.componentBackgroundColor.getValue(stateSet) - } - } - Box( - modifier = Modifier - .weight(1f, fill = true) - .fillMaxHeight() - .background(componentBackground), - contentAlignment = componentAlignment(uiState), - ) { - val currentTheme by themeManager.currentTheme.collectAsState() - val themeInfo = composeTheme(currentTheme) - themeInfo.themeWrapper { - val styleProvider = themeInfo.components.get(key) - .styleProviders[uiState.appearance] - if (styleProvider != null) { - SubTheme(themeInfo, currentSubTheme) { - component( - uiState, - styleProvider.style(uiState.variant), - ) - } - } - } - } - } -} - -@Composable -private fun SubTheme( - currentTheme: ThemeInfoCompose, - subThemeType: SubTheme?, - content: @Composable () -> Unit, -) { - val wrapper = currentTheme.subthemes[subThemeType] - if (wrapper != null) { - wrapper(content) - } else { - content() - } -} - -@Composable -private fun AnimatedMenuProperty( - title: String, - viewModel: ComponentViewModel, -) { - val contentState = remember { mutableStateOf(MenuPropertyContent.PropertiesList) } - val properties by viewModel.properties.collectAsState() - BackHandler(enabled = contentState.value is MenuPropertyContent.PropertyEditor) { - contentState.value = MenuPropertyContent.PropertiesList - } - AnimatedContent( - targetState = contentState.value, - transitionSpec = { - if (targetState is MenuPropertyContent.PropertiesList) { - slideInHorizontally { -it } + fadeIn() togetherWith - slideOutHorizontally { it } + fadeOut() - } else { - slideInHorizontally { it } + fadeIn() togetherWith - slideOutHorizontally { -it } + fadeOut() - }.using(SizeTransform(clip = false)) - }, - ) { content -> - when (content) { - MenuPropertyContent.PropertiesList -> { - PropertiesList( - modifier = Modifier.fillMaxHeight(), - headerTitle = title, - properties = properties, - onSelect = { - contentState.value = MenuPropertyContent.PropertyEditor(it) - }, - onReset = { viewModel.resetToDefault() }, - ) - } - - is MenuPropertyContent.PropertyEditor -> { - PropertyEditor( - modifier = Modifier.fillMaxHeight(), - headerTitle = title, - property = content.property, - onConfirm = {}, - ) - } - } - } -} - -private sealed class MenuPropertyContent { - object PropertiesList : MenuPropertyContent() - data class PropertyEditor(val property: Property<*>) : MenuPropertyContent() -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentViewModel.kt deleted file mode 100644 index 7016dcff04..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/ComponentViewModel.kt +++ /dev/null @@ -1,142 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.viewModelScope -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.SubTheme -import com.sdds.playground.sandbox.composeTheme -import com.sdds.playground.sandbox.core.ThemeManager -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.CoreComponent -import kotlinx.coroutines.ExperimentalCoroutinesApi -import kotlinx.coroutines.flow.MutableStateFlow -import kotlinx.coroutines.flow.SharingStarted -import kotlinx.coroutines.flow.StateFlow -import kotlinx.coroutines.flow.asStateFlow -import kotlinx.coroutines.flow.mapLatest -import kotlinx.coroutines.flow.stateIn - -internal abstract class ComponentViewModel( - private val defaultState: State, - private val componentKey: ComponentKey = ComponentKey("", CoreComponent.CELL), - private val themeManager: ThemeManager = ThemeManager, -) : ViewModel(), PropertiesOwner { - - protected val internalUiState = MutableStateFlow(defaultState) - private val _subtheme = MutableStateFlow(null) - - val uiState: StateFlow - get() = internalUiState.asStateFlow() - - /** - * Подтема - */ - val subtheme: StateFlow - get() = _subtheme.asStateFlow() - - @OptIn(ExperimentalCoroutinesApi::class) - final override val properties: StateFlow>> - get() = internalUiState - .mapLatest { state -> - updateUiStateWithDefaultVariant() - appearanceProperties(state) + variantProperty(state) + state.toProps() - } - .stateIn(viewModelScope, SharingStarted.Lazily, emptyList()) - - @Suppress("UNCHECKED_CAST") - private fun updateUiStateWithDefaultVariant() { - val state = internalUiState.value - val defaultAppearance = getDefaultAppearances() - val appearance = state.appearance.ifEmpty { defaultAppearance } - val styleProvider = getStyleProvider(appearance) ?: return - if (state.variant.isNotEmpty() && - styleProvider.variants.contains(state.variant) - ) { - return - } - internalUiState.value = state.updateVariant( - appearance = appearance, - variant = styleProvider.defaultVariant, - ) as State - } - - private fun appearanceProperties(state: State): List { - return listOf( - Property.SingleChoiceProperty( - APPEARANCE_PROPERTY_NAME, - variants = getAppearances().toList(), - value = state.appearance, - onApply = { - internalUiState.value = internalUiState.value.updateVariant(it, state.variant) as State - }, - ), - ) - } - - @Suppress("UNCHECKED_CAST") - private fun variantProperty(state: State): List { - val styleProvider = getStyleProvider(state.appearance) ?: return emptyList() - val subthemes = getSubthemes() - val variantProperties = mutableListOf() - if (styleProvider.variants.isNotEmpty()) { - variantProperties.add( - Property.SingleChoiceProperty( - VARIANT_PROPERTY_NAME, - variants = styleProvider.variants, - value = state.variant, - onApply = { - internalUiState.value = internalUiState.value.updateVariant(state.appearance, it) as State - }, - ), - ) - } - if (subthemes.isNotEmpty()) { - variantProperties.add( - Property.SingleChoiceProperty( - SUBTHEME_PROPERTY_NAME, - variants = subthemes.map { it.key }, - value = _subtheme.value?.key ?: subthemes.first().key, - onApply = { value -> - val type = SubTheme.values().firstOrNull { it.key == value } - _subtheme.value = type - }, - ), - ) - } - return variantProperties - } - - open fun getStyleProvider(appearance: String): ComposeStyleProvider? { - return runCatching { - val themeInfo = composeTheme(themeManager.currentTheme.value) - themeInfo.components.get(componentKey).styleProviders[appearance] - }.getOrNull() - } - - open fun getAppearances(): Set { - return composeTheme(themeManager.currentTheme.value) - .components.get(componentKey).styleProviders.keys - } - - open fun getDefaultAppearances(): String { - return composeTheme(themeManager.currentTheme.value) - .components.get(componentKey).defaultAppearance - } - - open fun getSubthemes(): Set { - return composeTheme(themeManager.currentTheme.value).subthemes.keys - } - - abstract fun State.toProps(): List> - - final override fun resetToDefault() { - internalUiState.value = defaultState - } - - private companion object { - const val VARIANT_PROPERTY_NAME = "variant" - const val SUBTHEME_PROPERTY_NAME = "subtheme" - const val APPEARANCE_PROPERTY_NAME = "appearance" - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Editors.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Editors.kt deleted file mode 100644 index 9c1779833b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Editors.kt +++ /dev/null @@ -1,341 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.wrapContentWidth -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.foundation.lazy.rememberLazyListState -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.text.KeyboardActions -import androidx.compose.foundation.text.KeyboardOptions -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.platform.LocalSoftwareKeyboardController -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.input.ImeAction -import androidx.compose.ui.text.input.KeyboardType -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.basicButtonBuilder -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.interactions.InteractiveColor -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.selection -import kotlin.math.roundToInt - -internal val LocalPropertyEditorStyle = compositionLocalOf { PropertyEditorStyle.create() } - -@Immutable -internal interface PropertyEditorStyle { - - val shape: Shape - val labelTextStyle: TextStyle - val labelTextColor: Color - val editorItemBackground: InteractiveColor - val editorItemShape: Shape - val editorItemPadding: Dp - val editorItemHeight: Dp - val editorItemTextStyle: TextStyle - val editorItemTextColor: InteractiveColor - val choiceEditorTextColor: Color - val backgroundColor: Color - val spacing: Dp - - val headerHeight: Dp - val confirmButtonStyle: ButtonStyle - val textEditorStyle: TextFieldStyle - - companion object { - - fun create( - shape: Shape = RectangleShape, - labelTextStyle: TextStyle = TextStyle.Default, - labelTextColor: Color = Color.Black, - editorItemBackground: InteractiveColor = Color.LightGray.asInteractive(), - spacing: Dp = 16.dp, - confirmButtonStyle: ButtonStyle = ButtonStyle.basicButtonBuilder().style(), - textEditorStyle: TextFieldStyle = TextFieldStyle.builder().style(), - backgroundColor: Color = Color.Transparent, - editorItemShape: Shape = RoundedCornerShape(6.dp), - editorItemTextStyle: TextStyle = TextStyle.Default, - editorItemTextColor: InteractiveColor = Color.Black.asInteractive(), - headerHeight: Dp = 54.dp, - editorItemPadding: Dp = 6.dp, - editorItemHeight: Dp = 6.dp, - choiceEditorTextColor: Color = Color.Black, - ): PropertyEditorStyle = - PropertyEditorStyleImpl( - shape = shape, - labelTextStyle = labelTextStyle, - labelTextColor = labelTextColor, - editorItemBackground = editorItemBackground, - spacing = spacing, - confirmButtonStyle = confirmButtonStyle, - textEditorStyle = textEditorStyle, - backgroundColor = backgroundColor, - editorItemShape = editorItemShape, - editorItemTextStyle = editorItemTextStyle, - editorItemTextColor = editorItemTextColor, - editorItemHeight = editorItemHeight, - headerHeight = headerHeight, - editorItemPadding = editorItemPadding, - choiceEditorTextColor = choiceEditorTextColor, - ) - } -} - -/** - * Редактор свойств. - * Изменяет свое содержимое согласно подтипу [Property]. - * @param property редактируемое свойство - * @param onConfirm колбэк завершения редактирования - * @param modifier модификатор - */ -@Composable -internal fun PropertyEditor( - property: Property<*>?, - onConfirm: () -> Unit, - headerTitle: String, - modifier: Modifier = Modifier, - style: PropertyEditorStyle = LocalPropertyEditorStyle.current, -) { - Column( - modifier = modifier - .clip(style.shape) - .background(style.backgroundColor) - .padding(start = 4.dp, end = 4.dp, bottom = 24.dp), - ) { - EditorHeader( - title = headerTitle, - style = style, - ) - - when (property) { - is Property.SingleChoiceProperty -> ChoiceEditor( - onConfirm = { newValue -> - property.onApply(newValue) - onConfirm() - }, - choices = property.variants, - currentValue = property.value, - style = style, - propertyName = property.name, - ) - - is Property.IntProperty -> TextPropertyEditor( - onConfirm = { newValue -> - property.onApply(newValue.toFloatOrNull()?.roundToInt() ?: 0) - onConfirm() - }, - propertyName = property.name, - currentValue = property.value.toString(), - style = style, - keyboardOptions = KeyboardOptions(keyboardType = KeyboardType.Decimal, imeAction = ImeAction.Done), - ) - - is Property.StringProperty -> TextPropertyEditor( - onConfirm = { newValue -> - property.onApply(newValue) - onConfirm() - }, - propertyName = property.name, - currentValue = property.value, - style = style, - ) - - else -> Unit - } - } -} - -@Composable -private fun TextPropertyEditor( - onConfirm: (String) -> Unit, - propertyName: String, - currentValue: String, - style: PropertyEditorStyle, - keyboardOptions: KeyboardOptions = KeyboardOptions.Default.copy( - keyboardType = KeyboardType.Text, - imeAction = ImeAction.Done, - ), -) { - var textFieldValue by remember { mutableStateOf(currentValue) } - val keyboardController = LocalSoftwareKeyboardController.current - val focusRequester = remember { FocusRequester() } - - TextField( - style = style.textEditorStyle, - labelText = propertyName, - value = textFieldValue, - modifier = Modifier - .fillMaxWidth() - .focusRequester(focusRequester), - keyboardOptions = keyboardOptions, - keyboardActions = KeyboardActions( - onDone = { - onConfirm(textFieldValue) - keyboardController?.hide() - }, - ), - onValueChange = { textFieldValue = it }, - placeholderText = "", - focusSelectorSettings = FocusSelectorSettings.None, - ) - Spacer(modifier = Modifier.height(style.spacing)) - LaunchedEffect(Unit) { - keyboardController?.show() - } -} - -@Composable -private fun ChoiceEditor( - onConfirm: (T) -> Unit, - propertyName: String, - currentValue: T, - choices: List, - style: PropertyEditorStyle, -) { - var selected by remember { mutableStateOf(currentValue) } - val selectedIndex = choices.indexOf(selected).coerceAtLeast(0) - val focusRequester = remember { List(choices.size) { FocusRequester() } } - val listState = rememberLazyListState() - LaunchedEffect(selectedIndex) { - listState.scrollToItem(selectedIndex) - focusRequester[selectedIndex].requestFocus() - } - Column( - Modifier - .fillMaxHeight(), - ) { - ChoiceEditorHeader(propertyName, style) - LazyColumn( - state = listState, - verticalArrangement = Arrangement.spacedBy(style.editorItemPadding), - ) { - items(choices.size) { - val interactionSource = remember { MutableInteractionSource() } - val background = style.editorItemBackground.colorForInteraction(interactionSource) - val choice = choices[it] - val isSelected = choice == selected - Row( - modifier = Modifier - .fillMaxWidth() - .height(style.editorItemHeight) - .focusableItem( - focusRequester = focusRequester[it], - interactionSource = interactionSource, - ) - .selection(isSelected, interactionSource) - .background(color = background, shape = style.editorItemShape) - .clickable { - selected = choice - onConfirm(choice) - } - .padding(horizontal = style.editorItemPadding), - verticalAlignment = Alignment.CenterVertically, - ) { - Text( - text = choice.toString(), - style = style.editorItemTextStyle - .copy(style.editorItemTextColor.colorForInteraction(interactionSource)), - ) - } - } - } - } -} - -@Composable -private fun ChoiceEditorHeader( - propertyName: String, - style: PropertyEditorStyle, -) { - Spacer(modifier = Modifier.height(style.spacing)) - Row( - Modifier - .padding(horizontal = style.editorItemPadding), - verticalAlignment = Alignment.CenterVertically, - ) { - Text( - text = propertyName, - style = style.editorItemTextStyle.copy(style.choiceEditorTextColor), - ) - } - Spacer(modifier = Modifier.height(style.spacing)) -} - -@Composable -private fun EditorHeader( - title: String, - style: PropertyEditorStyle, - modifier: Modifier = Modifier, -) { - Row( - modifier = modifier - .fillMaxWidth() - .height(style.headerHeight) - .padding(style.editorItemPadding), - verticalAlignment = Alignment.CenterVertically, - ) { - Column( - Modifier - .weight(1f) - .wrapContentWidth(Alignment.Start), - ) { - Text( - text = title.substringBefore(","), - style = style.labelTextStyle.copy(style.choiceEditorTextColor), - ) - Text( - text = title.substringAfter(","), - style = style.labelTextStyle.copy(style.labelTextColor), - ) - } - } -} - -@Immutable -private data class PropertyEditorStyleImpl( - override val shape: Shape, - override val labelTextStyle: TextStyle, - override val labelTextColor: Color, - override val spacing: Dp, - override val confirmButtonStyle: ButtonStyle, - override val editorItemBackground: InteractiveColor, - override val textEditorStyle: TextFieldStyle, - override val backgroundColor: Color, - override val editorItemShape: Shape, - override val editorItemTextStyle: TextStyle, - override val editorItemTextColor: InteractiveColor, - override val headerHeight: Dp, - override val editorItemPadding: Dp, - override val choiceEditorTextColor: Color, - override val editorItemHeight: Dp, -) : PropertyEditorStyle diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/FocusableItem.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/FocusableItem.kt deleted file mode 100644 index 5c8a32f012..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/FocusableItem.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.focusable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.FocusState -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.focus.onFocusChanged - -/** - * - * @author Малышев Александр on 26.11.2024 - */ -@Composable -internal fun Modifier.focusableItem( - focusRequester: FocusRequester? = remember { FocusRequester() }, - enabled: Boolean = true, - interactionSource: MutableInteractionSource? = null, - onFocusChanged: (FocusState) -> Unit = {}, -): Modifier = this - .onFocusChanged { - onFocusChanged(it) - } - .let { modifier -> - focusRequester?.let { modifier.focusRequester(it) } ?: modifier - } - .focusable(enabled, interactionSource) diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MainContent.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MainContent.kt deleted file mode 100644 index da1a7ec05a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MainContent.kt +++ /dev/null @@ -1,165 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import android.content.Context -import android.content.Intent -import android.content.pm.PackageManager -import androidx.compose.animation.EnterTransition -import androidx.compose.animation.ExitTransition -import androidx.compose.animation.core.tween -import androidx.compose.animation.slideInHorizontally -import androidx.compose.animation.slideOutHorizontally -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.collectAsState -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.runtime.saveable.rememberSaveable -import androidx.compose.ui.platform.LocalContext -import androidx.navigation.NavHostController -import androidx.navigation.compose.NavHost -import androidx.navigation.compose.composable -import androidx.navigation.compose.rememberNavController -import com.sdds.playground.sandbox.MainSandboxActivity -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.ThemeInfoCompose -import com.sdds.playground.sandbox.composeTheme -import com.sdds.playground.sandbox.core.ThemeManager -import kotlinx.coroutines.launch - -@Suppress("LongMethod") -@Composable -internal fun MainContent(themeManager: ThemeManager = ThemeManager) { - val currentTheme by themeManager.currentTheme.collectAsState() - val themeInfo = composeTheme(currentTheme) - val menuItems = remember(currentTheme) { themeInfo.components.getMenuItems() } - val hasMultipleThemes = remember { Theme.values().size > 1 } - val scope = rememberCoroutineScope() - val navController = rememberNavController() - val currentBackStackEntry by navController.currentBackStackEntryFlow.collectAsState(initial = null) - val themePickerState = remember { mutableStateOf(false) } - val selectedRoute = rememberSaveable { mutableStateOf(null) } - val savedRoute = rememberSaveable { mutableStateOf(menuItems.first().route) } - val isTv = LocalContext.current.isTvDevice() - val showTopBar = currentBackStackEntry?.destination?.route == "menuItems" - LaunchedEffect(currentTheme) { selectedRoute.value = null } - - if (isTv) { - TvLayout( - menuItems = { - NavigationViewTv( - items = menuItems, - title = themeInfo.theme.name, - focusable = true, - onSelect = { - scope.launch { - navController.navigate(it.route) { - currentBackStackEntry?.destination?.route?.let { prevRoute -> - popUpTo(prevRoute) { inclusive = true } - } - launchSingleTop = true - restoreState = true - } - savedRoute.value = it.route - } - }, - ) - }, - ) { - NavigationGraph(navController, menuItems, savedRoute.value, null, true) - } - } else { - MobileLayout( - hasMultipleThemes = hasMultipleThemes, - showTopBar = showTopBar, - topBar = { - TopBarSection( - currentTheme = currentTheme, - onThemeSelected = { themeManager.updateTheme(it) }, - onNavigationClick = { themePickerState.value = !themePickerState.value }, - isThemePickerExpanded = themePickerState.value, - onDismissRequest = { themePickerState.value = false }, - ) - }, - ) { - NavigationGraph(navController, menuItems, null, themeInfo, false) - } - } -} - -@Composable -internal fun NavigationGraph( - navController: NavHostController, - menuItems: List, - startDestination: String? = null, - themeInfo: ThemeInfoCompose? = null, - isTv: Boolean, -) { - val transitions = remember(isTv) { - NavigationTransition( - enter = if (isTv) { - EnterTransition.None - } else { - slideInHorizontally(initialOffsetX = { it }, animationSpec = tween(300)) - }, - exit = if (isTv) { - ExitTransition.None - } else { - slideOutHorizontally(targetOffsetX = { -it }, animationSpec = tween(300)) - }, - popEnter = if (isTv) { - EnterTransition.None - } else { - slideInHorizontally(initialOffsetX = { -it }, animationSpec = tween(300)) - }, - popExit = if (isTv) { - ExitTransition.None - } else { - slideOutHorizontally(targetOffsetX = { it }, animationSpec = tween(300)) - }, - ) - } - - NavHost( - navController = navController, - startDestination = startDestination ?: "menuItems", - enterTransition = { transitions.enter }, - exitTransition = { transitions.exit }, - popEnterTransition = { transitions.popEnter }, - popExitTransition = { transitions.popExit }, - ) { - menuItems.forEach { item -> - composable(item.route) { - item.destination.composeScreen(item.componentKey) - } - } - themeInfo?.let { - composable("menuItems") { - NavigationViewMobile( - items = menuItems, - themeInfo = themeInfo, - ) { - navController.navigate(it.route) - } - } - } - } -} - -private data class NavigationTransition( - val enter: EnterTransition, - val exit: ExitTransition, - val popEnter: EnterTransition, - val popExit: ExitTransition, -) - -private fun toMainActivity(context: Context) { - val intent = Intent(context, MainSandboxActivity::class.java) - .apply { flags = Intent.FLAG_ACTIVITY_CLEAR_TOP } - context.startActivity(intent) -} - -internal fun Context.isTvDevice(): Boolean { - return packageManager.hasSystemFeature(PackageManager.FEATURE_LEANBACK) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MenuItem.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MenuItem.kt deleted file mode 100644 index 3a27723a97..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MenuItem.kt +++ /dev/null @@ -1,500 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.EditableStyle -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.FormItemStyle -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.NoteCompactStyle -import com.sdds.compose.uikit.NoteStyle -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.SliderStyle -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabsStyle -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.WheelStyle -import com.sdds.compose.uikit.fixtures.testcases.AvatarGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeM -import com.sdds.compose.uikit.fixtures.testcases.BadgeSizeLDefaultContentLeft -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetForSandbox -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLSecondary -import com.sdds.compose.uikit.fixtures.testcases.CardVertical -import com.sdds.compose.uikit.fixtures.testcases.CellMAvatarIcon -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeLDense -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.CircularProgress -import com.sdds.compose.uikit.fixtures.testcases.CounterCommon -import com.sdds.compose.uikit.fixtures.testcases.DividerDefault -import com.sdds.compose.uikit.fixtures.testcases.IconBadgeCommon -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLDefault -import com.sdds.compose.uikit.fixtures.testcases.IndicatorCommon -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.ListForSandbox -import com.sdds.compose.uikit.fixtures.testcases.LoaderForSandbox -import com.sdds.compose.uikit.fixtures.testcases.ModalForSandboxCompose -import com.sdds.compose.uikit.fixtures.testcases.NotificationForSandbox -import com.sdds.compose.uikit.fixtures.testcases.OverlayForSandbox -import com.sdds.compose.uikit.fixtures.testcases.PopoverForSandbox -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarDefault -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.RectSkeletonForSandbox -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeS -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeXs -import com.sdds.compose.uikit.fixtures.testcases.SpinnerTest -import com.sdds.compose.uikit.fixtures.testcases.SwitchLOn -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDefaultTBTA -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDefaultInnerLeft -import com.sdds.compose.uikit.fixtures.testcases.ToastForSandbox -import com.sdds.compose.uikit.fixtures.testcases.TooltipForSandbox -import com.sdds.compose.uikit.style.Style -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.accordion.AccordionPreview -import com.sdds.playground.sandbox.accordion.AccordionScreen -import com.sdds.playground.sandbox.autocomplete.AutocompletePreview -import com.sdds.playground.sandbox.autocomplete.AutocompleteScreen -import com.sdds.playground.sandbox.avatar.compose.AvatarScreen -import com.sdds.playground.sandbox.avatar.compose.group.AvatarGroupScreen -import com.sdds.playground.sandbox.badge.compose.BadgeScreen -import com.sdds.playground.sandbox.badge.compose.IconBadgeScreen -import com.sdds.playground.sandbox.bottomsheet.compose.BottomSheetScreen -import com.sdds.playground.sandbox.buttongroup.compose.ButtonGroupPreview -import com.sdds.playground.sandbox.buttongroup.compose.ButtonGroupScreen -import com.sdds.playground.sandbox.buttons.compose.BasicButtonScreen -import com.sdds.playground.sandbox.buttons.compose.IconButtonScreen -import com.sdds.playground.sandbox.buttons.compose.LinkButtonScreen -import com.sdds.playground.sandbox.card.compose.CardScreen -import com.sdds.playground.sandbox.carousel.compose.CarouselPreview -import com.sdds.playground.sandbox.carousel.compose.CarouselScreen -import com.sdds.playground.sandbox.cell.compose.CellScreen -import com.sdds.playground.sandbox.checkbox.compose.CheckBoxScreen -import com.sdds.playground.sandbox.checkbox.compose.group.CheckBoxGroupScreen -import com.sdds.playground.sandbox.chip.compose.ChipScreen -import com.sdds.playground.sandbox.chip.compose.group.ChipGroupScreen -import com.sdds.playground.sandbox.codefield.compose.CodeFieldPreview -import com.sdds.playground.sandbox.codefield.compose.CodeFieldScreen -import com.sdds.playground.sandbox.codeinput.compose.CodeInputPreview -import com.sdds.playground.sandbox.codeinput.compose.CodeInputScreen -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.CoreComponent -import com.sdds.playground.sandbox.counter.compose.CounterScreen -import com.sdds.playground.sandbox.divider.compose.DividerScreen -import com.sdds.playground.sandbox.drawer.compose.DrawerPreview -import com.sdds.playground.sandbox.drawer.compose.DrawerScreen -import com.sdds.playground.sandbox.dropdownmenu.compose.DropdownMenuPreview -import com.sdds.playground.sandbox.dropdownmenu.compose.DropdownMenuScreen -import com.sdds.playground.sandbox.editable.compose.EditablePreview -import com.sdds.playground.sandbox.editable.compose.EditableScreen -import com.sdds.playground.sandbox.file.compose.FilePreview -import com.sdds.playground.sandbox.file.compose.FileScreen -import com.sdds.playground.sandbox.form.FormItemPreview -import com.sdds.playground.sandbox.form.FormItemScreen -import com.sdds.playground.sandbox.image.compose.ImageScreen -import com.sdds.playground.sandbox.image.compose.ImageScreenPreview -import com.sdds.playground.sandbox.indicator.compose.IndicatorScreen -import com.sdds.playground.sandbox.list.compose.ListScreen -import com.sdds.playground.sandbox.loader.compose.LoaderScreen -import com.sdds.playground.sandbox.modal.compose.ModalScreen -import com.sdds.playground.sandbox.navigationbar.collapsing.CollapsingNavigationBarPreview -import com.sdds.playground.sandbox.navigationbar.collapsing.CollapsingNavigationBarScreen -import com.sdds.playground.sandbox.navigationbar.compose.NavigationBarPreview -import com.sdds.playground.sandbox.navigationbar.compose.NavigationBarScreen -import com.sdds.playground.sandbox.note.compose.NoteCompactPreview -import com.sdds.playground.sandbox.note.compose.NoteCompactScreen -import com.sdds.playground.sandbox.note.compose.NotePreview -import com.sdds.playground.sandbox.note.compose.NoteScreen -import com.sdds.playground.sandbox.notification.compose.NotificationScreen -import com.sdds.playground.sandbox.notificationcontent.compose.NotificationContentPreview -import com.sdds.playground.sandbox.notificationcontent.compose.NotificationContentScreen -import com.sdds.playground.sandbox.overlay.compose.OverlayScreen -import com.sdds.playground.sandbox.paginationdots.compose.PaginationDotsPreview -import com.sdds.playground.sandbox.paginationdots.compose.PaginationDotsScreen -import com.sdds.playground.sandbox.popover.compose.PopoverScreen -import com.sdds.playground.sandbox.progress.compose.CircularProgressScreen -import com.sdds.playground.sandbox.progress.compose.ProgressScreen -import com.sdds.playground.sandbox.radiobox.compose.RadioBoxScreen -import com.sdds.playground.sandbox.radiobox.compose.group.RadioBoxGroupScreen -import com.sdds.playground.sandbox.rectskeleton.compose.RectSkeletonScreen -import com.sdds.playground.sandbox.scrollbar.compose.ScrollBarPreview -import com.sdds.playground.sandbox.scrollbar.compose.ScrollBarScreen -import com.sdds.playground.sandbox.segment.compose.SegmentItemScreen -import com.sdds.playground.sandbox.segment.compose.SegmentScreen -import com.sdds.playground.sandbox.select.compose.SelectPreview -import com.sdds.playground.sandbox.select.compose.SelectScreen -import com.sdds.playground.sandbox.slider.compose.SliderPreview -import com.sdds.playground.sandbox.slider.compose.SliderScreen -import com.sdds.playground.sandbox.spinner.compose.SpinnerScreen -import com.sdds.playground.sandbox.switcher.compose.SwitchScreen -import com.sdds.playground.sandbox.tabbar.compose.TabBarPreview -import com.sdds.playground.sandbox.tabbar.compose.TabBarScreen -import com.sdds.playground.sandbox.tabs.compose.IconTabsPreview -import com.sdds.playground.sandbox.tabs.compose.IconTabsScreen -import com.sdds.playground.sandbox.tabs.compose.TabsPreview -import com.sdds.playground.sandbox.tabs.compose.TabsScreen -import com.sdds.playground.sandbox.textfield.compose.MaskedTextFieldPreview -import com.sdds.playground.sandbox.textfield.compose.MaskedTextFieldScreen -import com.sdds.playground.sandbox.textfield.compose.TextFieldScreen -import com.sdds.playground.sandbox.textskeleton.compose.TextSkeletonPreview -import com.sdds.playground.sandbox.textskeleton.compose.TextSkeletonScreen -import com.sdds.playground.sandbox.toast.compose.ToastScreen -import com.sdds.playground.sandbox.toolbar.compose.ToolBarPreview -import com.sdds.playground.sandbox.toolbar.compose.ToolBarScreen -import com.sdds.playground.sandbox.tooltip.compose.TooltipScreen -import com.sdds.playground.sandbox.wheel.compose.WheelPreview -import com.sdds.playground.sandbox.wheel.compose.WheelScreen -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.S -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.S - -/** - * - * @author Малышев Александр on 25.02.2025 - */ -internal class MenuItem( - val title: String, - val componentKey: ComponentKey, - val destination: ComponentScreen, -) { - - val route: String = componentKey.value -} - -internal fun ComponentsProviderCompose.getMenuItems(): List { - return components.mapNotNull { (key, value) -> - val screen = key.core.screen().takeIf { it !is ComponentScreen.Empty } ?: return@mapNotNull null - MenuItem(value.name, key, screen) - }.sortedWith( - compareBy( - { it.componentKey.group.ordinal }, - { it.title }, - ), - ) -} - -internal sealed class ComponentScreen( - val composeScreen: @Composable (ComponentKey) -> Unit, - val preview: (@Composable (Style, ComponentKey) -> Unit)? = null, -) { - object Avatar : ComponentScreen({ AvatarScreen(it) }, { it, _ -> AvatarSizeM(it as AvatarStyle) }) - object AvatarGroup : ComponentScreen( - { AvatarGroupScreen(it) }, - { it, _ -> AvatarGroupSizeS(it as AvatarGroupStyle) }, - ) - object Buttons : ComponentScreen({ BasicButtonScreen(it) }, { it, _ -> ButtonSizeLSecondary(it as ButtonStyle) }) - object Badge : ComponentScreen({ BadgeScreen(it) }, { it, _ -> BadgeSizeLDefaultContentLeft(it as BadgeStyle) }) - object IconButtons : ComponentScreen({ IconButtonScreen(it) }, { it, _ -> IconButtonLDefault(it as ButtonStyle) }) - object IconBadge : ComponentScreen({ IconBadgeScreen(it) }, { it, _ -> IconBadgeCommon(it as BadgeStyle) }) - object BottomSheet : ComponentScreen( - { BottomSheetScreen(it) }, - { it, _ -> BottomSheetForSandbox(it as ModalBottomSheetStyle) }, - ) - - object LinkButtons : ComponentScreen( - { LinkButtonScreen(it) }, - { it, _ -> LinkButtonSizeLDefault(it as ButtonStyle) }, - ) - object Cell : ComponentScreen({ CellScreen(it) }, { it, _ -> CellMAvatarIcon(it as CellStyle) }) - object Card : ComponentScreen({ CardScreen(it) }, { it, _ -> CardVertical(it as CardStyle) }) - object CheckBox : ComponentScreen({ CheckBoxScreen(it) }, { it, _ -> CheckBoxSizeM(it as CheckBoxStyle) }) - object CheckBoxGroup : - ComponentScreen({ CheckBoxGroupScreen(it) }, { it, _ -> CheckBoxGroupSizeM(it as CheckBoxGroupStyle) }) - - object RadioBox : ComponentScreen({ RadioBoxScreen(it) }, { it, _ -> RadioBoxSizeM(it as RadioBoxStyle) }) - object RadioBoxGroup : - ComponentScreen({ RadioBoxGroupScreen(it) }, { it, _ -> RadioBoxGroupSizeM(it as RadioBoxGroupStyle) }) - - object Switch : ComponentScreen({ SwitchScreen(it) }, { it, _ -> SwitchLOn(it as SwitchStyle) }) - object Progress : ComponentScreen({ ProgressScreen(it) }, { it, _ -> ProgressBarDefault(it as ProgressBarStyle) }) - object CircularProgress : - ComponentScreen({ CircularProgressScreen(it) }, { it, _ -> CircularProgress(it as CircularProgressBarStyle) }) - - object TextField : ComponentScreen( - { TextFieldScreen(it) }, - { it, _ -> TextFieldLDefaultInnerLeft(it as TextFieldStyle) }, - ) - object TextArea : ComponentScreen( - { TextFieldScreen(it) }, - { it, _ -> TextAreaLDefaultTBTA(it as TextFieldStyle) }, - ) - object TextFieldMasks : ComponentScreen( - { MaskedTextFieldScreen(it) }, - { it, _ -> MaskedTextFieldPreview(it as TextFieldStyle) }, - ) - - object Chip : ComponentScreen({ ChipScreen(it) }, { it, _ -> ChipSizeLDefault(it as ChipStyle) }) - object ChipGroup : ComponentScreen({ ChipGroupScreen(it) }, { it, _ -> ChipGroupSizeLDense(it as ChipGroupStyle) }) - object Indicator : ComponentScreen({ IndicatorScreen(it) }, { it, _ -> IndicatorCommon(it as IndicatorStyle) }) - object Counter : ComponentScreen({ CounterScreen(it) }, { it, _ -> CounterCommon(it as CounterStyle) }) - object SegmentItem : - ComponentScreen({ SegmentItemScreen(it) }, { it, _ -> SegmentItemSizeS(it as SegmentItemStyle) }) - - object Segment : ComponentScreen({ SegmentScreen(it) }, { it, _ -> SegmentSizeXs(it as SegmentStyle) }) - object Divider : ComponentScreen({ DividerScreen(it) }, { it, _ -> DividerDefault(it as DividerStyle) }) - object Overlay : ComponentScreen( - { OverlayScreen(it) }, - { it, _ -> OverlayForSandbox(it as OverlayStyle, IconButton.S.style()) }, - ) - - object Popover : ComponentScreen( - { PopoverScreen(it) }, - { it, _ -> PopoverForSandbox(it as PopoverStyle, BasicButton.S.Default.style()) }, - ) - - object Tooltip : ComponentScreen({ TooltipScreen(it) }, { it, _ -> TooltipForSandbox(it as TooltipStyle) }) - object Toast : ComponentScreen({ ToastScreen(it) }, { it, _ -> ToastForSandbox(it as ToastStyle) }) - object Modal : ComponentScreen({ ModalScreen(it) }, { it, _ -> ModalForSandboxCompose(it as ModalStyle) }) - object Notification : ComponentScreen( - { NotificationScreen(it) }, - { it, _ -> NotificationForSandbox(it as NotificationStyle) }, - ) - - object NotificationContent : ComponentScreen( - { NotificationContentScreen(it) }, - { it, _ -> NotificationContentPreview(it as NotificationContentStyle) }, - ) - - object RectSkeleton : ComponentScreen( - { RectSkeletonScreen(it) }, - { it, _ -> RectSkeletonForSandbox(it as RectSkeletonStyle) }, - ) - object TextSkeleton : ComponentScreen( - { TextSkeletonScreen(it) }, - { it, _ -> TextSkeletonPreview(it as TextSkeletonStyle) }, - ) - - object Spinner : ComponentScreen({ SpinnerScreen(it) }, { it, _ -> SpinnerTest(it as SpinnerStyle) }) - object List : ComponentScreen({ ListScreen(it) }, { it, _ -> ListForSandbox(it as ListStyle) }) - object DropdownMenu : ComponentScreen( - { DropdownMenuScreen(it) }, - { it, _ -> DropdownMenuPreview(it as DropdownMenuStyle) }, - ) - object Accordion : ComponentScreen( - { AccordionScreen(it) }, - { it, _ -> AccordionPreview(it as AccordionStyle) }, - ) - object ScrollBar : ComponentScreen( - { ScrollBarScreen(it) }, - { it, _ -> ScrollBarPreview(it as ScrollBarStyle) }, - ) - object Image : ComponentScreen( - { ImageScreen(it) }, - { it, _ -> ImageScreenPreview(it as ImageStyle) }, - ) - object ButtonGroup : ComponentScreen( - { ButtonGroupScreen(it) }, - { style, _ -> ButtonGroupPreview(style as ButtonGroupStyle) }, - ) - object TabBar : ComponentScreen( - { TabBarScreen(it) }, - { style, _ -> TabBarPreview(style as TabBarStyle) }, - ) - object Loader : ComponentScreen( - { LoaderScreen(it) }, - { style, _ -> LoaderForSandbox(style as LoaderStyle) }, - ) - object CodeInput : ComponentScreen( - { CodeInputScreen(it) }, - { style, _ -> CodeInputPreview(style as CodeInputStyle) }, - ) - object CodeField : ComponentScreen( - { CodeFieldScreen(it) }, - { style, _ -> CodeFieldPreview(style as CodeFieldStyle) }, - ) - - object Drawer : ComponentScreen( - { DrawerScreen(it) }, - { style, _ -> DrawerPreview(style as DrawerStyle) }, - ) - - object Wheel : ComponentScreen( - { WheelScreen(it) }, - { style, _ -> WheelPreview(style as WheelStyle) }, - ) - - object Note : ComponentScreen( - { NoteScreen(it) }, - { style, _ -> NotePreview(style as NoteStyle) }, - ) - object NoteCompact : ComponentScreen( - { NoteCompactScreen(it) }, - { style, _ -> NoteCompactPreview(style as NoteCompactStyle) }, - ) - - object NavigationBar : ComponentScreen( - { NavigationBarScreen(it) }, - { style, _ -> NavigationBarPreview(style as NavigationBarStyle) }, - ) - - object CollapsingNavigationBar : ComponentScreen( - { CollapsingNavigationBarScreen(it) }, - { style, _ -> CollapsingNavigationBarPreview(style as CollapsingNavigationBarStyle) }, - ) - - object Tabs : ComponentScreen( - { TabsScreen(it) }, - { style, _ -> TabsPreview(style as TabsStyle) }, - ) - object IconTabs : ComponentScreen( - { IconTabsScreen(it) }, - { style, _ -> IconTabsPreview(style as TabsStyle) }, - ) - object PaginationDots : ComponentScreen( - { PaginationDotsScreen(it) }, - { style, _ -> PaginationDotsPreview(style as PaginationDotsStyle) }, - ) - object Autocomplete : ComponentScreen( - { AutocompleteScreen(it) }, - { style, _ -> AutocompletePreview(style as AutocompleteStyle) }, - ) - object File : ComponentScreen( - { FileScreen(it) }, - { style, _ -> FilePreview(style as FileStyle) }, - ) - object Slider : ComponentScreen( - { SliderScreen(it) }, - { style, _ -> SliderPreview(style as SliderStyle) }, - ) - object FormItem : ComponentScreen( - { FormItemScreen(it) }, - { style, _ -> FormItemPreview(style as FormItemStyle) }, - ) - object Editable : ComponentScreen( - { EditableScreen(it) }, - { style, _ -> EditablePreview(style as EditableStyle) }, - ) - object ToolBar : ComponentScreen( - { ToolBarScreen(it) }, - { style, _ -> ToolBarPreview(style as ToolBarStyle) }, - ) - object Select : ComponentScreen( - { SelectScreen(it) }, - { style, _ -> SelectPreview(style as SelectStyle) }, - ) - object Carousel : ComponentScreen( - { CarouselScreen(it) }, - { style, _ -> CarouselPreview(style as CarouselStyle) }, - ) - object Empty : ComponentScreen({}) -} - -@Suppress("CyclomaticComplexMethod", "LongMethod") -private fun CoreComponent.screen(): ComponentScreen { - return when (this) { - CoreComponent.AVATAR -> ComponentScreen.Avatar - CoreComponent.AVATAR_GROUP -> ComponentScreen.AvatarGroup - CoreComponent.BADGE -> ComponentScreen.Badge - CoreComponent.ICON_BADGE -> ComponentScreen.IconBadge - CoreComponent.BOTTOMSHEET -> ComponentScreen.BottomSheet - CoreComponent.BASIC_BUTTON -> ComponentScreen.Buttons - CoreComponent.ICON_BUTTON -> ComponentScreen.IconButtons - CoreComponent.LINK_BUTTON -> ComponentScreen.LinkButtons - CoreComponent.CARD -> ComponentScreen.Card - CoreComponent.CELL -> ComponentScreen.Cell - CoreComponent.CHECKBOX -> ComponentScreen.CheckBox - CoreComponent.CHECKBOX_GROUP -> ComponentScreen.CheckBoxGroup - CoreComponent.CHIP -> ComponentScreen.Chip - CoreComponent.CHIP_GROUP -> ComponentScreen.ChipGroup - CoreComponent.INDICATOR -> ComponentScreen.Indicator - CoreComponent.COUNTER -> ComponentScreen.Counter - CoreComponent.PROGRESS -> ComponentScreen.Progress - CoreComponent.CIRCULAR_PROGRESS -> ComponentScreen.CircularProgress - CoreComponent.RADIOBOX -> ComponentScreen.RadioBox - CoreComponent.RADIOBOX_GROUP -> ComponentScreen.RadioBoxGroup - CoreComponent.SWITCH -> ComponentScreen.Switch - CoreComponent.TEXT_FIELD -> ComponentScreen.TextField - CoreComponent.TEXT_AREA -> ComponentScreen.TextArea - CoreComponent.SEGMENT_ITEM -> ComponentScreen.SegmentItem - CoreComponent.SEGMENT -> ComponentScreen.Segment - CoreComponent.DIVIDER -> ComponentScreen.Divider - CoreComponent.OVERLAY -> ComponentScreen.Overlay - CoreComponent.POPOVER -> ComponentScreen.Popover - CoreComponent.TOOLTIP -> ComponentScreen.Tooltip - CoreComponent.TOAST -> ComponentScreen.Toast - CoreComponent.MODAL -> ComponentScreen.Modal - CoreComponent.NOTIFICATION -> ComponentScreen.Notification - CoreComponent.NOTIFICATION_CONTENT -> ComponentScreen.NotificationContent - CoreComponent.RECT_SKELETON -> ComponentScreen.RectSkeleton - CoreComponent.TEXT_SKELETON -> ComponentScreen.TextSkeleton - CoreComponent.SPINNER -> ComponentScreen.Spinner - CoreComponent.LIST -> ComponentScreen.List - CoreComponent.DROPDOWN_MENU -> ComponentScreen.DropdownMenu - CoreComponent.ACCORDION -> ComponentScreen.Accordion - CoreComponent.SCROLL_BAR -> ComponentScreen.ScrollBar - CoreComponent.IMAGE -> ComponentScreen.Image - CoreComponent.BUTTON_GROUP -> ComponentScreen.ButtonGroup - CoreComponent.TAB_BAR -> ComponentScreen.TabBar - CoreComponent.LOADER -> ComponentScreen.Loader - CoreComponent.CODE_INPUT -> ComponentScreen.CodeInput - CoreComponent.CODE_FIELD -> ComponentScreen.CodeField - CoreComponent.DRAWER -> ComponentScreen.Drawer - CoreComponent.WHEEL -> ComponentScreen.Wheel - CoreComponent.NAVIGATION_BAR -> ComponentScreen.NavigationBar - CoreComponent.COLLAPSING_NAVIGATION_BAR -> ComponentScreen.CollapsingNavigationBar - CoreComponent.NOTE -> ComponentScreen.Note - CoreComponent.NOTE_COMPACT -> ComponentScreen.NoteCompact - CoreComponent.TABS -> ComponentScreen.Tabs - CoreComponent.ICON_TABS -> ComponentScreen.IconTabs - CoreComponent.MASK -> ComponentScreen.TextFieldMasks - CoreComponent.PAGINATION_DOTS -> ComponentScreen.PaginationDots - CoreComponent.AUTOCOMPLETE -> ComponentScreen.Autocomplete - CoreComponent.FILE -> ComponentScreen.File - CoreComponent.SLIDER -> ComponentScreen.Slider - CoreComponent.FORM_ITEM -> ComponentScreen.FormItem - CoreComponent.EDITABLE -> ComponentScreen.Editable - CoreComponent.TOOL_BAR -> ComponentScreen.ToolBar - CoreComponent.SELECT -> ComponentScreen.Select - CoreComponent.CAROUSEL -> ComponentScreen.Carousel - else -> ComponentScreen.Empty - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MobileLayout.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MobileLayout.kt deleted file mode 100644 index 0b03f108bd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/MobileLayout.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.statusBarsPadding -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier - -@Composable -internal fun MobileLayout( - hasMultipleThemes: Boolean, - showTopBar: Boolean, - topBar: @Composable (() -> Unit), - content: @Composable () -> Unit, -) { - Column( - modifier = Modifier - .fillMaxSize() - .statusBarsPadding(), - ) { - if (hasMultipleThemes && showTopBar) { - topBar() - } - content() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewMobile.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewMobile.kt deleted file mode 100644 index 2505dbb07e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewMobile.kt +++ /dev/null @@ -1,138 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.heightIn -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.foundation.lazy.itemsIndexed -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.painter.Painter -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.Card -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.style.Style -import com.sdds.icons.R -import com.sdds.playground.sandbox.ThemeInfoCompose -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun NavigationItemMobile( - title: String, - icon: Painter, - preview: @Composable () -> Unit, - onClick: () -> Unit, -) { - val style = LocalNavigationViewStyle.current - val interactionSource = remember { MutableInteractionSource() } - - Card( - style = style.itemCard, - onClick = onClick, - interactionSource = interactionSource, - focusSelectorSettings = LocalFocusSelectorSettings.current, - ) { - Column( - modifier = Modifier - .fillMaxWidth(), - - ) { - Row( - verticalAlignment = Alignment.CenterVertically, - ) { - Icon( - painter = icon, - contentDescription = "", - ) - Spacer(modifier = Modifier.width(8.dp)) - Text( - text = title, - style = style.headerTextStyle.copy(style.headerTextColor), - ) - } - Spacer(Modifier.height(12.dp)) - Box( - modifier = Modifier - .fillMaxWidth() - .heightIn(min = 92.dp, max = 400.dp), - contentAlignment = Alignment.Center, - ) { - preview() - } - } - } -} - -@Composable -internal fun NavigationViewMobile( - modifier: Modifier = Modifier, - items: List, - themeInfo: ThemeInfoCompose, - onSelect: (MenuItem) -> Unit, -) { - var currentIndex by remember { mutableIntStateOf(0) } - val style = LocalNavigationViewStyle.current - LazyColumn( - modifier - .fillMaxWidth() - .padding(6.dp), - verticalArrangement = Arrangement.spacedBy(4.dp), - ) { - itemsIndexed(items) { index, menuItem -> - val isFirstOfGroup = index == 0 || items[index - 1].componentKey.group != menuItem.componentKey.group - if (isFirstOfGroup) { - Spacer(modifier = Modifier.height(8.dp)) - Text( - text = menuItem.componentKey.group.displayName, - style = style.headerTextStyle.copy(color = style.headerTextColor), - ) - Spacer(modifier = Modifier.height(8.dp)) - } - NavigationItemMobile( - title = menuItem.title, - icon = painterResource(id = R.drawable.ic_romb_outline_16), - onClick = { - currentIndex = index - onSelect(menuItem) - }, - preview = { - ComponentPreview( - key = menuItem.componentKey, - themeInfo = themeInfo, - ) { style, key -> - menuItem.destination.preview?.invoke(style, key) - } - }, - ) - } - } -} - -@Composable -internal fun ComponentPreview( - key: ComponentKey, - themeInfo: ThemeInfoCompose, - component: @Composable (Style, ComponentKey) -> Unit, -) { - themeInfo.themeWrapper { - val styleProvider = themeInfo.components.get(key).styleProviders.values.first() - val style = styleProvider.style("") - component(style, key) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewTv.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewTv.kt deleted file mode 100644 index a05dc4547f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/NavigationViewTv.kt +++ /dev/null @@ -1,221 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.focusable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.foundation.verticalScroll -import androidx.compose.material.ripple -import androidx.compose.runtime.Composable -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.interactions.InteractiveColor -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.selection - -internal val LocalNavigationViewStyle = compositionLocalOf { NavigationViewStyle.create() } - -internal interface NavigationViewStyle { - val itemTextStyle: TextStyle - val itemTextColor: InteractiveColor - val itemBackground: InteractiveColor - val menuBackground: Color - val itemPadding: Dp - val groupPadding: Dp - val itemHeight: Dp - val menuShape: Shape - val selectedShape: Shape - val menuWidth: Dp - val headerHeight: Dp - val headerTextStyle: TextStyle - val headerTextColor: Color - val itemCard: CardStyle - - companion object { - - fun create( - itemTextStyle: TextStyle = TextStyle.Default, - itemTextColor: InteractiveColor = Color.Black.asInteractive(), - itemBackground: InteractiveColor = Color.Black.asInteractive(), - menuBackground: Color = Color.Black, - itemPaddings: Dp = 6.dp, - groupPadding: Dp = 6.dp, - menuShape: Shape = RoundedCornerShape(10.dp), - selectedShape: Shape = RoundedCornerShape(10.dp), - menuWidth: Dp = 200.dp, - headerHeight: Dp = 56.dp, - headerTextStyle: TextStyle = TextStyle.Default, - headerTextColor: Color = Color.Black, - itemHeight: Dp = 24.dp, - itemCard: CardStyle = CardStyle.builder().style(), - ): NavigationViewStyle = - NavigationViewStyleImpl( - itemTextStyle = itemTextStyle, - itemTextColor = itemTextColor, - itemBackground = itemBackground, - itemPadding = itemPaddings, - groupPadding = groupPadding, - menuBackground = menuBackground, - menuShape = menuShape, - selectedShape = selectedShape, - menuWidth = menuWidth, - headerHeight = headerHeight, - headerTextStyle = headerTextStyle, - headerTextColor = headerTextColor, - itemHeight = itemHeight, - itemCard = itemCard, - ) - } -} - -/** - * - * @author Малышев Александр on 25.02.2025 - */ -@Composable -internal fun NavigationViewTv( - items: List, - onSelect: (MenuItem) -> Unit, - title: String, - modifier: Modifier = Modifier, - focusable: Boolean = false, - style: NavigationViewStyle = LocalNavigationViewStyle.current, -) { - var currentIndex by remember { mutableIntStateOf(0) } - Column( - modifier = modifier - .fillMaxHeight() - .width(style.menuWidth) - .background( - color = style.menuBackground, - shape = style.menuShape, - ) - .padding(start = 4.dp, end = 4.dp, bottom = 24.dp), - - ) { - Row( - Modifier - .height(style.headerHeight) - .padding(horizontal = style.itemPadding), - verticalAlignment = Alignment.CenterVertically, - ) { - Text( - text = title, - style = style.headerTextStyle.copy(color = style.headerTextColor), - ) - } - Column( - modifier = modifier - .verticalScroll(rememberScrollState()), - ) { - items.forEachIndexed { index, menuItem -> - val isFirstOfGroup = index == 0 || items[index - 1].componentKey.group != menuItem.componentKey.group - if (isFirstOfGroup) { - Spacer(modifier = Modifier.height(8.dp)) - Text( - modifier = Modifier - .padding(start = style.groupPadding) - .focusable(index == 0), - text = menuItem.componentKey.group.displayName, - style = style.headerTextStyle.copy(color = style.headerTextColor), - ) - Spacer(modifier = Modifier.height(8.dp)) - } - NavigationItemTv( - title = menuItem.title, - style = style, - focusable = focusable, - isSelected = index == currentIndex, - onClick = { - currentIndex = index - onSelect(menuItem) - }, - ) - } - } - } -} - -@Composable -private fun NavigationItemTv( - title: String, - style: NavigationViewStyle, - isSelected: Boolean = false, - focusable: Boolean = false, - focusRequester: FocusRequester? = null, - onClick: () -> Unit, -) { - val interactionSource = remember { MutableInteractionSource() } - val background = style.itemBackground.colorForInteraction(interactionSource) - val titleColor = style.itemTextColor.colorForInteraction(interactionSource) - Row( - modifier = Modifier - .height(style.itemHeight) - .fillMaxWidth() - .focusableItem( - enabled = focusable, - focusRequester = focusRequester, - interactionSource = interactionSource, - ) - .selection( - selected = isSelected, - interactionSource = interactionSource, - ) - .background(color = background, shape = style.selectedShape) - .clickable( - enabled = true, - interactionSource = interactionSource, - role = Role.Button, - indication = ripple(), - onClick = onClick, - ) - .padding(horizontal = style.itemPadding), - verticalAlignment = Alignment.CenterVertically, - ) { - Text( - text = title, - style = style.itemTextStyle.copy(color = titleColor), - ) - } -} - -private data class NavigationViewStyleImpl( - override val itemTextStyle: TextStyle, - override val itemTextColor: InteractiveColor, - override val itemBackground: InteractiveColor, - override val itemPadding: Dp, - override val menuBackground: Color, - override val menuShape: Shape, - override val selectedShape: Shape, - override val menuWidth: Dp, - override val headerHeight: Dp, - override val headerTextStyle: TextStyle, - override val headerTextColor: Color, - override val itemHeight: Dp, - override val itemCard: CardStyle, - override val groupPadding: Dp, -) : NavigationViewStyle diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Properties.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Properties.kt deleted file mode 100644 index a78b115b03..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/Properties.kt +++ /dev/null @@ -1,439 +0,0 @@ -@file:Suppress("ConstPropertyName") - -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.PaddingValues -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.wrapContentWidth -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.graphics.painter.Painter -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.Switch -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.iconButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveColor -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.icons.R.drawable as Icons - -/** - * Создает экземпляр [Property.SingleChoiceProperty] для свойства с заданным типом [E] - * @param name название свойства - * @param value значение свойства - * @param onApply колбэк применения нового значения - */ -internal inline fun > enumProperty( - name: String, - value: E, - noinline onApply: (E) -> Unit, -): Property.SingleChoiceProperty { - val values = enumValues() - return Property.SingleChoiceProperty( - name, - value.name, - values.map { it.name }.toList(), - ) { enumName -> - onApply(values.first { enumName == it.name }) - } -} - -/** - * Базовый класс свойства - */ -internal sealed class Property { - - /** - * Название свойства - */ - abstract val name: String - - /** - * Значение свойства - */ - abstract val value: Value - - /** - * Колбэк применения нового значения - */ - abstract val onApply: (Value) -> Unit - - /** - * Свойство с вариантом выбора - * @property variants множество вариантов - */ - data class SingleChoiceProperty( - override val name: String, - override val value: String, - val variants: List, - override val onApply: (String) -> Unit, - ) : Property() - - /** - * Свойство типа [Boolean] - */ - data class BooleanProperty( - override val name: String, - override val value: Boolean, - override val onApply: (Boolean) -> Unit, - ) : Property() - - /** - * Свойство типа [String] - */ - data class StringProperty( - override val name: String, - override val value: String, - override val onApply: (String) -> Unit, - ) : Property() - - /** - * Свойство типа [Int] - */ - data class IntProperty( - override val name: String, - override val value: Int, - override val onApply: (Int) -> Unit, - ) : Property() -} - -internal val LocalPropertiesListStyle = compositionLocalOf { PropertiesListStyle.create() } - -internal interface PropertiesListStyle { - val shape: Shape - - val borderWidth: Dp - val borderColor: Color - - val backgroundColor: Color - - val headerBackgroundColor: Color - val headerHeight: Dp - val headerPaddings: PaddingValues - val headerTextStyle: TextStyle - val headerTextColor: Color - val headerDescriptionTextColor: Color - - val propertyLabelTextStyle: TextStyle - val propertyLabelTextColor: InteractiveColor - val propertyValueTextStyle: TextStyle - val propertyValueTextColor: InteractiveColor - val propertyBackgroundColor: InteractiveColor - val propertyHeight: Dp - val propertyPaddings: Dp - val propertySwitchStyle: SwitchStyle - val propertyItemShape: Shape - val spaceBetweenProperties: Dp - - val resetButtonStyle: ButtonStyle - - val dividerWidth: Dp - val dividerColor: Color - - companion object { - - @Suppress("LongParameterList") - fun create( - shape: Shape = RectangleShape, - borderWidth: Dp = 1.dp, - borderColor: Color = Color.LightGray, - backgroundColor: Color = Color.Red, - headerBackgroundColor: Color = Color.LightGray, - headerHeight: Dp = 56.dp, - headerPaddings: PaddingValues = PaddingValues(16.dp), - headerTextStyle: TextStyle = TextStyle.Default, - headerTextColor: Color = Color.Black, - headerDescriptionTextColor: Color = Color.Black, - propertyLabelTextStyle: TextStyle = TextStyle.Default, - propertyLabelTextColor: InteractiveColor = Color.Black.asInteractive(), - propertyValueTextStyle: TextStyle = TextStyle.Default, - propertyValueTextColor: InteractiveColor = Color.LightGray.asInteractive(), - propertyBackgroundColor: InteractiveColor = Color.Gray.asInteractive(), - propertyPaddings: Dp = 6.dp, - propertySwitchStyle: SwitchStyle = SwitchStyle.builder().style(), - propertyHeight: Dp = 56.dp, - propertyItemShape: Shape = RoundedCornerShape(6.dp), - dividerWidth: Dp = 1.dp, - dividerColor: Color = Color.LightGray, - resetButtonStyle: ButtonStyle = ButtonStyle.iconButtonBuilder().style(), - spaceBetweenProperties: Dp = 10.dp, - ): PropertiesListStyle = - PropertiesListStyleImpl( - shape = shape, - borderWidth = borderWidth, - borderColor = borderColor, - backgroundColor = backgroundColor, - headerBackgroundColor = headerBackgroundColor, - headerHeight = headerHeight, - headerPaddings = headerPaddings, - headerTextStyle = headerTextStyle, - headerTextColor = headerTextColor, - headerDescriptionTextColor = headerDescriptionTextColor, - propertyLabelTextStyle = propertyLabelTextStyle, - propertyLabelTextColor = propertyLabelTextColor, - propertyValueTextStyle = propertyValueTextStyle, - propertyValueTextColor = propertyValueTextColor, - propertyBackgroundColor = propertyBackgroundColor, - propertyPaddings = propertyPaddings, - propertySwitchStyle = propertySwitchStyle, - propertyHeight = propertyHeight, - dividerWidth = dividerWidth, - dividerColor = dividerColor, - resetButtonStyle = resetButtonStyle, - propertyItemShape = propertyItemShape, - spaceBetweenProperties = spaceBetweenProperties, - ) - } -} - -/** - * Composable со списком редактируемых свойств - * @param onSelect колбэк выбора свойства - * @param onReset колбэк сброса всех свойств к значениям по умолчанию - * @param properties свойства - */ -@Composable -internal fun PropertiesList( - onSelect: (Property<*>) -> Unit, - onReset: () -> Unit, - headerTitle: String, - properties: List>, - modifier: Modifier = Modifier, - style: PropertiesListStyle = LocalPropertiesListStyle.current, -) { - Column( - modifier = modifier - .clip(style.shape) - .background(style.backgroundColor) - .padding(horizontal = 4.dp), - ) { - PropertiesHeader( - title = headerTitle, - style = style, - onResetClicked = onReset, - ) - - LazyColumn( - modifier = Modifier.fillMaxWidth(), - verticalArrangement = Arrangement.spacedBy(style.spaceBetweenProperties), - ) { - items(properties.size) { - when (val property = properties[it]) { - is Property.BooleanProperty -> - SwitchPropertyListItem( - style = style, - onClick = { - property.onApply.invoke(!property.value) - }, - propertyName = property.name, - propertyValue = property.value, - ) - - is Property.IntProperty -> - ValuePropertyListItem( - style = style, - onClick = { onSelect(property) }, - propertyName = property.name, - propertyValue = property.value.toString(), - icon = painterResource(id = Icons.ic_keyboard_outline_16), - ) - - is Property.SingleChoiceProperty -> - ValuePropertyListItem( - style = style, - onClick = { onSelect(property) }, - propertyName = property.name, - propertyValue = property.value, - icon = painterResource(id = Icons.ic_disclosure_right_outline_16), - ) - - is Property.StringProperty -> - ValuePropertyListItem( - style = style, - onClick = { onSelect(property) }, - propertyName = property.name, - propertyValue = property.value, - icon = painterResource(id = Icons.ic_keyboard_outline_16), - ) - } - } - } - } -} - -@Composable -private fun PropertiesHeader( - title: String, - style: PropertiesListStyle, - onResetClicked: () -> Unit, - modifier: Modifier = Modifier, -) { - val interactionSource = remember { MutableInteractionSource() } - Row( - modifier = modifier - .height(style.headerHeight) - .fillMaxWidth() - .padding(style.propertyPaddings), - verticalAlignment = Alignment.CenterVertically, - ) { - Column( - Modifier - .weight(1f) - .wrapContentWidth(Alignment.Start), - ) { - Text( - modifier = Modifier.align(Alignment.Start), - text = title.substringBefore(","), - style = style.headerTextStyle.copy(style.headerDescriptionTextColor), - ) - Text( - modifier = Modifier.align(Alignment.Start), - text = title.substringAfter(","), - style = style.headerTextStyle.copy(style.headerTextColor), - ) - } - IconButton( - modifier = Modifier - .focusableItem( - interactionSource = interactionSource, - ), - style = style.resetButtonStyle, - icon = painterResource(id = Icons.ic_reset_outline_16), - interactionSource = interactionSource, - onClick = onResetClicked, - ) - } -} - -@Composable -private fun ValuePropertyListItem( - style: PropertiesListStyle, - onClick: () -> Unit, - propertyName: String, - propertyValue: String, - icon: Painter, - modifier: Modifier = Modifier, -) { - val interactionSource = remember { MutableInteractionSource() } - val backgroundColor = style.propertyBackgroundColor.colorForInteraction(interactionSource) - Row( - verticalAlignment = Alignment.CenterVertically, - modifier = modifier - .focusableItem(interactionSource = interactionSource) - .fillMaxWidth() - .height(style.propertyHeight) - .clickable(onClick = onClick) - .background(backgroundColor, style.propertyItemShape) - .padding(horizontal = style.propertyPaddings), - ) { - Text( - text = propertyName, - style = style.propertyLabelTextStyle.copy( - color = style.propertyLabelTextColor.colorForInteraction(interactionSource), - ), - ) - Spacer(modifier = Modifier.width(4.dp)) - Text( - text = propertyValue, - style = style.propertyValueTextStyle.copy( - color = style.propertyValueTextColor.colorForInteraction(interactionSource), - ), - ) - Spacer(modifier = Modifier.width(4.dp)) - Icon(painter = icon, contentDescription = "") - } -} - -@Composable -private fun SwitchPropertyListItem( - style: PropertiesListStyle, - propertyName: String, - propertyValue: Boolean, - onClick: () -> Unit, - modifier: Modifier = Modifier, -) { - val interactionSource = remember { MutableInteractionSource() } - val backgroundColor by style.propertyBackgroundColor.colorForInteractionAsState(interactionSource) - Row( - verticalAlignment = Alignment.CenterVertically, - modifier = modifier - .focusableItem(interactionSource = interactionSource) - .fillMaxWidth() - .height(style.propertyHeight) - .clickable(onClick = onClick) - .background(backgroundColor, style.propertyItemShape) - .padding(horizontal = style.propertyPaddings), - ) { - Text( - modifier = Modifier - .weight(1f) - .wrapContentWidth(Alignment.Start), - text = propertyName, - style = style.propertyLabelTextStyle.copy( - color = style.propertyLabelTextColor.colorForInteraction(interactionSource), - ), - - ) - Switch( - active = propertyValue, - style = style.propertySwitchStyle, - modifier = Modifier - .weight(1f) - .wrapContentWidth(Alignment.End), - ) - } -} - -@Immutable -private data class PropertiesListStyleImpl( - override val shape: Shape, - override val borderWidth: Dp, - override val borderColor: Color, - override val backgroundColor: Color, - override val headerBackgroundColor: Color, - override val headerHeight: Dp, - override val headerPaddings: PaddingValues, - override val headerTextStyle: TextStyle, - override val headerTextColor: Color, - override val propertyLabelTextStyle: TextStyle, - override val propertyLabelTextColor: InteractiveColor, - override val propertyValueTextStyle: TextStyle, - override val propertyValueTextColor: InteractiveColor, - override val propertyBackgroundColor: InteractiveColor, - override val propertyPaddings: Dp, - override val propertySwitchStyle: SwitchStyle, - override val propertyHeight: Dp, - override val dividerWidth: Dp, - override val dividerColor: Color, - override val resetButtonStyle: ButtonStyle, - override val propertyItemShape: Shape, - override val spaceBetweenProperties: Dp, - override val headerDescriptionTextColor: Color, -) : PropertiesListStyle diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/PropertiesOwner.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/PropertiesOwner.kt deleted file mode 100644 index 062c1debd3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/PropertiesOwner.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import kotlinx.coroutines.flow.StateFlow - -/** - * Интерфейс владельца редактируемыми свойствами - */ -internal interface PropertiesOwner { - - /** - * Список свойств - */ - val properties: StateFlow>> - - /** - * Сбрасывает свойства к значениям по умолчанию - */ - fun resetToDefault() -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/SandboxStyle.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/SandboxStyle.kt deleted file mode 100644 index b0162116a9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/SandboxStyle.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.RectangleShape -import androidx.compose.ui.graphics.Shape -import com.sdds.compose.uikit.interactions.StatefulValue -import com.sdds.compose.uikit.interactions.asStatefulValue - -internal val LocalSandboxStyle = compositionLocalOf { SandboxStyle.create() } - -/** - * - * @author Малышев Александр on 25.02.2025 - */ -@Immutable -internal interface SandboxStyle { - - val drawerBackgroundColor: Color - val sheetBackgroundColor: Color - val sheetShape: Shape - - val componentBackgroundColor: StatefulValue - val componentBackgroundShape: Shape - - companion object { - - fun create( - drawerBackgroundColor: Color = Color.LightGray, - sheetBackgroundColor: Color = Color.LightGray, - sheetShape: Shape = RectangleShape, - componentBackgroundColor: StatefulValue = Color.Transparent.asStatefulValue(), - componentBackgroundShape: Shape = RectangleShape, - ): SandboxStyle { - return SandboxStyleImpl( - drawerBackgroundColor = drawerBackgroundColor, - sheetBackgroundColor = sheetBackgroundColor, - sheetShape = sheetShape, - componentBackgroundColor = componentBackgroundColor, - componentBackgroundShape = componentBackgroundShape, - ) - } - } -} - -@Immutable -private data class SandboxStyleImpl( - override val drawerBackgroundColor: Color, - override val sheetBackgroundColor: Color, - override val sheetShape: Shape, - override val componentBackgroundColor: StatefulValue, - override val componentBackgroundShape: Shape, -) : SandboxStyle diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TopBar.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TopBar.kt deleted file mode 100644 index 3abdb4e30c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TopBar.kt +++ /dev/null @@ -1,178 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.clickable -import androidx.compose.foundation.focusable -import androidx.compose.foundation.indication -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.material.DropdownMenu -import androidx.compose.material.DropdownMenuItem -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.compositionLocalOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.iconButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveColor -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.selection -import com.sdds.icons.R -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.allComposeThemes - -internal val LocalTopBarStyle = compositionLocalOf { TopBarStyle.create() } - -@Immutable -internal interface TopBarStyle { - val titleStyle: TextStyle - val titleColor: InteractiveColor - val backgroundColor: Color - val contentColor: Color - val navigationButtonStyle: ButtonStyle - val actionButtonStyle: ButtonStyle - val shapeDropDown: Shape - val dropItemBackground: InteractiveColor - val dropItemTextStyle: TextStyle - val dropItemHeight: Dp - - companion object { - - fun create( - titleStyle: TextStyle = TextStyle.Default, - titleColor: InteractiveColor = Color.Black.asInteractive(), - backgroundColor: Color = Color.Transparent, - contentColor: Color = Color.Black, - navigationButtonStyle: ButtonStyle = ButtonStyle.iconButtonBuilder().style(), - actionButtonStyle: ButtonStyle = ButtonStyle.iconButtonBuilder().style(), - shapeDropDown: Shape = RoundedCornerShape(6.dp), - dropItemBackground: InteractiveColor = Color.Gray.asInteractive(), - dropItemTextStyle: TextStyle = TextStyle.Default, - dropItemHeight: Dp = 24.dp, - ): TopBarStyle = - TopBarStyleImpl( - titleStyle = titleStyle, - titleColor = titleColor, - backgroundColor = backgroundColor, - contentColor = contentColor, - navigationButtonStyle = navigationButtonStyle, - actionButtonStyle = actionButtonStyle, - shapeDropDown = shapeDropDown, - dropItemBackground = dropItemBackground, - dropItemTextStyle = dropItemTextStyle, - dropItemHeight = dropItemHeight, - ) - } -} - -@Composable -internal fun TopBarSection( - currentTheme: Theme, - onThemeSelected: (Theme) -> Unit, - isThemePickerExpanded: Boolean, - onNavigationClick: () -> Unit, - onDismissRequest: () -> Unit, - style: TopBarStyle = LocalTopBarStyle.current, -) { - Box { - TopBar( - title = currentTheme.name, - onNavigationClick = onNavigationClick, - ) - DropdownMenu( - expanded = isThemePickerExpanded, - onDismissRequest = onDismissRequest, - modifier = Modifier - .fillMaxWidth() - .background(color = style.backgroundColor) - .padding(horizontal = 6.dp), - ) { - allComposeThemes.forEach { theme -> - val isSelected = currentTheme == theme - val interactionSource = remember { MutableInteractionSource() } - DropdownMenuItem( - modifier = Modifier - .height(style.dropItemHeight) - .focusableItem( - interactionSource = interactionSource, - ) - .selection(isSelected, interactionSource) - .background( - color = style.dropItemBackground.colorForInteraction(interactionSource), - shape = style.shapeDropDown, - ), - onClick = { - onThemeSelected(theme) - onDismissRequest() - }, - ) { - Text( - modifier = Modifier, - text = theme.name, - style = style.dropItemTextStyle.copy(style.titleColor.colorForInteraction(interactionSource)), - ) - } - } - } - } -} - -@Composable -internal fun TopBar( - title: String, - onNavigationClick: () -> Unit, -) { - val interactionSource = remember { MutableInteractionSource() } - Box( - modifier = Modifier - .fillMaxWidth() - .padding(vertical = 8.dp), - ) { - Row( - verticalAlignment = Alignment.CenterVertically, - modifier = Modifier - .fillMaxWidth() - .focusable() - .indication(interactionSource, null) - .clickable { onNavigationClick() }, - ) { - Text( - text = title, - modifier = Modifier.padding(horizontal = 8.dp), - ) - Icon( - painter = painterResource(R.drawable.ic_disclosure_down_outline_16), - contentDescription = null, - ) - } - } -} - -@Immutable -private data class TopBarStyleImpl( - override val titleStyle: TextStyle, - override val titleColor: InteractiveColor, - override val backgroundColor: Color, - override val contentColor: Color, - override val navigationButtonStyle: ButtonStyle, - override val actionButtonStyle: ButtonStyle, - override val shapeDropDown: Shape, - override val dropItemBackground: InteractiveColor, - override val dropItemTextStyle: TextStyle, - override val dropItemHeight: Dp, -) : TopBarStyle diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TvLayout.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TvLayout.kt deleted file mode 100644 index 960b316362..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/TvLayout.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -import androidx.compose.animation.core.animateFloatAsState -import androidx.compose.animation.core.tween -import androidx.compose.foundation.focusGroup -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxWithConstraints -import androidx.compose.foundation.layout.fillMaxHeight -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.onFocusChanged -import androidx.compose.ui.graphics.graphicsLayer -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.dp - -@Composable -internal fun TvLayout( - peekWidth: Dp = 30.dp, -// menuItems: @Composable (onFocusChanged: (Boolean) -> Unit) -> Unit, - menuItems: @Composable () -> Unit, - mainContent: @Composable () -> Unit, -) { - val style = LocalNavigationViewStyle.current - val density = LocalDensity.current - val menuWidthPx = with(density) { style.menuWidth.toPx() } - val peekWidthPx = with(density) { peekWidth.toPx() } - var isMenuItemFocused by remember { mutableStateOf(false) } - val animatedOffset by animateFloatAsState( - targetValue = if (isMenuItemFocused) 0f else menuWidthPx - peekWidthPx, - animationSpec = tween(200), - ) - BoxWithConstraints { - val screenWidth = constraints.maxWidth.toFloat() - Box( - Modifier - .fillMaxSize() - .graphicsLayer { translationX = -animatedOffset }, - ) { - Box( - modifier = Modifier - .width(style.menuWidth) - .fillMaxHeight() - .focusGroup() - .onFocusChanged { isMenuItemFocused = it.isFocused || it.hasFocus }, - ) { - menuItems() - } - Box( - modifier = Modifier - .offset { IntOffset(x = menuWidthPx.toInt(), y = 0) } - .width(with(density) { screenWidth.toDp() - peekWidth }) - .padding(start = 2.dp) - .fillMaxHeight(), - ) { mainContent() } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/UiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/UiState.kt deleted file mode 100644 index 098ff39b4a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/UiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.core.compose - -/** - * Состояние компонента с вариацией [variant] - */ -interface UiState { - - /** - * Вариация компонента - */ - val variant: String - get() = "" - - /** - * Внешний вид компонента - */ - val appearance: String - get() = "" - - /** - * Создает копию состояния с новым [variant] - */ - fun updateVariant(appearance: String, variant: String): UiState -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetScaffold.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetScaffold.kt deleted file mode 100644 index c594a86cea..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetScaffold.kt +++ /dev/null @@ -1,166 +0,0 @@ -package com.sdds.playground.sandbox.core.compose.bottomsheet - -import androidx.compose.foundation.ExperimentalFoundationApi -import androidx.compose.foundation.background -import androidx.compose.foundation.gestures.AnchoredDraggableState -import androidx.compose.foundation.gestures.Orientation -import androidx.compose.foundation.gestures.anchoredDraggable -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.BoxScope -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.offset -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.wrapContentSize -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.Shape -import androidx.compose.ui.input.nestedscroll.NestedScrollConnection -import androidx.compose.ui.input.nestedscroll.NestedScrollSource -import androidx.compose.ui.input.nestedscroll.nestedScroll -import androidx.compose.ui.layout.onSizeChanged -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntOffset -import androidx.compose.ui.unit.Velocity -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.px -import kotlin.math.roundToInt - -@OptIn(ExperimentalFoundationApi::class) -@Suppress("LongMethod") -@Composable -internal fun BottomSheetScaffold( - bottomSheetState: BottomSheetState, - bottomSheetContent: @Composable BoxScope.() -> Unit, - modifier: Modifier = Modifier, - sheetShape: Shape = RoundedCornerShape(topStart = 16.dp, topEnd = 16.dp), - sheetBackgroundColor: Color = Color.Transparent, - sheetPeekHeight: Dp = BottomSheetDefaults.PeekHeight, - content: @Composable BoxScope.(sheetHeight: Int) -> Unit, -) { - val peekHeight = sheetPeekHeight.px - var layoutHeight by remember { mutableIntStateOf(0) } - var sheetHeight by remember { mutableIntStateOf(0) } - val bottomSheetNestedScrollConnection = remember(bottomSheetState.draggableState) { - consumeSwipeWithinBottomSheetBoundsNestedScrollConnection( - state = bottomSheetState.draggableState, - orientation = Orientation.Vertical, - ) - } - LaunchedEffect(bottomSheetState.targetValue) { - if (bottomSheetState.isHidingInProgress()) { - bottomSheetState.onDismiss() - } - } - Box( - modifier = modifier - .fillMaxSize() - .onSizeChanged { - layoutHeight = it.height - if (layoutHeight > 0) { - bottomSheetState.updateAnchors(layoutHeight, sheetHeight, peekHeight) - } - }, - ) { - Box( - modifier = Modifier - .fillMaxSize() - .padding(bottom = sheetPeekHeight), - contentAlignment = Alignment.Center, - ) { - content(sheetHeight) - } - Box( - modifier = Modifier - .fillMaxSize() - .align(Alignment.BottomCenter) - .offset { - val yOffset = bottomSheetState - .requireOffset() - .roundToInt() - IntOffset(x = 0, y = yOffset) - } - .anchoredDraggable( - state = bottomSheetState.draggableState, - orientation = Orientation.Vertical, - ) - .nestedScroll(bottomSheetNestedScrollConnection) - .background(sheetBackgroundColor, sheetShape), - ) { - Box( - modifier = Modifier - .wrapContentSize() - .onSizeChanged { - sheetHeight = it.height - if (layoutHeight > 0 && sheetHeight > 0) { - bottomSheetState.updateAnchors(layoutHeight, sheetHeight, peekHeight) - } - }, - content = bottomSheetContent, - ) - } - } -} - -@OptIn(ExperimentalFoundationApi::class) -private fun consumeSwipeWithinBottomSheetBoundsNestedScrollConnection( - state: AnchoredDraggableState, - orientation: Orientation, -): NestedScrollConnection = object : NestedScrollConnection { - - override fun onPreScroll(available: Offset, source: NestedScrollSource): Offset { - val delta = available.offsetToFloat() - return if (delta < 0 && source == NestedScrollSource.Drag) { - state.dispatchRawDelta(delta).toOffset() - } else { - Offset.Zero - } - } - - override fun onPostScroll( - consumed: Offset, - available: Offset, - source: NestedScrollSource, - ): Offset { - val delta = available.offsetToFloat() - return if (source == NestedScrollSource.Drag) { - state.dispatchRawDelta(delta).toOffset() - } else { - Offset.Zero - } - } - - override suspend fun onPreFling(available: Velocity): Velocity { - val toFling = available.velocityToFloat() - val currentOffset = state.requireOffset() - return if (toFling < 0 && currentOffset > state.anchors.minPosition()) { - state.settle(toFling) - available - } else { - Velocity.Zero - } - } - - override suspend fun onPostFling(consumed: Velocity, available: Velocity): Velocity { - val toFling = available.velocityToFloat() - state.settle(toFling) - return available - } - - private fun Offset.offsetToFloat(): Float = if (orientation == Orientation.Horizontal) x else y - - private fun Float.toOffset(): Offset = Offset( - x = if (orientation == Orientation.Horizontal) this else 0f, - y = if (orientation == Orientation.Vertical) this else 0f, - ) - - private fun Velocity.velocityToFloat() = if (orientation == Orientation.Horizontal) x else y -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetState.kt deleted file mode 100644 index 1204a1852d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/compose/bottomsheet/BottomSheetState.kt +++ /dev/null @@ -1,267 +0,0 @@ -package com.sdds.playground.sandbox.core.compose.bottomsheet - -import android.content.res.Resources -import androidx.annotation.FloatRange -import androidx.compose.animation.core.AnimationSpec -import androidx.compose.animation.core.SpringSpec -import androidx.compose.animation.splineBasedDecay -import androidx.compose.foundation.ExperimentalFoundationApi -import androidx.compose.foundation.gestures.AnchoredDraggableState -import androidx.compose.foundation.gestures.DraggableAnchors -import androidx.compose.foundation.gestures.animateToWithDecay -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Stable -import androidx.compose.runtime.derivedStateOf -import androidx.compose.runtime.getValue -import androidx.compose.runtime.key -import androidx.compose.runtime.saveable.Saver -import androidx.compose.runtime.saveable.rememberSaveable -import androidx.compose.runtime.structuralEqualityPolicy -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Density -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.playground.sandbox.core.compose.bottomsheet.BottomSheetState.Companion.saver -import kotlin.math.abs - -@Composable -internal fun rememberBottomSheetState( - initialValue: BottomSheetValue, - animationSpec: AnimationSpec = BottomSheetDefaults.AnimationSpec, - confirmValueChange: (BottomSheetValue) -> Boolean = { true }, - onDismiss: () -> Unit = {}, -): BottomSheetState { - return key(initialValue) { - val density = LocalDensity.current - rememberSaveable( - initialValue, - animationSpec, - confirmValueChange, - saver = BottomSheetState.saver( - animationSpec = animationSpec, - confirmValueChange = confirmValueChange, - onDismiss = onDismiss, - density = density, - ), - ) { - BottomSheetState( - initialValue = initialValue, - density = density, - animationSpec = animationSpec, - confirmValueChange = confirmValueChange, - onDismiss = onDismiss, - ) - } - } -} - -@OptIn(ExperimentalFoundationApi::class) -@Stable -internal class BottomSheetState( - initialValue: BottomSheetValue, - density: Density, - val onDismiss: () -> Unit = {}, - private val animationSpec: AnimationSpec = BottomSheetDefaults.AnimationSpec, - private val confirmValueChange: (BottomSheetValue) -> Boolean = { true }, -) { - - val draggableState = AnchoredDraggableState( - initialValue = initialValue, - snapAnimationSpec = animationSpec, - decayAnimationSpec = splineBasedDecay(density), - positionalThreshold = BottomSheetDefaults.PositionalThreshold, - velocityThreshold = BottomSheetDefaults.VelocityThreshold, - confirmValueChange = confirmValueChange, - ) - - /** - * The fraction of the progress, within [0f..1f] bounds, or 1f if the [AnchoredDraggableState] - * is in a settled state. - */ - @get:FloatRange(from = 0.0, to = 1.0) - val progress: Float - get() = draggableState.progress - - /** - * The fraction of the progress, within [0.0f..1f] bounds, or 1f if the [AnchoredDraggableState] - * is in a settled state. - */ - @get:FloatRange(from = 0.0, to = 1.0) - val progressFromCollapsedToExpanded: Float by derivedStateOf(structuralEqualityPolicy()) { - val b = draggableState.anchors.positionOf(BottomSheetValue.Expanded) - val a = draggableState.anchors.positionOf(BottomSheetValue.Collapsed) - val distance = abs(b - a) - if (!distance.isNaN() && distance > 1e-6f) { - val progress = (this.requireOffset() - a) / (b - a) - // If we are very close to 0f or 1f, we round to the closest - if (progress < 1e-6f) 0f else if (progress > 1 - 1e-6f) 1f else progress - } else { - 1f - } - } - - /** - * The current value of the [BottomSheetState]. - */ - val currentValue: BottomSheetValue - get() = draggableState.currentValue - - val targetValue: BottomSheetValue - get() = draggableState.targetValue - - /** - * Whether the bottom sheet is visible. - */ - val isVisible: Boolean - get() = currentValue != BottomSheetValue.Collapsed - - /** - * Whether the bottom sheet is expanded. - */ - val isExpanded: Boolean - get() = currentValue == BottomSheetValue.Expanded - - /** - * Whether the bottom sheet is half expanded. - */ - val isHalfExpanded: Boolean - get() = currentValue == BottomSheetValue.HalfExpanded - - /** - * Whether the bottom sheet is hidden. - */ - val isHidden: Boolean - get() = currentValue == BottomSheetValue.Collapsed - - private val hasHalfExpandedState: Boolean - get() = draggableState.anchors.hasPositionFor(BottomSheetValue.HalfExpanded) - - /** - * Show the bottom sheet with animation and suspend until it's shown. - * If the sheet is taller than 50% of the parent's height, the bottom sheet will be half expanded. - * Otherwise, it will be fully expanded. - */ - suspend fun show() { - val targetValue = when { - hasHalfExpandedState -> BottomSheetValue.HalfExpanded - else -> BottomSheetValue.Expanded - } - animateTo(targetValue) - } - - /** - * Expand the bottom sheet with an animation and suspend until the animation finishes or is cancelled. - */ - suspend fun expand() { - if (draggableState.anchors.hasPositionFor(BottomSheetValue.Expanded)) { - animateTo(BottomSheetValue.Expanded) - } - } - - /** - * Half expand the bottom sheet with an animation and suspend until the animation finishes or is cancelled. - */ - suspend fun halfExpand() { - if (draggableState.anchors.hasPositionFor(BottomSheetValue.HalfExpanded)) { - animateTo(BottomSheetValue.HalfExpanded) - } - } - - /** - * Hide the bottom sheet with an animation and suspend until the animation finishes or is cancelled. - */ - suspend fun hide() { - animateTo(BottomSheetValue.Collapsed) - } - - fun requireOffset() = draggableState.requireOffset() - - fun updateAnchors(layoutHeight: Int, sheetHeight: Int, peekHeight: Int) { - val layoutHeightF = layoutHeight.toFloat() - val sheetHeightF = sheetHeight.toFloat() - val peekHeightF = peekHeight.toFloat().coerceAtMost(layoutHeightF) - val newAnchors = DraggableAnchors { - BottomSheetValue - .entries - .forEach { anchor -> - when (anchor) { - BottomSheetValue.Collapsed -> anchor at (layoutHeightF - peekHeightF).coerceAtLeast(0f) - BottomSheetValue.HalfExpanded -> { - val halfExpanded = layoutHeightF * anchor.draggableSpaceFraction - if (peekHeightF < halfExpanded) { - anchor at halfExpanded - } - } - BottomSheetValue.Expanded -> { - val expanded = (layoutHeightF - sheetHeightF).coerceAtLeast(0f) - if (sheetHeightF > 0f && - peekHeightF < layoutHeightF && - expanded < (layoutHeightF - peekHeightF) - ) { - anchor at 0f - } - } - } - } - } - draggableState.updateAnchors(newAnchors) - } - - fun isHidingInProgress() = isVisible && targetValue == BottomSheetValue.Collapsed - - private suspend fun animateTo( - targetValue: BottomSheetValue, - velocity: Float = draggableState.lastVelocity, - ) = draggableState.animateToWithDecay(targetValue, velocity) - - companion object { - /** - * The default [saver] implementation for [BottomSheetState]. - */ - fun saver( - animationSpec: AnimationSpec = BottomSheetDefaults.AnimationSpec, - confirmValueChange: (BottomSheetValue) -> Boolean = { true }, - onDismiss: () -> Unit = {}, - density: Density, - ): Saver = - Saver( - save = { it.currentValue }, - restore = { - BottomSheetState( - initialValue = it, - density = density, - animationSpec = animationSpec, - confirmValueChange = confirmValueChange, - onDismiss = onDismiss, - ) - }, - ) - } -} - -internal object BottomSheetDefaults { - val AnimationSpec = SpringSpec() - - val PositionalThreshold = { distance: Float -> distance * 0.2f } - - val VelocityThreshold = { 125.dp.toPixel } - - val PeekHeight = 56.dp -} - -internal enum class BottomSheetValue { - Collapsed, - HalfExpanded, - Expanded, - ; - - val draggableSpaceFraction: Float - get() = when (this) { - Collapsed -> 0f - HalfExpanded -> 0.5f - Expanded -> 1f - } -} - -private val Dp.toPixel: Float - get() = value * Resources.getSystem().displayMetrics.density diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentFragment.kt deleted file mode 100644 index 6b6469c601..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentFragment.kt +++ /dev/null @@ -1,381 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.content.res.ColorStateList -import android.graphics.Color -import android.os.Build -import android.os.Bundle -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import android.view.ViewGroup.LayoutParams.MATCH_PARENT -import android.view.ViewGroup.MarginLayoutParams -import android.widget.FrameLayout.LayoutParams -import android.widget.HorizontalScrollView -import android.widget.ScrollView -import androidx.annotation.StyleRes -import androidx.core.view.OnApplyWindowInsetsListener -import androidx.core.view.ViewCompat -import androidx.core.view.WindowInsetsCompat -import androidx.core.view.doOnPreDraw -import androidx.core.view.updateLayoutParams -import androidx.core.view.updateMargins -import androidx.fragment.app.Fragment -import androidx.fragment.app.viewModels -import androidx.lifecycle.HasDefaultViewModelProviderFactory -import androidx.lifecycle.ViewModelProvider -import androidx.lifecycle.lifecycleScope -import com.google.android.material.bottomsheet.BottomSheetBehavior -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SubTheme -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.databinding.FragmentComponentScaffoldBinding -import com.sdds.playground.sandbox.viewTheme -import com.sdds.uikit.FrameLayout -import com.sdds.uikit.colorFromAttr -import com.sdds.uikit.fixtures.UiState -import com.sdds.uikit.fixtures.styleWrapper -import kotlinx.coroutines.flow.combine -import kotlinx.coroutines.flow.launchIn -import kotlinx.coroutines.flow.onEach - -/** - * Базовый фрагмент для отображения компонента - * @author Малышев Александр on 31.07.2024 - */ -internal abstract class ComponentFragment> : - Fragment(), HasDefaultViewModelProviderFactory { - - private var _sheetBehavior: BottomSheetBehavior? = null - private var _binding: FragmentComponentScaffoldBinding? = null - private var verticalScrollView: ScrollView? = null - private var horizontalScrollView: HorizontalScrollView? = null - private var currentVariant = "" - private var currentAppearance = "" - protected var componentRef: Component? = null - private val componentContainer - get() = _binding?.root?.findViewById(R.id.component_container_id) - - private var _propsBottomSheetDelegate: PropertiesBottomSheetDelegate? = null - - protected open val defaultLayoutParams: LayoutParams = - LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT) - - protected open val defaultGravity: Int = Gravity.CENTER - - private val contextThemeWrapper: ContextThemeWrapper - get() { - val style = currentStyleRes - return ContextThemeWrapper(componentContainer?.context, style) - } - - protected val currentStyleRes: Int - get() = runCatching { - componentViewModel.getStyleProvider(currentAppearance).styleRes(currentVariant) - }.getOrElse { 0 } - - private fun getComponentLayout(): View = - getComponent(contextThemeWrapper) - .also { componentRef = it } - - protected val componentKey: ComponentKey by lazy { - val key = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { - arguments?.getParcelable(COMPONENT_KEY_ARG, ComponentKey::class.java) - } else { - arguments?.getParcelable(COMPONENT_KEY_ARG) - } - key ?: throw IllegalArgumentException("ComponentKey has to be provided") - } - protected abstract val viewModelFactory: ViewModelProvider.Factory - - private val _componentViewModel: ComponentViewModel by viewModels(factoryProducer = { viewModelFactory }) - - @Suppress("UNCHECKED_CAST") - protected val componentViewModel: VM get() = _componentViewModel as VM - - override val defaultViewModelProviderFactory: ViewModelProvider.Factory - get() = viewModelFactory - - protected open val scrollMode - get() = ScrollMode.NONE - - abstract fun getComponent(contextWrapper: ContextThemeWrapper): Component - - open fun shouldRecreateComponentOnStateUpdate(state: State): Boolean = false - - abstract fun onComponentUpdate(component: Component?, state: State) - - protected open fun onComponentOffsetChanged(component: Component, offset: Float) {} - - protected inline fun getState(default: () -> T): T { - return ( - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { - arguments?.getParcelable(DESTINATION_MESSAGE_ARG, T::class.java) - } else { - arguments?.getParcelable(DESTINATION_MESSAGE_ARG) - } - ) ?: default() - } - - override fun onCreateView( - inflater: LayoutInflater, - container: ViewGroup?, - savedInstanceState: Bundle?, - ): View? { - _binding = FragmentComponentScaffoldBinding.inflate(inflater, container, false) - dispatchComponentStyleChanged() - return _binding?.root - } - - private fun createComponentContainer(@StyleRes themeRes: Int, @StyleRes subtheme: Int?): FrameLayout = - FrameLayout(requireContext().styleWrapper(themeRes).styleWrapper(subtheme)) - .apply { - id = R.id.component_container_id - isFocusable = false - clipChildren = false - setOnClickListener { - _sheetBehavior?.state = BottomSheetBehavior.STATE_COLLAPSED - view?.findFocus()?.clearFocus() - } - ViewCompat.setOnApplyWindowInsetsListener(this) { v, insets -> - _propsBottomSheetDelegate?.run { - val imeOffset = insets.getInsets(WindowInsetsCompat.Type.ime()).bottom.toFloat() - offsetComponentLayout(imeOffset) - } - insets - } - } - - private fun createProperties() = _binding?.run { - val behavior = runCatching { BottomSheetBehavior.from(componentPropsSheet) }.getOrNull() - - _sheetBehavior = behavior - if (behavior != null) { - behavior.peekHeight = resources.getDimensionPixelSize(R.dimen.sandbox_properties_header_height) - behavior.isFitToContents = false - behavior.state = BottomSheetBehavior.STATE_COLLAPSED - componentCanvas.updateLayoutParams { - updateMargins(bottom = bottomMargin + behavior.peekHeight) - } - _propsBottomSheetDelegate = PropertiesBottomSheetDelegate(behavior).also { - behavior.addBottomSheetCallback(it) - } - ViewCompat.setOnApplyWindowInsetsListener(root, _propsBottomSheetDelegate) - } - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - createProperties() - componentViewModel.theme - .combine(componentViewModel.subtheme) { theme, subtheme -> theme to subtheme } - .onEach { - dispatchThemeChanged(it.first, it.second) - dispatchComponentStyleChanged() - onComponentUpdate(componentRef, componentViewModel.uiState.value) - } - .launchIn(viewLifecycleOwner.lifecycleScope) - componentViewModel.uiState - .onEach { - var dispatchStyleChanged = false - if (currentAppearance != it.appearance) { - currentAppearance = it.appearance - dispatchStyleChanged = true - } - if (currentVariant != it.variant) { - currentVariant = it.variant - dispatchStyleChanged = true - } - if (shouldRecreateComponentOnStateUpdate(it)) dispatchStyleChanged = true - if (dispatchStyleChanged) dispatchComponentStyleChanged() - onComponentUpdate(componentRef, it) - } - .launchIn(viewLifecycleOwner.lifecycleScope) - - componentViewModel.showEditor - .onEach { showEditor(it) } - .launchIn(viewLifecycleOwner.lifecycleScope) - } - - private fun dispatchThemeChanged(theme: Theme, subtheme: SubTheme?) { - _binding?.apply { - componentContainer?.removeAllViews() - componentCanvas.removeAllViews() - val themeInfo = viewTheme(theme) - componentCanvas.backgroundTintList = subtheme.getBackgroundColor() - componentCanvas.addView( - createComponentContainer( - themeInfo.themeRes, - subtheme?.let { themeInfo.subthemes[it] }, - ), - LayoutParams(MATCH_PARENT, MATCH_PARENT), - ) - _propsBottomSheetDelegate?.run { resetComponentLayoutOffset() } - } - } - - private fun SubTheme?.getBackgroundColor(): ColorStateList { - val color = when (this) { - SubTheme.ON_DARK -> Color.BLACK - SubTheme.ON_LIGHT -> Color.WHITE - SubTheme.INVERSE -> requireContext().colorFromAttr(R.attr.sandbox_colorInverseBackground) - else -> Color.TRANSPARENT - } - return ColorStateList.valueOf(color) - } - - private fun dispatchComponentStyleChanged(layoutParams: LayoutParams = defaultLayoutParams) { - componentContainer?.apply { - removeAllViews() - layoutParams.gravity = defaultGravity - val wrappedComponent = getComponentLayout() - .let { - when (scrollMode) { - ScrollMode.VERTICAL -> it.verticalScrollable() - ScrollMode.HORIZONTAL -> it.horizontalScrollable() - ScrollMode.NONE -> it - } - } - addView(wrappedComponent, layoutParams) - wrappedComponent.doOnPreDraw { - _propsBottomSheetDelegate?.run { resetComponentLayoutOffset() } - } - } - } - - override fun onDestroyView() { - super.onDestroyView() - verticalScrollView = null - horizontalScrollView = null - _binding = null - componentRef = null - } - - private fun showEditor(property: Property<*>) { - val editor = when (property) { - is Property.SingleChoiceProperty -> EditorFragment.choiceEditor( - propertyName = property.name, - currentValue = property.value, - choices = property.variants, - ) - - is Property.IntProperty -> EditorFragment.textEditor( - propertyName = property.name, - currentValue = property.value.toString(), - ) - - is Property.StringProperty -> EditorFragment.textEditor( - propertyName = property.name, - currentValue = property.value, - ) - - else -> return - } - childFragmentManager.beginTransaction() - .setCustomAnimations( - R.anim.slide_in_right, - R.anim.slide_out_left, - R.anim.slide_in_left, - R.anim.slide_out_right, - ) - .replace(R.id.component_props_container, editor) - .addToBackStack(property.name) - .commit() - } - - private fun getVerticalScrollView(): ScrollView = - verticalScrollView ?: ScrollView(requireContext()) - .apply { - isVerticalScrollBarEnabled = false - clipChildren = false - } - .also { verticalScrollView = it } - - private fun getHorizontalScrollView(): HorizontalScrollView = - horizontalScrollView ?: HorizontalScrollView(requireContext()) - .apply { - isHorizontalScrollBarEnabled = false - clipChildren = false - } - .also { horizontalScrollView = it } - - private fun View.horizontalScrollable(): HorizontalScrollView { - return getHorizontalScrollView().apply { - removeAllViews() - val params = this@horizontalScrollable.layoutParams ?: LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - addView( - this@horizontalScrollable, - params, - ) - } - } - - private fun View.verticalScrollable(): ScrollView { - return getVerticalScrollView().apply { - removeAllViews() - val params = this@verticalScrollable.layoutParams ?: LayoutParams( - LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, - ) - addView( - this@verticalScrollable, - params, - ) - } - } - - protected enum class ScrollMode { - VERTICAL, - HORIZONTAL, - NONE, - } - - private inner class PropertiesBottomSheetDelegate( - private val behavior: BottomSheetBehavior, - ) : BottomSheetBehavior.BottomSheetCallback(), OnApplyWindowInsetsListener { - - private var currentOffset: Float = 0f - private var sheetOffset: Float = 0f - var previousState: Int? = null - - override fun onStateChanged(bottomSheet: View, newState: Int) = Unit - - override fun onSlide(bottomSheet: View, slideOffset: Float) { - sheetOffset = (slideOffset * bottomSheet.height) - offsetComponentLayout(sheetOffset) - } - - fun resetComponentLayoutOffset() { - offsetComponentLayout(currentOffset) - } - - fun offsetComponentLayout(offset: Float) { - val component = componentRef ?: return - currentOffset = maxOf(offset, sheetOffset) - component.translationY = -currentOffset.coerceAtMost(component.top.toFloat()) - onComponentOffsetChanged(component, currentOffset) - } - - override fun onApplyWindowInsets(v: View, insets: WindowInsetsCompat): WindowInsetsCompat { - val imeVisible = insets.isVisible(WindowInsetsCompat.Type.ime()) - val currentFragment = childFragmentManager.findFragmentById(R.id.component_props_container) - if (imeVisible && currentFragment is TextEditorFragment && currentFragment.view?.hasFocus() == true) { - previousState = behavior.state - behavior.state = BottomSheetBehavior.STATE_EXPANDED - } else if (previousState != null) { - behavior.state = previousState ?: return insets - previousState = null - } - return insets - } - } - - companion object { - const val DESTINATION_MESSAGE_ARG = "DestinationMessage" - const val COMPONENT_KEY_ARG = "componentKey" - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListFragment.kt deleted file mode 100644 index df2b0de894..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListFragment.kt +++ /dev/null @@ -1,341 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.content.Context -import android.os.Bundle -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import android.view.ViewGroup.LayoutParams -import android.widget.FrameLayout -import androidx.core.view.isVisible -import androidx.customview.widget.Openable -import androidx.fragment.app.Fragment -import androidx.fragment.app.activityViewModels -import androidx.lifecycle.Lifecycle -import androidx.lifecycle.flowWithLifecycle -import androidx.lifecycle.lifecycleScope -import androidx.navigation.NavController -import androidx.navigation.NavDestination.Companion.hierarchy -import androidx.navigation.NavOptions -import androidx.recyclerview.widget.DiffUtil -import androidx.recyclerview.widget.RecyclerView -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.allViewThemes -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.CoreComponentGroup -import com.sdds.playground.sandbox.databinding.FragmentComponentListBinding -import com.sdds.playground.sandbox.databinding.LayoutComponentGroupBinding -import com.sdds.playground.sandbox.databinding.LayoutComponentItemBinding -import com.sdds.playground.sandbox.databinding.LayoutMainHeaderBinding -import com.sdds.playground.sandbox.viewTheme -import com.sdds.uikit.NavigationDrawer -import kotlinx.coroutines.Dispatchers -import kotlinx.coroutines.flow.Flow -import kotlinx.coroutines.flow.flowOn -import kotlinx.coroutines.flow.launchIn -import kotlinx.coroutines.flow.map -import kotlinx.coroutines.flow.onEach - -internal class ComponentListFragment : Fragment() { - - private val _componentListViewModel: ComponentListViewModel by activityViewModels() - private var _binding: FragmentComponentListBinding? = null - private var lastSelectedKey: ComponentKey? = null - private var _navHeaderBinding: LayoutMainHeaderBinding? = null - private val navController by lazy { findMainNavController() } - private val componentsListAdapter by lazy { ComponentListAdapter() } - - override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View { - return FragmentComponentListBinding.inflate(inflater, container, false).also { - _binding = it - initView() - }.root - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - - _componentListViewModel.currentTheme - .flowWithLifecycle(lifecycle, Lifecycle.State.RESUMED) - .onEach { - componentsListAdapter.updateTheme(requireContext(), it) - updateThemePicker(it) - } - .launchIn(lifecycleScope) - - _componentListViewModel.componentItems - .flowWithLifecycle(lifecycle, Lifecycle.State.RESUMED) - .handleComponents() - .launchIn(lifecycleScope) - } - - override fun onDestroyView() { - super.onDestroyView() - _binding = null - _navHeaderBinding = null - } - - private fun initView() = _binding?.apply { - _navHeaderBinding = if (navView != null) { - LayoutMainHeaderBinding.bind(navView.inflateHeader(R.layout.layout_main_header)) - } else { - mainHeader - } - _navHeaderBinding?.apply { - val hasMultipleThemes = allViewThemes.size > 1 - root.isFocusable = hasMultipleThemes - val disclosureIcon = if (hasMultipleThemes) com.sdds.icons.R.drawable.ic_disclosure_down_outline_16 else 0 - headerTitle.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, disclosureIcon, 0) - root.setOnClickListener { showThemePicker() } - } - - componentList?.apply { - adapter = componentsListAdapter - addItemDecoration( - VerticalSpaceBetweenDecorator( - resources.getDimensionPixelSize(R.dimen.sandbox_component_list_spacing), - ), - ) - componentsListAdapter.setInteractionListener { component -> - onNavDestinationSelected(component, navController, false) - } - } - } - - private fun Flow>.handleComponents(): Flow> { - return _binding?.run { - if (navView != null) { - flowOn(Dispatchers.Default).onEach { - navView.populateMenu(it, navController) - navController.addOnDestinationChangedListener { _, destination, _ -> - navView.setSelected(destination.id) - } - } - } else { - map { it.toComponentsList() } - .flowOn(Dispatchers.Default) - .onEach { componentsListAdapter.updateComponents(it) } - } - } ?: this - } - - private fun List.toComponentsList(): List { - var lastGroup: CoreComponentGroup? = null - return mutableListOf().apply { - this@toComponentsList.forEach { component -> - val group = component.componentKey.group - if (lastGroup != group) { - lastGroup = component.componentKey.group - add(ComponentListItem.ComponentMenuGroup(group)) - } - add(ComponentListItem.ComponentMenuItem(component)) - } - } - } - - private fun NavigationDrawer.populateMenu(items: List, navController: NavController) { - val itemsMap = items.associateBy { it.id } - setNavigationItemSelectedListener { - val item = itemsMap[it.id] ?: return@setNavigationItemSelectedListener false - val handled = onNavDestinationSelected(item, navController) - - if (handled) { - lastSelectedKey = item.componentKey - val parent = parent - if (parent is Openable) { - parent.close() - } - } - handled - } - setItems( - items.map { menuItem -> - NavigationDrawer.Item.Builder() - .setId(menuItem.id) - .setTitle(menuItem.title) - .build() - }, - ) - val currentItem = items.find { it.componentKey == lastSelectedKey } ?: items.first() - if (currentItem.id != navController.graph.startDestinationId) { - onNavDestinationSelected(currentItem, navController) - } - setSelected(currentItem.id) - } - - @Suppress("RestrictedApi") - private fun onNavDestinationSelected( - menuItem: MenuItem, - navController: NavController, - asTopLevel: Boolean = true, - ): Boolean { - val builder = NavOptions.Builder() - .setLaunchSingleTop(true) - .setRestoreState(true) - .apply { - if (!asTopLevel) { - setEnterAnim(R.anim.slide_in_right) - setExitAnim(R.anim.slide_out_left) - setPopEnterAnim(R.anim.slide_in_left) - setPopExitAnim(R.anim.slide_out_right) - } - } - navController.currentBackStackEntry?.destination?.id.takeIf { asTopLevel }?.let { prev -> - builder.setPopUpTo(prev, true) - } - val options = builder.build() - val destinationId = navController.graph.findNode(menuItem.route)?.id ?: return false - return try { - navController.navigate(destinationId, menuItem.componentKeyBundle, options) - navController.currentDestination?.hierarchy?.any { it.id == destinationId } == true - } catch (e: IllegalArgumentException) { - false - } - } - - private fun showThemePicker() { - val themes = allViewThemes - if (themes.size <= 1) return - val anchorView = _navHeaderBinding?.root ?: return - ThemeSwitcher(requireContext()).show(anchorView) - } - - private fun updateThemePicker(currentTheme: Theme) { - _navHeaderBinding?.apply { - headerTitle.text = currentTheme.name - headerLabel.isVisible = false - } - } -} - -internal sealed class ComponentListItem { - - abstract val id: Int - - data class ComponentMenuItem(val menuItem: MenuItem) : ComponentListItem() { - override val id: Int = menuItem.id - } - - data class ComponentMenuGroup(val group: CoreComponentGroup) : ComponentListItem() { - override val id: Int = group.hashCode() - } -} - -private class ComponentListAdapter : RecyclerView.Adapter() { - private val components = mutableListOf() - private var themedContext: ContextThemeWrapper = ContextThemeWrapper() - private var interactionListener: InteractionListener? = null - - /** - * Слушатель взаимодействий со списком свойств - */ - fun interface InteractionListener { - - /** - * Выбор компонента [item] - */ - fun onSelect(item: MenuItem) - } - - fun updateTheme(context: Context, theme: Theme) { - themedContext = ContextThemeWrapper(context, viewTheme(theme).themeRes) - } - - fun updateComponents(components: List) { - val diffCallback = ComponentsDiffUtilCallback(this.components, components) - val diffResult = DiffUtil.calculateDiff(diffCallback) - this.components.clear() - this.components.addAll(components) - diffResult.dispatchUpdatesTo(this) - } - - /** - * Устанавливает слушатель взаимодействий [interactionListener] - * @see InteractionListener - */ - fun setInteractionListener(interactionListener: InteractionListener?) { - this.interactionListener = interactionListener - } - - override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): RecyclerView.ViewHolder { - val item = components[viewType] - return when (item) { - is ComponentListItem.ComponentMenuGroup -> ComponentGroupHolder( - LayoutComponentGroupBinding.inflate( - LayoutInflater.from(parent.context), - parent, - false, - ), - item.group, - ) - - is ComponentListItem.ComponentMenuItem -> ComponentViewHolder( - LayoutComponentItemBinding.inflate( - LayoutInflater.from(parent.context), - parent, - false, - ), - item.menuItem, - ) - } - } - - override fun getItemCount(): Int = components.size - - override fun getItemId(position: Int): Long = components[position].id.toLong() - - override fun getItemViewType(position: Int): Int = position - - override fun onBindViewHolder(holder: RecyclerView.ViewHolder, position: Int) = Unit - - inner class ComponentGroupHolder( - itemViewBinding: LayoutComponentGroupBinding, - group: CoreComponentGroup, - ) : RecyclerView.ViewHolder(itemViewBinding.root) { - - init { - itemViewBinding.componentGroup.text = group.displayName - } - } - - inner class ComponentViewHolder( - itemViewBinding: LayoutComponentItemBinding, - private val component: MenuItem, - ) : RecyclerView.ViewHolder(itemViewBinding.root) { - - init { - itemViewBinding.apply { - componentName.text = component.title - componentPreview.apply { - removeAllViews() - val preview = component.preview(themedContext, component.previewStyle) - val previewParams = preview.layoutParams - ?.let { FrameLayout.LayoutParams(it) } - ?: FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT) - addView(preview, previewParams.apply { gravity = Gravity.CENTER }) - } - root.setOnClickListener { interactionListener?.onSelect(component) } - } - } - } -} - -private class ComponentsDiffUtilCallback( - private val old: List, - private val new: List, -) : DiffUtil.Callback() { - override fun getOldListSize(): Int = old.size - - override fun getNewListSize(): Int = new.size - - override fun areItemsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean { - return old[oldItemPosition].id == new[newItemPosition].id - } - - override fun areContentsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean { - return old[oldItemPosition] == new[newItemPosition] - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListViewModel.kt deleted file mode 100644 index 6c73bdd1ab..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentListViewModel.kt +++ /dev/null @@ -1,28 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.viewModelScope -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.core.ThemeManager -import com.sdds.playground.sandbox.viewTheme -import kotlinx.coroutines.flow.SharingStarted -import kotlinx.coroutines.flow.StateFlow -import kotlinx.coroutines.flow.map -import kotlinx.coroutines.flow.stateIn - -internal class ComponentListViewModel( - private val themeManager: ThemeManager = ThemeManager, -) : ViewModel() { - - val currentTheme: StateFlow - get() = themeManager.currentTheme - - val componentItems: StateFlow> = - currentTheme - .map { viewTheme(it).components.getMenuItems() } - .stateIn(viewModelScope, SharingStarted.Lazily, emptyList()) - - fun updateTheme(theme: Theme) { - themeManager.updateTheme(theme) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentViewModel.kt deleted file mode 100644 index 07e703598f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ComponentViewModel.kt +++ /dev/null @@ -1,207 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import androidx.annotation.CallSuper -import androidx.lifecycle.SavedStateHandle -import androidx.lifecycle.ViewModel -import androidx.lifecycle.viewModelScope -import com.sdds.playground.sandbox.SubTheme -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.core.ThemeManager -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.CoreComponent -import com.sdds.playground.sandbox.viewTheme -import com.sdds.uikit.fixtures.UiState -import kotlinx.coroutines.flow.MutableSharedFlow -import kotlinx.coroutines.flow.MutableStateFlow -import kotlinx.coroutines.flow.SharedFlow -import kotlinx.coroutines.flow.SharingStarted -import kotlinx.coroutines.flow.StateFlow -import kotlinx.coroutines.flow.asSharedFlow -import kotlinx.coroutines.flow.asStateFlow -import kotlinx.coroutines.flow.combine -import kotlinx.coroutines.flow.stateIn -import kotlinx.coroutines.launch - -internal abstract class ComponentViewModel( - private val defaultState: State, - open val componentKey: ComponentKey = ComponentKey("", CoreComponent.CELL), - private val savedStateHandle: SavedStateHandle = SavedStateHandle(), - private val themeManager: ThemeManager = ThemeManager, -) : ViewModel(), PropertiesOwner { - - protected val internalUiState = MutableStateFlow(defaultState) - private val _subtheme = MutableStateFlow(null) - private val _showEditor = MutableSharedFlow>() - - protected open val colorVariantPropertyName: String - get() = COLOR_VARIANT_PROPERTY_NAME - - /** - * Тема - */ - val theme: StateFlow - get() = themeManager.currentTheme - - /** - * Подтема - */ - val subtheme: StateFlow - get() = _subtheme.asStateFlow() - - /** - * Cостояние компонента - */ - val uiState: StateFlow - get() = internalUiState.asStateFlow() - - /** - * Отображает редактор свойста - */ - val showEditor: SharedFlow> get() = _showEditor.asSharedFlow() - - @Suppress("UNCHECKED_CAST") - @CallSuper - override fun updateProperty(name: String, value: Any?) { - val valueString = value?.toString() ?: return - val currentState = internalUiState.value - if (name == APPEARANCE_PROPERTY_NAME) { - internalUiState.value = - currentState.updateVariant(appearance = valueString, variant = currentState.variant) as State - } - - if (name == SUBTHEME_PROPERTY_NAME) { - val type = SubTheme.values().firstOrNull { it.key == valueString } - _subtheme.value = type - } - - if (name == VARIANT_PROPERTY_NAME) { - internalUiState.value = - currentState.updateVariant(appearance = currentState.appearance, variant = valueString) as State - } - if (name == colorVariantPropertyName) { - internalUiState.value = - internalUiState.value.updateColorVariant(valueString) as State - } - } - - final override val properties: StateFlow>> - get() = combine( - internalUiState, - theme, - _subtheme, - ) { state, _, _ -> - appearanceProperties(state) + variantProperties(state) + state.toProps() - } - .stateIn(viewModelScope, SharingStarted.Lazily, emptyList()) - - private fun appearanceProperties(state: State): List { - return listOf( - Property.SingleChoiceProperty( - APPEARANCE_PROPERTY_NAME, - variants = getAppearances().toList(), - value = state.appearance, - ), - ) - } - - private fun variantProperties(state: State): List { - val styleProvider = getStyleProvider(state.appearance) - val subthemes = getSubthemes() - val variantProperties = mutableListOf() - if (styleProvider.variants.isNotEmpty()) { - updateUiStateWithDefaultVariant() - variantProperties.add( - Property.SingleChoiceProperty( - VARIANT_PROPERTY_NAME, - variants = styleProvider.variants, - value = state.variant, - ), - ) - } - if (styleProvider.colorVariants.isNotEmpty()) { - updateUiStateWithDefaultColorVariant() - variantProperties.add( - Property.SingleChoiceProperty( - colorVariantPropertyName, - variants = styleProvider.colorVariants, - value = state.colorVariant, - ), - ) - } - if (subthemes.isNotEmpty()) { - variantProperties.add( - Property.SingleChoiceProperty( - SUBTHEME_PROPERTY_NAME, - variants = subthemes.map { it.key.key }, - value = _subtheme.value?.key ?: subthemes.keys.first().key, - ), - ) - } - return variantProperties - } - - @Suppress("UNCHECKED_CAST") - private fun updateUiStateWithDefaultVariant() { - val variant = internalUiState.value.variant - val defaultAppearance = getDefaultAppearances() - val appearance = internalUiState.value.appearance.ifEmpty { defaultAppearance } - if (variant.isNotEmpty() && - getStyleProvider(appearance).variants.contains(variant) - ) { - return - } - internalUiState.value = - internalUiState.value.updateVariant( - appearance, - getStyleProvider(appearance).defaultVariant, - ) as State - } - - @Suppress("UNCHECKED_CAST") - private fun updateUiStateWithDefaultColorVariant() { - if (internalUiState.value.colorVariant.isNotEmpty()) return - val appearance = getDefaultAppearances() - internalUiState.value = - internalUiState.value.updateColorVariant( - getStyleProvider(appearance).defaultColorVariant, - ) as State - } - - open fun getStyleProvider(appearance: String): ViewStyleProvider { - return viewTheme(theme.value).components.get(componentKey).run { - styleProviders[appearance] ?: styleProviders.values.first() - } - } - open fun getSubthemes(): Map { - return viewTheme(theme.value).subthemes - } - - open fun getAppearances(): Set { - return viewTheme(theme.value).components.get(componentKey).styleProviders.keys - } - - open fun getDefaultAppearances(): String { - return viewTheme(themeManager.currentTheme.value) - .components.get(componentKey).defaultAppearance - } - - abstract fun State.toProps(): List> - - final override fun resetToDefault() { - internalUiState.value = defaultState - } - - final override fun sendEditPropertyRequest(property: Property<*>) { - viewModelScope.launch { - _showEditor.emit(property) - } - } - - private companion object { - const val VARIANT_PROPERTY_NAME = "variant" - const val SUBTHEME_PROPERTY_NAME = "subtheme" - const val APPEARANCE_PROPERTY_NAME = "appearance" - const val COLOR_VARIANT_PROPERTY_NAME = "view" - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/DrawerFrameLayout.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/DrawerFrameLayout.kt deleted file mode 100644 index d0460e7447..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/DrawerFrameLayout.kt +++ /dev/null @@ -1,83 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.animation.ValueAnimator -import android.content.Context -import android.util.AttributeSet -import android.view.Gravity -import android.view.View -import androidx.core.view.children -import androidx.core.view.marginLeft -import androidx.core.view.marginTop -import androidx.core.view.updateMargins -import com.sdds.uikit.FrameLayout -import com.sdds.uikit.dp - -internal class DrawerFrameLayout @JvmOverloads constructor( - context: Context, - attrs: AttributeSet? = null, - defStyle: Int = 0, -) : FrameLayout(context, attrs, defStyle) { - - private var drawerView: View? = null - private var drawerOpened: Boolean = false - private val _offset: Int = 20.dp - private val _drawerMargin: Int = 2.dp - private val drawerAnimation: ValueAnimator by lazy { - ValueAnimator().apply { - setDuration(200) - addUpdateListener { animator -> - val value = animator.animatedValue as Float - drawerView?.translationX = value - this@DrawerFrameLayout.children.filter { it != drawerView }.forEach { - it.translationX = value - } - invalidate() - } - } - } - - override fun onFinishInflate() { - super.onFinishInflate() - - for (i in 0 until childCount) { - val child = getChildAt(i) - val lp = child.layoutParams as? LayoutParams - if (lp?.gravity == Gravity.START) { - drawerView = child - } else { - lp?.updateMargins(_offset + _drawerMargin) - child.layoutParams = lp - } - } - - viewTreeObserver?.addOnGlobalFocusChangeListener { _, _ -> - val drawer = drawerView ?: return@addOnGlobalFocusChangeListener - val drawerOpen = drawer.hasFocus() - if (drawerOpened != drawerOpen) { - drawerOpened = drawerOpen - if (drawerOpened) { - drawerAnimation.setFloatValues(0f, drawer.width.toFloat() - _offset) - } else { - drawerAnimation.setFloatValues(drawer.width.toFloat() - _offset, 0f) - } - drawerAnimation.start() - } - } - } - - override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) { - for (i in 0 until childCount) { - val child = getChildAt(i) - - val childWidth = child.measuredWidth - val childHeight = child.measuredHeight - val childTop = child.marginTop + paddingTop - val childLeft = if (child == drawerView) { - -childWidth + child.marginLeft + _offset + paddingLeft - } else { - child.marginLeft + paddingLeft - } - child.layout(childLeft, childTop, childLeft + childWidth, childTop + childHeight) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Editors.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Editors.kt deleted file mode 100644 index 7eeb2a7065..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Editors.kt +++ /dev/null @@ -1,252 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.os.Bundle -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import androidx.core.view.ViewCompat -import androidx.core.view.WindowInsetsCompat -import androidx.core.view.isGone -import androidx.core.view.updatePadding -import androidx.core.widget.doAfterTextChanged -import androidx.fragment.app.Fragment -import androidx.fragment.app.viewModels -import androidx.recyclerview.widget.RecyclerView -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.databinding.FragmentEditorChoiceBinding -import com.sdds.playground.sandbox.databinding.FragmentEditorTextBinding -import com.sdds.uikit.TextView - -/** - * Базовый фрагмент редактора параметров компонентов - * @author Малышев Александр on 05.08.2024 - */ -internal open class EditorFragment : Fragment() { - - protected val componentViewModel: ComponentViewModel<*> by viewModels({ requireParentFragment() }) - - /** - * Название свойства - */ - protected val propertyName: String by lazy { - arguments?.getString(ARG_PROPERTY_NAME).orEmpty() - } - - /** - * Значение свойства - */ - protected val currentValue: String by lazy { - arguments?.getString(ARG_PROPERTY_CURRENT_VALUE).orEmpty() - } - - /** - * Сохраняет введенное в редактор значение [any] и закрывает редактор - */ - protected fun confirm(any: T?) { - componentViewModel.updateProperty(propertyName, any) - } - - override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { - return super.onCreateView(inflater, container, savedInstanceState)?.apply { - ViewCompat.setOnApplyWindowInsetsListener(this) { v, insets -> - v.updatePadding( - bottom = v.paddingBottom + insets.getInsets(WindowInsetsCompat.Type.systemBars()).bottom, - ) - insets - } - } - } - - companion object { - const val CONFIRM_RESULT_KEY = "EditorFragment_confirmResult" - const val CONFIRM_VALUE = "EditorFragment_confirmResult" - const val ARG_PROPERTY_NAME = "EditorFragment_propertyName" - const val ARG_PROPERTY_CURRENT_VALUE = "EditorFragment_propertyCurrentValue" - const val ARG_CONFIRM_RESULT_KEY = "EditorFragment_argConfirmResult" - } -} - -/** - * Редактор текстовых свойств компонентов - */ -internal class TextEditorFragment : EditorFragment() { - - private var _binding: FragmentEditorTextBinding? = null - - override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { - _binding = FragmentEditorTextBinding.inflate(inflater, container, false).apply { - header.headerTitle.text = componentViewModel.componentKey.value - header.headerLabel.text = componentViewModel.componentKey.core.name - header.propertyValueReset.isGone = true - textEditorField.label = propertyName - textEditorField.value = currentValue - textEditorField.editText.doAfterTextChanged { - confirm(textEditorField.value?.toString()) - } - } - return _binding?.root - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - _binding?.textEditorField?.editText?.requestFocus() - } - - override fun onDestroyView() { - super.onDestroyView() - _binding = null - } - - internal companion object { - - fun newInstance( - propertyName: String, - currentValue: String, - ): TextEditorFragment { - return TextEditorFragment().apply { - arguments = Bundle().apply { - putString(ARG_PROPERTY_NAME, propertyName) - putString(ARG_PROPERTY_CURRENT_VALUE, currentValue) - } - } - } - } -} - -/** - * Редактор с выбором значения из некоторого множества значений одного свойства компонента - */ -internal class ChoiceEditorFragment : EditorFragment() { - - private var _binding: FragmentEditorChoiceBinding? = null - private val adapter = ChoiceAdapter() - private val choices: List by lazy { - arguments?.getStringArrayList(ARG_CHOICES).orEmpty() - } - - override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? { - _binding = FragmentEditorChoiceBinding.inflate(inflater, container, false).apply { - header.headerTitle.text = componentViewModel.componentKey.value - header.headerLabel.text = componentViewModel.componentKey.core.name - header.propertyValueReset.isGone = true - choiceEditorTitle.text = propertyName - choiceRecyclerView.adapter = adapter - choiceRecyclerView.itemAnimator = null - choiceRecyclerView.addItemDecoration( - VerticalSpaceBetweenDecorator( - resources.getDimensionPixelSize(R.dimen.sandbox_properties_choice_spacing), - ), - ) - adapter.setChoices(choices, currentValue) - adapter.setSelectionListener { confirm(it) } - } - return _binding?.root - } - - override fun onDestroyView() { - super.onDestroyView() - _binding?.choiceRecyclerView?.adapter = null - adapter.setSelectionListener(null) - _binding = null - } - - internal companion object { - - const val ARG_CHOICES = "ChoiceEditorFragment_choices" - - fun newInstance( - propertyName: String, - currentValue: String, - choices: List, - confirmKey: String? = null, - ): ChoiceEditorFragment { - return ChoiceEditorFragment().apply { - arguments = Bundle().apply { - putString(ARG_PROPERTY_NAME, propertyName) - putString(ARG_PROPERTY_CURRENT_VALUE, currentValue) - putStringArrayList(ARG_CHOICES, ArrayList(choices)) - confirmKey?.let { putString(ARG_CONFIRM_RESULT_KEY, it) } - } - } - } - } -} - -internal class ChoiceAdapter : RecyclerView.Adapter() { - - private val choices = mutableListOf() - private var selectedPosition: Int = -1 - - private var selectionListener: SelectionListener? = null - - fun interface SelectionListener { - fun onChanged(choice: String) - } - - @Suppress("NotifyDataSetChanged") - fun setChoices(choices: List, current: String) { - this.choices.clear() - this.choices.addAll(choices) - selectedPosition = this.choices.indexOf(current) - notifyDataSetChanged() - } - - fun setSelectionListener(selectionListener: SelectionListener?) { - this.selectionListener = selectionListener - } - - override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ChoiceHolder { - return ChoiceHolder( - LayoutInflater.from(parent.context) - .inflate(R.layout.layout_choice_editor_item, parent, false), - ) - } - - override fun getItemCount(): Int = choices.size - - override fun onBindViewHolder(holder: ChoiceHolder, position: Int) { - holder.bind(choices[position]) - } - - inner class ChoiceHolder(itemView: View) : RecyclerView.ViewHolder(itemView) { - - fun bind(choice: String) { - (itemView as TextView).apply { - text = choice - isSelected = selectedPosition == adapterPosition - setOnClickListener { - val oldSelected = selectedPosition - selectedPosition = adapterPosition - notifyItemChanged(oldSelected) - notifyItemChanged(selectedPosition) - selectionListener?.onChanged(choice) - } - } - } - } -} - -/** - * Возвращает редактор текста - * @param propertyName название свойства - * @param currentValue значение свойства - */ -internal fun EditorFragment.Companion.textEditor( - propertyName: String, - currentValue: String, -): EditorFragment = TextEditorFragment.newInstance(propertyName, currentValue) - -/** - * Возвращает редактор с выбором значения из некоторого множества значений одного свойства - * @param propertyName название свойства - * @param currentValue значение свойства - * @param choices множество значений свойства - * @param confirmKey опциональный ключ, по которому будет записан результат выбора. - * Если [confirmKey] == null, то результат будет записан по ключу [CONFIRM_RESULT_KEY] - */ -internal fun EditorFragment.Companion.choiceEditor( - propertyName: String, - currentValue: String, - choices: List, - confirmKey: String? = null, -): EditorFragment = ChoiceEditorFragment.newInstance(propertyName, currentValue, choices, confirmKey) diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/MenuItem.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/MenuItem.kt deleted file mode 100644 index 110a699c49..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/MenuItem.kt +++ /dev/null @@ -1,703 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.content.Context -import android.view.View -import android.view.ViewGroup -import androidx.core.os.bundleOf -import androidx.navigation.NavGraphBuilder -import androidx.navigation.fragment.FragmentNavigatorDestinationBuilder -import androidx.navigation.fragment.fragment -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.accordion.view.AccordionFragment -import com.sdds.playground.sandbox.autocomplete.view.AutocompleteFragment -import com.sdds.playground.sandbox.avatar.vs.AvatarFragment -import com.sdds.playground.sandbox.avatar.vs.AvatarGroupFragment -import com.sdds.playground.sandbox.badge.vs.BadgeFragment -import com.sdds.playground.sandbox.badge.vs.IconBadgeFragment -import com.sdds.playground.sandbox.buttongroup.vs.ButtonGroupFragment -import com.sdds.playground.sandbox.buttons.vs.BasicButtonFragment -import com.sdds.playground.sandbox.buttons.vs.IconButtonFragment -import com.sdds.playground.sandbox.buttons.vs.LinkButtonFragment -import com.sdds.playground.sandbox.card.vs.CardFragment -import com.sdds.playground.sandbox.carousel.vs.CarouselFragment -import com.sdds.playground.sandbox.cell.vs.CellFragment -import com.sdds.playground.sandbox.checkbox.vs.CheckBoxFragment -import com.sdds.playground.sandbox.checkbox.vs.group.CheckBoxGroupFragment -import com.sdds.playground.sandbox.chip.vs.ChipFragment -import com.sdds.playground.sandbox.chip.vs.group.ChipGroupFragment -import com.sdds.playground.sandbox.codefield.vs.CodeFieldFragment -import com.sdds.playground.sandbox.codeinput.vs.CodeInputFragment -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView -import com.sdds.playground.sandbox.core.integration.component.CoreComponent -import com.sdds.playground.sandbox.counter.vs.CounterFragment -import com.sdds.playground.sandbox.divider.vs.DividerFragment -import com.sdds.playground.sandbox.drawer.vs.DrawerFragment -import com.sdds.playground.sandbox.dropdownmenu.vs.DropdownMenuFragment -import com.sdds.playground.sandbox.editable.vs.EditableFragment -import com.sdds.playground.sandbox.file.vs.FileFragment -import com.sdds.playground.sandbox.flow.vs.FlowFragment -import com.sdds.playground.sandbox.image.vs.ImageFragment -import com.sdds.playground.sandbox.indicator.vs.IndicatorFragment -import com.sdds.playground.sandbox.list.vs.ListFragment -import com.sdds.playground.sandbox.loader.vs.LoaderFragment -import com.sdds.playground.sandbox.modal.vs.ModalFragment -import com.sdds.playground.sandbox.navigationbar.vs.NavigationBarFragment -import com.sdds.playground.sandbox.navigationdrawer.NavigationDrawerFragment -import com.sdds.playground.sandbox.note.vs.NoteCompactFragment -import com.sdds.playground.sandbox.note.vs.NoteFragment -import com.sdds.playground.sandbox.notification.vs.NotificationFragment -import com.sdds.playground.sandbox.notificationcontent.vs.NotificationContentFragment -import com.sdds.playground.sandbox.overlay.vs.OverlayFragment -import com.sdds.playground.sandbox.paginationdots.vs.PaginationDotsFragment -import com.sdds.playground.sandbox.popover.vs.PopoverFragment -import com.sdds.playground.sandbox.progress.vs.CircularProgressBarFragment -import com.sdds.playground.sandbox.progress.vs.ProgressBarFragment -import com.sdds.playground.sandbox.radiobox.vs.RadioBoxFragment -import com.sdds.playground.sandbox.radiobox.vs.group.RadioBoxGroupFragment -import com.sdds.playground.sandbox.rectskeleton.vs.RectSkeletonFragment -import com.sdds.playground.sandbox.scrollbar.vs.ScrollBarFragment -import com.sdds.playground.sandbox.segment.vs.SegmentItemFragment -import com.sdds.playground.sandbox.segment.vs.group.SegmentFragment -import com.sdds.playground.sandbox.select.vs.SelectFragment -import com.sdds.playground.sandbox.slider.vs.SliderFragment -import com.sdds.playground.sandbox.spinner.vs.SpinnerFragment -import com.sdds.playground.sandbox.switcher.vs.SwitchFragment -import com.sdds.playground.sandbox.tabs.IconTabsFragment -import com.sdds.playground.sandbox.tabs.TabsFragment -import com.sdds.playground.sandbox.textfield.vs.MaskFragment -import com.sdds.playground.sandbox.textfield.vs.TextAreaFragment -import com.sdds.playground.sandbox.textfield.vs.TextFieldFragment -import com.sdds.playground.sandbox.textskeleton.vs.TextSkeletonFragment -import com.sdds.playground.sandbox.toast.vs.ToastFragment -import com.sdds.playground.sandbox.toolbar.vs.ToolBarFragment -import com.sdds.playground.sandbox.tooltip.vs.TooltipFragment -import com.sdds.playground.sandbox.wheel.vs.WheelFragment -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.fixtures.stories.accordion.accordion -import com.sdds.uikit.fixtures.stories.autocomplete.autocomplete -import com.sdds.uikit.fixtures.stories.avatar.AvatarUiState -import com.sdds.uikit.fixtures.stories.avatar.avatar -import com.sdds.uikit.fixtures.stories.avatar.avatarGroup -import com.sdds.uikit.fixtures.stories.badge.BadgeUiState -import com.sdds.uikit.fixtures.stories.badge.badge -import com.sdds.uikit.fixtures.stories.badge.iconBadge -import com.sdds.uikit.fixtures.stories.button.ButtonUiState -import com.sdds.uikit.fixtures.stories.button.basicButton -import com.sdds.uikit.fixtures.stories.button.buttonGroup -import com.sdds.uikit.fixtures.stories.button.iconButton -import com.sdds.uikit.fixtures.stories.button.linkButton -import com.sdds.uikit.fixtures.stories.card.CardUiState -import com.sdds.uikit.fixtures.stories.card.card -import com.sdds.uikit.fixtures.stories.carousel.carousel -import com.sdds.uikit.fixtures.stories.cell.CellUiState -import com.sdds.uikit.fixtures.stories.cell.cellLayout -import com.sdds.uikit.fixtures.stories.checkbox.CheckBoxUiState -import com.sdds.uikit.fixtures.stories.checkbox.checkBox -import com.sdds.uikit.fixtures.stories.checkbox.checkBoxGroup -import com.sdds.uikit.fixtures.stories.chip.ChipUiState -import com.sdds.uikit.fixtures.stories.chip.chip -import com.sdds.uikit.fixtures.stories.chip.chipGroup -import com.sdds.uikit.fixtures.stories.codefield.codeField -import com.sdds.uikit.fixtures.stories.codeinput.codeInput -import com.sdds.uikit.fixtures.stories.counter.CounterUiState -import com.sdds.uikit.fixtures.stories.counter.counter -import com.sdds.uikit.fixtures.stories.divider.divider -import com.sdds.uikit.fixtures.stories.drawer.drawer -import com.sdds.uikit.fixtures.stories.dropdownmenu.dropdownMenuTrigger -import com.sdds.uikit.fixtures.stories.editable.editable -import com.sdds.uikit.fixtures.stories.file.file -import com.sdds.uikit.fixtures.stories.flow.FlowUiState -import com.sdds.uikit.fixtures.stories.flow.flowLayout -import com.sdds.uikit.fixtures.stories.image.image -import com.sdds.uikit.fixtures.stories.indicator.indicator -import com.sdds.uikit.fixtures.stories.list.listView -import com.sdds.uikit.fixtures.stories.loader.loader -import com.sdds.uikit.fixtures.stories.mask.maskedTextField -import com.sdds.uikit.fixtures.stories.modal.modalTrigger -import com.sdds.uikit.fixtures.stories.navigationbar.navigationBar -import com.sdds.uikit.fixtures.stories.navigationdrawer.NavigationDrawerUiState -import com.sdds.uikit.fixtures.stories.navigationdrawer.navigationDrawer -import com.sdds.uikit.fixtures.stories.note.note -import com.sdds.uikit.fixtures.stories.note.noteCompact -import com.sdds.uikit.fixtures.stories.notification.notificationTrigger -import com.sdds.uikit.fixtures.stories.notificationcontent.notificationContent -import com.sdds.uikit.fixtures.stories.overlay.overlayWithTrigger -import com.sdds.uikit.fixtures.stories.paginationdots.paginationDots -import com.sdds.uikit.fixtures.stories.popover.popoverWithTrigger -import com.sdds.uikit.fixtures.stories.progress.CircularProgressUiState -import com.sdds.uikit.fixtures.stories.progress.ProgressUiState -import com.sdds.uikit.fixtures.stories.progress.circularProgressBar -import com.sdds.uikit.fixtures.stories.progress.progressBar -import com.sdds.uikit.fixtures.stories.radiobox.RadioBoxUiState -import com.sdds.uikit.fixtures.stories.radiobox.radioBox -import com.sdds.uikit.fixtures.stories.radiobox.radioBoxGroup -import com.sdds.uikit.fixtures.stories.scrollbar.scrollBar -import com.sdds.uikit.fixtures.stories.segment.SegmentUiState -import com.sdds.uikit.fixtures.stories.segment.segment -import com.sdds.uikit.fixtures.stories.segment.segmentItem -import com.sdds.uikit.fixtures.stories.select.select -import com.sdds.uikit.fixtures.stories.skeleton.rectSkeleton -import com.sdds.uikit.fixtures.stories.skeleton.textSkeleton -import com.sdds.uikit.fixtures.stories.slider.slider -import com.sdds.uikit.fixtures.stories.spinner.spinner -import com.sdds.uikit.fixtures.stories.switcher.SwitchUiState -import com.sdds.uikit.fixtures.stories.switcher.switch -import com.sdds.uikit.fixtures.stories.tabs.iconTabs -import com.sdds.uikit.fixtures.stories.tabs.tabs -import com.sdds.uikit.fixtures.stories.textfield.TextFieldUiState -import com.sdds.uikit.fixtures.stories.textfield.textArea -import com.sdds.uikit.fixtures.stories.textfield.textField -import com.sdds.uikit.fixtures.stories.toast.toastTrigger -import com.sdds.uikit.fixtures.stories.toolbar.toolBar -import com.sdds.uikit.fixtures.stories.tooltip.tooltipWithTrigger -import com.sdds.uikit.fixtures.stories.wheel.wheel - -internal class MenuItem( - val id: Int, - val title: String, - val componentKey: ComponentKey, - val destination: ComponentScreen, - val previewStyle: Int = 0, - val previewColorState: ColorState? = null, -) { - - val componentKeyBundle by lazy { - bundleOf(ComponentFragment.COMPONENT_KEY_ARG to componentKey) - } - - val route: Int = id -} - -@Suppress("UNCHECKED_CAST") -internal fun ComponentsProviderView.getMenuItems(): List { - return components.toList().mapIndexedNotNull { index, (item, value) -> - val styleProvider = value.styleProviders.values.first() as ViewStyleProvider - MenuItem( - id = item.routeId() ?: return@mapIndexedNotNull null, - title = value.name, - componentKey = item, - destination = item.core.screen(), - previewStyle = styleProvider.styleRes(key = styleProvider.defaultVariant), - previewColorState = if (styleProvider.hasColorVariations) { - styleProvider.colorState(key = styleProvider.defaultColorVariant) - } else { - null - }, - ) - }.sortedWith( - compareBy( - { it.componentKey.group.ordinal }, - { it.title }, - ), - ) -} - -private val MenuItem.defaultBuilder: FragmentNavigatorDestinationBuilder.() -> Unit - get() = { - label = title - } - -internal sealed class ComponentScreen( - val builder: NavGraphBuilder.(MenuItem) -> Unit, -) { - object Avatar : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object AvatarGroup : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Buttons : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object IconButtons : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Badge : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object IconBadge : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object LinkButtons : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Cell : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object CheckBox : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object CheckBoxGroup : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object RadioBox : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object RadioBoxGroup : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Switch : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Progress : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object TextField : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object TextArea : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Chip : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object ChipGroup : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Indicator : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Counter : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Segment : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object SegmentItem : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Flow : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Card : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Divider : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object NavigationDrawer : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object CircularProgress : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Popover : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Tooltip : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Overlay : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Toast : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Modal : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Notification : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object NotificationContent : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object RectSkeleton : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object TextSkeleton : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object List : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object DropdownMenu : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Wheel : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Spinner : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Image : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object ScrollBar : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Slider : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Accordion : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Loader : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object ButtonGroup : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Drawer : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object CodeField : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Tabs : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object IconTabs : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object CodeInput : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - object Note : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - object NoteCompact : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object PaginationDots : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object ToolBar : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Mask : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Carousel : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Autocomplete : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object File : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object NavigationBar : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Editable : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) - - object Select : ComponentScreen( - { item -> fragment(item.route, item.defaultBuilder) }, - ) -} - -@Suppress("CyclomaticComplexMethod", "LongMethod") -private fun CoreComponent.screen(): ComponentScreen { - return when (this) { - CoreComponent.AVATAR -> ComponentScreen.Avatar - CoreComponent.AVATAR_GROUP -> ComponentScreen.AvatarGroup - CoreComponent.BADGE -> ComponentScreen.Badge - CoreComponent.ICON_BADGE -> ComponentScreen.IconBadge - CoreComponent.BASIC_BUTTON -> ComponentScreen.Buttons - CoreComponent.ICON_BUTTON -> ComponentScreen.IconButtons - CoreComponent.LINK_BUTTON -> ComponentScreen.LinkButtons - CoreComponent.CELL -> ComponentScreen.Cell - CoreComponent.CHECKBOX -> ComponentScreen.CheckBox - CoreComponent.CHECKBOX_GROUP -> ComponentScreen.CheckBoxGroup - CoreComponent.CHIP -> ComponentScreen.Chip - CoreComponent.CHIP_GROUP -> ComponentScreen.ChipGroup - CoreComponent.COUNTER -> ComponentScreen.Counter - CoreComponent.INDICATOR -> ComponentScreen.Indicator - CoreComponent.PROGRESS -> ComponentScreen.Progress - CoreComponent.RADIOBOX -> ComponentScreen.RadioBox - CoreComponent.RADIOBOX_GROUP -> ComponentScreen.RadioBoxGroup - CoreComponent.SWITCH -> ComponentScreen.Switch - CoreComponent.SPINNER -> ComponentScreen.Spinner - CoreComponent.TEXT_FIELD -> ComponentScreen.TextField - CoreComponent.TEXT_AREA -> ComponentScreen.TextArea - CoreComponent.SEGMENT -> ComponentScreen.Segment - CoreComponent.SEGMENT_ITEM -> ComponentScreen.SegmentItem - CoreComponent.FLOW -> ComponentScreen.Flow - CoreComponent.CARD -> ComponentScreen.Card - CoreComponent.DIVIDER -> ComponentScreen.Divider - CoreComponent.NAVIGATION_DRAWER -> ComponentScreen.NavigationDrawer - CoreComponent.CIRCULAR_PROGRESS -> ComponentScreen.CircularProgress - CoreComponent.POPOVER -> ComponentScreen.Popover - CoreComponent.TOOLTIP -> ComponentScreen.Tooltip - CoreComponent.OVERLAY -> ComponentScreen.Overlay - CoreComponent.TOAST -> ComponentScreen.Toast - CoreComponent.MODAL -> ComponentScreen.Modal - CoreComponent.NOTIFICATION -> ComponentScreen.Notification - CoreComponent.NOTIFICATION_CONTENT -> ComponentScreen.NotificationContent - CoreComponent.RECT_SKELETON -> ComponentScreen.RectSkeleton - CoreComponent.TEXT_SKELETON -> ComponentScreen.TextSkeleton - CoreComponent.LIST -> ComponentScreen.List - CoreComponent.DROPDOWN_MENU -> ComponentScreen.DropdownMenu - CoreComponent.WHEEL -> ComponentScreen.Wheel - CoreComponent.IMAGE -> ComponentScreen.Image - CoreComponent.SCROLL_BAR -> ComponentScreen.ScrollBar - CoreComponent.SLIDER -> ComponentScreen.Slider - CoreComponent.LOADER -> ComponentScreen.Loader - CoreComponent.ACCORDION -> ComponentScreen.Accordion - CoreComponent.BUTTON_GROUP -> ComponentScreen.ButtonGroup - CoreComponent.CODE_FIELD -> ComponentScreen.CodeField - CoreComponent.CODE_INPUT -> ComponentScreen.CodeInput - CoreComponent.DRAWER -> ComponentScreen.Drawer - CoreComponent.TABS -> ComponentScreen.Tabs - CoreComponent.ICON_TABS -> ComponentScreen.IconTabs - CoreComponent.NOTE -> ComponentScreen.Note - CoreComponent.NOTE_COMPACT -> ComponentScreen.NoteCompact - CoreComponent.PAGINATION_DOTS -> ComponentScreen.PaginationDots - CoreComponent.TOOL_BAR -> ComponentScreen.ToolBar - CoreComponent.MASK -> ComponentScreen.Mask - CoreComponent.CAROUSEL -> ComponentScreen.Carousel - CoreComponent.AUTOCOMPLETE -> ComponentScreen.Autocomplete - CoreComponent.FILE -> ComponentScreen.File - CoreComponent.NAVIGATION_BAR -> ComponentScreen.NavigationBar - CoreComponent.EDITABLE -> ComponentScreen.Editable - CoreComponent.SELECT -> ComponentScreen.Select - else -> throw NoSuchElementException("Component not implemented") - } -} - -@Suppress("CyclomaticComplexMethod", "LongMethod") -private fun ComponentKey.routeId(): Int? { - return when (this.core) { - CoreComponent.AVATAR -> R.id.nav_avatar - CoreComponent.AVATAR_GROUP -> R.id.nav_avatargroup - CoreComponent.BADGE -> R.id.nav_badge - CoreComponent.ICON_BADGE -> R.id.nav_icon_badge - CoreComponent.BASIC_BUTTON -> R.id.nav_basic_button - CoreComponent.ICON_BUTTON -> R.id.nav_icon_button - CoreComponent.LINK_BUTTON -> R.id.nav_link_button - CoreComponent.CELL -> R.id.nav_cell - CoreComponent.CHECKBOX -> R.id.nav_checkbox - CoreComponent.CHECKBOX_GROUP -> R.id.nav_checkbox_group - CoreComponent.CHIP -> R.id.nav_chip - CoreComponent.CHIP_GROUP -> R.id.nav_chip_group - CoreComponent.COUNTER -> R.id.nav_counter - CoreComponent.INDICATOR -> R.id.nav_indicator - CoreComponent.PROGRESS -> R.id.nav_progressbar - CoreComponent.RADIOBOX -> R.id.nav_radiobox - CoreComponent.RADIOBOX_GROUP -> R.id.nav_radiobox_group - CoreComponent.SWITCH -> R.id.nav_switch - CoreComponent.SPINNER -> R.id.nav_spinner - CoreComponent.TEXT_FIELD -> R.id.nav_textfield - CoreComponent.TEXT_AREA -> R.id.nav_textarea - CoreComponent.SEGMENT -> R.id.nav_segment - CoreComponent.SEGMENT_ITEM -> R.id.nav_segment_item - CoreComponent.FLOW -> R.id.nav_flow - CoreComponent.CARD -> R.id.nav_card - CoreComponent.DIVIDER -> R.id.nav_divider - CoreComponent.NAVIGATION_DRAWER -> R.id.nav_navigation_drawer - CoreComponent.CIRCULAR_PROGRESS -> R.id.nav_circular_progressbar - CoreComponent.POPOVER -> R.id.nav_popover - CoreComponent.TOOLTIP -> R.id.nav_tooltip - CoreComponent.OVERLAY -> R.id.nav_overlay - CoreComponent.TOAST -> R.id.nav_toast - CoreComponent.MODAL -> R.id.nav_modal - CoreComponent.NOTIFICATION -> R.id.nav_notification - CoreComponent.NOTIFICATION_CONTENT -> R.id.nav_notification_content - CoreComponent.RECT_SKELETON -> R.id.nav_rect_skeleton - CoreComponent.TEXT_SKELETON -> R.id.nav_text_skeleton - CoreComponent.LIST -> R.id.nav_list - CoreComponent.DROPDOWN_MENU -> R.id.nav_dropdown_menu - CoreComponent.WHEEL -> R.id.nav_wheel - CoreComponent.IMAGE -> R.id.nav_image - CoreComponent.SCROLL_BAR -> R.id.nav_scrollbar - CoreComponent.SLIDER -> R.id.nav_slider - CoreComponent.LOADER -> R.id.nav_loader - CoreComponent.ACCORDION -> R.id.nav_accordion - CoreComponent.BUTTON_GROUP -> R.id.nav_button_group - CoreComponent.CODE_FIELD -> R.id.nav_code_field - CoreComponent.CODE_INPUT -> R.id.nav_code_input - CoreComponent.DRAWER -> R.id.nav_drawer - CoreComponent.TABS -> R.id.nav_tabs - CoreComponent.ICON_TABS -> R.id.nav_icon_tabs - CoreComponent.NOTE -> R.id.nav_note - CoreComponent.NOTE_COMPACT -> R.id.nav_note_compact - CoreComponent.PAGINATION_DOTS -> R.id.nav_pagination_dots - CoreComponent.TOOL_BAR -> R.id.nav_toolbar - CoreComponent.MASK -> R.id.nav_note_compact - CoreComponent.CAROUSEL -> R.id.nav_carousel - CoreComponent.AUTOCOMPLETE -> R.id.nav_autocomplete - CoreComponent.FILE -> R.id.nav_file - CoreComponent.NAVIGATION_BAR -> R.id.nav_navigation_bar - CoreComponent.EDITABLE -> R.id.nav_editable - CoreComponent.SELECT -> R.id.nav_select - else -> null - }?.let { it + hashCode() } -} - -@Suppress("CyclomaticComplexMethod", "LongMethod") -internal fun MenuItem.preview(context: Context, style: Int): View { - return when (this.componentKey.core) { - CoreComponent.AVATAR -> avatar(context, style, AvatarUiState()) - CoreComponent.AVATAR_GROUP -> avatarGroup(context, style, AvatarUiState()) - CoreComponent.BADGE -> badge(context, style, BadgeUiState()) - CoreComponent.ICON_BADGE -> iconBadge(context, style, BadgeUiState()) - CoreComponent.BASIC_BUTTON -> basicButton(context, style, ButtonUiState()) - CoreComponent.ICON_BUTTON -> iconButton(context, style, ButtonUiState()) - CoreComponent.LINK_BUTTON -> linkButton(context, style, ButtonUiState()) - CoreComponent.CELL -> cellLayout(context, style, CellUiState()).apply { - layoutParams = ViewGroup.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } - - CoreComponent.CHECKBOX -> checkBox(context, style, CheckBoxUiState()) - CoreComponent.CHECKBOX_GROUP -> checkBoxGroup(context, style, CheckBoxUiState()).apply { - layoutParams = ViewGroup.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } - - CoreComponent.CHIP -> chip(context, style, ChipUiState()) - CoreComponent.CHIP_GROUP -> chipGroup(context, style, state = ChipUiState(), colorState = previewColorState) - CoreComponent.COUNTER -> counter(context, style, CounterUiState()) - CoreComponent.INDICATOR -> indicator(context, style) - CoreComponent.PROGRESS -> progressBar(context, style, ProgressUiState()).apply { - layoutParams?.height = context.resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_3x) - } - - CoreComponent.RADIOBOX -> radioBox(context, style, RadioBoxUiState()) - CoreComponent.RADIOBOX_GROUP -> radioBoxGroup(context, style, RadioBoxUiState()).apply { - layoutParams = ViewGroup.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } - - CoreComponent.SWITCH -> switch(context, style, SwitchUiState()) - CoreComponent.TEXT_FIELD -> textField( - context, - style, - state = TextFieldUiState(), - colorState = previewColorState, - ) - - CoreComponent.TEXT_AREA -> textArea(context, style, state = TextFieldUiState(), colorState = previewColorState) - CoreComponent.SEGMENT -> segment(context, style, SegmentUiState()) - CoreComponent.SEGMENT_ITEM -> segmentItem(context, style, SegmentUiState()) - CoreComponent.FLOW -> flowLayout(context, style, FlowUiState()).apply { - layoutParams = ViewGroup.LayoutParams( - ViewGroup.LayoutParams.WRAP_CONTENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } - - CoreComponent.CARD -> card(context, style, CardUiState()) - CoreComponent.DIVIDER -> divider(context, style).apply { - layoutParams = ViewGroup.LayoutParams( - context.resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - } - - CoreComponent.NAVIGATION_DRAWER -> navigationDrawer(context, style, NavigationDrawerUiState()) - CoreComponent.CIRCULAR_PROGRESS -> circularProgressBar(context, style, CircularProgressUiState()) - CoreComponent.POPOVER -> popoverWithTrigger(context, style).trigger - CoreComponent.TOOLTIP -> tooltipWithTrigger(context, style).trigger - CoreComponent.OVERLAY -> overlayWithTrigger(context, style) - CoreComponent.TOAST -> toastTrigger(context, style) - CoreComponent.MODAL -> modalTrigger(context, style) - CoreComponent.NOTIFICATION -> notificationTrigger(context, style) - CoreComponent.NOTIFICATION_CONTENT -> notificationContent(context, style) - CoreComponent.RECT_SKELETON -> rectSkeleton(context, style) - CoreComponent.TEXT_SKELETON -> textSkeleton(context, style) - CoreComponent.LIST -> listView(context, style) - CoreComponent.DROPDOWN_MENU -> dropdownMenuTrigger(context, style).trigger - CoreComponent.WHEEL -> wheel(context, style) - CoreComponent.IMAGE -> image(context, style) - CoreComponent.SCROLL_BAR -> scrollBar(context, style) - CoreComponent.SLIDER -> slider(context, style) - CoreComponent.SPINNER -> spinner(context, style) - CoreComponent.LOADER -> loader(context, style) - CoreComponent.ACCORDION -> accordion(context, style) - CoreComponent.DRAWER -> drawer(context, style) - CoreComponent.CODE_FIELD -> codeField(context, style) - CoreComponent.CODE_INPUT -> codeInput(context, style) - CoreComponent.BUTTON_GROUP -> { - if (componentKey.value.contains("Icon")) { - buttonGroup(context, style, iconButton = true) - } else { - buttonGroup(context, style) - } - } - - CoreComponent.TABS -> tabs(context, style) - CoreComponent.ICON_TABS -> iconTabs(context, style) - CoreComponent.NOTE -> note(context, style) - CoreComponent.NOTE_COMPACT -> noteCompact(context, style) - CoreComponent.PAGINATION_DOTS -> paginationDots(context, style) - CoreComponent.TOOL_BAR -> toolBar(context, style) - CoreComponent.MASK -> maskedTextField(context, style) - CoreComponent.CAROUSEL -> carousel(context, style) - CoreComponent.AUTOCOMPLETE -> autocomplete(context, style) - CoreComponent.FILE -> file(context, style) - CoreComponent.NAVIGATION_BAR -> navigationBar(context, style) - CoreComponent.EDITABLE -> editable(context, style) - CoreComponent.SELECT -> select(context, style) - else -> throw NoSuchElementException("Component not implemented") - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Properties.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Properties.kt deleted file mode 100644 index 394bbe80f0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/Properties.kt +++ /dev/null @@ -1,70 +0,0 @@ -@file:Suppress("ConstPropertyName") - -package com.sdds.playground.sandbox.core.vs - -/** - * Создает экземпляр [Property.SingleChoiceProperty] для свойства с заданным типом [E] - * @param name название свойства - * @param value значение свойства - */ -internal inline fun > enumProperty( - name: String, - value: E, -): Property.SingleChoiceProperty { - val values = enumValues() - return Property.SingleChoiceProperty( - name, - value.name, - values.map { it.name }.toList(), - ) -} - -/** - * Базовый класс свойства - */ -internal sealed class Property { - - /** - * Название свойства - */ - abstract val name: String - - /** - * Значение свойства - */ - abstract val value: Value - - /** - * Свойство с вариантом выбора - * @property variants множество вариантов - */ - data class SingleChoiceProperty( - override val name: String, - override val value: String, - val variants: List, - ) : Property() - - /** - * Свойство типа [Boolean] - */ - data class BooleanProperty( - override val name: String, - override val value: Boolean, - ) : Property() - - /** - * Свойство типа [String] - */ - data class StringProperty( - override val name: String, - override val value: String, - ) : Property() - - /** - * Свойство типа [Int] - */ - data class IntProperty( - override val name: String, - override val value: Int, - ) : Property() -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesAdapter.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesAdapter.kt deleted file mode 100644 index 7046d74343..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesAdapter.kt +++ /dev/null @@ -1,221 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import androidx.recyclerview.widget.DiffUtil -import androidx.recyclerview.widget.RecyclerView -import com.sdds.playground.sandbox.databinding.LayoutSwitchPropertyItemBinding -import com.sdds.playground.sandbox.databinding.LayoutValuePropertyItemBinding - -/** - * [RecyclerView.Adapter] для списка свойств компонентов - * @author Малышев Александр on 01.08.2024 - */ -internal class PropertiesAdapter : RecyclerView.Adapter>>() { - - private val properties = mutableListOf>() - - private var interactionListener: InteractionListener? = null - - /** - * Слушатель взаимодействий со списком свойств - */ - fun interface InteractionListener { - - /** - * Выбор свойства [property] - */ - fun onSelect(property: Property<*>) - } - - /** - * Обновляет список свойств - * @param properties новый список свойств - */ - fun updateProperties(properties: List>) { - val diffCallback = PropertiesDiffUtilCallback(this.properties, properties) - val diffResult = DiffUtil.calculateDiff(diffCallback) - this.properties.clear() - this.properties.addAll(properties) - diffResult.dispatchUpdatesTo(this) - } - - /** - * Устанавливает слушатель взаимодействий [interactionListener] - * @see InteractionListener - */ - fun setInteractionListener(interactionListener: InteractionListener?) { - this.interactionListener = interactionListener - } - - override fun getItemViewType(position: Int): Int { - return ViewHolderFactory.getItemViewType(properties[position]) - } - - @Suppress("UNCHECKED_CAST") - override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): PropertyHolder> { - return ViewHolderFactory.createHolder(parent, viewType) as PropertyHolder> - } - - override fun getItemCount(): Int = properties.size - - override fun onBindViewHolder(holder: PropertyHolder>, position: Int) { - val property = properties[position] - holder.bind(property, interactionListener) - } - - override fun onViewRecycled(holder: PropertyHolder>) { - super.onViewRecycled(holder) - holder.unbind() - } - - abstract class PropertyHolder>(itemView: View) : RecyclerView.ViewHolder(itemView) { - - open fun bind(property: T, interactionListener: InteractionListener?) { - itemView.setOnClickListener { interactionListener?.onSelect(property) } - } - - open fun unbind() { - itemView.setOnClickListener(null) - } - } - - class SingleChoicePropertyHolder( - private val binding: LayoutValuePropertyItemBinding, - ) : PropertyHolder(binding.root) { - - init { - binding.propertyValue.setCompoundDrawablesRelativeWithIntrinsicBounds( - 0, - 0, - com.sdds.icons.R.drawable.ic_disclosure_right_outline_16, - 0, - ) - } - - override fun bind(property: Property.SingleChoiceProperty, interactionListener: InteractionListener?) { - super.bind(property, interactionListener) - binding.apply { - propertyName.text = property.name - propertyValue.text = property.value - } - } - } - - class StringPropertyHolder( - private val binding: LayoutValuePropertyItemBinding, - ) : PropertyHolder(binding.root) { - - init { - binding.propertyValue.setCompoundDrawablesRelativeWithIntrinsicBounds( - 0, - 0, - com.sdds.icons.R.drawable.ic_keyboard_outline_16, - 0, - ) - } - - override fun bind(property: Property.StringProperty, interactionListener: InteractionListener?) { - super.bind(property, interactionListener) - binding.apply { - propertyName.text = property.name - propertyValue.text = property.value - root.setOnClickListener { interactionListener?.onSelect(property) } - } - } - } - - class IntPropertyHolder( - private val binding: LayoutValuePropertyItemBinding, - ) : PropertyHolder(binding.root) { - - init { - binding.propertyValue.setCompoundDrawablesRelativeWithIntrinsicBounds( - 0, - 0, - com.sdds.icons.R.drawable.ic_keyboard_outline_16, - 0, - ) - } - - @Suppress("SetTextI18n") - override fun bind(property: Property.IntProperty, interactionListener: InteractionListener?) { - super.bind(property, interactionListener) - binding.apply { - propertyName.text = property.name - propertyValue.text = property.value.toString() - root.setOnClickListener { interactionListener?.onSelect(property) } - } - } - } - - class SwitchPropertyHolder( - private val binding: LayoutSwitchPropertyItemBinding, - ) : PropertyHolder(binding.root) { - - override fun bind(property: Property.BooleanProperty, interactionListener: InteractionListener?) { - super.bind(property, interactionListener) - binding.apply { - propertyName.text = property.name - propertySwitch.isChecked = property.value - root.setOnClickListener { interactionListener?.onSelect(property) } - } - } - } -} - -private class PropertiesDiffUtilCallback( - private val old: List>, - private val new: List>, -) : DiffUtil.Callback() { - override fun getOldListSize(): Int = old.size - - override fun getNewListSize(): Int = new.size - - override fun areItemsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean { - return old[oldItemPosition].name == new[newItemPosition].name - } - - override fun areContentsTheSame(oldItemPosition: Int, newItemPosition: Int): Boolean { - return old[oldItemPosition] == new[newItemPosition] - } -} - -private object ViewHolderFactory { - - const val VIEW_TYPE_SINGLE_CHOICE_PROPERTY = 1 - const val VIEW_TYPE_STRING_PROPERTY = 2 - const val VIEW_TYPE_INT_PROPERTY = 3 - const val VIEW_TYPE_SWITCH_PROPERTY = 4 - - fun getItemViewType(property: Property<*>): Int { - return when (property) { - is Property.BooleanProperty -> VIEW_TYPE_SWITCH_PROPERTY - is Property.IntProperty -> VIEW_TYPE_INT_PROPERTY - is Property.SingleChoiceProperty -> VIEW_TYPE_SINGLE_CHOICE_PROPERTY - is Property.StringProperty -> VIEW_TYPE_STRING_PROPERTY - } - } - - fun createHolder(parent: ViewGroup, viewType: Int): PropertiesAdapter.PropertyHolder<*> = - when (viewType) { - VIEW_TYPE_SINGLE_CHOICE_PROPERTY -> PropertiesAdapter.SingleChoicePropertyHolder( - LayoutValuePropertyItemBinding.inflate(LayoutInflater.from(parent.context), parent, false), - ) - - VIEW_TYPE_STRING_PROPERTY -> PropertiesAdapter.StringPropertyHolder( - LayoutValuePropertyItemBinding.inflate(LayoutInflater.from(parent.context), parent, false), - ) - - VIEW_TYPE_INT_PROPERTY -> PropertiesAdapter.IntPropertyHolder( - LayoutValuePropertyItemBinding.inflate(LayoutInflater.from(parent.context), parent, false), - ) - - VIEW_TYPE_SWITCH_PROPERTY -> PropertiesAdapter.SwitchPropertyHolder( - LayoutSwitchPropertyItemBinding.inflate(LayoutInflater.from(parent.context), parent, false), - ) - - else -> throw IllegalArgumentException("Unknown viewType = $viewType") - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesFragment.kt deleted file mode 100644 index debf2412ae..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesFragment.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.os.Bundle -import android.view.LayoutInflater -import android.view.View -import android.view.ViewGroup -import androidx.core.view.ViewCompat -import androidx.core.view.WindowInsetsCompat -import androidx.core.view.updatePadding -import androidx.fragment.app.Fragment -import androidx.fragment.app.viewModels -import androidx.lifecycle.Lifecycle -import androidx.lifecycle.flowWithLifecycle -import androidx.lifecycle.lifecycleScope -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.databinding.FragmentComponentPropsBinding -import kotlinx.coroutines.flow.launchIn -import kotlinx.coroutines.flow.onEach - -internal class PropertiesFragment : Fragment(), PropertiesAdapter.InteractionListener { - - private val propertiesAdapter: PropertiesAdapter = PropertiesAdapter() - private var _binding: FragmentComponentPropsBinding? = null - private val _componentViewModel: ComponentViewModel<*> by viewModels({ requireParentFragment() }) - - override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View { - return FragmentComponentPropsBinding.inflate(inflater, container, false) - .apply { - propertiesRecyclerView.itemAnimator = null - propertiesRecyclerView.adapter = propertiesAdapter - propertiesRecyclerView.addItemDecoration( - VerticalSpaceBetweenDecorator(resources.getDimensionPixelSize(R.dimen.sandbox_properties_spacing)), - ) - propertiesAdapter.setInteractionListener(this@PropertiesFragment) - header.propertyValueReset.setOnClickListener { _componentViewModel.resetToDefault() } - header.headerTitle.text = _componentViewModel.componentKey.value - header.headerLabel.text = _componentViewModel.componentKey.group.displayName - } - .also { _binding = it } - .root - } - - override fun onViewCreated(view: View, savedInstanceState: Bundle?) { - super.onViewCreated(view, savedInstanceState) - _componentViewModel.properties - .flowWithLifecycle(lifecycle, Lifecycle.State.RESUMED) - .onEach { propertiesAdapter.updateProperties(it) } - .launchIn(viewLifecycleOwner.lifecycleScope) - - ViewCompat.setOnApplyWindowInsetsListener(view) { v, insets -> - v.updatePadding( - bottom = insets.getInsets(WindowInsetsCompat.Type.systemBars()).bottom, - ) - insets - } - } - - override fun onDestroyView() { - super.onDestroyView() - propertiesAdapter.setInteractionListener(null) - _binding?.propertiesRecyclerView?.adapter = null - _binding = null - } - - override fun onSelect(property: Property<*>) { - if (property is Property.BooleanProperty) { - _componentViewModel.updateProperty( - property.name, - !property.value, - ) - return - } - _componentViewModel.sendEditPropertyRequest(property) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesOwner.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesOwner.kt deleted file mode 100644 index db840c68c7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/PropertiesOwner.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import kotlinx.coroutines.flow.StateFlow - -/** - * Интерфейс владельца редактируемыми свойствами - */ -internal interface PropertiesOwner { - - /** - * Список свойств - */ - val properties: StateFlow>> - - /** - * Обновляет значение [value] свойства с названием [name] - */ - fun updateProperty(name: String, value: Any?) - - /** - * Отправляет запрос на редактирование свойства [property] - */ - fun sendEditPropertyRequest(property: Property<*>) - - /** - * Сбрасывает свойства к значениям по умолчанию - */ - fun resetToDefault() -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/SandboxActivity.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/SandboxActivity.kt deleted file mode 100644 index 5e31b4439d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/SandboxActivity.kt +++ /dev/null @@ -1,113 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.os.Bundle -import android.view.View -import androidx.activity.viewModels -import androidx.appcompat.app.AppCompatActivity -import androidx.core.view.ViewCompat -import androidx.core.view.WindowCompat -import androidx.core.view.WindowInsetsCompat -import androidx.core.view.updatePadding -import androidx.fragment.app.Fragment -import androidx.lifecycle.flowWithLifecycle -import androidx.lifecycle.lifecycleScope -import androidx.navigation.NavController -import androidx.navigation.createGraph -import androidx.navigation.findNavController -import androidx.navigation.fragment.fragment -import androidx.navigation.ui.AppBarConfiguration -import androidx.navigation.ui.navigateUp -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.databinding.MainActivityBinding -import kotlinx.coroutines.flow.filter -import kotlinx.coroutines.flow.launchIn -import kotlinx.coroutines.flow.onEach - -/** - * Активити демо-приложения на View-System - */ -class SandboxActivity : AppCompatActivity() { - - private lateinit var appBarConfiguration: AppBarConfiguration - private lateinit var binding: MainActivityBinding - - private val componentListViewModel: ComponentListViewModel by viewModels() - - override fun onCreate(savedInstanceState: Bundle?) { - super.onCreate(savedInstanceState) - WindowCompat.setDecorFitsSystemWindows(window, false) - binding = MainActivityBinding.inflate(layoutInflater) - setContentView(binding.root) - setUpFullscreen(binding.root) - val navController = findNavController(R.id.nav_host_fragment_content_main) - intent.extras?.let { extra -> - val destinationId = extra.getInt(DESTINATION_ID_ARG, R.id.nav_basic_button) - val bundle = extra.getBundle(ComponentFragment.DESTINATION_MESSAGE_ARG) - navController.navigate(destinationId, bundle) - } - - componentListViewModel.componentItems - .flowWithLifecycle(lifecycle) - .filter { it.isNotEmpty() } - .onEach { updateNavigation(it, navController) } - .launchIn(lifecycleScope) - } - - private fun updateNavigation(menuItems: List, navController: NavController) { - if (binding.navView == null) { - createComponentListNavigation(menuItems, navController) - } else { - createSideMenuNavigation(menuItems, navController) - } - } - - private fun createSideMenuNavigation(menuItems: List, navController: NavController) { - val startDestination = menuItems.first() - val graph = navController.createGraph(startDestination = startDestination.id) { - menuItems.forEach { - val builder = it.destination.builder - this.builder(it) - } - } - navController.setGraph(graph, startDestination.componentKeyBundle) - } - - private fun createComponentListNavigation(menuItems: List, navController: NavController) { - navController.graph = navController.createGraph(startDestination = R.id.nav_components_list) { - fragment(R.id.nav_components_list) - menuItems.forEach { - val builder = it.destination.builder - this.builder(it) - } - } - } - - override fun onSupportNavigateUp(): Boolean { - val navController = findNavController(R.id.nav_host_fragment_content_main) - return navController.navigateUp(appBarConfiguration) || super.onSupportNavigateUp() - } - - private fun setUpFullscreen(root: View) { - ViewCompat.setOnApplyWindowInsetsListener(root) { v, insets -> - val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars()) - v.updatePadding( - top = systemBars.top, - bottom = systemBars.bottom, - left = systemBars.left, - right = systemBars.right, - ) - insets - } - } - - companion object { - /** - * Идентификатор начального экрана - */ - const val DESTINATION_ID_ARG = "DESTINATION_ID_ARG" - } -} - -internal fun Fragment.findMainNavController(): NavController { - return requireActivity().findNavController(R.id.nav_host_fragment_content_main) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ThemeSwitcher.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ThemeSwitcher.kt deleted file mode 100644 index 232c26aca0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/ThemeSwitcher.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.content.Context -import android.view.View -import com.sdds.playground.sandbox.Theme -import com.sdds.playground.sandbox.allViewThemes -import com.sdds.playground.sandbox.core.ThemeManager -import com.sdds.uikit.DropdownMenu -import com.sdds.uikit.ListItem -import com.sdds.uikit.SimpleListViewAdapter - -internal class ThemeSwitcher( - context: Context, - private val themeManager: ThemeManager = ThemeManager, -) : DropdownMenu(context) { - - init { - isFocusable = true - itemAdapter = SimpleListViewAdapter().apply { - setSelectionListener { item -> - themeManager.updateTheme(Theme.valueOf(item.title)) - dismiss() - } - } - setItems( - allViewThemes.mapIndexed { index, theme -> - ListItem.simpleItem(index.toLong(), theme.name, hasDisclosure = false) - }, - ) - } - - fun show(anchor: View) { - minWidth = anchor.measuredWidth - showWithTrigger( - anchor, - placementMode = PLACEMENT_MODE_STRICT, - placement = PLACEMENT_BOTTOM, - alignment = ALIGNMENT_START, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/VerticalSpaceBetweenDecorator.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/VerticalSpaceBetweenDecorator.kt deleted file mode 100644 index 5fb1fff68a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/core/vs/VerticalSpaceBetweenDecorator.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.core.vs - -import android.graphics.Rect -import android.view.View -import androidx.recyclerview.widget.RecyclerView - -internal class VerticalSpaceBetweenDecorator(private val spacing: Int) : RecyclerView.ItemDecoration() { - - override fun getItemOffsets(outRect: Rect, view: View, parent: RecyclerView, state: RecyclerView.State) { - val position = parent.getChildLayoutPosition(view) - if (position < state.itemCount - 1) { - outRect.bottom = spacing - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterParametersViewModel.kt deleted file mode 100644 index b4e8cf87b5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterParametersViewModel.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.counter.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CounterStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Counter - */ -internal class CounterParametersViewModel( - defaultState: CounterUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateCount(text: String) { - internalUiState.value = internalUiState.value.copy(count = text) - } - - override fun CounterUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "count", - value = count, - onApply = { updateCount(it) }, - ), - ) - } -} - -/** - * Фабрика [CounterParametersViewModel] - */ -internal class CounterParametersViewModelFactory( - private val defaultState: CounterUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CounterParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterScreen.kt deleted file mode 100644 index ad1cf173f5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterScreen.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.playground.sandbox.counter.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Counter -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [Counter] - */ -@Composable -internal fun CounterScreen(componentKey: ComponentKey = ComponentKey.Counter) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CounterParametersViewModelFactory(CounterUiState(), componentKey), - key = componentKey.toString(), - ), - component = { counterUiState, style -> - Counter( - style = style, - count = counterUiState.count, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun CounterScreenPreview() { - SandboxTheme { - CounterScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterUiState.kt deleted file mode 100644 index e158a557b6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/compose/CounterUiState.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.counter.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние Counter - * @property count текст - */ -internal data class CounterUiState( - override val variant: String = "", - override val appearance: String = "", - val count: String = "1", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterFragment.kt deleted file mode 100644 index 07aaad1020..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterFragment.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.counter.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Counter -import com.sdds.uikit.fixtures.stories.counter.CounterUiState -import com.sdds.uikit.fixtures.stories.counter.applyState -import com.sdds.uikit.fixtures.stories.counter.counter - -/** - * Фрагмент с компонентом Counter - */ -internal class CounterFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CounterParametersViewModelFactory( - defaultState = getState { CounterUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Counter { - return counter(contextWrapper) - } - - override fun onComponentUpdate(component: Counter?, state: CounterUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterParametersViewModel.kt deleted file mode 100644 index b3dc70bc89..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/counter/vs/CounterParametersViewModel.kt +++ /dev/null @@ -1,70 +0,0 @@ -package com.sdds.playground.sandbox.counter.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.counter.CounterUiState - -/** - * ViewModel для экрана с компонентом Counter - * @param defaultState состояние по-умолчанию - */ -internal class CounterParametersViewModel( - defaultState: CounterUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = CounterPropertyName.values().associateBy { name -> name.value } - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - CounterPropertyName.Count -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(count = valueString) - } else { - currentState - } - - CounterPropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - } - } - - override fun CounterUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = CounterPropertyName.Count.value, - value = count, - ), - Property.BooleanProperty( - name = CounterPropertyName.Enabled.value, - value = enabled, - ), - ) - } - - private enum class CounterPropertyName(val value: String) { - Count("count"), - Enabled("enabled"), - } -} - -/** - * Фабрика [CounterParametersViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class CounterParametersViewModelFactory( - private val defaultState: CounterUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CounterParametersViewModel(defaultState = defaultState, componentKey = componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerScreen.kt deleted file mode 100644 index 5efcd972ed..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerScreen.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.divider.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Divider -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Divider] - */ -@Composable -internal fun DividerScreen(componentKey: ComponentKey = ComponentKey.Divider) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = DividerViewModelFactory(DividerUiState(), componentKey), - key = componentKey.toString(), - ), - component = { _, style -> - Divider( - style = style, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun DividerPreview() { - SandboxTheme { - DividerScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerUiState.kt deleted file mode 100644 index 052aff68aa..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerUiState.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.divider.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Divider - * @property variant вариант компонента - */ -internal data class DividerUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerViewModel.kt deleted file mode 100644 index 731c35ebdb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/compose/DividerViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.divider.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.DividerStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Divider - */ -internal class DividerViewModel( - defaultState: DividerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun DividerUiState.toProps(): List> { - return emptyList() - } -} - -internal class DividerViewModelFactory( - private val defaultState: DividerUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DividerViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerFragment.kt deleted file mode 100644 index 34495b3f9b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerFragment.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.divider.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Divider -import com.sdds.uikit.fixtures.stories.divider.DividerUiState -import com.sdds.uikit.fixtures.stories.divider.divider - -/** - * Фрагмент с компонентом Divider - */ -internal class DividerFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - DividerViewModelFactory( - defaultState = getState { DividerUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): Divider { - return divider(contextWrapper) - } - - override fun onComponentUpdate(component: Divider?, state: DividerUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerViewModel.kt deleted file mode 100644 index 5d6d2bbaa3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/divider/vs/DividerViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.divider.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.divider.DividerUiState - -/** - * ViewModel компонента Divider - */ -internal class DividerViewModel( - defaultState: DividerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun DividerUiState.toProps() = emptyList>() -} - -internal class DividerViewModelFactory( - private val defaultState: DividerUiState = DividerUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DividerViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerScreen.kt deleted file mode 100644 index 557ce2c3b1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerScreen.kt +++ /dev/null @@ -1,189 +0,0 @@ -package com.sdds.playground.sandbox.drawer.compose - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.heightIn -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.rememberCoroutineScope -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Drawer -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.DrawerValue -import com.sdds.compose.uikit.List -import com.sdds.compose.uikit.ListItem -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.LocalListItemStyle -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.fs.focusSelector -import com.sdds.compose.uikit.rememberDrawerState -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.compose.focusableItem -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import kotlinx.coroutines.launch - -/** - * Экран с [Drawer] - */ -@Composable -internal fun DrawerScreen(componentKey: ComponentKey = ComponentKey.Drawer) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = DrawerViewModelFactory(DrawerUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - val drawerState = rememberDrawerState( - initialValue = DrawerValue.Closed, - alignment = uiState.alignment, - ) - val scope = rememberCoroutineScope() - - Drawer( - drawerState = drawerState, - style = style, - closeIconAlignment = uiState.closeIconAlignment, - closeIconAbsolute = uiState.closeIconAbsolute, - peekOffset = (56.dp).takeIf { uiState.hasPeekOffset } ?: 0.dp, - overlayEnabled = uiState.hasOverlay, - gesturesEnabled = uiState.gesturesEnabled, - moveContentEnabled = uiState.moveContentEnabled, - drawerHeader = if (uiState.header) { - { Header() } - } else { - null - }, - drawerFooter = if (uiState.footer) { - { Footer() } - } else { - null - }, - drawerContent = { Body() }, - ) { - Button( - label = "Показать Drawer", - modifier = Modifier.align(Alignment.Center), - onClick = { - scope.launch { - drawerState.open() - } - }, - ) - } - }, - ) -} - -@Composable -private fun Header() { - Box( - Modifier - .fillMaxWidth() - .heightIn(min = 30.dp), - ) { - Text("Header", modifier = Modifier.align(Alignment.CenterStart)) - } -} - -@Composable -private fun Footer() { - Box( - Modifier - .fillMaxWidth() - .heightIn(min = 30.dp), - ) { - Text("Footer", modifier = Modifier.align(Alignment.CenterStart)) - } -} - -@Composable -private fun Body() { - List { - items(20) { - var isFocused by remember { mutableStateOf(false) } - ListItem( - text = "item $it", - style = DrawerListItemStyle, - modifier = Modifier - .fillMaxWidth() - .focusableItem { focus -> isFocused = focus.isFocused } - .focusSelector( - settings = LocalFocusSelectorSettings.current, - isFocused = { isFocused }, - ), - ) - } - } -} - -private val DrawerListItemStyle: ListItemStyle - @Composable - get() { - val current = LocalListItemStyle.current - return ListItemStyle.builder() - .titleStyle(current.titleStyle) - .shape(current.shape) - .apply { current.disclosureIconRes?.let { disclosureIcon(it) } } - .dimensions { - paddingStart(0.dp) - paddingEnd(0.dp) - paddingTop(current.dimensions.paddingTop) - paddingBottom(current.dimensions.paddingBottom) - contentPaddingEnd(current.dimensions.contentPaddingEnd) - height(current.dimensions.height) - } - .colors { - titleColor(current.colors.titleColor) - backgroundColor(current.colors.backgroundColor) - } - .style() - } - -@Preview(showBackground = true) -@Composable -private fun DrawerScreenPreview() { - SandboxTheme { - DrawerScreen() - } -} - -@Composable -internal fun DrawerPreview(style: DrawerStyle) { - val drawerState = rememberDrawerState( - initialValue = DrawerValue.Closed, - ) - val scope = rememberCoroutineScope() - - Drawer( - drawerState = drawerState, - style = style, - drawerContent = { - List { - items(3) { - ListItem(text = "item $it") - } - } - }, - ) { - Button( - label = "Показать Drawer", - modifier = Modifier.align(Alignment.Center), - onClick = { - scope.launch { - drawerState.open() - } - }, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerUiState.kt deleted file mode 100644 index ea9c1b3efd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.drawer.compose - -import com.sdds.compose.uikit.CloseIconAlignment -import com.sdds.compose.uikit.DrawerAlignment -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние BottomSheet - */ -internal data class DrawerUiState( - override val variant: String = "", - override val appearance: String = "", - val alignment: DrawerAlignment = DrawerAlignment.Bottom, - val closeIconAlignment: CloseIconAlignment = CloseIconAlignment.End, - val closeIconAbsolute: Boolean = false, - val header: Boolean = false, - val footer: Boolean = false, - val hasOverlay: Boolean = true, - val hasPeekOffset: Boolean = false, - val gesturesEnabled: Boolean = true, - val moveContentEnabled: Boolean = false, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerViewModel.kt deleted file mode 100644 index ca82ade2ba..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/compose/DrawerViewModel.kt +++ /dev/null @@ -1,139 +0,0 @@ -package com.sdds.playground.sandbox.drawer.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CloseIconAlignment -import com.sdds.compose.uikit.DrawerAlignment -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.playground.sandbox.bottomsheet.compose.BottomSheetParametersViewModel -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Drawer - */ -internal class DrawerViewModel( - defaultState: DrawerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun DrawerUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = "alignment", - value = alignment, - onApply = { updateAlignment(it) }, - ), - enumProperty( - name = "closeIconAlignment", - value = closeIconAlignment, - onApply = { updateCloseIconAlignment(it) }, - ), - Property.BooleanProperty( - name = "closeIconAbsolute", - value = closeIconAbsolute, - onApply = { updateCloseIconAbsolute(it) }, - ), - Property.BooleanProperty( - name = "header", - value = header, - onApply = { updateHeader(it) }, - ), - Property.BooleanProperty( - name = "footer", - value = footer, - onApply = { updateFooter(it) }, - ), - Property.BooleanProperty( - name = "hasOverlay", - value = hasOverlay, - onApply = { updateHasOverlay(it) }, - ), - Property.BooleanProperty( - name = "hasPeekOffset", - value = hasPeekOffset, - onApply = { updateHasPeekOffset(it) }, - ), - Property.BooleanProperty( - name = "gesturesEnabled", - value = gesturesEnabled, - onApply = { updateGesturesEnabled(it) }, - ), - Property.BooleanProperty( - name = "moveContentEnabled", - value = moveContentEnabled, - onApply = { updateMoveContentEnabled(it) }, - ), - ) - } - - private fun updateAlignment(alignment: DrawerAlignment) { - internalUiState.value = internalUiState.value.copy( - alignment = alignment, - ) - } - - private fun updateCloseIconAlignment(closeIconAlignment: CloseIconAlignment) { - internalUiState.value = internalUiState.value.copy( - closeIconAlignment = closeIconAlignment, - ) - } - - private fun updateCloseIconAbsolute(closeIconAbsolute: Boolean) { - internalUiState.value = internalUiState.value.copy( - closeIconAbsolute = closeIconAbsolute, - ) - } - - private fun updateHeader(header: Boolean) { - internalUiState.value = internalUiState.value.copy( - header = header, - ) - } - - private fun updateFooter(footer: Boolean) { - internalUiState.value = internalUiState.value.copy( - footer = footer, - ) - } - - private fun updateHasOverlay(hasOverlay: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasOverlay = hasOverlay, - ) - } - - private fun updateHasPeekOffset(hasPeekOffset: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasPeekOffset = hasPeekOffset, - ) - } - - private fun updateGesturesEnabled(gesturesEnabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - gesturesEnabled = gesturesEnabled, - ) - } - - private fun updateMoveContentEnabled(moveContentEnabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - moveContentEnabled = moveContentEnabled, - ) - } -} - -/** - * Фабрика [BottomSheetParametersViewModel] - */ -internal class DrawerViewModelFactory( - private val defaultState: DrawerUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DrawerViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerFragment.kt deleted file mode 100644 index 9f23b9dfa4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.drawer.vs - -import android.view.ContextThemeWrapper -import android.view.View -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.DrawerLayout -import com.sdds.uikit.fixtures.R -import com.sdds.uikit.fixtures.stories.drawer.DrawerUiState -import com.sdds.uikit.fixtures.stories.drawer.applyState -import com.sdds.uikit.fixtures.stories.drawer.drawer - -/** - * Фрагмент с компонентом Drawer - */ -internal class DrawerFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - DrawerViewModelFactory( - defaultState = getState { DrawerUiState() }, - componentKey = componentKey, - ) - } - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.MATCH_PARENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return drawer(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: DrawerUiState) { - component?.findViewById(R.id.drawer_layout)?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerViewModel.kt deleted file mode 100644 index 57d3ea46b5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/drawer/vs/DrawerViewModel.kt +++ /dev/null @@ -1,108 +0,0 @@ -package com.sdds.playground.sandbox.drawer.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.DrawerLayout -import com.sdds.uikit.fixtures.stories.drawer.CloseAlignment -import com.sdds.uikit.fixtures.stories.drawer.DrawerUiState - -/** - * ViewModel компонента Drawer - */ -internal class DrawerViewModel( - defaultState: DrawerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val currentState = internalUiState.value - internalUiState.value = when (name) { - DrawerProperty.HasOverlay.value -> - currentState.copy(hasOverlay = valueString.toBoolean()) - - DrawerProperty.CloseIconAlignment.value -> - currentState.copy(closeIconAlignment = CloseAlignment.valueOf(valueString)) - - DrawerProperty.Alignment.value -> - currentState.copy(alignment = DrawerLayout.DrawerPlacement.valueOf(valueString)) - - DrawerProperty.GesturesEnabled.value -> currentState.copy(gesturesEnabled = valueString.toBoolean()) - DrawerProperty.MoveContentEnabled.value -> currentState.copy(moveContentEnabled = valueString.toBoolean()) - DrawerProperty.HasPeekOffset.value -> currentState.copy(hasPeekOffset = valueString.toBoolean()) - DrawerProperty.Header.value -> currentState.copy(header = valueString.toBoolean()) - DrawerProperty.Footer.value -> currentState.copy(footer = valueString.toBoolean()) - DrawerProperty.Absolute.value -> currentState.copy(absoluteClosePlacement = valueString.toBoolean()) - else -> currentState - } - } - - override fun DrawerUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "hasOverlay", - value = hasOverlay, - ), - enumProperty( - name = "closeIconAlignment", - value = closeIconAlignment, - ), - enumProperty( - name = "alignment", - value = alignment, - ), - Property.BooleanProperty( - name = "gesturesEnabled", - value = gesturesEnabled, - ), - Property.BooleanProperty( - name = "moveContentEnabled", - value = moveContentEnabled, - ), - Property.BooleanProperty( - name = "hasPeekOffset", - value = hasPeekOffset, - ), - Property.BooleanProperty( - name = "header", - value = header, - ), - Property.BooleanProperty( - name = "footer", - value = footer, - ), - Property.BooleanProperty( - name = "absoluteClosePlacement", - value = absoluteClosePlacement, - ), - ) - } - - private enum class DrawerProperty(val value: String) { - HasOverlay("hasOverlay"), - CloseIconAlignment("closeIconAlignment"), - Alignment("alignment"), - GesturesEnabled("gesturesEnabled"), - MoveContentEnabled("moveContentEnabled"), - HasPeekOffset("hasPeekOffset"), - Header("header"), - Footer("footer"), - Absolute("absoluteClosePlacement"), - } -} - -internal class DrawerViewModelFactory( - private val defaultState: DrawerUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DrawerViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuScreen.kt deleted file mode 100644 index 7a96933c0f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuScreen.kt +++ /dev/null @@ -1,125 +0,0 @@ -package com.sdds.playground.sandbox.dropdownmenu.compose - -import android.util.Log -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.widthIn -import androidx.compose.runtime.Composable -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Divider -import com.sdds.compose.uikit.DropdownMenu -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.List -import com.sdds.compose.uikit.ListItem -import com.sdds.compose.uikit.PopoverAlignment -import com.sdds.compose.uikit.PopoverPlacement -import com.sdds.compose.uikit.PopoverPlacementMode -import com.sdds.compose.uikit.TriggerInfo -import com.sdds.compose.uikit.popoverTrigger -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.popover.compose.toAlignment - -/** - * Экран с компонентом [DropdownMenu] - */ -@Composable -internal fun DropdownMenuScreen(componentKey: ComponentKey = ComponentKey.DropdownMenu) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = DropdownMenuViewModelFactory( - defaultState = DropdownMenuUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { dropdownMenuUiState, style -> - Box( - Modifier.fillMaxSize(), - contentAlignment = dropdownMenuUiState.triggerPlacement.toAlignment(), - ) { - val showDropdownMenu = remember { mutableStateOf(false) } - val triggerInfo = remember { mutableStateOf(TriggerInfo()) } - Button( - modifier = Modifier.popoverTrigger(triggerInfo), - label = "show", - onClick = { showDropdownMenu.value = true }, - ) - DropdownMenu( - opened = showDropdownMenu.value, - onDismissRequest = { - showDropdownMenu.value = false - }, - triggerInfo = triggerInfo.value, - placement = dropdownMenuUiState.placement, - placementMode = dropdownMenuUiState.placementMode, - alignment = dropdownMenuUiState.alignment, - style = style, - clipHeight = true, - clipWidth = true, - ) { - List(modifier = Modifier.widthIn(0.dp, 200.dp)) { - items(dropdownMenuUiState.amount) { - val interactionSource = remember { MutableInteractionSource() } - ListItem( - modifier = Modifier - .clickable(indication = null, interactionSource = interactionSource) { - Log.d("DropdownMenu", "${dropdownMenuUiState.itemTitle} $it pressed") - } - .fillMaxWidth(), - title = "${dropdownMenuUiState.itemTitle} $it", - disclosureEnabled = dropdownMenuUiState.hasDisclosure, - interactionSource = interactionSource, - ) - if (dropdownMenuUiState.itemDividerEnabled && it != dropdownMenuUiState.amount - 1) { - Divider() - } - } - } - } - } - }, - ) -} - -@Composable -internal fun DropdownMenuPreview(style: DropdownMenuStyle) { - val showDropdownMenu = remember { mutableStateOf(false) } - val triggerInfo = remember { mutableStateOf(TriggerInfo()) } - Button( - modifier = Modifier.popoverTrigger(triggerInfo), - label = "Show Dropdown", - onClick = { showDropdownMenu.value = true }, - ) - DropdownMenu( - opened = showDropdownMenu.value, - onDismissRequest = { - showDropdownMenu.value = false - }, - placement = PopoverPlacement.Bottom, - placementMode = PopoverPlacementMode.Strict, - alignment = PopoverAlignment.Center, - triggerInfo = triggerInfo.value, - style = style, - ) { - List(modifier = Modifier.width(200.dp)) { - items(3) { - ListItem( - modifier = Modifier.fillMaxWidth(), - text = "Item Title $it", - disclosureEnabled = true, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuUiState.kt deleted file mode 100644 index 87c34ae15b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuUiState.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.sdds.playground.sandbox.dropdownmenu.compose - -import com.sdds.compose.uikit.PopoverAlignment -import com.sdds.compose.uikit.PopoverPlacement -import com.sdds.compose.uikit.PopoverPlacementMode -import com.sdds.playground.sandbox.core.compose.UiState -import com.sdds.playground.sandbox.popover.compose.TriggerPlacement - -internal data class DropdownMenuUiState( - override val variant: String = "", - override val appearance: String = "", - val amount: Int = 3, - val itemTitle: String = "Item Title", - val hasDisclosure: Boolean = true, - val itemDividerEnabled: Boolean = false, - val placementMode: PopoverPlacementMode = PopoverPlacementMode.Loose, - val placement: PopoverPlacement = PopoverPlacement.Bottom, - val alignment: PopoverAlignment = PopoverAlignment.Center, - val triggerPlacement: TriggerPlacement = TriggerPlacement.Center, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuViewModel.kt deleted file mode 100644 index 9bd0bbbe83..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/compose/DropdownMenuViewModel.kt +++ /dev/null @@ -1,102 +0,0 @@ -package com.sdds.playground.sandbox.dropdownmenu.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента DropdownMenu - */ -internal class DropdownMenuViewModel( - defaultState: DropdownMenuUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun DropdownMenuUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { updateAmount(it) }, - ), - Property.StringProperty( - name = "itemTitle", - value = itemTitle, - onApply = { updateItemTitle(it) }, - ), - Property.BooleanProperty( - name = "hasDisclosure", - value = hasDisclosure, - onApply = { updateHasDisclosure(it) }, - ), - Property.BooleanProperty( - name = "itemDividerEnabled", - value = itemDividerEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy( - itemDividerEnabled = it, - ) - }, - ), - enumProperty( - name = "placementMode", - value = placementMode, - onApply = { - internalUiState.value = internalUiState.value.copy(placementMode = it) - }, - ), - enumProperty( - name = "placement", - value = placement, - onApply = { - internalUiState.value = internalUiState.value.copy(placement = it) - }, - ), - enumProperty( - name = "alignment", - value = alignment, - onApply = { - internalUiState.value = internalUiState.value.copy(alignment = it) - }, - ), - enumProperty( - name = "triggerAlignment", - value = triggerPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(triggerPlacement = it) - }, - ), - ) - } - - private fun updateAmount(amount: Int) { - internalUiState.value = internalUiState.value.copy( - amount = amount, - ) - } - - private fun updateItemTitle(itemTitle: String) { - internalUiState.value = internalUiState.value.copy( - itemTitle = itemTitle, - ) - } - - private fun updateHasDisclosure(hasDisclosure: Boolean) { - internalUiState.value = internalUiState.value.copy(hasDisclosure = hasDisclosure) - } -} - -internal class DropdownMenuViewModelFactory( - private val defaultState: DropdownMenuUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DropdownMenuViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuFragment.kt deleted file mode 100644 index b64906135d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuFragment.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.dropdownmenu.vs - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.View -import android.widget.FrameLayout -import androidx.core.view.updateMargins -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.fixtures.stories.dropdownmenu.DropdownMenuUiState -import com.sdds.uikit.fixtures.stories.dropdownmenu.dropdownMenuTrigger -import com.sdds.uikit.fixtures.stories.dropdownmenu.showWithState -import com.sdds.uikit.fixtures.stories.popover.toGravity - -internal class DropdownMenuFragment : ComponentFragment() { - - private var dropdownMenuState: DropdownMenuUiState = DropdownMenuUiState() - private var currentTriggerGravity: Int = Gravity.CENTER - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - DropdownMenuViewModelFactory( - defaultState = getState { DropdownMenuUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ).apply { - val margin = resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_3x) - updateMargins(margin, margin, margin, margin) - } - - override val defaultGravity: Int - get() = currentTriggerGravity - - override fun shouldRecreateComponentOnStateUpdate(state: DropdownMenuUiState): Boolean { - val newGravity = state.triggerAlignment.toGravity() - if (newGravity != currentTriggerGravity) { - currentTriggerGravity = newGravity - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return dropdownMenuTrigger(contextWrapper, state = dropdownMenuState) - .also { popoverTrigger -> - popoverTrigger.trigger.setOnClickListener { - popoverTrigger.popover.showWithState(it, dropdownMenuState) - } - }.trigger - } - - override fun onComponentUpdate(component: View?, state: DropdownMenuUiState) { - dropdownMenuState = state - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuViewModel.kt deleted file mode 100644 index cac85242b3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/dropdownmenu/vs/DropdownMenuViewModel.kt +++ /dev/null @@ -1,109 +0,0 @@ -package com.sdds.playground.sandbox.dropdownmenu.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.dropdownmenu.DropdownMenuUiState -import com.sdds.uikit.fixtures.stories.popover.PopoverAlignment -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacement -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacementMode -import com.sdds.uikit.fixtures.stories.popover.PopoverTriggerAlignment - -internal class DropdownMenuViewModel( - defaultState: DropdownMenuUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - override val colorVariantPropertyName: String - get() = "itemColorState" - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.ItemTitle -> currentState.copy(itemTitle = valueString) - PropertyName.HasDisclosure -> currentState.copy(hasDisclosure = valueString.toBoolean()) - PropertyName.ItemDividerEnabled -> currentState.copy(itemDividerEnabled = valueString.toBoolean()) - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - PropertyName.Placement -> currentState.copy(placement = PopoverPlacement.valueOf(valueString)) - PropertyName.PlacementMode -> currentState.copy( - placementMode = PopoverPlacementMode.valueOf(valueString), - ) - PropertyName.Alignment -> currentState.copy(alignment = PopoverAlignment.valueOf(valueString)) - PropertyName.TriggerAlignment -> currentState.copy( - triggerAlignment = PopoverTriggerAlignment.valueOf(valueString), - ) - } - } - - override fun DropdownMenuUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - Property.StringProperty( - name = PropertyName.ItemTitle.value, - value = itemTitle, - ), - Property.BooleanProperty( - name = PropertyName.HasDisclosure.value, - value = hasDisclosure, - ), - Property.BooleanProperty( - name = PropertyName.ItemDividerEnabled.value, - value = itemDividerEnabled, - ), - enumProperty( - name = PropertyName.PlacementMode.value, - value = placementMode, - ), - enumProperty( - name = PropertyName.Placement.value, - value = placement, - ), - enumProperty( - name = PropertyName.Alignment.value, - value = alignment, - ), - enumProperty( - name = PropertyName.TriggerAlignment.value, - value = triggerAlignment, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - ItemTitle("itemTitle"), - HasDisclosure("hasDisclosure"), - Placement("placement"), - PlacementMode("placementMode"), - Alignment("alignment"), - TriggerAlignment("triggerAlignment"), - ItemDividerEnabled("itemDividerEnabled"), - } -} - -internal class DropdownMenuViewModelFactory( - private val defaultState: DropdownMenuUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return DropdownMenuViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableSample.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableSample.kt deleted file mode 100644 index ca724b40ee..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableSample.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.editable.compose - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.TextRange -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.Editable -import com.sdds.compose.uikit.EditableIconPlacement -import com.sdds.compose.uikit.EditableStyle -import com.sdds.compose.uikit.Icon -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.theme.SddsServTheme - -@Composable -@Preview(showBackground = true) -private fun EditablePreview() { - SandboxTheme { - Box( - modifier = Modifier.fillMaxSize(), - contentAlignment = Alignment.Center, - ) { - var text by remember { mutableStateOf(TextFieldValue("Value")) } - val focusRequester = remember { FocusRequester() } - Editable( - modifier = Modifier.focusRequester(focusRequester), - style = EditableStyle.builder() - .textStyle(SddsServTheme.typography.headerH2Bold) - .colors { - textColor(Color.Black) - iconColor(Color.DarkGray) - cursorColor(Color.Cyan) - } - .dimensions { - iconSize(24.dp) - iconMargin(4.dp) - } - .style(), - value = text, - onValueChange = { text = it }, - iconPlacement = EditableIconPlacement.Relative, - icon = { - Icon( - modifier = Modifier.clickable( - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { - focusRequester.requestFocus() - text = text.copy(selection = TextRange(text.text.length)) - }, - painter = painterResource(R.drawable.ic_edit_fill_16), - contentDescription = "", - ) - }, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableScreen.kt deleted file mode 100644 index cb6dd1db67..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableScreen.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.playground.sandbox.editable.compose - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.saveable.rememberSaveable -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.focus.FocusRequester -import androidx.compose.ui.focus.focusRequester -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Editable -import com.sdds.compose.uikit.EditableStyle -import com.sdds.compose.uikit.Icon -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Editable] - */ -@Composable -internal fun EditableScreen(componentKey: ComponentKey = ComponentKey.Editable) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = EditableViewModelFactory( - defaultState = EditableUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { editableUiState, style -> - var text by rememberSaveable { mutableStateOf("Value") } - val focusRequester = remember { FocusRequester() } - Editable( - modifier = Modifier - .focusRequester(focusRequester), - style = style, - value = text, - onValueChange = { text = it }, - icon = { - Icon( - modifier = Modifier - .clickable( - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { - focusRequester.requestFocus() - }, - painter = painterResource(R.drawable.ic_edit_fill_36), - contentDescription = null, - ) - }, - iconPlacement = editableUiState.iconPlacement, - textAlign = editableUiState.textAlign.align, - singleLine = editableUiState.singleLine, - enabled = editableUiState.enabled, - readOnly = editableUiState.readonly, - ) - }, - ) -} - -@Composable -internal fun EditablePreview(style: EditableStyle) { - Editable( - style = style, - value = TextFieldValue("Value"), - onValueChange = {}, - singleLine = true, - icon = { - Icon( - painter = painterResource(R.drawable.ic_edit_fill_36), - contentDescription = null, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun EditableScreenPreview() { - SandboxTheme { - EditableScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableUiState.kt deleted file mode 100644 index 91aae53937..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.editable.compose - -import androidx.compose.ui.text.style.TextAlign -import com.sdds.compose.uikit.EditableIconPlacement -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class EditableUiState( - override val variant: String = "", - override val appearance: String = "", - val enabled: Boolean = true, - val singleLine: Boolean = true, - val readonly: Boolean = false, - val iconPlacement: EditableIconPlacement = EditableIconPlacement.Relative, - val textAlign: EditableTextAlign = EditableTextAlign.Start, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class EditableTextAlign(val align: TextAlign) { - Center(TextAlign.Center), - Start(TextAlign.Start), - End(TextAlign.End), -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableViewModel.kt deleted file mode 100644 index 6220822142..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/compose/EditableViewModel.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.sdds.playground.sandbox.editable.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.EditableStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Editable - */ -internal class EditableViewModel( - defaultState: EditableUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun EditableUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { internalUiState.value = internalUiState.value.copy(enabled = it) }, - ), - Property.BooleanProperty( - name = "readonly", - value = readonly, - onApply = { internalUiState.value = internalUiState.value.copy(readonly = it) }, - ), - Property.BooleanProperty( - name = "singleLine", - value = singleLine, - onApply = { internalUiState.value = internalUiState.value.copy(singleLine = it) }, - ), - enumProperty( - name = "iconPlacement", - value = iconPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(iconPlacement = it) - }, - ), - enumProperty( - name = "textAlign", - value = textAlign, - onApply = { - internalUiState.value = internalUiState.value.copy(textAlign = it) - }, - ), - ) - } -} - -internal class EditableViewModelFactory( - private val defaultState: EditableUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return EditableViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableFragment.kt deleted file mode 100644 index 30d9f64cac..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.editable.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Editable -import com.sdds.uikit.fixtures.stories.editable.EditableUiState -import com.sdds.uikit.fixtures.stories.editable.applyState -import com.sdds.uikit.fixtures.stories.editable.editable - -/** - * Фрагмент с компонентом Editable - */ -internal class EditableFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - EditableParametersViewModelFactory( - defaultState = getState { EditableUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Editable { - return editable(contextWrapper) - } - - override fun onComponentUpdate(component: Editable?, state: EditableUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableParametersViewModel.kt deleted file mode 100644 index 6c15bd8d0f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/editable/vs/EditableParametersViewModel.kt +++ /dev/null @@ -1,104 +0,0 @@ -package com.sdds.playground.sandbox.editable.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.editable.EditableUiState -import com.sdds.uikit.fixtures.stories.editable.IconPlacement -import com.sdds.uikit.fixtures.stories.editable.TextAlign - -/** - * ViewModel для экранов с компонентом Editable - */ -internal class EditableParametersViewModel( - defaultState: EditableUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - when (EditablePropertyName.entries.find { it.value == name }) { - EditablePropertyName.Enabled -> updateEnabled((value as? Boolean) == true) - EditablePropertyName.ReadOnly -> updateReadOnly((value as? Boolean) == true) - EditablePropertyName.SingleLine -> updateSingleLine((value as? Boolean) == true) - EditablePropertyName.IconPlacement -> updateIconPlacement( - IconPlacement.valueOf(value.toString()), - ) - EditablePropertyName.TextAlignment -> updateTextAlignment( - TextAlign.valueOf(value.toString()), - ) - else -> Unit - } - } - - private fun updateEnabled(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - private fun updateReadOnly(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy(readonly = readonly) - } - - private fun updateSingleLine(singleLine: Boolean) { - internalUiState.value = internalUiState.value.copy(singleLine = singleLine) - } - - private fun updateIconPlacement(iconPlacement: IconPlacement) { - internalUiState.value = internalUiState.value.copy(iconPlacement = iconPlacement) - } - - private fun updateTextAlignment(textAlignment: TextAlign) { - internalUiState.value = internalUiState.value.copy(textAlignment = textAlignment) - } - - override fun EditableUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = EditablePropertyName.Enabled.value, - value = enabled, - ), - - Property.BooleanProperty( - name = EditablePropertyName.SingleLine.value, - value = singleLine, - ), - Property.BooleanProperty( - name = EditablePropertyName.ReadOnly.value, - value = readonly, - ), - enumProperty( - name = EditablePropertyName.IconPlacement.value, - value = iconPlacement, - ), - enumProperty( - name = EditablePropertyName.TextAlignment.value, - value = textAlignment, - ), - ) - } - - private enum class EditablePropertyName(val value: String) { - Enabled("enabled"), - SingleLine("singleLine"), - ReadOnly("readOnly"), - IconPlacement("iconPlacement"), - TextAlignment("textAlignment"), - } -} - -/** - * Фабрика [EditableParametersViewModel] - */ -internal class EditableParametersViewModelFactory( - private val defaultState: EditableUiState = EditableUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return EditableParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileScreen.kt deleted file mode 100644 index b68f7fe4c6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileScreen.kt +++ /dev/null @@ -1,200 +0,0 @@ -package com.sdds.playground.sandbox.file.compose - -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.clip -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import coil.compose.AsyncImage -import com.sdds.compose.uikit.CircularProgressBar -import com.sdds.compose.uikit.File -import com.sdds.compose.uikit.FileActionPlacement -import com.sdds.compose.uikit.FileProgressPlacement -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.ProgressBar -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.circularprogressbar.CircularProgressBar -import com.sdds.serv.styles.circularprogressbar.Default -import com.sdds.serv.styles.circularprogressbar.Xs -import com.sdds.serv.styles.iconbutton.Clear -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.Xs -import com.sdds.serv.theme.SddsServTheme - -/** - * Экран с компонентом [File] - */ -@Composable -internal fun FileScreen(componentKey: ComponentKey = ComponentKey.File) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = FileViewModelFactory( - defaultState = FileUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { fileUiState, style -> - File( - modifier = Modifier.width(240.dp), - style = style, - label = fileUiState.label, - description = fileUiState.description, - isLoading = fileUiState.isLoading, - image = getImageContent(fileUiState), - progress = when (style.progressPlacement) { - FileProgressPlacement.Inner -> { - { - CircularProgressBar( - progress = 0.4f, - valueContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_16), - contentDescription = "", - ) - }, - ) - } - } - - FileProgressPlacement.Outer -> { - { ProgressBar(0.4f) } - } - }, - action = { - IconButton( - iconRes = R.drawable.ic_close_24, - onClick = {}, - ) - }, - actionPlacement = fileUiState.actionPlacement, - ) - }, - ) -} - -@Composable -private fun getImageContent(fileUiState: FileUiState): @Composable (() -> Unit)? = - if (fileUiState.hasContentStart) { - { - when (fileUiState.contentType) { - FileContentType.Icon -> Icon( - painterResource(R.drawable.ic_file_check_fill_36), - contentDescription = "", - ) - - FileContentType.Image -> AsyncImage( - modifier = Modifier - .size(36.dp) - .clip(RoundedCornerShape(6.dp)), - contentScale = ContentScale.Crop, - model = "https://cdn.costumewall.com/wp-content/uploads/2018/09/michael-scott.jpg", - contentDescription = "FileImage", - ) - } - } - } else { - null - } - -@Composable -internal fun FilePreview(style: FileStyle) { - File( - style = style, - label = "image.png", - description = "226 КБ", - isLoading = true, - image = { - Icon( - painterResource(R.drawable.ic_file_check_fill_36), - contentDescription = "", - ) - }, - progress = { - CircularProgressBar( - progress = 0.4f, - valueContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_16), - contentDescription = "", - ) - }, - ) - }, - action = { - IconButton( - iconRes = R.drawable.ic_close_36, - onClick = {}, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun FileScreenPreview() { - SandboxTheme { - FileScreen() - } -} - -@Composable -@Preview(showBackground = true) -private fun FilePreview() { - SandboxTheme { - File( - modifier = Modifier.fillMaxWidth(), - style = FileStyle.builder() - .colors { - iconColor(Color.Cyan) - descriptionColor(Color.Gray) - labelColor(Color.Black) - } - .dimensions { - descriptionPadding(2.dp) - startContentPadding(12.dp) - endContentPadding(12.dp) - bottomContentPadding(12.dp) - } - .labelStyle(SddsServTheme.typography.bodyMNormal) - .descriptionStyle(SddsServTheme.typography.bodySNormal) - .actionButtonStyle(IconButton.Xs.Clear.style()) - .circularProgressBarStyle(CircularProgressBar.Xs.Default.style()) - .style(), - isLoading = false, - label = "some_image.png", - description = "286 КБ", - actionPlacement = FileActionPlacement.End, - image = { - Icon( - painter = painterResource(R.drawable.ic_file_check_fill_36), - contentDescription = "", - ) - }, - progress = { - CircularProgressBar( - progress = 0.75f, - valueContent = null, - ) - }, - action = { - IconButton(iconRes = R.drawable.ic_refresh_24) { } - }, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileUiState.kt deleted file mode 100644 index 13f424c432..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileUiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.file.compose - -import com.sdds.compose.uikit.FileActionPlacement -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class FileUiState( - override val variant: String = "", - override val appearance: String = "", - val label: String = "Label", - val description: String = "Description", - val isLoading: Boolean = false, - val hasContentStart: Boolean = true, - val contentType: FileContentType = FileContentType.Icon, - val actionPlacement: FileActionPlacement = FileActionPlacement.End, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class FileContentType { - Icon, Image -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileViewModel.kt deleted file mode 100644 index 93a7699fb5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/compose/FileViewModel.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.file.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.FileStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента File - */ -internal class FileViewModel( - defaultState: FileUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun FileUiState.toProps(): List> { - val contentPropsList = if (hasContentStart) { - listOf( - enumProperty( - name = "contentType", - value = contentType, - onApply = { - internalUiState.value = internalUiState.value.copy(contentType = it) - }, - ), - ) - } else { - emptyList() - } - - return listOf( - Property.BooleanProperty( - name = "isLoading", - value = isLoading, - onApply = { internalUiState.value = internalUiState.value.copy(isLoading = it) }, - ), - Property.StringProperty( - name = "label", - value = label, - onApply = { internalUiState.value = internalUiState.value.copy(label = it) }, - ), - Property.StringProperty( - name = "description", - value = description, - onApply = { internalUiState.value = internalUiState.value.copy(description = it) }, - ), - enumProperty( - name = "actionPlacement", - value = actionPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(actionPlacement = it) - }, - ), - Property.BooleanProperty( - name = "hasContentStart", - value = hasContentStart, - onApply = { - internalUiState.value = internalUiState.value.copy(hasContentStart = it) - }, - ), - ) + contentPropsList - } -} - -internal class FileViewModelFactory( - private val defaultState: FileUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return FileViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileFragment.kt deleted file mode 100644 index 4f2b2ab3d8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileFragment.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.file.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.File -import com.sdds.uikit.fixtures.databinding.LayoutComponentFileBinding -import com.sdds.uikit.fixtures.stories.file.FileUiState -import com.sdds.uikit.fixtures.stories.file.applyState -import com.sdds.uikit.fixtures.stories.file.fileLayoutBinding - -/** - * Фрагмент с компонентом File - */ -internal class FileFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - FileParametersViewModelFactory( - defaultState = getState { FileUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams by lazy { - FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - LayoutParams.WRAP_CONTENT, - ) - } - - private var fileLayout: LayoutComponentFileBinding? = null - - override fun getComponent(contextWrapper: ContextThemeWrapper): File { - return fileLayoutBinding(contextWrapper) - .also { fileLayout = it }.root - .apply { id = R.id.file } - } - - override fun onComponentUpdate(component: File?, state: FileUiState) { - fileLayout?.applyState(state) - } - - override fun onDestroyView() { - super.onDestroyView() - fileLayout = null - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileParametersViewModel.kt deleted file mode 100644 index ef3c4a97b4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/file/vs/FileParametersViewModel.kt +++ /dev/null @@ -1,124 +0,0 @@ -package com.sdds.playground.sandbox.file.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.file.ActionPlacement -import com.sdds.uikit.fixtures.stories.file.FileContentType -import com.sdds.uikit.fixtures.stories.file.FileUiState - -/** - * ViewModel для экранов с компонентом File - */ -internal class FileParametersViewModel( - defaultState: FileUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (FilePropertyName.values().find { it.value == name }) { - FilePropertyName.Label -> updateTitle(value?.toString().orEmpty()) - FilePropertyName.Description -> updateText(value?.toString().orEmpty()) - FilePropertyName.IsLoading -> updateIsLoading((value as? Boolean) == true) - FilePropertyName.ActionPlacement -> updateActionPlacement(ActionPlacement.valueOf(value.toString())) - FilePropertyName.ContentType -> updateContentType(FileContentType.valueOf(value.toString())) - FilePropertyName.HasContentStart -> updateHasContentStart((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateTitle(title: String) { - internalUiState.value = internalUiState.value.copy(label = title) - } - - private fun updateText(text: String) { - internalUiState.value = internalUiState.value.copy(description = text) - } - - private fun updateIsLoading(isLoading: Boolean) { - internalUiState.value = internalUiState.value.copy(isLoading = isLoading) - } - - private fun updateActionPlacement(actionPlacement: ActionPlacement) { - internalUiState.value = internalUiState.value.copy(actionPlacement = actionPlacement) - } - - private fun updateContentType(contentType: FileContentType) { - internalUiState.value = internalUiState.value.copy(contentType = contentType) - } - - private fun updateHasContentStart(hasContentStart: Boolean) { - internalUiState.value = internalUiState.value.copy(hasContentStart = hasContentStart) - } - - override fun FileUiState.toProps(): List> { - val contentType = if (internalUiState.value.hasContentStart) { - listOf>( - enumProperty( - name = FilePropertyName.ContentType.value, - value = contentType, - ), - ) - } else { - emptyList() - } - - val startContent = if (internalUiState.value.actionPlacement == ActionPlacement.End) { - listOf>( - Property.BooleanProperty( - name = FilePropertyName.HasContentStart.value, - value = hasContentStart, - ), - ) + contentType - } else { - emptyList() - } - - return listOfNotNull( - Property.StringProperty( - name = FilePropertyName.Label.value, - value = label, - ), - Property.StringProperty( - name = FilePropertyName.Description.value, - value = description, - ), - Property.BooleanProperty( - name = FilePropertyName.IsLoading.value, - value = isLoading, - ), - enumProperty( - name = FilePropertyName.ActionPlacement.value, - value = actionPlacement, - ), - ) + startContent - } - - private enum class FilePropertyName(val value: String) { - Label("label"), - Description("description"), - IsLoading("isLoading"), - ActionPlacement("actionPlacement"), - ContentType("contentType"), - HasContentStart("hasContentStart"), - } -} - -/** - * Фабрика [FileParametersViewModel] - */ -internal class FileParametersViewModelFactory( - private val defaultState: FileUiState = FileUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return FileParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowFragment.kt deleted file mode 100644 index 0e6d78d2dd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowFragment.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.flow.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.FlowLayout -import com.sdds.uikit.fixtures.stories.flow.FlowUiState -import com.sdds.uikit.fixtures.stories.flow.applyState -import com.sdds.uikit.fixtures.stories.flow.flowLayout - -/** - * Фрагмент с компонентом FlowLayout - * @author Малышев Александр on 13.03.2025 - */ -internal class FlowFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - FlowViewModelFactory( - defaultState = getState { FlowUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): FlowLayout { - return flowLayout(contextWrapper) - .apply { id = R.id.flow } - } - - override fun onComponentUpdate(component: FlowLayout?, state: FlowUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowViewModel.kt deleted file mode 100644 index ad55a082d0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/flow/vs/FlowViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.flow.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.flow.FlowAlignment -import com.sdds.uikit.fixtures.stories.flow.FlowArrangement -import com.sdds.uikit.fixtures.stories.flow.FlowOrientation -import com.sdds.uikit.fixtures.stories.flow.FlowUiState - -/** - * ViewModel компонента Flow - * @author Малышев Александр on 13.08.2025 - */ -internal class FlowViewModel( - defaultState: FlowUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = FlowPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - FlowPropertyName.Arrangement -> currentState.copy(arrangement = FlowArrangement.valueOf(valueString)) - FlowPropertyName.Alignment -> currentState.copy(alignment = FlowAlignment.valueOf(valueString)) - FlowPropertyName.Orientation -> currentState.copy(orientation = FlowOrientation.valueOf(valueString)) - FlowPropertyName.ItemsPerLine -> currentState.copy(itemsPerLine = valueString.toIntOrNull() ?: 0) - else -> currentState - } - } - - override fun FlowUiState.toProps(): List> { - return listOf( - enumProperty( - name = FlowPropertyName.Arrangement.value, - value = arrangement, - ), - enumProperty( - name = FlowPropertyName.Alignment.value, - value = alignment, - ), - enumProperty( - name = FlowPropertyName.Orientation.value, - value = orientation, - ), - Property.IntProperty( - name = FlowPropertyName.ItemsPerLine.value, - value = itemsPerLine, - ), - ) - } - - private enum class FlowPropertyName(val value: String) { - Arrangement("arrangement"), - Alignment("alignment"), - Orientation("orientation"), - ItemsPerLine("itemsPerLine"), - } -} - -/** - * Фабрика для [FlowViewModel] - */ -internal class FlowViewModelFactory( - private val defaultState: FlowUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return FlowViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemScreen.kt deleted file mode 100644 index d1d770825f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemScreen.kt +++ /dev/null @@ -1,199 +0,0 @@ -package com.sdds.playground.sandbox.form - -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.height -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.layout.ContentScale -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.FormIndicatorAlignment -import com.sdds.compose.uikit.FormItem -import com.sdds.compose.uikit.FormItemStyle -import com.sdds.compose.uikit.FormTitlePlacement -import com.sdds.compose.uikit.FormType -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.IndicatorMode -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.PopoverAlignment -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.Tooltip -import com.sdds.compose.uikit.TriggerInfo -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.theme.SddsServTheme - -/** - * Экран с компонентом [FormItem] - */ -@Composable -internal fun FormItemScreen(componentKey: ComponentKey = ComponentKey.FormItem) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = FormItemViewModelFactory( - defaultState = FormItemUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { formItemUiState, style -> - Box( - modifier = Modifier.fillMaxSize(), - contentAlignment = Alignment.Center, - ) { - val hintTriggerInfo = remember { mutableStateOf(TriggerInfo()) } - var showTooltip by remember { mutableStateOf(false) } - FormItem( - modifier = Modifier, - style = style, - content = getContent(formItemUiState.content), - title = getContentOrNull(formItemUiState.title), - optional = getContentOrNull(formItemUiState.optional), - titleCaption = getContentOrNull(formItemUiState.titleCaption), - caption = getIconTextOrNull( - formItemUiState.caption, - formItemUiState.hasCaptionIcon, - ), - counter = getContentOrNull(formItemUiState.counter), - hasHint = formItemUiState.hasHint, - - onHintPressed = { showTooltip = true }, - hintTriggerInfo = hintTriggerInfo, - enabled = formItemUiState.enabled, - ) - - Tooltip( - show = showTooltip, - onDismissRequest = { showTooltip = false }, - triggerInfo = { hintTriggerInfo.value }, - text = AnnotatedString("Tooltip text"), - alignment = PopoverAlignment.Center, - ) - } - }, - ) -} - -@Composable -internal fun FormItemPreview(style: FormItemStyle) { - FormItem( - style = style, - content = getContent("Form Item Content"), - title = getContentOrNull("Title"), - titleCaption = getContentOrNull("TitleCaption"), - caption = getIconTextOrNull("Caption", true), - counter = getContentOrNull("Counter"), - ) -} - -@Composable -private fun getContentOrNull(content: String): (@Composable () -> Unit)? { - return if (content.isNotEmpty()) { - getContent(content) - } else { - null - } -} - -@Composable -private fun getContent(text: String): (@Composable () -> Unit) { - return { Text(text = text) } -} - -@Composable -private fun getIconTextOrNull(text: String, hasIcon: Boolean): (@Composable () -> Unit)? { - return if (text.isNotEmpty() || hasIcon) { - { - Row( - verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.spacedBy(4.dp), - ) { - if (hasIcon) { - Icon( - modifier = Modifier.height(14.dp), - contentScale = ContentScale.Crop, - painter = painterResource(com.sdds.icons.R.drawable.ic_shazam_16), - contentDescription = "", - ) - } - Text(text = text) - } - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun FormItemPreviewCustom() { - SandboxTheme { - Box( - modifier = Modifier.fillMaxSize(), - contentAlignment = Alignment.Center, - ) { - val hintInfo = remember { mutableStateOf(TriggerInfo()) } - var showTooltip by remember { mutableStateOf(false) } - FormItem( - style = FormItemStyle.builder() - .titlePlacement(FormTitlePlacement.Start) - .hintIcon(R.drawable.ic_info_circle_outline_24) - .formItemType(FormType.Optional) - .indicatorAlignment(FormIndicatorAlignment.TopEnd) - .indicatorAlignmentMode(IndicatorMode.Inner) - .indicatorStyle( - IndicatorStyle.builder() - .color { backgroundColor(Color.Red.asInteractive()) } - .style(), - ) - .dimensions { - hintWidth(24.dp) - hintHeight(20.dp) - titleBlockPadding(4.dp) - } - .colors { - hintColor(Color.Gray) - } - .counterStyle(SddsServTheme.typography.bodyXsNormal) - .captionStyle(SddsServTheme.typography.bodyXsNormal) - .titleCaptionStyle(SddsServTheme.typography.bodyXsNormal) - .optionalStyle(SddsServTheme.typography.bodyXsNormal) - .titleStyle(SddsServTheme.typography.bodyXsNormal) - .style(), - title = { Text(text = "title\ntext") }, - titleCaption = { Text("titleCaption") }, - caption = { Text("caption") }, - counter = { Text(text = "counter") }, - content = { Text("Coooonteeeeeeent\ncontent\ncontent") }, - optional = { Text("op") }, - hasHint = true, - onHintPressed = { showTooltip = true }, - hintTriggerInfo = hintInfo, - ) - - Tooltip( - show = showTooltip, - onDismissRequest = { showTooltip = false }, - triggerInfo = { hintInfo.value }, - text = AnnotatedString("Tooltip text"), - alignment = PopoverAlignment.Center, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemUiState.kt deleted file mode 100644 index 4da07b5554..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemUiState.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.form - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class FormItemUiState( - override val variant: String = "", - override val appearance: String = "", - val content: String = "Form item text content.\nSecond line text.", - val title: String = "Title", - val titleCaption: String = "", - val caption: String = "Caption", - val counter: String = "", - val optional: String = "Optional", - val hasHint: Boolean = false, - val hasCaptionIcon: Boolean = true, - val enabled: Boolean = true, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemViewModel.kt deleted file mode 100644 index e8ebef16b4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/form/FormItemViewModel.kt +++ /dev/null @@ -1,78 +0,0 @@ -package com.sdds.playground.sandbox.form - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.FormItemStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента FormItem - */ -internal class FormItemViewModel( - defaultState: FormItemUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun FormItemUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "hasHint", - value = hasHint, - onApply = { internalUiState.value = internalUiState.value.copy(hasHint = it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { internalUiState.value = internalUiState.value.copy(enabled = it) }, - ), - Property.BooleanProperty( - name = "hasCaptionIcon", - value = hasCaptionIcon, - onApply = { internalUiState.value = internalUiState.value.copy(hasCaptionIcon = it) }, - ), - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "titleCaption", - value = titleCaption, - onApply = { internalUiState.value = internalUiState.value.copy(titleCaption = it) }, - ), - Property.StringProperty( - name = "content", - value = content, - onApply = { internalUiState.value = internalUiState.value.copy(content = it) }, - ), - Property.StringProperty( - name = "caption", - value = caption, - onApply = { internalUiState.value = internalUiState.value.copy(caption = it) }, - ), - Property.StringProperty( - name = "counter", - value = counter, - onApply = { internalUiState.value = internalUiState.value.copy(counter = it) }, - ), - Property.StringProperty( - name = "optional", - value = optional, - onApply = { internalUiState.value = internalUiState.value.copy(optional = it) }, - ), - ) - } -} - -internal class FormItemViewModelFactory( - private val defaultState: FormItemUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return FormItemViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageScreen.kt deleted file mode 100644 index 4c368e3bab..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageScreen.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.image.compose - -import androidx.compose.foundation.background -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Image -import com.sdds.compose.uikit.ImageStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Image] - */ -@Composable -internal fun ImageScreen(componentKey: ComponentKey = ComponentKey.Image) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ImageViewModelFactory( - defaultState = ImageUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { _, style -> - Image( - painter = painterResource(R.drawable.ic_alarm_done_fill_36), - contentDescription = null, - modifier = Modifier - .width(100.dp) - .background(Color.Gray), - style = style, - ) - }, - ) -} - -@Composable -internal fun ImageScreenPreview(style: ImageStyle) { - SandboxTheme { - Image( - painter = painterResource(R.drawable.ic_alarm_done_fill_36), - contentDescription = null, - modifier = Modifier - .height(100.dp) - .background(Color.Gray), - style = style, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageUiState.kt deleted file mode 100644 index e2483c00fd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageUiState.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.image.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Image - * @property variant стиль компонента - */ -internal data class ImageUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageViewModel.kt deleted file mode 100644 index 0b72ba66d4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/compose/ImageViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.image.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ImageStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Image - */ -internal class ImageViewModel( - defaultState: ImageUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ImageUiState.toProps(): List> { - return emptyList() - } -} - -internal class ImageViewModelFactory( - private val defaultState: ImageUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ImageViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageFragment.kt deleted file mode 100644 index 5bff82345a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageFragment.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.image.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ImageView -import com.sdds.uikit.fixtures.stories.image.ImageUiState -import com.sdds.uikit.fixtures.stories.image.image - -/** - * Фрагмент с компонентом ImageView - */ -internal class ImageFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ImageParametersViewModelFactory( - defaultState = getState { ImageUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_52x), - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): ImageView { - return image(contextWrapper) - } - - override fun onComponentUpdate(component: ImageView?, state: ImageUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageParametersViewModel.kt deleted file mode 100644 index 172c5bf31a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/image/vs/ImageParametersViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.image.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.image.ImageUiState - -/** - * ViewModel компонента ImageView - */ -internal class ImageParametersViewModel( - defaultState: ImageUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ImageUiState.toProps() = emptyList>() -} - -internal class ImageParametersViewModelFactory( - private val defaultState: ImageUiState = ImageUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ImageParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorScreen.kt deleted file mode 100644 index 815b8b6df0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorScreen.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.indicator.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Indicator -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Indicator] - */ -@Composable -internal fun IndicatorScreen(componentKey: ComponentKey = ComponentKey.Indicator) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = IndicatorViewModelFactory(IndicatorUiState(), componentKey), - key = componentKey.toString(), - ), - component = { _, style -> - Indicator( - style = style, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun IndicatorsPreview() { - SandboxTheme { - IndicatorScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorUiState.kt deleted file mode 100644 index e02486aafa..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorUiState.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.indicator.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Indicator - * @property variant состояние компонента - */ -internal data class IndicatorUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorViewModel.kt deleted file mode 100644 index 44b2c1ad1a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/compose/IndicatorViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.indicator.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Indicator - */ -internal class IndicatorViewModel( - defaultState: IndicatorUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun IndicatorUiState.toProps(): List> { - return emptyList() - } -} - -internal class IndicatorViewModelFactory( - private val defaultState: IndicatorUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IndicatorViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorFragment.kt deleted file mode 100644 index b6e5829dc4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorFragment.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.indicator.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Indicator -import com.sdds.uikit.fixtures.stories.indicator.IndicatorUiState -import com.sdds.uikit.fixtures.stories.indicator.indicator - -/** - * Фрагмент с компонентом Indicator - */ -internal class IndicatorFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - IndicatorParametersViewModelFactory( - defaultState = getState { IndicatorUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Indicator { - return indicator(contextWrapper) - } - - override fun onComponentUpdate(component: Indicator?, state: IndicatorUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorParametersViewModel.kt deleted file mode 100644 index 5a0bf8b1db..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/indicator/vs/IndicatorParametersViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.indicator.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.indicator.IndicatorUiState - -/** - * ViewModel компонента ProgressBar - */ -internal class IndicatorParametersViewModel( - defaultState: IndicatorUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun IndicatorUiState.toProps() = emptyList>() -} - -internal class IndicatorParametersViewModelFactory( - private val defaultState: IndicatorUiState = IndicatorUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IndicatorParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListScreen.kt deleted file mode 100644 index f04b33736b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListScreen.kt +++ /dev/null @@ -1,86 +0,0 @@ -package com.sdds.playground.sandbox.list.compose - -import androidx.compose.foundation.focusable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Counter -import com.sdds.compose.uikit.Divider -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.List -import com.sdds.compose.uikit.ListItem -import com.sdds.compose.uikit.Text -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun ListScreen(componentKey: ComponentKey = ComponentKey.List) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ListViewModelFactory(ListUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - List( - style = style, - ) { - items(uiState.amount) { - val interactionSource = remember { MutableInteractionSource() } - - /* Обертка в Box нужна для удобства проверки размеров элементов */ - Box { - ListItem( - modifier = Modifier - .fillMaxWidth() - .focusable(interactionSource = interactionSource), - startContent = getStartContent(it, uiState.startContent), - titleContent = { Text("${uiState.title} $it") }, - disclosureEnabled = uiState.hasDisclosure, - interactionSource = interactionSource, - ) - } - if (uiState.hasDivider) { - Divider() - } - } - } - }, - ) -} - -private fun getStartContent( - itemIndex: Int, - startContent: ListItemStartContent, -): (@Composable RowScope.() -> Unit) { - return { - when (startContent) { - ListItemStartContent.IconSize24 -> Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), - contentDescription = "", - ) - ListItemStartContent.IconSize36 -> Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_36), - contentDescription = "", - ) - - ListItemStartContent.Counter -> Counter(count = itemIndex.toString()) - } - } -} - -@Preview -@Composable -internal fun ListItemScreenPreview() { - SandboxTheme { - ListScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListUiState.kt deleted file mode 100644 index 7a3ee9270b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListUiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.list.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ListUiState( - override val variant: String = "", - override val appearance: String = "", - val title: String = "Title", - val hasDisclosure: Boolean = true, - val amount: Int = 3, - val hasDivider: Boolean = false, - val startContent: ListItemStartContent = ListItemStartContent.IconSize24, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class ListItemStartContent { - IconSize24, - IconSize36, - Counter, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListViewModel.kt deleted file mode 100644 index 730080ddf6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/compose/ListViewModel.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.list.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ListStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class ListViewModel( - defaultState: ListUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ListUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "title", - value = title, - onApply = { - internalUiState.value = internalUiState.value.copy(title = it) - }, - ), - Property.BooleanProperty( - name = "hasDisclosure", - value = hasDisclosure, - onApply = { - internalUiState.value = internalUiState.value.copy(hasDisclosure = it) - }, - ), - Property.BooleanProperty( - name = "hasDivider", - value = hasDivider, - onApply = { - internalUiState.value = internalUiState.value.copy(hasDivider = it) - }, - ), - Property.IntProperty( - name = "amount", - value = amount, - onApply = { - if (it in 0..10) internalUiState.value = internalUiState.value.copy(amount = it) - }, - ), - enumProperty( - name = "startContent", - value = startContent, - onApply = { - internalUiState.value = internalUiState.value.copy(startContent = it) - }, - ), - ) - } -} - -internal class ListViewModelFactory( - private val defaultState: ListUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ListViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListFragment.kt deleted file mode 100644 index 88384a9067..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListFragment.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.list.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ListView -import com.sdds.uikit.fixtures.stories.list.ListUiState -import com.sdds.uikit.fixtures.stories.list.applyState -import com.sdds.uikit.fixtures.stories.list.listView - -internal class ListFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ListViewModelFactory( - defaultState = getState { ListUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = super.defaultLayoutParams.apply { - width = resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): ListView { - return listView(contextWrapper) - } - - override fun onComponentUpdate(component: ListView?, state: ListUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListViewModel.kt deleted file mode 100644 index 7fae8aa859..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/list/vs/ListViewModel.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.playground.sandbox.list.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.list.ListUiState - -internal class ListViewModel( - defaultState: ListUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.ItemTitle -> currentState.copy(itemTitle = valueString) - PropertyName.HasDisclosure -> currentState.copy(hasDisclosure = valueString.toBoolean()) - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - } - } - - override fun ListUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - Property.StringProperty( - name = PropertyName.ItemTitle.value, - value = itemTitle, - ), - Property.BooleanProperty( - name = PropertyName.HasDisclosure.value, - value = hasDisclosure, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - ItemTitle("itemTitle"), - HasDisclosure("hasDisclosure"), - } -} - -internal class ListViewModelFactory( - private val defaultState: ListUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ListViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderScreen.kt deleted file mode 100644 index 45d70e8605..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderScreen.kt +++ /dev/null @@ -1,44 +0,0 @@ -package com.sdds.playground.sandbox.loader.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Loader -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun LoaderScreen(componentKey: ComponentKey = ComponentKey.Loader) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = LoaderViewModelFactory(LoaderUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - Loader( - style = style, - progress = uiState.progress, - trackEnabled = uiState.trackEnabled, - valueContent = { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_close_16), - contentDescription = "", - ) - }, - loaderType = uiState.loaderType, - ) - }, - ) -} - -@Preview -@Composable -internal fun LoaderPreview() { - SandboxTheme { - LoaderScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderUiState.kt deleted file mode 100644 index 8e6b31cf08..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderUiState.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.loader.compose - -import com.sdds.compose.uikit.LoaderType -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class LoaderUiState( - override val variant: String = "", - override val appearance: String = "", - val progress: Float = 0.5f, - val trackEnabled: Boolean = true, - val loaderType: LoaderType = LoaderType.Progress, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderViewModel.kt deleted file mode 100644 index ffa35a6889..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/compose/LoaderViewModel.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.sdds.playground.sandbox.loader.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import kotlin.math.roundToInt - -internal class LoaderViewModel( - defaultState: LoaderUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateProgress(progress: Float) { - internalUiState.value = internalUiState.value.copy( - progress = progress.coerceIn(0f, 1f), - ) - } - - override fun LoaderUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = "progress", - value = (progress * MAX_PROGRESS).roundToInt(), - onApply = { updateProgress(it.toFloat() / MAX_PROGRESS) }, - ), - Property.BooleanProperty( - name = "trackEnabled", - value = trackEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy( - trackEnabled = it, - ) - }, - ), - enumProperty( - name = "loaderType", - value = loaderType, - onApply = { - internalUiState.value = internalUiState.value.copy(loaderType = it) - }, - ), - ) - } - - private companion object { - const val MAX_PROGRESS = 100 - } -} - -internal class LoaderViewModelFactory( - private val defaultState: LoaderUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return LoaderViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderFragment.kt deleted file mode 100644 index 1ff45f71a3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderFragment.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.loader.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Loader -import com.sdds.uikit.fixtures.stories.loader.LoaderUiState -import com.sdds.uikit.fixtures.stories.loader.applyState -import com.sdds.uikit.fixtures.stories.loader.loader - -internal class LoaderFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - LoaderViewModelFactory( - defaultState = getState { LoaderUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): Loader { - return loader(contextWrapper) - } - - override fun onComponentUpdate(component: Loader?, state: LoaderUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderViewModel.kt deleted file mode 100644 index 8b5e2af908..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/loader/vs/LoaderViewModel.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.loader.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.loader.LoaderType -import com.sdds.uikit.fixtures.stories.loader.LoaderUiState - -internal class LoaderViewModel( - defaultState: LoaderUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.LoaderType -> currentState.copy(loaderType = LoaderType.valueOf(valueString)) - } - } - - override fun LoaderUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = PropertyName.LoaderType.value, - value = loaderType, - ), - ) - } - - private enum class PropertyName(val value: String) { - LoaderType("loaderType"), - } -} - -internal class LoaderViewModelFactory( - private val defaultState: LoaderUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return LoaderViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalScreen.kt deleted file mode 100644 index 7b42fc25e8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalScreen.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.playground.sandbox.modal.compose - -import androidx.compose.foundation.layout.width -import androidx.compose.foundation.layout.wrapContentSize -import androidx.compose.runtime.Composable -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Modal -import com.sdds.compose.uikit.Text -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Modal] - */ -@Composable -internal fun ModalScreen(componentKey: ComponentKey = ComponentKey.Modal) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ModalViewModelFactory( - defaultState = ModalUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { modalUiState, style -> - val showModal = remember { mutableStateOf(false) } - Button( - modifier = Modifier.align(Alignment.Center), - label = "show", - onClick = { showModal.value = true }, - ) - Modal( - show = showModal.value, - style = style, - onDismissRequest = { showModal.value = false }, - modifier = Modifier.width(300.dp), - hasClose = modalUiState.hasClose, - edgeToEdge = modalUiState.edgeToEdge, - gravity = modalUiState.gravity, - dimBackground = modalUiState.hasDimBackground, - useNativeBlackout = modalUiState.useNativeBlackout, - closeIcon = painterResource(R.drawable.ic_close_24), - ) { - Text("Modal", modifier = Modifier.wrapContentSize()) - } - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun ModalScreenPreview() { - SandboxTheme { - ModalScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalUiState.kt deleted file mode 100644 index 851b1d4551..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalUiState.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.modal.compose - -import com.sdds.compose.uikit.ModalGravity -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ModalUiState( - override val variant: String = "", - override val appearance: String = "", - val useNativeBlackout: Boolean = true, - val hasClose: Boolean = false, - val hasDimBackground: Boolean = true, - val gravity: ModalGravity = ModalGravity.Center, - val edgeToEdge: Boolean = true, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalViewModel.kt deleted file mode 100644 index 2107cbf0f7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/compose/ModalViewModel.kt +++ /dev/null @@ -1,61 +0,0 @@ -package com.sdds.playground.sandbox.modal.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ModalStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Modal - */ -internal class ModalViewModel( - defaultState: ModalUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ModalUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "hasClose", - value = hasClose, - onApply = { internalUiState.value = internalUiState.value.copy(hasClose = it) }, - ), - enumProperty( - name = "gravity", - value = gravity, - onApply = { internalUiState.value = internalUiState.value.copy(gravity = it) }, - ), - Property.BooleanProperty( - name = "hasDimBackground", - value = hasDimBackground, - onApply = { internalUiState.value = internalUiState.value.copy(hasDimBackground = it) }, - ), - Property.BooleanProperty( - name = "useNativeBlackout", - value = useNativeBlackout, - onApply = { - internalUiState.value = internalUiState.value.copy(useNativeBlackout = it) - }, - ), - Property.BooleanProperty( - name = "edgeToEdge", - value = edgeToEdge, - onApply = { internalUiState.value = internalUiState.value.copy(edgeToEdge = it) }, - ), - ) - } -} - -internal class ModalViewModelFactory( - private val defaultState: ModalUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ModalViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalFragment.kt deleted file mode 100644 index 451925e91b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalFragment.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.modal.vs - -import android.view.ContextThemeWrapper -import android.view.View -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.fixtures.stories.modal.ModalUiState -import com.sdds.uikit.fixtures.stories.modal.modalTrigger - -/** - * Фрагмент с компонентом Modal - * @author Малышев Александр on 29.05.2025 - */ -internal class ModalFragment : ComponentFragment() { - - private var state: ModalUiState = ModalUiState() - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ModalViewModelFactory( - defaultState = getState { state }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return modalTrigger(contextWrapper, state = state, style = currentStyleRes) - } - - override fun shouldRecreateComponentOnStateUpdate(state: ModalUiState): Boolean { - this.state = state - return true - } - - override fun onComponentUpdate(component: View?, state: ModalUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalViewModel.kt deleted file mode 100644 index 723a6d98c0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/modal/vs/ModalViewModel.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.modal.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.modal.ModalGravity -import com.sdds.uikit.fixtures.stories.modal.ModalUiState - -/** - * ViewModel компонента Modal - */ -internal class ModalViewModel( - defaultState: ModalUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val currentState = internalUiState.value - internalUiState.value = when (name) { - ModalProperty.HasClose.value -> currentState.copy(hasClose = valueString.toBoolean()) - ModalProperty.UseNativeBlackout.value -> currentState.copy(useNativeBlackout = valueString.toBoolean()) - ModalProperty.HasDimBackground.value -> currentState.copy(hasDimBackground = valueString.toBoolean()) - ModalProperty.EdgeToEdge.value -> currentState.copy(edgeToEdge = valueString.toBoolean()) - ModalProperty.Gravity.value -> currentState.copy(gravity = ModalGravity.valueOf(valueString)) - else -> currentState - } - } - - override fun ModalUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "useNativeBlackout", - value = useNativeBlackout, - ), - Property.BooleanProperty( - name = "hasClose", - value = hasClose, - ), - Property.BooleanProperty( - name = "hasDimBackground", - value = hasDimBackground, - ), - Property.BooleanProperty( - name = "edgeToEdge", - value = edgeToEdge, - ), - enumProperty( - name = "gravity", - value = gravity, - ), - ) - } - - private enum class ModalProperty(val value: String) { - HasClose("hasClose"), - HasDimBackground("hasDimBackground"), - EdgeToEdge("edgeToEdge"), - Gravity("gravity"), - UseNativeBlackout("useNativeBlackout"), - } -} - -internal class ModalViewModelFactory( - private val defaultState: ModalUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ModalViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarScreen.kt deleted file mode 100644 index b88fe3d4c9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarScreen.kt +++ /dev/null @@ -1,143 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.collapsing - -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.input.nestedscroll.nestedScroll -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.CollapsingNavigationBar -import com.sdds.compose.uikit.CollapsingNavigationBarDefaults -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.rememberCollapsingNavigationBarState -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun CollapsingNavigationBarScreen(componentKey: ComponentKey = ComponentKey.CollapsingNavigationBar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CollapsingNavigationBarViewModelFactory( - defaultState = CollapsingNavigationBarUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { collapsingNavigationBarUiState, style -> - val scrollBehavior = - CollapsingNavigationBarDefaults.exitUntilCollapsedScrollBehavior(rememberCollapsingNavigationBarState()) - Column( - modifier = Modifier.nestedScroll(scrollBehavior.nestedScrollConnection), - ) { - CollapsingNavigationBar( - style = style, - scrollBehavior = scrollBehavior, - collapsedTextAlign = collapsingNavigationBarUiState.collapsedTextAlign, - expandedTextAlign = collapsingNavigationBarUiState.expandedTextAlign, - collapsedTitle = textContent(collapsingNavigationBarUiState.collapsedTitle), - expandedTitle = textContent(collapsingNavigationBarUiState.expandedTitle), - collapsedDescription = textContent(collapsingNavigationBarUiState.collapsedDescription), - expandedDescription = textContent(collapsingNavigationBarUiState.expandedDescription), - content = content(collapsingNavigationBarUiState.contentText), - actionStart = actionStart(collapsingNavigationBarUiState.hasActionStart), - actionEnd = actionEnd(collapsingNavigationBarUiState.hasActionEnd), - centerAlignmentStrategy = collapsingNavigationBarUiState.centerAlignmentStrategy, - onBackPressed = { - println("Back button was pressed") - }, - ) - LazyColumn { - items(100) { - Text(modifier = Modifier.padding(32.dp), text = "Label text $it") - } - } - } - }, - ) -} - -@Composable -internal fun CollapsingNavigationBarPreview(style: CollapsingNavigationBarStyle) { - CollapsingNavigationBar( - style = style, - collapsedTitle = textContent("Title"), - content = content("Content"), - actionStart = actionStart(true), - actionEnd = actionEnd(true), - expandedTitle = textContent("Title"), - expandedDescription = textContent("Description"), - collapsedDescription = textContent("Description"), - ) -} - -private fun actionStart(hasAction: Boolean): (@Composable RowScope.() -> Unit)? { - return if (hasAction) { - @Composable { - Icon( - painter = painterResource(R.drawable.ic_search_24), - contentDescription = "", - ) - Icon( - painter = painterResource(R.drawable.ic_plus_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun actionEnd(hasAction: Boolean): (@Composable RowScope.() -> Unit)? { - return if (hasAction) { - @Composable { - Icon( - painter = painterResource(R.drawable.ic_menu_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun content(text: String): (@Composable () -> Unit)? { - return if (text.isEmpty()) { - null - } else { - @Composable { - Row( - modifier = Modifier.fillMaxWidth(), - horizontalArrangement = Arrangement.Center, - ) { Text(text) } - } - } -} - -private fun textContent(text: String): (@Composable () -> Unit)? { - return if (text.isEmpty()) { - null - } else { - @Composable { Text(text) } - } -} - -@Composable -@Preview(showBackground = true) -private fun CollapsingNavigationBarScreenPreview() { - SandboxTheme { - CollapsingNavigationBarScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarUiState.kt deleted file mode 100644 index e0b05708bb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarUiState.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.collapsing - -import com.sdds.compose.uikit.NavBarCenterAlignmentStrategy -import com.sdds.compose.uikit.NavigationBarTextAlign -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class CollapsingNavigationBarUiState( - override val variant: String = "", - override val appearance: String = "", - val collapsedTitle: String = "Title", - val expandedTitle: String = "Title", - val collapsedDescription: String = "Description", - val expandedDescription: String = "Description", - val contentText: String = "Content", - val hasActionStart: Boolean = true, - val hasActionEnd: Boolean = true, - val collapsedTextAlign: NavigationBarTextAlign = NavigationBarTextAlign.Center, - val expandedTextAlign: NavigationBarTextAlign = NavigationBarTextAlign.Start, - val centerAlignmentStrategy: NavBarCenterAlignmentStrategy = NavBarCenterAlignmentStrategy.Absolute, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarViewModel.kt deleted file mode 100644 index 813ce9fba5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/collapsing/CollapsingNavigationBarViewModel.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.collapsing - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента CollapsingNavigationBar - */ -internal class CollapsingNavigationBarViewModel( - defaultState: CollapsingNavigationBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - override fun CollapsingNavigationBarUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "collapsedTitle", - value = collapsedTitle, - onApply = { internalUiState.value = internalUiState.value.copy(collapsedTitle = it) }, - ), - Property.StringProperty( - name = "expandedTitle", - value = expandedTitle, - onApply = { internalUiState.value = internalUiState.value.copy(expandedTitle = it) }, - ), - Property.StringProperty( - name = "collapsedDescription", - value = collapsedDescription, - onApply = { internalUiState.value = internalUiState.value.copy(collapsedDescription = it) }, - ), - Property.StringProperty( - name = "expandedDescription", - value = expandedDescription, - onApply = { internalUiState.value = internalUiState.value.copy(expandedDescription = it) }, - ), - Property.StringProperty( - name = "content text", - value = contentText, - onApply = { internalUiState.value = internalUiState.value.copy(contentText = it) }, - ), - Property.BooleanProperty( - name = "hasActionStart", - value = hasActionStart, - onApply = { internalUiState.value = internalUiState.value.copy(hasActionStart = it) }, - ), - Property.BooleanProperty( - name = "hasActionEnd", - value = hasActionEnd, - onApply = { internalUiState.value = internalUiState.value.copy(hasActionEnd = it) }, - ), - enumProperty( - name = "collapsedTextAlign", - value = collapsedTextAlign, - onApply = { internalUiState.value = internalUiState.value.copy(collapsedTextAlign = it) }, - ), - enumProperty( - name = "expandedTextAlign", - value = expandedTextAlign, - onApply = { internalUiState.value = internalUiState.value.copy(expandedTextAlign = it) }, - ), - enumProperty( - name = "centerAlignmentStrategy", - value = centerAlignmentStrategy, - onApply = { internalUiState.value = internalUiState.value.copy(centerAlignmentStrategy = it) }, - ), - ) - } -} - -internal class CollapsingNavigationBarViewModelFactory( - private val defaultState: CollapsingNavigationBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CollapsingNavigationBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarScreen.kt deleted file mode 100644 index f22f11868b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarScreen.kt +++ /dev/null @@ -1,139 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.compose - -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.RowScope -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.NavigationBar -import com.sdds.compose.uikit.NavigationBarContentPlacement -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.NavigationBarTextAlign -import com.sdds.compose.uikit.NavigationBarTextPlacement -import com.sdds.compose.uikit.Text -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun NavigationBarScreen(componentKey: ComponentKey = ComponentKey.NavigationBar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = NavigationBarViewModelFactory( - defaultState = NavigationBarUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { navigationBarUiState, style -> - NavigationBar( - style = style, - textPlacement = navigationBarUiState.textPlacement, - textAlign = navigationBarUiState.textAlign, - contentPlacement = navigationBarUiState.contentPlacement, - centerAlignmentStrategy = navigationBarUiState.centerAlignmentStrategy, - titleContent = textContent(navigationBarUiState.title), - descriptionContent = descriptionContent(navigationBarUiState.description), - content = content(navigationBarUiState.contentText), - actionStart = actionStart(navigationBarUiState.hasActionStart), - actionEnd = actionEnd(navigationBarUiState.hasActionEnd), - onBackPressed = { - println("Back button was pressed") - }, - ) - }, - ) -} - -@Composable -internal fun NavigationBarPreview(style: NavigationBarStyle) { - NavigationBar( - style = style, - textPlacement = NavigationBarTextPlacement.Inline, - contentPlacement = NavigationBarContentPlacement.Inline, - textAlign = NavigationBarTextAlign.Start, - titleContent = textContent("Text"), - content = content("Content"), - actionStart = actionStart(true), - actionEnd = actionEnd(true), - ) -} - -private fun actionStart(hasAction: Boolean): (@Composable RowScope.() -> Unit)? { - return if (hasAction) { - @Composable { - Icon( - painter = painterResource(R.drawable.ic_search_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun actionEnd(hasAction: Boolean): (@Composable RowScope.() -> Unit)? { - return if (hasAction) { - @Composable { - Icon( - painter = painterResource(R.drawable.ic_menu_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun content(text: String): (@Composable () -> Unit)? { - return if (text.isEmpty()) { - null - } else { - @Composable { Text(text) } - } -} - -private fun textContent(text: String): (@Composable () -> Unit)? { - return if (text.isEmpty()) { - null - } else { - @Composable { - Row(verticalAlignment = Alignment.CenterVertically) { - Text(text) - Spacer(Modifier.width(4.dp)) - Icon( - modifier = Modifier, - painter = painterResource(R.drawable.ic_clip_24), - contentDescription = "", - ) - } - } - } -} - -private fun descriptionContent(description: String): (@Composable () -> Unit)? { - return if (description.isEmpty()) { - null - } else { - @Composable { - Text(description) - } - } -} - -@Composable -@Preview(showBackground = true) -private fun NavigationBarScreenPreview() { - SandboxTheme { - NavigationBarScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarUiState.kt deleted file mode 100644 index b795408530..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.compose - -import com.sdds.compose.uikit.NavBarCenterAlignmentStrategy -import com.sdds.compose.uikit.NavigationBarContentPlacement -import com.sdds.compose.uikit.NavigationBarTextAlign -import com.sdds.compose.uikit.NavigationBarTextPlacement -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class NavigationBarUiState( - override val variant: String = "", - override val appearance: String = "", - val title: String = "Title", - val description: String = "Description", - val contentText: String = "Content", - val hasActionStart: Boolean = true, - val hasActionEnd: Boolean = true, - val textPlacement: NavigationBarTextPlacement = NavigationBarTextPlacement.Bottom, - val contentPlacement: NavigationBarContentPlacement = NavigationBarContentPlacement.Bottom, - val textAlign: NavigationBarTextAlign = NavigationBarTextAlign.Center, - val centerAlignmentStrategy: NavBarCenterAlignmentStrategy = NavBarCenterAlignmentStrategy.Absolute, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarViewModel.kt deleted file mode 100644 index f179c1b9ed..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/compose/NavigationBarViewModel.kt +++ /dev/null @@ -1,90 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента NavigationBar - */ -internal class NavigationBarViewModel( - defaultState: NavigationBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - override fun NavigationBarUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "description", - value = description, - onApply = { internalUiState.value = internalUiState.value.copy(description = it) }, - ), - Property.StringProperty( - name = "content text", - value = contentText, - onApply = { internalUiState.value = internalUiState.value.copy(contentText = it) }, - ), - Property.BooleanProperty( - name = "hasActionStart", - value = hasActionStart, - onApply = { internalUiState.value = internalUiState.value.copy(hasActionStart = it) }, - ), - Property.BooleanProperty( - name = "hasActionEnd", - value = hasActionEnd, - onApply = { internalUiState.value = internalUiState.value.copy(hasActionEnd = it) }, - ), - enumProperty( - name = "textPlacement", - value = textPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(textPlacement = it) - }, - ), - enumProperty( - name = "textAlign", - value = textAlign, - onApply = { - internalUiState.value = internalUiState.value.copy(textAlign = it) - }, - ), - enumProperty( - name = "contentPlacement", - value = contentPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(contentPlacement = it) - }, - ), - enumProperty( - name = "centerAlignmentStrategy", - value = centerAlignmentStrategy, - onApply = { - internalUiState.value = internalUiState.value.copy(centerAlignmentStrategy = it) - }, - ), - ) - } -} - -internal class NavigationBarViewModelFactory( - private val defaultState: NavigationBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NavigationBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarFragment.kt deleted file mode 100644 index d41771c8a2..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams.MATCH_PARENT -import android.view.ViewGroup.LayoutParams.WRAP_CONTENT -import android.widget.FrameLayout -import android.widget.FrameLayout.LayoutParams -import androidx.core.view.setMargins -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.NavigationBar -import com.sdds.uikit.fixtures.stories.navigationbar.NavigationBarUiState -import com.sdds.uikit.fixtures.stories.navigationbar.applyState -import com.sdds.uikit.fixtures.stories.navigationbar.navigationBar - -/** - * Фрагмент с компонентом NavigationBar - */ -internal class NavigationBarFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - NavigationBarParametersViewModelFactory( - defaultState = getState { NavigationBarUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = LayoutParams(MATCH_PARENT, WRAP_CONTENT).apply { setMargins(50) } - - override fun getComponent(contextWrapper: ContextThemeWrapper): NavigationBar { - return navigationBar(contextWrapper) - } - - override fun onComponentUpdate(component: NavigationBar?, state: NavigationBarUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarParametersViewModel.kt deleted file mode 100644 index fa647096e5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationbar/vs/NavigationBarParametersViewModel.kt +++ /dev/null @@ -1,163 +0,0 @@ -package com.sdds.playground.sandbox.navigationbar.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.navigationbar.AlignmentStrategy -import com.sdds.uikit.fixtures.stories.navigationbar.ContentBetweenActionsAlignment -import com.sdds.uikit.fixtures.stories.navigationbar.ContentPlacement -import com.sdds.uikit.fixtures.stories.navigationbar.NavigationBarUiState -import com.sdds.uikit.fixtures.stories.navigationbar.TextAlignment -import com.sdds.uikit.fixtures.stories.navigationbar.TextPlacement - -/** - * ViewModel для экранов с компонентом NavigationBar - */ -internal class NavigationBarParametersViewModel( - defaultState: NavigationBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (NavigationBarPropertyName.entries.find { it.value == name }) { - NavigationBarPropertyName.Title -> updateTitle(value?.toString().orEmpty()) - NavigationBarPropertyName.Description -> updateDescription(value?.toString().orEmpty()) - NavigationBarPropertyName.Content -> updateContent(value?.toString().orEmpty()) - NavigationBarPropertyName.HasActionStart -> updateHasActionStart((value as? Boolean) == true) - NavigationBarPropertyName.HasActionEnd -> updateHasActionEnd((value as? Boolean) == true) - NavigationBarPropertyName.TextPlacement -> updateTextPlacement(TextPlacement.valueOf(value.toString())) - NavigationBarPropertyName.ContentPlacement -> updateContentPlacement( - ContentPlacement.valueOf(value.toString()), - ) - NavigationBarPropertyName.TextAlignment -> updateTextAlignment(TextAlignment.valueOf(value.toString())) - NavigationBarPropertyName.CenterAlignmentStrategy -> updateCenterAlignmentStrategy( - AlignmentStrategy.valueOf(value.toString()), - ) - NavigationBarPropertyName.ContentAlignment -> updateContentAlignment( - ContentBetweenActionsAlignment.valueOf(value.toString()), - ) - else -> Unit - } - } - - private fun updateTitle(title: String) { - internalUiState.value = internalUiState.value.copy(title = title) - } - - private fun updateDescription(description: String) { - internalUiState.value = internalUiState.value.copy(description = description) - } - - private fun updateContent(contentText: String) { - internalUiState.value = internalUiState.value.copy(contentText = contentText) - } - - private fun updateHasActionStart(hasActionStart: Boolean) { - internalUiState.value = internalUiState.value.copy(hasActionStart = hasActionStart) - } - - private fun updateHasActionEnd(hasActionEnd: Boolean) { - internalUiState.value = internalUiState.value.copy(hasActionEnd = hasActionEnd) - } - - private fun updateTextPlacement(textPlacement: TextPlacement) { - internalUiState.value = internalUiState.value.copy(textPlacement = textPlacement) - } - - private fun updateContentPlacement(contentPlacement: ContentPlacement) { - internalUiState.value = internalUiState.value.copy(contentPlacement = contentPlacement) - } - - private fun updateTextAlignment(textAlignment: TextAlignment) { - internalUiState.value = internalUiState.value.copy(textAlign = textAlignment) - } - - private fun updateCenterAlignmentStrategy(centerAlignmentStrategy: AlignmentStrategy) { - internalUiState.value = internalUiState.value.copy(centerAlignmentStrategy = centerAlignmentStrategy) - } - - private fun updateContentAlignment(contentAlignment: ContentBetweenActionsAlignment) { - internalUiState.value = internalUiState.value.copy(contentBetweenActionsAlignment = contentAlignment) - } - - override fun NavigationBarUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = NavigationBarPropertyName.Title.value, - value = title, - ), - - Property.StringProperty( - name = NavigationBarPropertyName.Description.value, - value = description, - ), - - Property.StringProperty( - name = NavigationBarPropertyName.Content.value, - value = contentText, - ), - - Property.BooleanProperty( - name = NavigationBarPropertyName.HasActionStart.value, - value = hasActionStart, - ), - - Property.BooleanProperty( - name = NavigationBarPropertyName.HasActionEnd.value, - value = hasActionEnd, - ), - enumProperty( - name = NavigationBarPropertyName.TextPlacement.value, - value = textPlacement, - ), - enumProperty( - name = NavigationBarPropertyName.ContentPlacement.value, - value = contentPlacement, - ), - enumProperty( - name = NavigationBarPropertyName.TextAlignment.value, - value = textAlign, - ), - enumProperty( - name = NavigationBarPropertyName.CenterAlignmentStrategy.value, - value = centerAlignmentStrategy, - ), - enumProperty( - name = NavigationBarPropertyName.ContentAlignment.value, - value = contentBetweenActionsAlignment, - ), - ) - } - - private enum class NavigationBarPropertyName(val value: String) { - Title("title"), - Description("description"), - Content("contentText"), - HasActionStart("hasActionStart"), - HasActionEnd("hasActionEnd"), - TextPlacement("textPlacement"), - ContentPlacement("contentPlacement"), - TextAlignment("textAlignment"), - CenterAlignmentStrategy("centerAlignmentStrategy"), - ContentAlignment("contentBetweenActionsAlignment"), - } -} - -/** - * Фабрика [NavigationBarParametersViewModel] - */ -internal class NavigationBarParametersViewModelFactory( - private val defaultState: NavigationBarUiState = NavigationBarUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NavigationBarParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerFragment.kt deleted file mode 100644 index 97513ba6fa..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerFragment.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.navigationdrawer - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.core.view.setMargins -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.NavigationDrawer -import com.sdds.uikit.fixtures.stories.navigationdrawer.NavigationDrawerUiState -import com.sdds.uikit.fixtures.stories.navigationdrawer.applyState -import com.sdds.uikit.fixtures.stories.navigationdrawer.navigationDrawer - -internal class NavigationDrawerFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - NavigationDrawerViewModelFactory( - defaultState = getState { NavigationDrawerUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = super.defaultLayoutParams.apply { - height = ViewGroup.LayoutParams.MATCH_PARENT - setMargins(resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_10x)) - } - - override val defaultGravity: Int = Gravity.CENTER_VERTICAL or Gravity.START - - override fun getComponent(contextWrapper: ContextThemeWrapper): NavigationDrawer { - return navigationDrawer(contextWrapper) - } - - override fun onComponentUpdate(component: NavigationDrawer?, state: NavigationDrawerUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerViewModel.kt deleted file mode 100644 index 678fb4b647..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/navigationdrawer/NavigationDrawerViewModel.kt +++ /dev/null @@ -1,98 +0,0 @@ -package com.sdds.playground.sandbox.navigationdrawer - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.navigationdrawer.NavigationDrawerMode -import com.sdds.uikit.fixtures.stories.navigationdrawer.NavigationDrawerUiState - -internal class NavigationDrawerViewModel( - defaultState: NavigationDrawerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.ItemLabel -> currentState.copy(itemLabel = valueString) - PropertyName.CounterEnabled -> currentState.copy(counterEnabled = valueString.toBoolean()) - PropertyName.CounterText -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(counterText = valueString) - } else { - currentState - } - - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - PropertyName.Mode -> currentState.copy(mode = NavigationDrawerMode.valueOf(valueString)) - PropertyName.HasHeader -> currentState.copy(hasHeader = valueString.toBoolean()) - PropertyName.HasFooter -> currentState.copy(hasFooter = valueString.toBoolean()) - } - } - - override fun NavigationDrawerUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - Property.StringProperty( - name = PropertyName.ItemLabel.value, - value = itemLabel, - ), - enumProperty( - name = PropertyName.Mode.value, - value = mode, - ), - Property.BooleanProperty( - name = PropertyName.CounterEnabled.value, - value = counterEnabled, - ), - Property.StringProperty( - name = PropertyName.CounterText.value, - value = counterText, - ), - Property.BooleanProperty( - name = PropertyName.HasHeader.value, - value = hasHeader, - ), - Property.BooleanProperty( - name = PropertyName.HasFooter.value, - value = hasFooter, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - ItemLabel("label"), - CounterEnabled("counterEnabled"), - CounterText("counterText"), - Mode("mode"), - HasHeader("hasHeader"), - HasFooter("hasFooter"), - } -} - -internal class NavigationDrawerViewModelFactory( - private val defaultState: NavigationDrawerUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NavigationDrawerViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactScreen.kt deleted file mode 100644 index 2744ccceb7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactScreen.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.note.compose - -import androidx.compose.foundation.layout.sizeIn -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.LinkButton -import com.sdds.compose.uikit.NoteCompact -import com.sdds.compose.uikit.NoteCompactStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [NoteCompact] - */ -@Composable -internal fun NoteCompactScreen(componentKey: ComponentKey = ComponentKey.NoteCompact) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = NoteCompactViewModelFactory( - defaultState = NoteUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { noteUiState, style -> - NoteCompact( - modifier = Modifier.sizeIn(maxWidth = 400.dp, maxHeight = 300.dp), - style = style, - text = noteUiState.text, - title = noteUiState.title, - contentBefore = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_36), - contentDescription = null, - ) - }, - action = if (noteUiState.hasAction) { - { - LinkButton( - label = "Label", - onClick = {}, - ) - } - } else { - null - }, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun NoteCompactScreenPreview() { - SandboxTheme { - NoteCompactScreen() - } -} - -@Composable -internal fun NoteCompactPreview(style: NoteCompactStyle) { - NoteCompact( - style = style, - text = "Text", - title = "Title", - contentBefore = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_24), - contentDescription = null, - ) - }, - action = { - LinkButton( - label = "Label", - onClick = {}, - ) - }, - ) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactViewModel.kt deleted file mode 100644 index 0d8ff57118..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteCompactViewModel.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.note.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.NoteCompactStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Note - */ -internal class NoteCompactViewModel( - defaultState: NoteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun NoteUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - Property.BooleanProperty( - name = "hasAction", - value = hasAction, - onApply = { internalUiState.value = internalUiState.value.copy(hasAction = it) }, - ), - ) - } -} - -internal class NoteCompactViewModelFactory( - private val defaultState: NoteUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NoteCompactViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteScreen.kt deleted file mode 100644 index 0260db9271..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteScreen.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.note.compose - -import androidx.compose.foundation.layout.sizeIn -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.LinkButton -import com.sdds.compose.uikit.Note -import com.sdds.compose.uikit.NoteStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Note] - */ -@Composable -internal fun NoteScreen(componentKey: ComponentKey = ComponentKey.Note) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = NoteViewModelFactory( - defaultState = NoteUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { noteUiState, style -> - Note( - modifier = Modifier.sizeIn(maxWidth = 300.dp, maxHeight = 200.dp), - style = style, - text = noteUiState.text, - title = noteUiState.title, - contentBefore = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_36), - contentDescription = null, - ) - }, - action = if (noteUiState.hasAction) { - { - LinkButton( - label = "Label", - onClick = {}, - ) - } - } else { - null - }, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun NoteScreenPreview() { - SandboxTheme { - NoteScreen() - } -} - -@Composable -internal fun NotePreview(style: NoteStyle) { - Note( - style = style, - text = "Text", - title = "Title", - contentBefore = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_24), - contentDescription = null, - ) - }, - action = { - LinkButton( - label = "Label", - onClick = {}, - ) - }, - ) -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteUiState.kt deleted file mode 100644 index 8dc7703995..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteUiState.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.note.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние Note и NoteCompact - * @property title заголовок - * @property text текст - * @property hasAction наличие actions - */ -internal data class NoteUiState( - override val variant: String = "", - override val appearance: String = "", - val title: String = "Title", - val text: String = "Text", - val hasAction: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteViewModel.kt deleted file mode 100644 index 9a080595e7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/compose/NoteViewModel.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.note.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.NoteStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Note - */ -internal class NoteViewModel( - defaultState: NoteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun NoteUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - Property.BooleanProperty( - name = "hasAction", - value = hasAction, - onApply = { internalUiState.value = internalUiState.value.copy(hasAction = it) }, - ), - ) - } -} - -internal class NoteViewModelFactory( - private val defaultState: NoteUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NoteViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactFragment.kt deleted file mode 100644 index 2fab8d6fce..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactFragment.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.note.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.NoteCompact -import com.sdds.uikit.fixtures.stories.note.NoteUiState -import com.sdds.uikit.fixtures.stories.note.applyState -import com.sdds.uikit.fixtures.stories.note.noteCompact - -/** - * Фрагмент с компонентом NoteCompact - */ -internal class NoteCompactFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - NoteCompactParametersViewModelFactory( - defaultState = getState { NoteUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): NoteCompact { - return noteCompact(contextWrapper) - } - - override fun onComponentUpdate(component: NoteCompact?, state: NoteUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactParametersViewModel.kt deleted file mode 100644 index 58414948fc..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteCompactParametersViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.note.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.note.NoteUiState - -/** - * ViewModel для экранов с компонентом NoteCompact - */ -internal class NoteCompactParametersViewModel( - defaultState: NoteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (NoteCompactPropertyName.values().find { it.value == name }) { - NoteCompactPropertyName.Title -> updateTitle(value?.toString().orEmpty()) - NoteCompactPropertyName.Text -> updateText(value?.toString().orEmpty()) - NoteCompactPropertyName.HasAction -> updateHasActions((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateTitle(title: String) { - internalUiState.value = internalUiState.value.copy(title = title) - } - - private fun updateText(text: String) { - internalUiState.value = internalUiState.value.copy(text = text) - } - - private fun updateHasActions(hasActions: Boolean) { - internalUiState.value = internalUiState.value.copy(hasAction = hasActions) - } - - override fun NoteUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = NoteCompactPropertyName.Title.value, - value = title, - ), - - Property.StringProperty( - name = NoteCompactPropertyName.Text.value, - value = text, - ), - - Property.BooleanProperty( - name = NoteCompactPropertyName.HasAction.value, - value = hasAction, - ), - ) - } - - private enum class NoteCompactPropertyName(val value: String) { - Title("title"), - Text("text"), - HasAction("hasActions"), - } -} - -/** - * Фабрика [NoteParametersViewModel] - */ -internal class NoteCompactParametersViewModelFactory( - private val defaultState: NoteUiState = NoteUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NoteCompactParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteFragment.kt deleted file mode 100644 index 4cdb58c47b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteFragment.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.note.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Note -import com.sdds.uikit.fixtures.stories.note.NoteUiState -import com.sdds.uikit.fixtures.stories.note.applyState -import com.sdds.uikit.fixtures.stories.note.note - -/** - * Фрагмент с компонентом Note - */ -internal class NoteFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - NoteParametersViewModelFactory( - defaultState = getState { NoteUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Note { - return note(contextWrapper) - } - - override fun onComponentUpdate(component: Note?, state: NoteUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteParametersViewModel.kt deleted file mode 100644 index d465e816a4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/note/vs/NoteParametersViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.note.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.note.NoteUiState - -/** - * ViewModel для экранов с компонентом Note - */ -internal class NoteParametersViewModel( - defaultState: NoteUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (NotePropertyName.values().find { it.value == name }) { - NotePropertyName.Title -> updateTitle(value?.toString().orEmpty()) - NotePropertyName.Text -> updateText(value?.toString().orEmpty()) - NotePropertyName.HasAction -> updateHasActions((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateTitle(title: String) { - internalUiState.value = internalUiState.value.copy(title = title) - } - - private fun updateText(text: String) { - internalUiState.value = internalUiState.value.copy(text = text) - } - - private fun updateHasActions(hasActions: Boolean) { - internalUiState.value = internalUiState.value.copy(hasAction = hasActions) - } - - override fun NoteUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = NotePropertyName.Title.value, - value = title, - ), - - Property.StringProperty( - name = NotePropertyName.Text.value, - value = text, - ), - - Property.BooleanProperty( - name = NotePropertyName.HasAction.value, - value = hasAction, - ), - ) - } - - private enum class NotePropertyName(val value: String) { - Title("title"), - Text("text"), - HasAction("hasActions"), - } -} - -/** - * Фабрика [NoteParametersViewModel] - */ -internal class NoteParametersViewModelFactory( - private val defaultState: NoteUiState = NoteUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NoteParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationScreen.kt deleted file mode 100644 index 30d1d47cf3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationScreen.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.notification.compose - -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Notification -import com.sdds.compose.uikit.NotificationContent -import com.sdds.compose.uikit.overlay.LocalOverlayManager -import com.sdds.compose.uikit.overlay.showNotification -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Notification] - */ -@Composable -internal fun NotificationScreen(componentKey: ComponentKey = ComponentKey.Notification) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = NotificationViewModelFactory( - defaultState = NotificationUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { notificationUiState, style -> - val overlayManager = LocalOverlayManager.current - Button( - modifier = Modifier.align(Alignment.Center), - label = "show", - onClick = { - overlayManager.showNotification( - durationMillis = if (notificationUiState.autoDismiss) 3000 else null, - position = notificationUiState.position, - isFocusable = notificationUiState.focusable, - ) { - Notification( - style = style, - hasClose = notificationUiState.hasClose, - closeIcon = painterResource(R.drawable.ic_close_24), - onClose = { overlayManager.remove(it) }, - ) { - val idText = if (notificationUiState.showId) " $it" else "" - NotificationContent( - modifier = Modifier.fillMaxWidth(0.8f), - title = notificationUiState.title, - text = "${notificationUiState.text}$idText", - buttons = { - button { Button(label = "Ok", onClick = {}) } - button { Button(label = "Cancel", onClick = {}) } - }, - ) - } - } - }, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun NotificationScreenPreview() { - SandboxTheme { - NotificationScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationUiState.kt deleted file mode 100644 index 86bac6366d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationUiState.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.notification.compose - -import com.sdds.compose.uikit.overlay.OverlayPosition -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class NotificationUiState( - override val variant: String = "", - override val appearance: String = "", - val title: String = "Title", - val text: String = "Notification Text", - val hasClose: Boolean = true, - val focusable: Boolean = false, - val autoDismiss: Boolean = true, - val showId: Boolean = true, - val position: OverlayPosition = OverlayPosition.BottomCenter, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationViewModel.kt deleted file mode 100644 index da73eb136f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/compose/NotificationViewModel.kt +++ /dev/null @@ -1,64 +0,0 @@ -package com.sdds.playground.sandbox.notification.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Notification - */ -internal class NotificationViewModel( - defaultState: NotificationUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun NotificationUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - enumProperty( - name = "posittion", - value = position, - onApply = { internalUiState.value = internalUiState.value.copy(position = it) }, - ), - Property.BooleanProperty( - name = "hasClose", - value = hasClose, - onApply = { internalUiState.value = internalUiState.value.copy(hasClose = it) }, - ), - Property.BooleanProperty( - name = "focusable", - value = focusable, - onApply = { internalUiState.value = internalUiState.value.copy(focusable = it) }, - ), - Property.BooleanProperty( - name = "autoDismiss", - value = autoDismiss, - onApply = { internalUiState.value = internalUiState.value.copy(autoDismiss = it) }, - ), - Property.BooleanProperty( - name = "showId", - value = showId, - onApply = { internalUiState.value = internalUiState.value.copy(showId = it) }, - ), - ) - } -} - -internal class NotificationViewModelFactory( - private val defaultState: NotificationUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NotificationViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationFragment.kt deleted file mode 100644 index a6cef7afd3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.notification.vs - -import android.content.Context -import android.view.ContextThemeWrapper -import android.view.View -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.fixtures.stories.notification.NotificationUiState -import com.sdds.uikit.fixtures.stories.notification.notification -import com.sdds.uikit.fixtures.stories.notification.notificationTrigger - -internal class NotificationFragment : ComponentFragment() { - private var notificationContext: Context? = null - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ToastViewModelFactory( - defaultState = getState { NotificationUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - notificationContext = contextWrapper - return notificationTrigger(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: NotificationUiState) { - val context = notificationContext ?: return - component?.setOnClickListener { notification(context, state).show() } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationViewModel.kt deleted file mode 100644 index 26c8d458eb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notification/vs/NotificationViewModel.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.playground.sandbox.notification.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.notification.NotificationUiState -import com.sdds.uikit.overlays.OverlayPosition - -internal class NotificationViewModel( - defaultState: NotificationUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = NotificationPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - NotificationPropertyName.Position -> currentState.copy(position = OverlayPosition.valueOf(valueString)) - NotificationPropertyName.AutoDismiss -> currentState.copy(autoDismiss = valueString.toBoolean()) - NotificationPropertyName.Focusable -> currentState.copy(focusable = valueString.toBoolean()) - NotificationPropertyName.Text -> currentState.copy(text = valueString) - NotificationPropertyName.HasClose -> currentState.copy(hasClose = valueString.toBoolean()) - else -> currentState - } - } - - override fun NotificationUiState.toProps(): List> { - return listOf( - enumProperty( - name = NotificationPropertyName.Position.value, - value = position, - ), - Property.StringProperty( - name = NotificationPropertyName.Text.value, - value = text, - ), - Property.BooleanProperty( - name = NotificationPropertyName.AutoDismiss.value, - value = autoDismiss, - ), - Property.BooleanProperty( - name = NotificationPropertyName.Focusable.value, - value = focusable, - ), - Property.BooleanProperty( - name = NotificationPropertyName.HasClose.value, - value = hasClose, - ), - ) - } - - private enum class NotificationPropertyName(val value: String) { - Position("position"), - Text("text"), - AutoDismiss("autoDismiss"), - Focusable("focusable"), - HasClose("hasClose"), - } -} - -internal class ToastViewModelFactory( - private val defaultState: NotificationUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NotificationViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentScreen.kt deleted file mode 100644 index 62ef6ecb35..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentScreen.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.notificationcontent.compose - -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.NotificationContent -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [NotificationContent] - */ -@Composable -internal fun NotificationContentScreen(componentKey: ComponentKey = ComponentKey.NotificationContent) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = NotificationContentViewModelFactory( - defaultState = NotificationContentUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { notificationContentUiState, style -> - NotificationContent( - modifier = Modifier.fillMaxWidth(0.7f), - style = style, - title = notificationContentUiState.title, - text = notificationContentUiState.text, - buttons = if (notificationContentUiState.hasActions) { - { - button { Button("Ok", {}) } - button { Button("Cancel", {}) } - } - } else { - null - }, - ) - }, - ) -} - -@Composable -internal fun NotificationContentPreview(style: NotificationContentStyle) { - NotificationContent( - modifier = Modifier.fillMaxWidth(0.6f), - style = style, - title = "Title", - text = "Text", - buttons = { - button { Button("Ok", {}) } - button { Button("Cancel", {}) } - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun NotificationContentScreenPreview() { - SandboxTheme { - NotificationContentScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentUiState.kt deleted file mode 100644 index 3e43336061..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentUiState.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.notificationcontent.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class NotificationContentUiState( - override val variant: String = "", - override val appearance: String = "", - val title: String = "Title", - val text: String = "Text", - val hasActions: Boolean = true, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentViewModel.kt deleted file mode 100644 index 14d539d6cb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/compose/NotificationContentViewModel.kt +++ /dev/null @@ -1,53 +0,0 @@ -package com.sdds.playground.sandbox.notificationcontent.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента NotificationContent - */ -internal class NotificationContentViewModel( - defaultState: NotificationContentUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - override fun NotificationContentUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - Property.BooleanProperty( - name = "hasActions", - value = hasActions, - onApply = { - internalUiState.value = internalUiState.value.copy(hasActions = it) - }, - ), - ) - } -} - -internal class NotificationContentViewModelFactory( - private val defaultState: NotificationContentUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NotificationContentViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentFragment.kt deleted file mode 100644 index d269990591..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.notificationcontent.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.NotificationContent -import com.sdds.uikit.fixtures.stories.notificationcontent.NotificationContentUiState -import com.sdds.uikit.fixtures.stories.notificationcontent.applyState -import com.sdds.uikit.fixtures.stories.notificationcontent.notificationContent - -internal class NotificationContentFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - NotificationContentParametersViewModelFactory( - defaultState = getState { NotificationContentUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): NotificationContent { - return notificationContent(contextWrapper) - } - - override fun onComponentUpdate( - component: NotificationContent?, - state: NotificationContentUiState, - ) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentParametersViewModel.kt deleted file mode 100644 index f852aaf390..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/notificationcontent/vs/NotificationContentParametersViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.notificationcontent.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.notificationcontent.NotificationContentUiState - -/** - * ViewModel для экранов с компонентом NotificationContent - */ -internal class NotificationContentParametersViewModel( - defaultState: NotificationContentUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (NotificationContentPropertyName.values().find { it.value == name }) { - NotificationContentPropertyName.Title -> updateTitle(value?.toString().orEmpty()) - NotificationContentPropertyName.Text -> updateText(value?.toString().orEmpty()) - NotificationContentPropertyName.HasActions -> updateHasActions((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateTitle(title: String) { - internalUiState.value = internalUiState.value.copy(title = title) - } - - private fun updateText(text: String) { - internalUiState.value = internalUiState.value.copy(text = text) - } - - private fun updateHasActions(hasActions: Boolean) { - internalUiState.value = internalUiState.value.copy(hasActions = hasActions) - } - - override fun NotificationContentUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = NotificationContentPropertyName.Title.value, - value = title, - ), - - Property.StringProperty( - name = NotificationContentPropertyName.Text.value, - value = text, - ), - - Property.BooleanProperty( - name = NotificationContentPropertyName.HasActions.value, - value = hasActions, - ), - ) - } - - private enum class NotificationContentPropertyName(val value: String) { - Title("title"), - Text("text"), - HasActions("hasActions"), - } -} - -/** - * Фабрика [NotificationContentParametersViewModel] - */ -internal class NotificationContentParametersViewModelFactory( - private val defaultState: NotificationContentUiState = NotificationContentUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return NotificationContentParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayScreen.kt deleted file mode 100644 index a9bc9cc009..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayScreen.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.overlay.compose - -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.padding -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.Overlay -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.iconbutton.Clear -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.S - -/** - * Экран с компонентом [Overlay] - */ -@Composable -internal fun OverlayScreen(componentKey: ComponentKey = ComponentKey.Overlay) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = OverlayViewModelFactory(OverlayUiState(), componentKey), - key = componentKey.toString(), - ), - component = { _, style -> - var showOverlay by remember { mutableStateOf(false) } - Button( - label = "Show overlay", - onClick = { - showOverlay = true - }, - ) - if (showOverlay) { - Overlay( - modifier = Modifier.fillMaxSize(), - style = style, - ) { - IconButton( - modifier = Modifier - .align(Alignment.TopEnd) - .padding(end = 8.dp, top = 8.dp), - style = IconButton.S.Clear.style(), - icon = painterResource(id = R.drawable.ic_close_24), - onClick = { showOverlay = false }, - ) - } - } - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun OverlayPreview() { - SandboxTheme { - OverlayScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayUiState.kt deleted file mode 100644 index 96ce502e59..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayUiState.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.overlay.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Overlay - * @property variant вариант компонента - */ -internal data class OverlayUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayViewModel.kt deleted file mode 100644 index 6211e06efa..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/compose/OverlayViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.overlay.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Overlay - */ -internal class OverlayViewModel( - defaultState: OverlayUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun OverlayUiState.toProps(): List> { - return emptyList() - } -} - -internal class OverlayViewModelFactory( - private val defaultState: OverlayUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return OverlayViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayFragment.kt deleted file mode 100644 index cc24de158c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayFragment.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.overlay.vs - -import android.view.ContextThemeWrapper -import android.view.View -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.OverlayView -import com.sdds.uikit.fixtures.R -import com.sdds.uikit.fixtures.stories.overlay.OverlayUiState -import com.sdds.uikit.fixtures.stories.overlay.applyState -import com.sdds.uikit.fixtures.stories.overlay.overlayWithTrigger - -internal class OverlayFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - OverlayViewModelFactory( - defaultState = getState { OverlayUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.MATCH_PARENT) - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return overlayWithTrigger(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: OverlayUiState) { - component?.findViewById(R.id.overlay)?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayViewModel.kt deleted file mode 100644 index 5ec0e66b65..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/overlay/vs/OverlayViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.overlay.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.overlay.OverlayUiState - -internal class OverlayViewModel( - defaultState: OverlayUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun OverlayUiState.toProps(): List> { - return emptyList() - } -} - -/** - * Фабрика для [OverlayViewModel] - */ -internal class OverlayViewModelFactory( - private val defaultState: OverlayUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return OverlayViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsScreen.kt deleted file mode 100644 index 717a4f738d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsScreen.kt +++ /dev/null @@ -1,93 +0,0 @@ -package com.sdds.playground.sandbox.paginationdots.compose - -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.PaginationDots -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.iconbutton.Default -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.M - -/** - * Экран с компонентом [PaginationDots] - */ -@Composable -internal fun PaginationDotsScreen(componentKey: ComponentKey = ComponentKey.PaginationDots) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = PaginationDotsViewModelFactory( - defaultState = PaginationDotsUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { paginationDotsUiState, style -> - Column( - modifier = Modifier.fillMaxSize(), - verticalArrangement = Arrangement.Center, - horizontalAlignment = Alignment.CenterHorizontally, - ) { - var selectedIndex by remember { mutableIntStateOf(0) } - val totalCount = paginationDotsUiState.itemCount - PaginationDots( - style = style, - selectedIndex = selectedIndex, - totalCount = totalCount, - visibleCount = paginationDotsUiState.visibleItemCount, - ) - Spacer(Modifier.size(16.dp)) - Row(horizontalArrangement = Arrangement.spacedBy(8.dp)) { - IconButton( - iconRes = com.sdds.icons.R.drawable.ic_arrow_left_24, - style = IconButton.M.Default.style(), - onClick = { - selectedIndex = selectedIndex - .minus(paginationDotsUiState.step) - .coerceIn(0 until totalCount) - }, - ) - IconButton( - style = IconButton.M.Default.style(), - iconRes = com.sdds.icons.R.drawable.ic_arrow_right_24, - onClick = { - selectedIndex = selectedIndex - .plus(paginationDotsUiState.step) - .coerceIn(0 until totalCount) - }, - ) - } - } - }, - ) -} - -@Composable -internal fun PaginationDotsPreview(style: PaginationDotsStyle) { - SandboxTheme { - PaginationDots( - style = style, - selectedIndex = 0, - visibleCount = 5, - totalCount = 13, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsUiState.kt deleted file mode 100644 index c872190ab4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsUiState.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.paginationdots.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class PaginationDotsUiState( - override val variant: String = "", - override val appearance: String = "", - val itemCount: Int = 20, - val visibleItemCount: Int = 9, - val step: Int = 1, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsViewModel.kt deleted file mode 100644 index 48191b3adf..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/compose/PaginationDotsViewModel.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.paginationdots.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента PaginationDots - */ -internal class PaginationDotsViewModel( - defaultState: PaginationDotsUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun PaginationDotsUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "itemCount", - value = itemCount, - onApply = { - internalUiState.value = - internalUiState.value.copy(itemCount = it.coerceIn(visibleItemCount..100)) - }, - ), - Property.IntProperty( - name = "visibleItemCount", - value = visibleItemCount, - onApply = { - internalUiState.value = - internalUiState.value.copy(visibleItemCount = it.coerceIn(1..itemCount)) - }, - ), - Property.IntProperty( - name = "step", - value = step, - onApply = { - internalUiState.value = - internalUiState.value.copy(step = it.coerceIn(1..itemCount)) - }, - ), - ) - } -} - -internal class PaginationDotsViewModelFactory( - private val defaultState: PaginationDotsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return PaginationDotsViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsFragment.kt deleted file mode 100644 index ef07c55d83..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.paginationdots.vs - -import android.view.ContextThemeWrapper -import android.view.View -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.PaginationDots -import com.sdds.uikit.fixtures.R -import com.sdds.uikit.fixtures.stories.paginationdots.PaginationDotsUiState -import com.sdds.uikit.fixtures.stories.paginationdots.applyState -import com.sdds.uikit.fixtures.stories.paginationdots.paginationDotsWithControls - -internal class PaginationDotsFragment : ComponentFragment() { - - private var currentState = PaginationDotsUiState() - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - PaginationDotsViewModelFactory( - defaultState = getState { currentState }, - componentKey = componentKey, - ) - } - - override fun shouldRecreateComponentOnStateUpdate(state: PaginationDotsUiState): Boolean { - if (currentState.step != state.step) { - currentState = state - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return paginationDotsWithControls(contextWrapper, state = currentState) - } - - override fun onComponentUpdate(component: View?, state: PaginationDotsUiState) { - component?.findViewById(R.id.pagination_dots)?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsViewModel.kt deleted file mode 100644 index 0a462a9010..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/paginationdots/vs/PaginationDotsViewModel.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.sdds.playground.sandbox.paginationdots.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.paginationdots.PaginationDotsUiState - -internal class PaginationDotsViewModel( - defaultState: PaginationDotsUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val currentState = internalUiState.value - val propertyName = PaginationDotsPropertyName.values().find { it.value == name } - internalUiState.value = when (propertyName) { - PaginationDotsPropertyName.ITEM_COUNT -> currentState.copy(itemCount = valueString.toIntOrNull() ?: 0) - PaginationDotsPropertyName.VISIBLE_ITEM_COUNT -> currentState.copy( - visibleItemCount = valueString.toIntOrNull() ?: 0, - ) - PaginationDotsPropertyName.STEP -> currentState.copy(step = valueString.toIntOrNull() ?: 1) - else -> currentState - } - } - - override fun PaginationDotsUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = PaginationDotsPropertyName.ITEM_COUNT.value, - value = itemCount, - ), - Property.IntProperty( - name = PaginationDotsPropertyName.VISIBLE_ITEM_COUNT.value, - value = visibleItemCount, - ), - Property.IntProperty( - name = PaginationDotsPropertyName.STEP.value, - value = step, - ), - ) - } - - private enum class PaginationDotsPropertyName(val value: String) { - ITEM_COUNT("itemCount"), - VISIBLE_ITEM_COUNT("visibleItemCount"), - STEP("step"), - } -} - -internal class PaginationDotsViewModelFactory( - private val defaultState: PaginationDotsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return PaginationDotsViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverScreen.kt deleted file mode 100644 index ecca17765b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverScreen.kt +++ /dev/null @@ -1,93 +0,0 @@ -package com.sdds.playground.sandbox.popover.compose - -import android.util.Log -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Popover -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.TriggerInfo -import com.sdds.compose.uikit.popoverTrigger -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.S - -/** - * Экран с компонентом [Popover] - */ -@Composable -internal fun PopoverScreen(componentKey: ComponentKey = ComponentKey.Popover) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = PopoverViewModelFactory( - defaultState = PopoverUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { popoverUiState, style -> - val showPopover = remember { mutableStateOf(false) } - val triggerInfo = remember { mutableStateOf(TriggerInfo()) } - Button( - modifier = Modifier - .align(popoverUiState.triggerPlacement.toAlignment()) - .popoverTrigger(triggerInfo), - label = "show", - onClick = { showPopover.value = true }, - ) - Popover( - show = showPopover.value, - triggerInfo = triggerInfo.value, - placement = popoverUiState.placement, - placementMode = popoverUiState.placementMode, - triggerCentered = popoverUiState.triggerCentered, - alignment = popoverUiState.alignment, - style = style, - tailEnabled = popoverUiState.tailEnabled, - onDismissRequest = { - showPopover.value = false - }, - duration = popoverUiState.autoHide.autoHideToMs(), - ) { - Column( - modifier = Modifier - .padding(top = 12.dp, bottom = 8.dp, start = 8.dp, end = 8.dp), - ) { - Text("Title") - Spacer(Modifier.height(4.dp)) - Text("Text") - Spacer(Modifier.height(12.dp)) - Button( - modifier = Modifier.width(166.dp), - style = BasicButton.S.Default.style(), - label = "Ok", - onClick = { Log.d("Popover", "Popover button was pressed") }, - ) - } - } - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun PopoverScreenPreview() { - SandboxTheme { - PopoverScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverUiState.kt deleted file mode 100644 index a22e7bed28..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverUiState.kt +++ /dev/null @@ -1,56 +0,0 @@ -package com.sdds.playground.sandbox.popover.compose - -import androidx.compose.ui.Alignment -import com.sdds.compose.uikit.PopoverAlignment -import com.sdds.compose.uikit.PopoverPlacement -import com.sdds.compose.uikit.PopoverPlacementMode -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class PopoverUiState( - override val variant: String = "", - override val appearance: String = "", - val triggerPlacement: TriggerPlacement = TriggerPlacement.Center, - val alignment: PopoverAlignment = PopoverAlignment.Start, - val placement: PopoverPlacement = PopoverPlacement.Top, - val placementMode: PopoverPlacementMode = PopoverPlacementMode.Loose, - val triggerCentered: Boolean = false, - val tailEnabled: Boolean = true, - val autoHide: Boolean = false, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class TriggerPlacement { - TopStart, - TopCenter, - TopEnd, - CenterStart, - Center, - CenterEnd, - BottomStart, - BottomCenter, - BottomEnd, -} - -internal fun TriggerPlacement.toAlignment(): Alignment { - return when (this) { - TriggerPlacement.TopStart -> Alignment.TopStart - TriggerPlacement.TopCenter -> Alignment.TopCenter - TriggerPlacement.TopEnd -> Alignment.TopEnd - TriggerPlacement.CenterStart -> Alignment.CenterStart - TriggerPlacement.Center -> Alignment.Center - TriggerPlacement.CenterEnd -> Alignment.CenterEnd - TriggerPlacement.BottomStart -> Alignment.BottomStart - TriggerPlacement.BottomCenter -> Alignment.BottomCenter - TriggerPlacement.BottomEnd -> Alignment.BottomEnd - } -} - -internal enum class HideMode { - AutoHide, OnTapOnly -} - -internal fun Boolean.autoHideToMs(): Long? = if (this) 3000L else null diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverViewModel.kt deleted file mode 100644 index 0d60b3f414..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/compose/PopoverViewModel.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.popover.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Popover - */ -internal class PopoverViewModel( - defaultState: PopoverUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun PopoverUiState.toProps(): List> { - return listOf( - enumProperty( - name = "triggerAlignment", - value = triggerPlacement, - onApply = { - internalUiState.value = internalUiState.value.copy(triggerPlacement = it) - }, - ), - enumProperty( - name = "alignment", - value = alignment, - onApply = { - internalUiState.value = internalUiState.value.copy(alignment = it) - }, - ), - enumProperty( - name = "placement", - value = placement, - onApply = { - internalUiState.value = internalUiState.value.copy(placement = it) - }, - ), - enumProperty( - name = "placementMode", - value = placementMode, - onApply = { - internalUiState.value = internalUiState.value.copy(placementMode = it) - }, - ), - Property.BooleanProperty( - name = "autoHide", - value = autoHide, - onApply = { - internalUiState.value = internalUiState.value.copy(autoHide = it) - }, - ), - Property.BooleanProperty( - name = "triggerCentered", - value = triggerCentered, - onApply = { - internalUiState.value = internalUiState.value.copy( - triggerCentered = it, - ) - }, - ), - Property.BooleanProperty( - name = "tailEnabled", - value = tailEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy( - tailEnabled = it, - ) - }, - ), - ) - } -} - -internal class PopoverViewModelFactory( - private val defaultState: PopoverUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return PopoverViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverFragment.kt deleted file mode 100644 index a7d5c9f2cd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverFragment.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.popover.vs - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.View -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Popover -import com.sdds.uikit.fixtures.stories.popover.PopoverUiState -import com.sdds.uikit.fixtures.stories.popover.popoverWithTrigger -import com.sdds.uikit.fixtures.stories.popover.showWithState -import com.sdds.uikit.fixtures.stories.popover.toGravity - -/** - * Фрагмент с компонентом Popover - * @author Малышев Александр on 19.05.2025 - */ -internal class PopoverFragment : ComponentFragment() { - - private var popover: Popover? = null - private var popoverState: PopoverUiState = PopoverUiState() - private var currentTriggerGravity: Int = Gravity.CENTER - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - PopoverViewModelFactory( - defaultState = getState { popoverState }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override val defaultGravity: Int - get() = currentTriggerGravity - - override fun shouldRecreateComponentOnStateUpdate(state: PopoverUiState): Boolean { - val newGravity = state.triggerAlignment.toGravity() - if (newGravity != currentTriggerGravity) { - currentTriggerGravity = newGravity - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return popoverWithTrigger(contextWrapper) - .also { popover = it.popover } - .also { popoverTrigger -> - popoverTrigger.trigger.setOnClickListener { - popoverTrigger.popover.showWithState(it, popoverState) - } - }.trigger - } - - override fun onComponentUpdate(component: View?, state: PopoverUiState) { - popoverState = state - updatePopover(component) - } - - override fun onDestroyView() { - super.onDestroyView() - popover = null - } - - private fun updatePopover(trigger: View?) = popover?.run { - trigger ?: return@run - if (isShowing) { - dismiss() - showWithState(trigger, popoverState) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverViewModel.kt deleted file mode 100644 index 878723f3fc..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/popover/vs/PopoverViewModel.kt +++ /dev/null @@ -1,102 +0,0 @@ -package com.sdds.playground.sandbox.popover.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.popover.PopoverAlignment -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacement -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacementMode -import com.sdds.uikit.fixtures.stories.popover.PopoverTriggerAlignment -import com.sdds.uikit.fixtures.stories.popover.PopoverUiState - -/** - * ViewModel компонента Popover - * @author Малышев Александр on 19.05.2025 - */ -internal class PopoverViewModel( - defaultState: PopoverUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = PopoverPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PopoverPropertyName.Placement -> currentState.copy(placement = PopoverPlacement.valueOf(valueString)) - PopoverPropertyName.PlacementMode -> currentState.copy( - placementMode = PopoverPlacementMode.valueOf(valueString), - ) - PopoverPropertyName.Alignment -> currentState.copy(alignment = PopoverAlignment.valueOf(valueString)) - PopoverPropertyName.TriggerCentered -> currentState.copy(triggerCentered = valueString.toBoolean()) - PopoverPropertyName.TriggerAlignment -> currentState.copy( - triggerAlignment = PopoverTriggerAlignment.valueOf(valueString), - ) - PopoverPropertyName.TailEnabled -> currentState.copy(tailEnabled = valueString.toBoolean()) - PopoverPropertyName.AutoDismiss -> currentState.copy(autoDismiss = valueString.toBoolean()) - else -> currentState - } - } - - override fun PopoverUiState.toProps(): List> { - return listOf( - enumProperty( - name = PopoverPropertyName.PlacementMode.value, - value = placementMode, - ), - enumProperty( - name = PopoverPropertyName.Placement.value, - value = placement, - ), - enumProperty( - name = PopoverPropertyName.Alignment.value, - value = alignment, - ), - enumProperty( - name = PopoverPropertyName.TriggerAlignment.value, - value = triggerAlignment, - ), - Property.BooleanProperty( - name = PopoverPropertyName.TailEnabled.value, - value = tailEnabled, - ), - Property.BooleanProperty( - name = PopoverPropertyName.TriggerCentered.value, - value = triggerCentered, - ), - Property.BooleanProperty( - name = PopoverPropertyName.AutoDismiss.value, - value = autoDismiss, - ), - ) - } - - private enum class PopoverPropertyName(val value: String) { - Placement("placement"), - PlacementMode("placementMode"), - Alignment("alignment"), - TriggerCentered("triggerCentered"), - TriggerAlignment("triggerAlignment"), - TailEnabled("tailEnabled"), - AutoDismiss("autoDismiss"), - } -} - -/** - * Фабрика для [PopoverViewModel] - */ -internal class PopoverViewModelFactory( - private val defaultState: PopoverUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return PopoverViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressScreen.kt deleted file mode 100644 index 913ade251d..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressScreen.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.CircularProgressBar -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [CircularProgressBar] - */ -@Composable -internal fun CircularProgressScreen(componentKey: ComponentKey = ComponentKey.CircularProgressBar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = CircularProgressViewModelFactory( - defaultState = CircularProgressUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { progressUiState, style -> - CircularProgressBar( - progress = progressUiState.progress, - style = style, - trackEnabled = progressUiState.trackEnabled, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun CircularProgressScreenPreview() { - SandboxTheme { - CircularProgressScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressUiState.kt deleted file mode 100644 index 2bc37399c6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressUiState.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Progress - * @property variant стиль компонента - * @property progress текущий прогресс - */ -internal data class CircularProgressUiState( - override val variant: String = "", - override val appearance: String = "", - val progress: Float = 0.5f, - val trackEnabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressViewModel.kt deleted file mode 100644 index 9f797920e1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/CircularProgressViewModel.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import kotlin.math.roundToInt - -/** - * ViewModel компонента CircularProgress - */ -internal class CircularProgressViewModel( - defaultState: CircularProgressUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateProgress(progress: Float) { - internalUiState.value = internalUiState.value.copy( - progress = progress.coerceIn(0f, 1f), - ) - } - - override fun CircularProgressUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "progress", - value = (progress * MAX_PROGRESS).roundToInt(), - onApply = { updateProgress(it.toFloat() / MAX_PROGRESS) }, - ), - Property.BooleanProperty( - name = "trackEnabled", - value = trackEnabled, - onApply = { - internalUiState.value = internalUiState.value.copy( - trackEnabled = it, - ) - }, - ), - ) - } - - private companion object { - const val MAX_PROGRESS = 100 - } -} - -internal class CircularProgressViewModelFactory( - private val defaultState: CircularProgressUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CircularProgressViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressPreviews.kt deleted file mode 100644 index f11dd18020..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressPreviews.kt +++ /dev/null @@ -1,114 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ProgressBar -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.progressbar.Accent -import com.sdds.serv.styles.progressbar.Default -import com.sdds.serv.styles.progressbar.Gradient -import com.sdds.serv.styles.progressbar.Negative -import com.sdds.serv.styles.progressbar.Positive -import com.sdds.serv.styles.progressbar.ProgressBar -import com.sdds.serv.styles.progressbar.Secondary -import com.sdds.serv.styles.progressbar.Warning - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewDefault() { - SandboxTheme { - ProgressBar( - progress = 0.25f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Default.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewSecondary() { - SandboxTheme { - ProgressBar( - progress = 0.25f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Secondary.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewWarning() { - SandboxTheme { - ProgressBar( - progress = 0.25f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Warning.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewPositive() { - SandboxTheme { - ProgressBar( - progress = 0.5f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Positive.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewNegative() { - SandboxTheme { - ProgressBar( - progress = 0.99f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Negative.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewAccent() { - SandboxTheme { - ProgressBar( - progress = 1f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Accent.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewGradientAccent() { - SandboxTheme { - ProgressBar( - progress = 0.5f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Gradient.style(), - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun ProgressPreviewDefaultValueOne() { - SandboxTheme { - ProgressBar( - progress = 0.01f, - modifier = Modifier.width(240.dp), - style = ProgressBar.Default.style(), - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressScreen.kt deleted file mode 100644 index 955ee0137b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressScreen.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.ProgressBar -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [ProgressBar] - */ -@Composable -internal fun ProgressScreen(componentKey: ComponentKey = ComponentKey.ProgressBar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ProgressViewModelFactory(defaultState = ProgressUiState(), componentKey = componentKey), - key = componentKey.toString(), - ), - component = { progressUiState, style -> - ProgressBar( - progress = progressUiState.progress, - modifier = Modifier.width(240.dp), - style = style, - ) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun ProgressScreenPreview() { - SandboxTheme { - ProgressScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressUiState.kt deleted file mode 100644 index 769269d74a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressUiState.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента Progress - * @property variant стиль компонента - * @property progress текущий прогресс - */ -internal data class ProgressUiState( - override val variant: String = "", - override val appearance: String = "", - val progress: Float = 0.5f, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressViewModel.kt deleted file mode 100644 index f17d54c0a3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/compose/ProgressViewModel.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.progress.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Progress - */ -internal class ProgressViewModel( - defaultState: ProgressUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateProgress(progress: Float) { - internalUiState.value = internalUiState.value.copy( - progress = progress.coerceIn(0f, 1f), - ) - } - - override fun ProgressUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "progress", - value = (progress * MAX_PROGRESS).toInt(), - onApply = { updateProgress(it.toFloat() / MAX_PROGRESS) }, - ), - ) - } - - private companion object { - const val MAX_PROGRESS = 100 - } -} - -internal class ProgressViewModelFactory( - private val defaultState: ProgressUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ProgressViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarFragment.kt deleted file mode 100644 index 79112a9e05..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarFragment.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.progress.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.CircularProgressBar -import com.sdds.uikit.fixtures.stories.progress.CircularProgressUiState -import com.sdds.uikit.fixtures.stories.progress.applyState -import com.sdds.uikit.fixtures.stories.progress.circularProgressBar - -/** - * Фрагмент с компонентом CircularProgressBar - * @author Малышев Александр on 12.04.2025 - */ -internal class CircularProgressBarFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - CircularProgressBarViewModelFactory( - defaultState = getState { CircularProgressUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): CircularProgressBar { - return circularProgressBar(contextWrapper) - } - - override fun onComponentUpdate(component: CircularProgressBar?, state: CircularProgressUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarViewModel.kt deleted file mode 100644 index df9ca3aeea..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/CircularProgressBarViewModel.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.progress.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.progress.CircularProgressUiState -import kotlin.math.roundToInt - -/** - * ViewModel компонента CircularProgressBar - */ -internal class CircularProgressBarViewModel( - defaultState: CircularProgressUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = ProgressPropertyName.values().find { it.value == name } - val valueString = value?.toString() ?: return - when (pName) { - ProgressPropertyName.Progress -> updateProgress( - (valueString.toFloatOrNull() ?: 0f) / MAX_PROGRESS, - ) - ProgressPropertyName.HasTrack -> updateTrackEnabled(valueString.toBoolean()) - else -> {} - } - } - - private fun updateProgress(progress: Float) { - internalUiState.value = internalUiState.value.copy( - progress = progress.coerceIn(0f, 1f), - ) - } - - private fun updateTrackEnabled(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - trackEnabled = enabled, - ) - } - - override fun CircularProgressUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = ProgressPropertyName.Progress.value, - value = (progress * MAX_PROGRESS).roundToInt(), - ), - Property.BooleanProperty( - name = ProgressPropertyName.HasTrack.value, - value = trackEnabled, - ), - ) - } - - private enum class ProgressPropertyName(val value: String) { - Progress("progress"), - HasTrack("hasTrack"), - } - - private companion object { - const val MAX_PROGRESS = 100 - } -} - -internal class CircularProgressBarViewModelFactory( - private val defaultState: CircularProgressUiState = CircularProgressUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return CircularProgressBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarFragment.kt deleted file mode 100644 index 1a195ace48..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarFragment.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.progress.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ProgressBar -import com.sdds.uikit.fixtures.stories.progress.ProgressUiState -import com.sdds.uikit.fixtures.stories.progress.applyState -import com.sdds.uikit.fixtures.stories.progress.progressBar - -/** - * Фрагмент с компонентом ProgressBar - * @author Малышев Александр on 19.08.2024 - */ -internal class ProgressBarFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ProgressBarViewModelFactory( - defaultState = getState { ProgressUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams by lazy { - FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - LayoutParams.WRAP_CONTENT, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): ProgressBar { - return progressBar(contextWrapper) - } - - override fun onComponentUpdate(component: ProgressBar?, state: ProgressUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarViewModel.kt deleted file mode 100644 index fecf4846bd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/progress/vs/ProgressBarViewModel.kt +++ /dev/null @@ -1,65 +0,0 @@ -package com.sdds.playground.sandbox.progress.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.progress.ProgressUiState -import kotlin.math.roundToInt - -/** - * ViewModel компонента ProgressBar - */ -internal class ProgressBarViewModel( - defaultState: ProgressUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = ProgressPropertyName.values().find { it.value == name } - when (pName) { - ProgressPropertyName.Progress -> updateProgress( - (value?.toString()?.toFloatOrNull() ?: 0f) / MAX_PROGRESS, - ) - - else -> {} - } - } - - private fun updateProgress(progress: Float) { - internalUiState.value = internalUiState.value.copy( - progress = progress.coerceIn(0f, 1f), - ) - } - - override fun ProgressUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = ProgressPropertyName.Progress.value, - value = (progress * MAX_PROGRESS).roundToInt(), - ), - ) - } - - private enum class ProgressPropertyName(val value: String) { - Progress("progress"), - } - - private companion object { - const val MAX_PROGRESS = 100 - } -} - -internal class ProgressBarViewModelFactory( - private val defaultState: ProgressUiState = ProgressUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ProgressBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxPreviews.kt deleted file mode 100644 index e2ed0aaa11..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxPreviews.kt +++ /dev/null @@ -1,230 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.RadioBox -import com.sdds.compose.uikit.RadioBoxGroup -import com.sdds.compose.uikit.isChecked -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.updateSelection -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.radiobox.M -import com.sdds.serv.styles.radiobox.RadioBox -import com.sdds.serv.styles.radiobox.S -import com.sdds.serv.styles.radioboxgroup.M -import com.sdds.serv.styles.radioboxgroup.RadioBoxGroup -import com.sdds.serv.styles.radioboxgroup.S - -/** - * Превью [RadioBox] - */ -@Composable -@Preview(showBackground = true) -internal fun RadioBoxPreview() { - SandboxTheme { - RadioBox( - checked = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxPreviewSizeM() { - SandboxTheme { - RadioBox( - style = RadioBox.M.style(), - checked = true, - enabled = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxPreviewSizeS() { - SandboxTheme { - RadioBox( - style = RadioBox.S.style(), - checked = false, - enabled = true, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxPreviewSizeMNoDescription() { - SandboxTheme { - RadioBox( - style = RadioBox.M.style(), - checked = true, - enabled = true, - label = "Label", - description = "", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxPreviewDisabled() { - SandboxTheme { - RadioBox( - style = RadioBox.M.style(), - checked = true, - enabled = false, - label = "Label", - description = "Description", - onClick = {}, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxGroupPreviewSizeM() { - SandboxTheme { - RadioBoxGroup( - style = RadioBoxGroup.M.style(), - default = 1, - ) { selection -> - radioBoxItem(key = 1) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 2) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 3) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxGroupPreviewSizeS() { - SandboxTheme { - RadioBoxGroup( - style = RadioBoxGroup.S.style(), - default = 2, - ) { selection -> - radioBoxItem(key = 1) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 2) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 3) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxGroupPreviewSizeMDescription() { - SandboxTheme { - RadioBoxGroup( - style = RadioBoxGroup.M.style(), - default = 1, - ) { selection -> - radioBoxItem(key = 1) { key -> - RadioBox( - checked = isChecked(selection, key), - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 2) { key -> - RadioBox( - checked = isChecked(selection, key), - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 3) { key -> - RadioBox( - checked = isChecked(selection, key), - description = "Description", - onClick = { updateSelection(selection, key) }, - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun RadioBoxGroupPreviewSizeSLabel() { - SandboxTheme { - RadioBoxGroup( - style = RadioBoxGroup.S.style(), - default = 2, - ) { selection -> - radioBoxItem(key = 1) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 2) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - onClick = { updateSelection(selection, key) }, - ) - } - radioBoxItem(key = 3) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "Label", - onClick = { updateSelection(selection, key) }, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxScreen.kt deleted file mode 100644 index f2404195d9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxScreen.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.RadioBox -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [RadioBox] - */ -@Composable -internal fun RadioBoxScreen(componentKey: ComponentKey = ComponentKey.RadioBox) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = RadioBoxViewModelFactory(RadioBoxUiState(), componentKey), - key = componentKey.toString(), - ), - component = { radioBoxState, style -> - RadioBox( - style = style, - checked = radioBoxState.checked, - onClick = {}, - label = radioBoxState.label, - description = radioBoxState.description, - enabled = radioBoxState.enabled, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun RadioBoxScreenPreview() { - SandboxTheme { - RadioBoxScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxUiState.kt deleted file mode 100644 index d2389236a2..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxUiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние radiobox - * - * @property checked состояние radiobox - * @property label текст лэйбла - * @property description текст описания - * @property enabled включен ли radiobox - */ -internal data class RadioBoxUiState( - override val variant: String = "", - override val appearance: String = "", - val checked: Boolean = false, - val label: String? = "Label", - val description: String? = "Description", - val enabled: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxViewModel.kt deleted file mode 100644 index 724fdeeec1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/RadioBoxViewModel.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом RadioBox - */ -internal class RadioBoxViewModel( - defaultState: RadioBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private fun updateChecked(checked: Boolean) { - internalUiState.value = internalUiState.value.copy(checked = checked) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun RadioBoxUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = "checked", - value = checked, - onApply = { updateChecked(it) }, - ), - - Property.StringProperty( - name = "label", - value = label.orEmpty(), - onApply = { updateLabel(it) }, - ), - - Property.StringProperty( - name = "description", - value = description.orEmpty(), - onApply = { updateDescription(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - ) - } -} - -internal class RadioBoxViewModelFactory( - private val defaultState: RadioBoxUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RadioBoxViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupScreen.kt deleted file mode 100644 index b04da4cc35..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupScreen.kt +++ /dev/null @@ -1,47 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose.group - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.RadioBox -import com.sdds.compose.uikit.RadioBoxGroup -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с RadioBoxGroup - */ -@Composable -internal fun RadioBoxGroupScreen(componentKey: ComponentKey = ComponentKey.RadioBoxGroup) { - val radioBoxGroupViewModel: RadioBoxGroupViewModel = - viewModel( - factory = RadioBoxGroupViewModelFactory(RadioBoxGroupUiState(), componentKey), - key = componentKey.toString(), - ) - - ComponentScaffold( - key = componentKey, - viewModel = radioBoxGroupViewModel, - component = { radioBoxGroupState, style -> - RadioBoxGroup(style = style) { - radioBoxGroupState.items.map { itemData -> - RadioBox( - checked = radioBoxGroupViewModel.isChecked(itemData.id), - label = itemData.label, - description = itemData.description, - onClick = { radioBoxGroupViewModel.updateCurrentItem(itemData.id) }, - ) - } - } - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun ButtonsScreenPreview() { - SandboxTheme { - RadioBoxGroupScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupUiState.kt deleted file mode 100644 index a7e61d0117..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupUiState.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose.group - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояния компонента RadioBoxGroup - * @property items элементы группы - * @property current текущий выбранный элемент - */ -internal data class RadioBoxGroupUiState( - override val variant: String = "", - override val appearance: String = "", - val items: List = ITEMS, - val current: Any? = items.first().id, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } - - private companion object { - val ITEMS = listOf( - RadioBoxGroupItem(1, "Label", "Description"), - RadioBoxGroupItem(2, "Label", "Description"), - ) - } -} - -internal data class RadioBoxGroupItem( - val id: Int, - val label: String? = null, - val description: String? = null, -) diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupViewModel.kt deleted file mode 100644 index 795abf8d47..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/RadioBoxGroupViewModel.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.PropertiesOwner -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом RadioBox - */ -internal class RadioBoxGroupViewModel( - defaultState: RadioBoxGroupUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey), PropertiesOwner { - - /** - * Обновляет текущий выбранный элемент - * @param currentId идентификатор текущего элемента - */ - fun updateCurrentItem(currentId: Any) { - internalUiState.value = internalUiState.value.copy( - current = currentId, - ) - } - - fun isChecked(id: Any): Boolean { - return internalUiState.value.current == id - } - - private fun updateLabel(label: String) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.map { item -> - item.copy(label = label.takeIf { it.isNotBlank() }) - }, - ) - } - - private fun updateDescription(description: String) { - internalUiState.value = internalUiState.value.copy( - items = internalUiState.value.items.map { item -> - item.copy(description = description.takeIf { it.isNotBlank() }) - }, - ) - } - - override fun RadioBoxGroupUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "label", - value = items.first().label ?: "Empty", - onApply = { updateLabel(it) }, - ), - - Property.StringProperty( - name = "description", - value = items.first().description ?: "Empty", - onApply = { updateDescription(it) }, - ), - ) - } -} - -internal class RadioBoxGroupViewModelFactory( - private val defaultState: RadioBoxGroupUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RadioBoxGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/SandboxRadioBoxGroup.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/SandboxRadioBoxGroup.kt deleted file mode 100644 index 72a3403128..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/compose/group/SandboxRadioBoxGroup.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.compose.group - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.RadioBox -import com.sdds.compose.uikit.RadioBoxGroup -import com.sdds.compose.uikit.isChecked -import com.sdds.compose.uikit.updateSelection -import com.sdds.playground.sandbox.SandboxTheme - -/** - * Превью RadioBoxGroup - */ -@Composable -@Preview(showBackground = true) -fun RadioBoxPreview() { - SandboxTheme { - RadioBoxGroup(default = 1) { selection -> - radioBoxItem(key = 1) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "RadioBox 1", - description = "Description 1", - onClick = { - updateSelection(selection, key) - }, - ) - } - radioBoxItem(key = 2) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "RadioBox 2", - description = "Description 2", - onClick = { - updateSelection(selection, key) - }, - ) - } - radioBoxItem(key = 3) { key -> - RadioBox( - checked = isChecked(selection, key), - label = "RadioBox 3", - description = "Description 3", - onClick = { - updateSelection(selection, key) - }, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxFragment.kt deleted file mode 100644 index aa29613ecf..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.RadioBox -import com.sdds.uikit.fixtures.stories.radiobox.RadioBoxUiState -import com.sdds.uikit.fixtures.stories.radiobox.applyState -import com.sdds.uikit.fixtures.stories.radiobox.radioBox - -/** - * Фрагмент с компонентом RadioBox - * @author Малышев Александр on 15.08.2024 - */ -internal class RadioBoxFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - RadioBoxViewModelFactory( - defaultState = getState { RadioBoxUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): RadioBox { - return radioBox(contextWrapper) - } - - override fun onComponentUpdate(component: RadioBox?, state: RadioBoxUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxViewModel.kt deleted file mode 100644 index 7a62064223..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/RadioBoxViewModel.kt +++ /dev/null @@ -1,91 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.radiobox.RadioBoxUiState - -/** - * ViewModel для экранов с компонентом RadioBox - */ -internal class RadioBoxViewModel( - defaultState: RadioBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (RadioBoxPropertyName.values().find { it.value == name }) { - RadioBoxPropertyName.Checked -> updateState((value as? Boolean) == true) - RadioBoxPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - RadioBoxPropertyName.Description -> updateDescription(value?.toString().orEmpty()) - RadioBoxPropertyName.Enabled -> updateEnabledState((value as? Boolean) == true) - else -> Unit - } - } - - private fun updateState(checked: Boolean) { - internalUiState.value = internalUiState.value.copy(checked = checked) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun RadioBoxUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = RadioBoxPropertyName.Checked.value, - value = checked, - ), - - Property.StringProperty( - name = RadioBoxPropertyName.Label.value, - value = label.orEmpty(), - ), - - Property.StringProperty( - name = RadioBoxPropertyName.Description.value, - value = description.orEmpty(), - ), - - Property.BooleanProperty( - name = RadioBoxPropertyName.Enabled.value, - value = enabled, - ), - ) - } - - private enum class RadioBoxPropertyName(val value: String) { - Checked("checked"), - Label("label"), - Description("description"), - Enabled("enabled"), - } -} - -/** - * Фабрика [RadioBoxViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class RadioBoxViewModelFactory( - private val defaultState: RadioBoxUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RadioBoxViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupFragment.kt deleted file mode 100644 index 91eb056767..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupFragment.kt +++ /dev/null @@ -1,39 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.vs.group - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.RadioBoxGroup -import com.sdds.uikit.fixtures.stories.radiobox.RadioBoxUiState -import com.sdds.uikit.fixtures.stories.radiobox.applyState -import com.sdds.uikit.fixtures.stories.radiobox.radioBoxGroup - -/** - * Фрагмент с компонентом RadioBoxGroup - * @author Малышев Александр on 15.08.2024 - */ -internal class RadioBoxGroupFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - RadioBoxGroupViewModelFactory( - defaultState = getState { RadioBoxUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_80x), - ViewGroup.LayoutParams.WRAP_CONTENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): RadioBoxGroup { - return radioBoxGroup(contextWrapper) - } - - override fun onComponentUpdate(component: RadioBoxGroup?, state: RadioBoxUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupViewModel.kt deleted file mode 100644 index c08ae92f79..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/radiobox/vs/group/RadioBoxGroupViewModel.kt +++ /dev/null @@ -1,69 +0,0 @@ -package com.sdds.playground.sandbox.radiobox.vs.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.radiobox.RadioBoxUiState - -/** - * ViewModel для экранов с компонентом RadioBox - */ -internal class RadioBoxGroupViewModel( - defaultState: RadioBoxUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - when (RadioBoxPropertyName.values().find { it.value == name }) { - RadioBoxPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - RadioBoxPropertyName.Description -> updateDescription(value?.toString().orEmpty()) - else -> Unit - } - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - override fun RadioBoxUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = RadioBoxPropertyName.Label.value, - value = label.orEmpty(), - ), - - Property.StringProperty( - name = RadioBoxPropertyName.Description.value, - value = description.orEmpty(), - ), - ) - } - - private enum class RadioBoxPropertyName(val value: String) { - Label("label"), - Description("description"), - } -} - -/** - * Фабрика [RadioBoxGroupViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class RadioBoxGroupViewModelFactory( - private val defaultState: RadioBoxUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RadioBoxGroupViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonScreen.kt deleted file mode 100644 index d9ff80b016..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonScreen.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.rectskeleton.compose - -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.RectSkeleton -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [RectSkeleton] - */ -@Composable -internal fun RectSkeletonScreen(componentKey: ComponentKey = ComponentKey.RectSkeleton) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = RectSkeletonViewModelFactory( - defaultState = RectSkeletonUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { _, style -> - Column( - verticalArrangement = Arrangement.spacedBy(16.dp), - ) { - RectSkeleton( - modifier = Modifier.size(60.dp), - style = style, - shape = CircleShape, - ) - RectSkeleton( - modifier = Modifier - .fillMaxWidth() - .height(30.dp), - style = style, - ) - Row( - horizontalArrangement = Arrangement.spacedBy(16.dp), - ) { - RectSkeleton( - modifier = Modifier.size(60.dp), - style = style, - ) - RectSkeleton( - modifier = Modifier.size(60.dp), - style = style, - ) - } - } - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun RectSkeletonScreenPreview() { - SandboxTheme { - RectSkeletonScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonUiState.kt deleted file mode 100644 index 5e795157df..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonUiState.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.rectskeleton.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class RectSkeletonUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonViewModel.kt deleted file mode 100644 index 620183459a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/compose/RectSkeletonViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.rectskeleton.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента RectSkeleton - */ -internal class RectSkeletonViewModel( - defaultState: RectSkeletonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun RectSkeletonUiState.toProps() = emptyList>() -} - -internal class RectSkeletonViewModelFactory( - private val defaultState: RectSkeletonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RectSkeletonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonFragment.kt deleted file mode 100644 index 9704aac32a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonFragment.kt +++ /dev/null @@ -1,35 +0,0 @@ -package com.sdds.playground.sandbox.rectskeleton.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.RectSkeleton -import com.sdds.uikit.fixtures.stories.skeleton.RectSkeletonUiState -import com.sdds.uikit.fixtures.stories.skeleton.rectSkeleton - -/** - * Фрагмент с компонентом RectSkeleton - */ -internal class RectSkeletonFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - RectSkeletonParametersViewModelFactory( - defaultState = getState { RectSkeletonUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_108x), - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_50x), - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): RectSkeleton { - return rectSkeleton(contextWrapper) - } - - override fun onComponentUpdate(component: RectSkeleton?, state: RectSkeletonUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonParametersViewModel.kt deleted file mode 100644 index 6f18d375a2..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/rectskeleton/vs/RectSkeletonParametersViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.rectskeleton.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.skeleton.RectSkeletonUiState - -/** - * ViewModel компонента ProgressBar - */ -internal class RectSkeletonParametersViewModel( - defaultState: RectSkeletonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun RectSkeletonUiState.toProps() = emptyList>() -} - -internal class RectSkeletonParametersViewModelFactory( - private val defaultState: RectSkeletonUiState = RectSkeletonUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return RectSkeletonParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarScreen.kt deleted file mode 100644 index b5505b35fd..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarScreen.kt +++ /dev/null @@ -1,124 +0,0 @@ -package com.sdds.playground.sandbox.scrollbar.compose - -import androidx.compose.foundation.gestures.Orientation -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.lazy.LazyColumn -import androidx.compose.foundation.lazy.rememberLazyListState -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.ScrollBar -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.Text -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [ScrollBar] - */ -@Composable -internal fun ScrollBarScreen(componentKey: ComponentKey = ComponentKey.ScrollBar) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ScrollBarViewModelFactory( - defaultState = ScrollBarUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { scrollBarUiState, style -> - Box( - modifier = Modifier - .fillMaxSize() - .padding(8.dp), - ) { - if (scrollBarUiState.lazy) { - val lazyState = rememberLazyListState() - LazyColumn( - modifier = Modifier.fillMaxSize(), - state = lazyState, - ) { - items(scrollBarUiState.itemCount) { - Text(text = "Item $it", modifier = Modifier.height(48.dp)) - } - } - ScrollBar( - modifier = Modifier.align(Alignment.CenterEnd), - style = style, - scrollState = lazyState, - alwaysShowScrollbar = scrollBarUiState.alwaysShowScrollbar, - hasTrack = scrollBarUiState.hasTrack, - hoverExpand = scrollBarUiState.hoverExpand, - ) - } else { - val state = rememberScrollState() - Column( - modifier = Modifier - .fillMaxSize() - .verticalScroll(state), - ) { - repeat(scrollBarUiState.itemCount) { - Text(text = "Item $it", modifier = Modifier.height(48.dp)) - } - } - ScrollBar( - modifier = Modifier.align(Alignment.CenterEnd), - style = style, - scrollState = state, - alwaysShowScrollbar = scrollBarUiState.alwaysShowScrollbar, - hasTrack = scrollBarUiState.hasTrack, - hoverExpand = scrollBarUiState.hoverExpand, - ) - } - } - }, - ) -} - -@Composable -internal fun ScrollBarPreview(style: ScrollBarStyle) { - SandboxTheme { - Box( - modifier = Modifier.height(40.dp), - ) { - val scrollState = rememberScrollState() - Row( - horizontalArrangement = Arrangement.spacedBy(2.dp), - modifier = Modifier - .horizontalScroll(scrollState), - ) { - repeat(20) { - Icon( - painter = painterResource(R.drawable.ic_animal_fill_24), - contentDescription = "", - ) - } - } - ScrollBar( - scrollState = scrollState, - modifier = Modifier.align(Alignment.BottomCenter), - style = style, - orientation = Orientation.Horizontal, - hasTrack = true, - hoverExpand = false, - alwaysShowScrollbar = true, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarUiState.kt deleted file mode 100644 index 95e506c8d1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarUiState.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.scrollbar.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние компонента ScrollBar - */ -internal data class ScrollBarUiState( - override val variant: String = "", - override val appearance: String = "", - val lazy: Boolean = true, - val itemCount: Int = 30, - val hoverExpand: Boolean = true, - val hasTrack: Boolean = true, - val alwaysShowScrollbar: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarViewModel.kt deleted file mode 100644 index bf5ae83163..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/compose/ScrollBarViewModel.kt +++ /dev/null @@ -1,69 +0,0 @@ -package com.sdds.playground.sandbox.scrollbar.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента ScrollBar - */ -internal class ScrollBarViewModel( - defaultState: ScrollBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ScrollBarUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "itemCount", - value = itemCount, - onApply = { - internalUiState.value = - internalUiState.value.copy(itemCount = it.coerceIn(1..100)) - }, - ), - Property.BooleanProperty( - name = "lazy", - value = lazy, - onApply = { - internalUiState.value = internalUiState.value.copy(lazy = it) - }, - ), - Property.BooleanProperty( - name = "hasTrack", - value = hasTrack, - onApply = { - internalUiState.value = internalUiState.value.copy(hasTrack = it) - }, - ), - Property.BooleanProperty( - name = "hoverExpand", - value = hoverExpand, - onApply = { - internalUiState.value = internalUiState.value.copy(hoverExpand = it) - }, - ), - Property.BooleanProperty( - name = "alwaysShowScrollbar", - value = alwaysShowScrollbar, - onApply = { - internalUiState.value = internalUiState.value.copy(alwaysShowScrollbar = it) - }, - ), - ) - } -} - -internal class ScrollBarViewModelFactory( - private val defaultState: ScrollBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ScrollBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarFragment.kt deleted file mode 100644 index d8d524f185..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarFragment.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.scrollbar.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.fixtures.R -import com.sdds.uikit.fixtures.stories.scrollbar.ScrollBarContainer -import com.sdds.uikit.fixtures.stories.scrollbar.ScrollBarUiState -import com.sdds.uikit.fixtures.stories.scrollbar.ScrollOrientation -import com.sdds.uikit.fixtures.stories.scrollbar.applyState -import com.sdds.uikit.fixtures.stories.scrollbar.scrollBar - -/** - * Фрагмент с компонентом ScrollBar - */ -internal class ScrollBarFragment : ComponentFragment() { - - private var scrollOrientation: ScrollOrientation = ScrollOrientation.HORIZONTAL - private var scrollBarState: ScrollBarUiState = ScrollBarUiState() - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ScrollBarParametersViewModelFactory( - defaultState = getState { ScrollBarUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.MATCH_PARENT, - FrameLayout.LayoutParams.MATCH_PARENT, - ) - - override fun getComponent(contextWrapper: ContextThemeWrapper): ViewGroup { - return scrollBar(contextWrapper, state = scrollBarState) - } - - override fun shouldRecreateComponentOnStateUpdate(state: ScrollBarUiState): Boolean { - val newOrientation = state.orientation - if (newOrientation != scrollOrientation) { - scrollOrientation = newOrientation - scrollBarState = scrollBarState.copy(orientation = newOrientation) - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun onComponentUpdate(component: ViewGroup?, state: ScrollBarUiState) { - scrollBarState = state - component?.findViewById(R.id.scroll_container)?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarParametersViewModel.kt deleted file mode 100644 index 9ee85c6ff5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/scrollbar/vs/ScrollBarParametersViewModel.kt +++ /dev/null @@ -1,83 +0,0 @@ -package com.sdds.playground.sandbox.scrollbar.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.scrollbar.ScrollBarUiState -import com.sdds.uikit.fixtures.stories.scrollbar.ScrollOrientation - -/** - * ViewModel компонента ScrollBar - */ -internal class ScrollBarParametersViewModel( - defaultState: ScrollBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = ScrollPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - ScrollPropertyName.Orientation -> currentState.copy(orientation = ScrollOrientation.valueOf(valueString)) - ScrollPropertyName.ItemsAmount -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(itemsAmount = valueString.toInt()) - } else { - currentState - } - - ScrollPropertyName.HasTrack -> currentState.copy(hasTrack = valueString.toBoolean()) - ScrollPropertyName.HoverExpand -> currentState.copy(hoverExpand = valueString.toBoolean()) - ScrollPropertyName.AutoHideScrollBar -> currentState.copy(autoHideScrollBar = valueString.toBoolean()) - else -> currentState - } - } - - override fun ScrollBarUiState.toProps(): List> { - return listOf( - enumProperty( - name = ScrollPropertyName.Orientation.value, - value = orientation, - ), - Property.IntProperty( - name = ScrollPropertyName.ItemsAmount.value, - value = itemsAmount, - ), - Property.BooleanProperty( - name = ScrollPropertyName.HasTrack.value, - value = hasTrack, - ), - Property.BooleanProperty( - name = ScrollPropertyName.HoverExpand.value, - value = hoverExpand, - ), - Property.BooleanProperty( - name = ScrollPropertyName.AutoHideScrollBar.value, - value = autoHideScrollBar, - ), - ) - } - - private enum class ScrollPropertyName(val value: String) { - Orientation("orientation"), - ItemsAmount("itemsAmount"), - HasTrack("hasTrack"), - HoverExpand("hoverExpand"), - AutoHideScrollBar("autoHideScrollBar"), - } -} - -internal class ScrollBarParametersViewModelFactory( - private val defaultState: ScrollBarUiState = ScrollBarUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ScrollBarParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemScreen.kt deleted file mode 100644 index 8df281d1c4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemScreen.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import androidx.compose.foundation.focusable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.painter.Painter -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.SegmentItem -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun SegmentItemScreen(componentKey: ComponentKey = ComponentKey.SegmentItem) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = SegmentItemViewModelFactory(SegmentItemUiState(), componentKey), - key = componentKey.toString(), - ), - component = { uiState, style -> - val interactionSource = remember { MutableInteractionSource() } - SegmentItem( - modifier = Modifier.focusable(uiState.enabled, interactionSource), - isSelected = uiState.selected, - style = style, - label = uiState.label, - value = uiState.value, - startIcon = startIcon(uiState.startIcon), - endIcon = endIcon(uiState.endContent), - counter = counter(uiState.count, uiState.endContent), - enabled = uiState.enabled, - interactionSource = interactionSource, - ) - }, - ) -} - -@Composable -private fun startIcon(hasStartIcon: Boolean): Painter? { - return if (hasStartIcon) { - painterResource(id = R.drawable.ic_scribble_diagonal_24) - } else { - null - } -} - -@Composable -private fun endIcon(contentType: SegmentItemContent): Painter? { - return if (contentType == SegmentItemContent.ICON) { - painterResource(id = R.drawable.ic_scribble_diagonal_36) - } else { - null - } -} - -@Composable -private fun counter(count: String, contentType: SegmentItemContent): String? { - return if (contentType == SegmentItemContent.COUNTER) count else null -} - -@Preview -@Composable -internal fun SegmentItemScreenPreview() { - SandboxTheme { - SegmentItemScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemUiState.kt deleted file mode 100644 index 014b0b4963..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class SegmentItemUiState( - override val variant: String = "", - override val appearance: String = "", - val label: String = "Label", - val value: String = "", - val selected: Boolean = true, - val startIcon: Boolean = false, - val endContent: SegmentItemContent = SegmentItemContent.COUNTER, - val enabled: Boolean = true, - val count: String = "1", -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class SegmentItemContent { - NONE, - ICON, - COUNTER, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemViewModel.kt deleted file mode 100644 index 4b6861e444..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentItemViewModel.kt +++ /dev/null @@ -1,80 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class SegmentItemViewModel( - defaultState: SegmentItemUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun SegmentItemUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = "selected", - value = selected, - onApply = { - internalUiState.value = internalUiState.value.copy(selected = it) - }, - ), - Property.StringProperty( - name = "label", - value = label, - onApply = { - internalUiState.value = internalUiState.value.copy(label = it) - }, - ), - Property.StringProperty( - name = "value", - value = value, - onApply = { - internalUiState.value = internalUiState.value.copy(value = it) - }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { - internalUiState.value = internalUiState.value.copy(enabled = it) - }, - ), - Property.BooleanProperty( - name = "startIcon", - value = startIcon, - onApply = { - internalUiState.value = internalUiState.value.copy(startIcon = it) - }, - ), - enumProperty( - name = "endContent", - value = endContent, - onApply = { - internalUiState.value = internalUiState.value.copy(endContent = it) - }, - ), - Property.StringProperty( - name = "count", - value = count, - onApply = { - internalUiState.value = internalUiState.value.copy(count = it) - }, - ), - ) - } -} - -internal class SegmentItemViewModelFactory( - private val defaultState: SegmentItemUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SegmentItemViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentScreen.kt deleted file mode 100644 index 24a6b51a04..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentScreen.kt +++ /dev/null @@ -1,131 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Counter -import com.sdds.compose.uikit.Divider -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.SegmentHorizontal -import com.sdds.compose.uikit.SegmentItem -import com.sdds.compose.uikit.SegmentScope -import com.sdds.compose.uikit.SegmentVertical -import com.sdds.compose.uikit.Text -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun SegmentScreen(componentKey: ComponentKey = ComponentKey.Segment) { - val vm = viewModel( - factory = SegmentViewModelFactory(SegmentUiState(), componentKey), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = vm, - component = { uiState, style -> - when (uiState.orientation) { - SegmentOrientation.Horizontal -> SegmentHorizontal( - stretch = uiState.stretch, - hasBackground = uiState.hasBackground, - style = style, - ) { - SegmentItems( - onClick = vm::updateCurrentItem, - isChecked = vm::isSelected, - uiState = uiState, - ) - } - - SegmentOrientation.Vertical -> SegmentVertical( - hasBackground = uiState.hasBackground, - style = style, - ) { - SegmentItems( - onClick = vm::updateCurrentItem, - isChecked = vm::isSelected, - uiState = uiState, - ) - } - } - }, - ) -} - -@Composable -private fun SegmentScope.SegmentItems( - onClick: (Int) -> Unit, - isChecked: (Int) -> Boolean, - uiState: SegmentUiState, -) { - repeat(uiState.amount) { id -> - segmentItem { - val interactionSource = remember { MutableInteractionSource() } - SegmentItem( - labelContent = { Text(uiState.label) }, - modifier = Modifier - .clickable( - enabled = uiState.enabled, - indication = null, - interactionSource = interactionSource, - ) { - onClick(id) - }, - isSelected = isChecked(id), - valueContent = { Text(uiState.value) }, - startContent = startIcon(uiState.startIcon), - endContent = endContent(uiState), - enabled = uiState.enabled, - interactionSource = interactionSource, - ) - } - - if (uiState.hasDivider && id < uiState.amount - 1) { - divider { Divider() } - } - } -} - -@Composable -private fun startIcon(hasStartIcon: Boolean): (@Composable () -> Unit)? { - return if (hasStartIcon) { - { - Icon(painterResource(id = R.drawable.ic_scribble_diagonal_24), "") - } - } else { - null - } -} - -@Composable -private fun endContent(state: SegmentUiState): (@Composable () -> Unit)? { - return when (state.endContent) { - SegmentItemContent.NONE -> null - SegmentItemContent.ICON -> { - { - Icon(painterResource(id = R.drawable.ic_scribble_diagonal_36), "") - } - } - - SegmentItemContent.COUNTER -> { - { - Counter(count = state.count) - } - } - } -} - -@Preview -@Composable -internal fun SegmentScreenPreview() { - SandboxTheme { - SegmentScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentUiState.kt deleted file mode 100644 index 3be27ddf3e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentUiState.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class SegmentUiState( - override val variant: String = "", - override val appearance: String = "", - val enabled: Boolean = true, - val amount: Int = 2, - val stretch: Boolean = false, - val hasBackground: Boolean = true, - val orientation: SegmentOrientation = SegmentOrientation.Horizontal, - val currentSelected: Int = 0, - val label: String = "Label", - val value: String = "", - val startIcon: Boolean = false, - val endContent: SegmentItemContent = SegmentItemContent.NONE, - val count: String = "1", - val hasDivider: Boolean = false, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -/** - * Ориентация компонента Segment - */ -enum class SegmentOrientation { - Horizontal, - Vertical, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentViewModel.kt deleted file mode 100644 index ae71afdbb4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/compose/SegmentViewModel.kt +++ /dev/null @@ -1,119 +0,0 @@ -package com.sdds.playground.sandbox.segment.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class SegmentViewModel( - defaultState: SegmentUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun updateCurrentItem(currentId: Int) { - internalUiState.value = internalUiState.value.copy( - currentSelected = currentId, - ) - } - - fun isSelected(id: Int): Boolean { - return internalUiState.value.currentSelected == id - } - - @Suppress("LongMethod") - override fun SegmentUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { - internalUiState.value = internalUiState.value.copy(amount = it) - }, - ), - enumProperty( - name = "orientation", - value = orientation, - onApply = { - internalUiState.value = internalUiState.value.copy(orientation = it) - }, - ), - Property.BooleanProperty( - name = "hasBackground", - value = hasBackground, - onApply = { - internalUiState.value = internalUiState.value.copy(hasBackground = it) - }, - ), - Property.BooleanProperty( - name = "stretch", - value = stretch, - onApply = { - internalUiState.value = internalUiState.value.copy(stretch = it) - }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { - internalUiState.value = internalUiState.value.copy(enabled = it) - }, - ), - Property.StringProperty( - name = "label", - value = label, - onApply = { - internalUiState.value = internalUiState.value.copy(label = it) - }, - ), - Property.StringProperty( - name = "value", - value = value, - onApply = { - internalUiState.value = internalUiState.value.copy(value = it) - }, - ), - Property.BooleanProperty( - name = "startIcon", - value = startIcon, - onApply = { - internalUiState.value = internalUiState.value.copy(startIcon = it) - }, - ), - Property.BooleanProperty( - name = "hasDivider", - value = hasDivider, - onApply = { - internalUiState.value = internalUiState.value.copy(hasDivider = it) - }, - ), - enumProperty( - name = "endContent", - value = endContent, - onApply = { - internalUiState.value = internalUiState.value.copy(endContent = it) - }, - ), - Property.StringProperty( - name = "count", - value = count, - onApply = { - internalUiState.value = internalUiState.value.copy(count = it) - }, - ), - ) - } -} - -internal class SegmentViewModelFactory( - private val defaultState: SegmentUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SegmentViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentItemFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentItemFragment.kt deleted file mode 100644 index 8d63b048e4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentItemFragment.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.segment.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.SegmentItem -import com.sdds.uikit.fixtures.stories.segment.SegmentUiState -import com.sdds.uikit.fixtures.stories.segment.applyState -import com.sdds.uikit.fixtures.stories.segment.segmentItem - -internal class SegmentItemFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SegmentItemViewModelFactory( - defaultState = getState { SegmentUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): SegmentItem { - return segmentItem(contextWrapper) - .apply { - setOnCheckedChangedListener { _, isChecked -> - componentViewModel.updateProperty("checked", isChecked) - } - } - } - - override fun onComponentUpdate(component: SegmentItem?, state: SegmentUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentParametersViewModel.kt deleted file mode 100644 index 61a8f986e8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/SegmentParametersViewModel.kt +++ /dev/null @@ -1,145 +0,0 @@ -package com.sdds.playground.sandbox.segment.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.segment.SegmentItemIcon -import com.sdds.uikit.fixtures.stories.segment.SegmentOrientation -import com.sdds.uikit.fixtures.stories.segment.SegmentUiState - -internal class SegmentItemViewModel( - defaultState: SegmentUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - var stretch = currentState.stretch - var counter = currentState.counter - var icon = currentState.icon - internalUiState.value = when (propertyName) { - PropertyName.Icon -> currentState.copy( - icon = when { - valueString == SegmentItemIcon.Start::class.simpleName -> SegmentItemIcon.Start - valueString == SegmentItemIcon.End::class.simpleName && counter -> { - counter = false - SegmentItemIcon.End - } - - valueString == SegmentItemIcon.End::class.simpleName && !counter -> { - SegmentItemIcon.End - } - - else -> SegmentItemIcon.No - }, - counter = counter, - ) - - PropertyName.Label -> currentState.copy(segmentItemLabel = valueString) - PropertyName.Value -> currentState.copy(segmentItemValue = valueString) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.Checked -> currentState.copy(checked = valueString.toBoolean()) - PropertyName.Stretch -> { - if (currentState.orientation == SegmentOrientation.HORIZONTAL) { - stretch = valueString.toBoolean() - } - currentState.copy(stretch = stretch) - } - - PropertyName.Orientation -> { - if (SegmentOrientation.valueOf(valueString) == SegmentOrientation.VERTICAL) { - stretch = false - } - currentState.copy( - orientation = SegmentOrientation.valueOf(valueString), - stretch = stretch, - ) - } - - PropertyName.Counter -> { - if (currentState.icon == SegmentItemIcon.End) icon = SegmentItemIcon.No - counter = valueString.toBoolean() - currentState.copy(counter = counter, icon = icon) - } - - PropertyName.Count -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(count = valueString) - } else { - currentState - } - } - } - - override fun SegmentUiState.toProps(): List> { - return listOfNotNull( - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - SegmentItemIcon.Start::class.simpleName.orEmpty(), - SegmentItemIcon.End::class.simpleName.orEmpty(), - SegmentItemIcon.No::class.simpleName.orEmpty(), - ), - ), - Property.StringProperty( - name = PropertyName.Label.value, - value = segmentItemLabel, - ), - Property.StringProperty( - name = PropertyName.Value.value, - value = segmentItemValue.orEmpty(), - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Checked.value, - value = checked, - ), - Property.BooleanProperty( - name = PropertyName.Counter.value, - value = counter, - ), - Property.StringProperty( - name = PropertyName.Count.value, - value = count, - ), - ) - } - - private enum class PropertyName(val value: String) { - Icon("icon"), - Label("label"), - Value("value"), - Enabled("enabled"), - Checked("checked"), - Stretch("stretch"), - Orientation("orientation"), - Counter("counter"), - Count("count"), - } -} - -internal class SegmentItemViewModelFactory( - private val defaultState: SegmentUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SegmentItemViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentFragment.kt deleted file mode 100644 index cb860fd3b3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentFragment.kt +++ /dev/null @@ -1,59 +0,0 @@ -package com.sdds.playground.sandbox.segment.vs.group - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams.MATCH_PARENT -import android.view.ViewGroup.LayoutParams.WRAP_CONTENT -import android.widget.FrameLayout.LayoutParams -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Segment -import com.sdds.uikit.fixtures.stories.segment.SegmentOrientation -import com.sdds.uikit.fixtures.stories.segment.SegmentUiState -import com.sdds.uikit.fixtures.stories.segment.applyState -import com.sdds.uikit.fixtures.stories.segment.segment - -internal class SegmentFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SegmentViewModelFactory( - defaultState = getState { SegmentUiState() }, - componentKey = componentKey, - ) - } - private var _currentOrientation: SegmentOrientation = SegmentOrientation.HORIZONTAL - private var _currentStretch: Boolean = false - - override val scrollMode: ScrollMode - get() = when { - _currentStretch && _currentOrientation == SegmentOrientation.HORIZONTAL -> ScrollMode.NONE - _currentOrientation == SegmentOrientation.HORIZONTAL -> ScrollMode.HORIZONTAL - else -> ScrollMode.VERTICAL - } - - override fun shouldRecreateComponentOnStateUpdate(state: SegmentUiState): Boolean { - var isChanged = false - if (_currentStretch != state.stretch) { - _currentStretch = state.stretch - isChanged = true - } - if (_currentOrientation != state.orientation) { - _currentOrientation = state.orientation - isChanged = true - } - return isChanged - } - - override val defaultLayoutParams: LayoutParams - get() = when { - _currentStretch -> LayoutParams(MATCH_PARENT, WRAP_CONTENT) - else -> super.defaultLayoutParams - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Segment { - return segment(contextWrapper) - } - - override fun onComponentUpdate(component: Segment?, state: SegmentUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentViewModel.kt deleted file mode 100644 index 22c27517eb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/segment/vs/group/SegmentViewModel.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.segment.vs.group - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.segment.SegmentItemIcon -import com.sdds.uikit.fixtures.stories.segment.SegmentOrientation -import com.sdds.uikit.fixtures.stories.segment.SegmentUiState - -internal class SegmentViewModel( - defaultState: SegmentUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - var stretch = currentState.stretch - var counter = currentState.counter - var icon = currentState.icon - internalUiState.value = when (propertyName) { - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - PropertyName.Icon -> currentState.copy( - icon = when { - valueString == SegmentItemIcon.Start::class.simpleName -> SegmentItemIcon.Start - valueString == SegmentItemIcon.End::class.simpleName && counter -> { - counter = false - SegmentItemIcon.End - } - valueString == SegmentItemIcon.End::class.simpleName && !counter -> { - SegmentItemIcon.End - } - else -> SegmentItemIcon.No - }, - counter = counter, - ) - - PropertyName.Label -> currentState.copy(segmentItemLabel = valueString) - PropertyName.Value -> currentState.copy(segmentItemValue = valueString) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.Stretch -> { - if (currentState.orientation == SegmentOrientation.HORIZONTAL) { - stretch = valueString.toBoolean() - } - currentState.copy(stretch = stretch) - } - - PropertyName.Orientation -> { - if (SegmentOrientation.valueOf(valueString) == SegmentOrientation.VERTICAL) stretch = false - currentState.copy( - orientation = SegmentOrientation.valueOf(valueString), - stretch = stretch, - ) - } - - PropertyName.Counter -> { - if (currentState.icon == SegmentItemIcon.End) icon = SegmentItemIcon.No - counter = valueString.toBoolean() - currentState.copy(counter = counter, icon = icon) - } - - PropertyName.Count -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(count = valueString) - } else { - currentState - } - } - } - - override fun SegmentUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - SegmentItemIcon.Start::class.simpleName.orEmpty(), - SegmentItemIcon.End::class.simpleName.orEmpty(), - SegmentItemIcon.No::class.simpleName.orEmpty(), - ), - ), - Property.StringProperty( - name = PropertyName.Label.value, - value = segmentItemLabel, - ), - Property.StringProperty( - name = PropertyName.Value.value, - value = segmentItemValue.orEmpty(), - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.Stretch.value, - value = stretch, - ), - enumProperty( - name = PropertyName.Orientation.value, - value = orientation, - ), - Property.BooleanProperty( - name = PropertyName.Counter.value, - value = counter, - ), - Property.StringProperty( - name = PropertyName.Count.value, - value = count, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - Icon("icon"), - Label("label"), - Value("value"), - Enabled("enabled"), - Stretch("stretch"), - Orientation("orientation"), - Counter("counter"), - Count("count"), - } -} - -internal class SegmentViewModelFactory( - private val defaultState: SegmentUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SegmentViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectScreen.kt deleted file mode 100644 index 648965e5b4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectScreen.kt +++ /dev/null @@ -1,242 +0,0 @@ -package com.sdds.playground.sandbox.select.compose - -import android.util.Log -import androidx.compose.foundation.layout.Arrangement -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.fillMaxSize -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.height -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Cell -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.EmptyState -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Select -import com.sdds.compose.uikit.SelectButton -import com.sdds.compose.uikit.SelectItem -import com.sdds.compose.uikit.SelectItemType -import com.sdds.compose.uikit.SelectState -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.SelectTextField -import com.sdds.compose.uikit.Spinner -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.rememberSelectMultipleDataStateManager -import com.sdds.compose.uikit.rememberSelectSingleDataStateManager -import com.sdds.icons.R -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Select] - */ -@Composable -@Suppress("LongMethod") -internal fun SelectScreen(componentKey: ComponentKey = ComponentKey.Select) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = SelectViewModelFactory(SelectUiState(), componentKey), - key = componentKey.toString(), - ), - component = { selectUiState, style -> - Box( - modifier = Modifier.fillMaxSize(), - ) { - val state = remember { SelectState() } - val itemType = style.selectItemStyle.itemType - val checkedStateManager = if (itemType == SelectItemType.Multiple) { - rememberSelectMultipleDataStateManager(SelectList) - } else { - rememberSelectSingleDataStateManager(SelectList) - } - - Select( - modifier = Modifier.align(selectUiState.triggerAlignment.alignment), - state = state, - style = style, - enabled = selectUiState.enabled, - readOnly = selectUiState.readOnly, - dropdownProperties = selectUiState.dropdownProperties, - trigger = { - when (selectUiState.triggerType) { - TriggerType.TextField -> { - val value = getTextFieldValue(itemType, checkedStateManager.selectedItems) - SelectTextField( - modifier = Modifier.width(260.dp), - value = value, - readOnly = selectUiState.readOnly, - enabled = selectUiState.enabled, - placeholderText = if (value.isEmpty()) "Сотрудник" else null, - captionText = "Выберите имя", - iconOpened = R.drawable.ic_chevron_up_24, - iconClosed = R.drawable.ic_chevron_down_24, - chipsContent = getChipsContent(itemType, checkedStateManager.selectedItems), - startContent = { - Icon( - painterResource(R.drawable.ic_search_24), - "", - ) - }, - ) - } - TriggerType.Button -> { - val value = getButtonValue(itemType, checkedStateManager.selectedItems) - SelectButton( - modifier = Modifier.width(260.dp), - label = value, - readonly = selectUiState.readOnly, - enabled = selectUiState.enabled, - iconOpened = R.drawable.ic_chevron_up_24, - iconClosed = R.drawable.ic_chevron_down_24, - ) - } - } - }, - showEmptyState = selectUiState.showEmptyState, - emptyState = { - EmptyState( - iconRes = R.drawable.ic_plasma_36, - description = "Empty State", - buttonLabel = "Action", - ) - }, - footer = if (selectUiState.showLoading) { - { Loading() } - } else { - null - }, - listContent = { - items(SelectList.size) { - SelectItem( - modifier = Modifier.fillMaxWidth(), - checked = checkedStateManager.isSelected(SelectList[it]), - onClick = { - Log.d("Select", "Item $it was selected") - checkedStateManager.onItemPressed(SelectList[it]) - }, - ) { - Cell( - title = AnnotatedString(SelectList[it]), - disclosureIconRes = null, - ) - } - } - }, - ) - } - }, - ) -} - -@Composable -internal fun SelectPreview(style: SelectStyle) { - var state by remember { mutableStateOf(SelectState()) } - val stateManager = rememberSelectSingleDataStateManager(SelectList, SelectList[1]) - Select( - style = style, - state = state, - trigger = { - SelectButton( - modifier = Modifier.width(260.dp), - label = getButtonValue(SelectItemType.Single, stateManager.selectedItems), - iconOpened = R.drawable.ic_chevron_up_24, - iconClosed = R.drawable.ic_chevron_down_24, - ) - }, - listContent = { - items(SelectList.size) { - SelectItem( - modifier = Modifier.fillMaxWidth(), - checked = stateManager.isSelected(SelectList[it]), - onClick = { - Log.d("Select", "Item $it was selected") - stateManager.onItemPressed(SelectList[it]) - }, - ) { - Cell( - title = AnnotatedString(SelectList[it]), - disclosureIconRes = null, - ) - } - } - }, - ) -} - -private fun getChipsContent( - selectItemType: SelectItemType, - selectedItems: List, -): (@Composable () -> Unit)? { - return if (selectItemType == SelectItemType.Multiple && selectedItems.isNotEmpty()) { - { - selectedItems.forEach { Chip(label = it) } - } - } else { - null - } -} - -private fun getTextFieldValue( - selectItemType: SelectItemType, - selectedItems: List, -): String { - return if (selectItemType == SelectItemType.Multiple) { - "" - } else { - selectedItems.firstOrNull().orEmpty() - } -} - -private fun getButtonValue( - selectItemType: SelectItemType, - selectedItems: List, -): String { - return if (selectItemType == SelectItemType.Multiple) { - selectedItems.joinToString(", ").ifEmpty { "Value" } - } else { - selectedItems.firstOrNull() ?: "Value" - } -} - -@Composable -private fun Loading( - label: String = "Загрузка", -) { - Row( - modifier = Modifier.height(40.dp), - verticalAlignment = Alignment.CenterVertically, - horizontalArrangement = Arrangement.Center, - ) { - Spinner() - Text( - modifier = Modifier.padding(start = 4.dp), - text = label, - ) - } -} - -private val SelectList = listOf( - "Иван Иванов", - "Пётр Петров", - "Сергей Сергеев", - "Алексей Алексеев", - "Анна Смирнова", - "Мария Кузнецова", - "Дмитрий Попов", - "Елена Соколова", - "Ольга Морозова", - "Николай Волков", -) diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectUiState.kt deleted file mode 100644 index 86f285443b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectUiState.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.select.compose - -import androidx.compose.ui.Alignment -import androidx.compose.ui.window.PopupProperties -import com.sdds.compose.uikit.DropdownProperties -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class SelectUiState( - override val variant: String = "", - override val appearance: String = "", - val showLoading: Boolean = false, - val showEmptyState: Boolean = false, - val readOnly: Boolean = false, - val enabled: Boolean = true, - val triggerType: TriggerType = TriggerType.TextField, - val triggerAlignment: SelectTriggerAlignment = SelectTriggerAlignment.TopCenter, - val dropdownProperties: DropdownProperties = DropdownProperties( - popupProperties = PopupProperties(focusable = true, clippingEnabled = false), - ), -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class TriggerType { - TextField, Button -} - -internal enum class SelectTriggerAlignment(val alignment: Alignment) { - TopStart(Alignment.TopStart), - TopEnd(Alignment.TopEnd), - TopCenter(Alignment.TopCenter), - Center(Alignment.Center), - CenterStart(Alignment.CenterStart), - CenterEnd(Alignment.CenterEnd), - BottomStart(Alignment.BottomStart), - BottomEnd(Alignment.BottomEnd), - BottomCenter(Alignment.BottomCenter), -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectViewModel.kt deleted file mode 100644 index a294a5e2d9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/compose/SelectViewModel.kt +++ /dev/null @@ -1,99 +0,0 @@ -package com.sdds.playground.sandbox.select.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SelectStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Select - */ -internal class SelectViewModel( - defaultState: SelectUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("LongMethod") - override fun SelectUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "showEmptyState", - value = showEmptyState, - onApply = { - internalUiState.value = internalUiState.value.copy(showEmptyState = it) - }, - ), - Property.BooleanProperty( - name = "showLoading", - value = showLoading, - onApply = { - internalUiState.value = internalUiState.value.copy(showLoading = it) - }, - ), - Property.BooleanProperty( - name = "readOnly", - value = readOnly, - onApply = { - internalUiState.value = internalUiState.value.copy(readOnly = it) - }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { - internalUiState.value = internalUiState.value.copy(enabled = it) - }, - ), - enumProperty( - name = "triggerType", - value = triggerType, - onApply = { - internalUiState.value = internalUiState.value.copy(triggerType = it) - }, - ), - enumProperty( - name = "triggerAlignment", - value = triggerAlignment, - onApply = { - internalUiState.value = internalUiState.value.copy(triggerAlignment = it) - }, - ), - enumProperty( - name = "placement", - value = dropdownProperties.placement, - onApply = { - internalUiState.value = internalUiState.value.copy( - dropdownProperties = internalUiState.value.dropdownProperties.copy( - placement = it, - ), - ) - }, - ), - enumProperty( - name = "placementMode", - value = dropdownProperties.placementMode, - onApply = { - internalUiState.value = internalUiState.value.copy( - dropdownProperties = internalUiState.value.dropdownProperties.copy( - placementMode = it, - ), - ) - }, - ), - ) - } -} - -internal class SelectViewModelFactory( - private val defaultState: SelectUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SelectViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectFragment.kt deleted file mode 100644 index 7669965554..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectFragment.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.select.vs - -import android.view.ContextThemeWrapper -import android.view.Gravity -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Select -import com.sdds.uikit.fixtures.stories.popover.toGravity -import com.sdds.uikit.fixtures.stories.select.SelectUiState -import com.sdds.uikit.fixtures.stories.select.applyState -import com.sdds.uikit.fixtures.stories.select.select - -internal class SelectFragment : ComponentFragment() { - - private var currentTriggerGravity: Int = Gravity.CENTER - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SelectViewModelFactory( - defaultState = getState { SelectUiState() }, - componentKey = componentKey, - ) - } - - override val defaultGravity: Int - get() = currentTriggerGravity - - override fun shouldRecreateComponentOnStateUpdate(state: SelectUiState): Boolean { - val newGravity = state.triggerAlignment.toGravity() - if (newGravity != currentTriggerGravity) { - currentTriggerGravity = newGravity - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Select { - return select(contextWrapper) - } - - override fun onComponentUpdate(component: Select?, state: SelectUiState) { - component?.applyState(state) - } - - override fun onComponentOffsetChanged(component: Select, offset: Float) { - super.onComponentOffsetChanged(component, offset) - component.updateDropdownLocation() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectParametersViewModel.kt deleted file mode 100644 index 6e6c3f779e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/select/vs/SelectParametersViewModel.kt +++ /dev/null @@ -1,109 +0,0 @@ -package com.sdds.playground.sandbox.select.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.Select -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacementMode -import com.sdds.uikit.fixtures.stories.popover.PopoverTriggerAlignment -import com.sdds.uikit.fixtures.stories.select.SelectUiState -import com.sdds.uikit.fixtures.stories.select.TriggerType - -internal class SelectParametersViewModel( - defaultState: SelectUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = SelectProperties.values().find { it.value == name } ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - SelectProperties.ShowLoading -> currentState.copy(showLoading = valueString.toBoolean()) - SelectProperties.EmptyState -> currentState.copy(withEmptyState = valueString.toBoolean()) - SelectProperties.TriggerType -> currentState.copy(triggerType = TriggerType.valueOf(valueString)) - SelectProperties.TriggerAlignment -> currentState.copy( - triggerAlignment = PopoverTriggerAlignment.valueOf( - valueString, - ), - ) - - SelectProperties.DropdownPlacementMode -> currentState.copy( - dropdownPlacementMode = PopoverPlacementMode.valueOf( - valueString, - ), - ) - SelectProperties.SelectionMode -> currentState.copy( - selectionMode = Select.SelectionMode.valueOf( - valueString, - ), - ) - SelectProperties.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - SelectProperties.ReadOnly -> currentState.copy(readOnly = valueString.toBoolean()) - } - } - - override fun SelectUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = SelectProperties.ShowLoading.value, - value = showLoading, - ), - - Property.BooleanProperty( - name = SelectProperties.EmptyState.value, - value = withEmptyState, - ), - enumProperty( - name = SelectProperties.TriggerType.value, - value = triggerType, - ), - enumProperty( - name = SelectProperties.TriggerAlignment.value, - value = triggerAlignment, - ), - enumProperty( - name = SelectProperties.DropdownPlacementMode.value, - value = dropdownPlacementMode, - ), - enumProperty( - name = SelectProperties.SelectionMode.value, - value = selectionMode, - ), - Property.BooleanProperty( - name = SelectProperties.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = SelectProperties.ReadOnly.value, - value = readOnly, - ), - ) - } - - private enum class SelectProperties(val value: String) { - ShowLoading("loading"), - EmptyState("emptyState"), - TriggerType("triggerType"), - TriggerAlignment("triggerAlignment"), - DropdownPlacementMode("dropdownPlacementMode"), - SelectionMode("selectionMode"), - Enabled("enabled"), - ReadOnly("readOnly"), - } -} - -internal class SelectViewModelFactory( - private val defaultState: SelectUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SelectParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderScreen.kt deleted file mode 100644 index 5581fefef4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderScreen.kt +++ /dev/null @@ -1,85 +0,0 @@ -package com.sdds.playground.sandbox.slider.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Slider -import com.sdds.compose.uikit.SliderStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import kotlin.math.roundToInt - -/** - * Экран с компонентом [Slider] - */ -@Composable -internal fun SliderScreen(componentKey: ComponentKey = ComponentKey.Slider) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = SliderViewModelFactory( - defaultState = SliderUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { sliderUiState, style -> - val horizontal = sliderUiState.appearance.contains("Horizontal", true) - Slider( - modifier = Modifier, - value = 0f, - title = sliderUiState.title, - labelContent = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_36), - contentDescription = null, - ) - }, - style = style, - onValueChange = {}, - labelEnabled = sliderUiState.labelEnabled, - thumbEnabled = sliderUiState.thumbEnabled, - limitLabelEnabled = sliderUiState.limitLabelEnabled, - slideDirection = sliderUiState.slideDirection, - valueRange = - (sliderUiState.minLabel.toFloatOrNull() ?: 0f)..(sliderUiState.maxLabel.toFloatOrNull() ?: 1f), - valueFormatTransformer = { progress -> - progress.roundToInt().toString() - }, - alignment = if (horizontal) sliderUiState.alignment else style.alignment, - ) - }, - ) -} - -@Composable -internal fun SliderPreview(style: SliderStyle) { - Slider( - style = style, - title = "Title", - labelContent = { - Icon( - painter = painterResource(R.drawable.ic_salute_outline_36), - contentDescription = null, - ) - }, - value = 0.5f, - valueFormatTransformer = { progress -> - "%.2f".format(progress) - }, - onValueChange = {}, - ) -} - -@Composable -@Preview(showBackground = true) -private fun SliderScreenPreview() { - SandboxTheme { - SliderScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderUiState.kt deleted file mode 100644 index 60e118d3f9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderUiState.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.slider.compose - -import com.sdds.compose.uikit.SlideDirection -import com.sdds.compose.uikit.SliderAlignment -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class SliderUiState( - override val variant: String = "", - override val appearance: String = "", - val limitLabelEnabled: Boolean = true, - val labelEnabled: Boolean = true, - val minLabel: String = "0", - val maxLabel: String = "100", - val title: String = "Title", - val thumbEnabled: Boolean = true, - val slideDirection: SlideDirection = SlideDirection.Normal, - val alignment: SliderAlignment = SliderAlignment.Start, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderViewModel.kt deleted file mode 100644 index a7c280d7a5..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/compose/SliderViewModel.kt +++ /dev/null @@ -1,87 +0,0 @@ -package com.sdds.playground.sandbox.slider.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SliderStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Slider - */ -internal class SliderViewModel( - defaultState: SliderUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - override fun SliderUiState.toProps(): List> { - val properties = listOf( - Property.StringProperty( - name = "title", - value = title, - onApply = { internalUiState.value = internalUiState.value.copy(title = it) }, - ), - Property.StringProperty( - name = "minLabel", - value = minLabel, - onApply = { internalUiState.value = internalUiState.value.copy(minLabel = it) }, - ), - Property.StringProperty( - name = "maxLabel", - value = maxLabel, - onApply = { internalUiState.value = internalUiState.value.copy(maxLabel = it) }, - ), - Property.BooleanProperty( - name = "thumbEnabled", - value = thumbEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(thumbEnabled = it) }, - ), - Property.BooleanProperty( - name = "limitLabelEnabled", - value = limitLabelEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(limitLabelEnabled = it) }, - ), - Property.BooleanProperty( - name = "labelEnabled", - value = labelEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(labelEnabled = it) }, - ), - enumProperty( - name = "slideDirection", - value = slideDirection, - onApply = { - internalUiState.value = internalUiState.value.copy(slideDirection = it) - }, - ), - ) - val appearance = internalUiState.value.appearance - val horizontal = appearance.contains("Horizontal", true) - val alignmentProperty = enumProperty( - name = "alignment", - value = alignment, - onApply = { - internalUiState.value = internalUiState.value.copy(alignment = it) - }, - ) - return when { - horizontal -> properties + alignmentProperty - else -> properties - } - } -} - -internal class SliderViewModelFactory( - private val defaultState: SliderUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SliderViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderFragment.kt deleted file mode 100644 index 8e7e2079e2..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderFragment.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.playground.sandbox.slider.vs - -import android.view.ContextThemeWrapper -import android.widget.FrameLayout -import androidx.core.view.setMargins -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Slider -import com.sdds.uikit.fixtures.stories.slider.SliderUiState -import com.sdds.uikit.fixtures.stories.slider.applyState -import com.sdds.uikit.fixtures.stories.slider.slider - -/** - * Фрагмент с компонентом Slider - */ -internal class SliderFragment : ComponentFragment() { - - private var sliderState: SliderUiState = SliderUiState() - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SliderParametersViewModelFactory( - defaultState = getState { SliderUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = super.defaultLayoutParams.apply { setMargins(50) } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Slider { - return slider(contextWrapper, state = sliderState) - } - - override fun onComponentUpdate(component: Slider?, state: SliderUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderParametersViewModel.kt deleted file mode 100644 index aa27c10969..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/slider/vs/SliderParametersViewModel.kt +++ /dev/null @@ -1,103 +0,0 @@ -package com.sdds.playground.sandbox.slider.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.slider.Alignment -import com.sdds.uikit.fixtures.stories.slider.SlideDirection -import com.sdds.uikit.fixtures.stories.slider.SliderUiState - -/** - * ViewModel компонента Slider - */ -internal class SliderParametersViewModel( - defaultState: SliderUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = SliderPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - SliderPropertyName.MinLabel -> currentState.copy(minLabel = valueString) - SliderPropertyName.MaxLabel -> currentState.copy(maxLabel = valueString) - SliderPropertyName.Title -> currentState.copy(title = valueString) - SliderPropertyName.SlideDirection -> currentState.copy(slideDirection = SlideDirection.valueOf(valueString)) - SliderPropertyName.Alignment -> currentState.copy(alignment = Alignment.valueOf(valueString)) - SliderPropertyName.ThumbEnabled -> currentState.copy(thumbEnabled = valueString.toBoolean()) - SliderPropertyName.LabelEnabled -> currentState.copy(labelEnabled = valueString.toBoolean()) - SliderPropertyName.LimitLabelEnabled -> currentState.copy(limitLabelEnabled = valueString.toBoolean()) - else -> currentState - } - } - - override fun SliderUiState.toProps(): List> { - val properties = listOf( - Property.StringProperty( - name = SliderPropertyName.MinLabel.value, - value = minLabel, - ), - Property.StringProperty( - name = SliderPropertyName.MaxLabel.value, - value = maxLabel, - ), - - Property.StringProperty( - name = SliderPropertyName.Title.value, - value = title, - ), - Property.BooleanProperty( - name = SliderPropertyName.ThumbEnabled.value, - value = thumbEnabled, - ), - Property.BooleanProperty( - name = SliderPropertyName.LimitLabelEnabled.value, - value = limitLabelEnabled, - ), - Property.BooleanProperty( - name = SliderPropertyName.LabelEnabled.value, - value = labelEnabled, - ), - enumProperty( - name = SliderPropertyName.SlideDirection.value, - value = slideDirection, - ), - ) - val appearance = internalUiState.value.appearance - val horizontal = appearance.contains("Horizontal", true) - val alignmentProperty = listOf( - enumProperty(name = SliderPropertyName.Alignment.value, value = alignment), - ) - return when { - horizontal -> properties + alignmentProperty - else -> properties - } - } - - private enum class SliderPropertyName(val value: String) { - LabelEnabled("labelEnabled"), - LimitLabelEnabled("limitLabelEnabled"), - MinLabel("minLabel"), - MaxLabel("maxLabel"), - Title("title"), - Alignment("alignment"), - SlideDirection("slideDirection"), - ThumbEnabled("thumbEnabled"), - } -} - -internal class SliderParametersViewModelFactory( - private val defaultState: SliderUiState = SliderUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SliderParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerScreen.kt deleted file mode 100644 index 91cd47b9d7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerScreen.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.spinner.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Spinner -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Spinner] - */ -@Composable -internal fun SpinnerScreen(componentKey: ComponentKey = ComponentKey.Spinner) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = SpinnerViewModelFactory(SpinnerUiState(), componentKey), - key = componentKey.toString(), - ), - component = { _, style -> - Spinner(style = style) - }, - ) -} - -@Composable -@Preview(showBackground = true) -private fun SpinnerPreview() { - SandboxTheme { - SpinnerScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerUiState.kt deleted file mode 100644 index c5d4b02fb3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerUiState.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.spinner.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class SpinnerUiState( - override val variant: String = "", - override val appearance: String = "", -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerViewModel.kt deleted file mode 100644 index 09eb34f88e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/compose/SpinnerViewModel.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.spinner.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Spinner - */ -internal class SpinnerViewModel( - defaultState: SpinnerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun SpinnerUiState.toProps(): List> { - return emptyList() - } -} - -internal class SpinnerViewModelFactory( - private val defaultState: SpinnerUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SpinnerViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerFragment.kt deleted file mode 100644 index 37d12a69de..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerFragment.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.spinner.vs - -import android.view.ContextThemeWrapper -import android.view.View -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Spinner -import com.sdds.uikit.fixtures.stories.spinner.SpinnerUiState -import com.sdds.uikit.fixtures.stories.spinner.spinner - -/** - * Фрагмент с компонентом Spinner - */ -internal class SpinnerFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SpinnerParametersViewModelFactory( - defaultState = getState { SpinnerUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Spinner { - return spinner(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: SpinnerUiState) = Unit -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerParametersViewModel.kt deleted file mode 100644 index 247478bd0b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/spinner/vs/SpinnerParametersViewModel.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.spinner.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.spinner.SpinnerUiState - -/** - * ViewModel компонента Spinner - */ -internal class SpinnerParametersViewModel( - defaultState: SpinnerUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun SpinnerUiState.toProps() = emptyList>() -} - -internal class SpinnerParametersViewModelFactory( - private val defaultState: SpinnerUiState = SpinnerUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SpinnerParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchPreviews.kt deleted file mode 100644 index 88866b6f12..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchPreviews.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.switcher.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import com.sdds.compose.uikit.Switch -import com.sdds.playground.sandbox.SandboxTheme - -@Composable -@Preview(showBackground = true) -internal fun SandboxSwitchPreviewOn() { - SandboxTheme { - Switch( - active = true, - label = "Label", - description = "Description", - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxSwitchPreviewOff() { - SandboxTheme { - Switch( - active = false, - label = "Label", - description = "Description", - enabled = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxSwitchPreviewOnDisabled() { - SandboxTheme { - Switch( - active = true, - label = "Label", - description = "Description", - enabled = false, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchScreen.kt deleted file mode 100644 index 8e2856399b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchScreen.kt +++ /dev/null @@ -1,44 +0,0 @@ -package com.sdds.playground.sandbox.switcher.compose - -import androidx.compose.runtime.Composable -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Switch -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с [Switch] - */ -@Composable -internal fun SwitchScreen(componentKey: ComponentKey = ComponentKey.Switch) { - val switchViewModel: SwitchViewModel = - viewModel( - factory = SwitchViewModelFactory(SwitchUiState(), componentKey), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = switchViewModel, - component = { switchState, style -> - Switch( - active = switchState.active, - label = switchState.label, - style = style, - description = switchState.description, - enabled = switchState.enabled, - onActiveChanged = ({ active: Boolean -> switchViewModel.updateActive(active) }) - .takeIf { switchState.toggleable }, - ) - }, - ) -} - -@Preview(showBackground = true) -@Composable -private fun SwitchScreenPreview() { - SandboxTheme { - SwitchScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchUiState.kt deleted file mode 100644 index 0d3edfd561..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.switcher.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -/** - * Состояние switch - * - * @property active состояние switch - * @property label текст лэйбла - * @property description текст описания - * @property enabled включен ли switch - * @property toggleable может ли switch переключаться по нажатию - */ -internal data class SwitchUiState( - override val variant: String = "", - override val appearance: String = "", - val active: Boolean = false, - val label: String? = "Label", - val description: String? = "Description", - val enabled: Boolean = true, - val toggleable: Boolean = true, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchViewModel.kt deleted file mode 100644 index 246c0562cf..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/compose/SwitchViewModel.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.switcher.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel для экранов с компонентом Switch - */ -internal class SwitchViewModel( - defaultState: SwitchUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun updateActive(active: Boolean) { - internalUiState.value = internalUiState.value.copy(active = active) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy(label = text.ifEmpty { null }) - } - - private fun updateDescription(text: String) { - internalUiState.value = internalUiState.value.copy(description = text.ifEmpty { null }) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - private fun updateToggleableState(toggleable: Boolean) { - internalUiState.value = internalUiState.value.copy(toggleable = toggleable) - } - - override fun SwitchUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = "active", - value = active, - onApply = { updateActive(it) }, - ), - - Property.StringProperty( - name = "label", - value = label.orEmpty(), - onApply = { updateLabel(it) }, - ), - - Property.StringProperty( - name = "description", - value = description.orEmpty(), - onApply = { updateDescription(it) }, - ), - - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "toggleable", - value = toggleable, - onApply = { updateToggleableState(it) }, - ), - ) - } -} - -internal class SwitchViewModelFactory( - private val defaultState: SwitchUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SwitchViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchFragment.kt deleted file mode 100644 index feede00d9c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchFragment.kt +++ /dev/null @@ -1,47 +0,0 @@ -package com.sdds.playground.sandbox.switcher.vs - -import android.view.ContextThemeWrapper -import android.view.ViewGroup.LayoutParams -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Switch -import com.sdds.uikit.fixtures.stories.switcher.SwitchUiState -import com.sdds.uikit.fixtures.stories.switcher.applyState -import com.sdds.uikit.fixtures.stories.switcher.switch - -/** - * Фрагмент с компонентом Switch - * @author Малышев Александр on 19.08.2024 - */ -internal class SwitchFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - SwitchViewModelFactory( - defaultState = getState { SwitchUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Switch { - return switch(contextWrapper) - .apply { - layoutParams = LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT) - resetMinimumWidth(true) - setOnClickListener { componentViewModel.updateActive(isChecked) } - } - } - - override fun onComponentUpdate(component: Switch?, state: SwitchUiState) { - val isTextEmpty = state.label.isNullOrBlank() && state.description.isNullOrBlank() - component?.resetMinimumWidth(!isTextEmpty) - component?.applyState(state) - } - - private fun Switch.resetMinimumWidth(enabled: Boolean) { - minimumWidth = if (enabled) { - resources.getDimensionPixelSize(com.sdds.uikit.R.dimen.sdds_spacer_90x) - } else { - 0 - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchViewModel.kt deleted file mode 100644 index ea27098cf4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/switcher/vs/SwitchViewModel.kt +++ /dev/null @@ -1,105 +0,0 @@ -package com.sdds.playground.sandbox.switcher.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.switcher.SwitchUiState - -/** - * ViewModel для экранов с компонентом Switch - */ -internal class SwitchViewModel( - defaultState: SwitchUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = SwitchPropertyName.values().find { it.value == name } - when (pName) { - SwitchPropertyName.Active -> updateActive(value as Boolean) - SwitchPropertyName.Focusable -> updateFocusable(value as Boolean) - SwitchPropertyName.Label -> updateLabel(value?.toString()) - SwitchPropertyName.Description -> updateDescription(value?.toString()) - SwitchPropertyName.Enabled -> updateEnabledState(value as Boolean) - else -> Unit - } - } - - /** - * Обновляет состояние active у компонента Switch - */ - fun updateActive(active: Boolean) { - internalUiState.value = internalUiState.value.copy(active = active) - } - - private fun updateFocusable(focusable: Boolean) { - internalUiState.value = internalUiState.value.copy(focusable = focusable) - } - - private fun updateLabel(text: String?) { - internalUiState.value = internalUiState.value.copy(label = text) - } - - private fun updateDescription(text: String?) { - internalUiState.value = internalUiState.value.copy(description = text) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy(enabled = enabled) - } - - override fun SwitchUiState.toProps(): List> { - return listOfNotNull( - Property.BooleanProperty( - name = SwitchPropertyName.Active.value, - value = active, - ), - - Property.BooleanProperty( - name = SwitchPropertyName.Focusable.value, - value = focusable, - ), - - Property.StringProperty( - name = SwitchPropertyName.Label.value, - value = label.orEmpty(), - ), - - Property.StringProperty( - name = SwitchPropertyName.Description.value, - value = description.orEmpty(), - ), - - Property.BooleanProperty( - name = SwitchPropertyName.Enabled.value, - value = enabled, - ), - ) - } - - private enum class SwitchPropertyName(val value: String) { - Active("active"), - Focusable("focusable"), - Label("label"), - Description("description"), - Enabled("enabled"), - } -} - -/** - * Фабрика [SwitchViewModel] - * @param defaultState состояние по-умолчанию - */ -internal class SwitchViewModelFactory( - private val defaultState: SwitchUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return SwitchViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarScreen.kt deleted file mode 100644 index e1a7e60b5c..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarScreen.kt +++ /dev/null @@ -1,86 +0,0 @@ -package com.sdds.playground.sandbox.tabbar.compose - -import androidx.compose.foundation.layout.width -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Counter -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Indicator -import com.sdds.compose.uikit.TabBar -import com.sdds.compose.uikit.TabBarItem -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun TabBarScreen(componentKey: ComponentKey = ComponentKey.TabBar) { - val tabBarViewModel = viewModel( - factory = TabBarViewModelFactory(TabBarUiState(), componentKey), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = tabBarViewModel, - component = { uiState, style -> - TabBar(style = style) { - uiState.items.forEachIndexed { i, item -> - tabItem { - TabBarItem( - isSelected = tabBarViewModel.isSelected(item), - defaultIcon = R.drawable.ic_smile_outline_36, - selectedIcon = R.drawable.ic_smile_fill_36, - label = uiState.label, - extra = getExtra(uiState.extraType), - onClick = { - tabBarViewModel.onSelect(item) - }, - ) - } - if (uiState.customWeight && i == (uiState.items.size / 2) - 1) { - tabItem(weight = null) { - Icon( - modifier = Modifier.width(44.dp), - painter = painterResource(R.drawable.ic_home_alt_fill_36), - contentDescription = null, - ) - } - } - } - } - }, - ) -} - -private fun getExtra(extraType: TabBarExtraType): (@Composable () -> Unit)? { - return when (extraType) { - TabBarExtraType.None -> null - TabBarExtraType.Counter -> { - { Counter(count = "12") } - } - - TabBarExtraType.Indicator -> { - { Indicator() } - } - } -} - -@Composable -internal fun TabBarPreview(style: TabBarStyle) { - TabBar(style = style) { - repeat(3) { - tabItem { - TabBarItem( - isSelected = it == 0, - defaultIcon = R.drawable.ic_smile_outline_36, - selectedIcon = R.drawable.ic_smile_fill_36, - label = "Label", - extra = { Counter(count = "12") }, - ) - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarUiState.kt deleted file mode 100644 index 2010454388..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarUiState.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.tabbar.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class TabBarUiState( - override val variant: String = "", - override val appearance: String = "", - val label: String = "Label", - val items: List = listOf(1, 2, 3), - val customWeight: Boolean = false, - val current: Int = items.first(), - val extraType: TabBarExtraType = TabBarExtraType.Counter, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class TabBarExtraType { - None, - Counter, - Indicator, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarViewModel.kt deleted file mode 100644 index eef37c25b7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabbar/compose/TabBarViewModel.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.sdds.playground.sandbox.tabbar.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class TabBarViewModel( - defaultState: TabBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun onSelect(id: Int) { - internalUiState.value = internalUiState.value.copy( - current = id, - ) - } - - fun isSelected(id: Int): Boolean { - return internalUiState.value.current == id - } - - override fun TabBarUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = "amount", - value = items.size, - onApply = { amount -> - if (amount in 2..6) { - internalUiState.value = - internalUiState.value.copy(items = MutableList(amount) { it }) - } - }, - ), - enumProperty( - name = "extraType", - value = extraType, - onApply = { internalUiState.value = internalUiState.value.copy(extraType = it) }, - ), - Property.BooleanProperty( - name = "customWeight", - value = customWeight, - onApply = { - internalUiState.value = internalUiState.value.copy(customWeight = it) - }, - ), - ) - } -} - -internal class TabBarViewModelFactory( - private val defaultState: TabBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TabBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsFragment.kt deleted file mode 100644 index 1b9569822b..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsFragment.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.tabs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Tabs -import com.sdds.uikit.fixtures.stories.tabs.TabsUiState -import com.sdds.uikit.fixtures.stories.tabs.applyIconsState -import com.sdds.uikit.fixtures.stories.tabs.iconTabs - -internal class IconTabsFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - IconTabsViewModelFactory( - defaultState = getState { TabsUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Tabs { - return iconTabs(contextWrapper) - } - - override fun onComponentUpdate(component: Tabs?, state: TabsUiState) { - component?.applyIconsState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsViewModel.kt deleted file mode 100644 index 712e3ad851..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/IconTabsViewModel.kt +++ /dev/null @@ -1,107 +0,0 @@ -package com.sdds.playground.sandbox.tabs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.tabs.DisplayMode -import com.sdds.uikit.fixtures.stories.tabs.TabsUiState - -internal class IconTabsViewModel( - defaultState: TabsUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.ActionEnabled -> currentState.copy(actionEnabled = valueString.toBoolean()) - PropertyName.DividerEnabled -> currentState.copy(dividerEnabled = valueString.toBoolean()) - PropertyName.IndicatorEnabled -> currentState.copy(indicatorEnabled = valueString.toBoolean()) - PropertyName.DisplayMode -> currentState.copy(displayMode = DisplayMode.valueOf(valueString)) - - PropertyName.Counter -> { - currentState.copy(counter = valueString.toBoolean()) - } - - PropertyName.Count -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(count = valueString) - } else { - currentState - } - } - } - - override fun TabsUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.ActionEnabled.value, - value = actionEnabled, - ), - Property.BooleanProperty( - name = PropertyName.DividerEnabled.value, - value = dividerEnabled, - ), - Property.BooleanProperty( - name = PropertyName.IndicatorEnabled.value, - value = indicatorEnabled, - ), - enumProperty( - name = PropertyName.DisplayMode.value, - value = displayMode, - ), - Property.BooleanProperty( - name = PropertyName.Counter.value, - value = counter, - ), - Property.StringProperty( - name = PropertyName.Count.value, - value = count, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - Enabled("enabled"), - ActionEnabled("hasAction"), - DividerEnabled("hasDivider"), - IndicatorEnabled("hasIndicator"), - DisplayMode("displayMode"), - Counter("hasExtra"), - Count("count"), - } -} - -internal class IconTabsViewModelFactory( - private val defaultState: TabsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconTabsViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsFragment.kt deleted file mode 100644 index 86d141eded..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsFragment.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.tabs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Tabs -import com.sdds.uikit.fixtures.stories.tabs.TabsUiState -import com.sdds.uikit.fixtures.stories.tabs.applyState -import com.sdds.uikit.fixtures.stories.tabs.tabs - -internal class TabsFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - TabsViewModelFactory( - defaultState = getState { TabsUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Tabs { - return tabs(contextWrapper) - } - - override fun onComponentUpdate(component: Tabs?, state: TabsUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsViewModel.kt deleted file mode 100644 index 10b35f8be7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/TabsViewModel.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.tabs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.tabs.DisplayMode -import com.sdds.uikit.fixtures.stories.tabs.TabItemIcon -import com.sdds.uikit.fixtures.stories.tabs.TabsUiState - -internal class TabsViewModel( - defaultState: TabsUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = PropertyName.values().associateBy { name -> name.value } - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - var counter = currentState.counter - var icon = currentState.icon - internalUiState.value = when (propertyName) { - PropertyName.Amount -> currentState.copy(amount = valueString.toIntOrNull() ?: 0) - PropertyName.Icon -> currentState.copy( - icon = when { - valueString == TabItemIcon.Start::class.simpleName -> TabItemIcon.Start - valueString == TabItemIcon.End::class.simpleName && counter -> { - counter = false - TabItemIcon.End - } - valueString == TabItemIcon.End::class.simpleName && !counter -> { - TabItemIcon.End - } - else -> TabItemIcon.No - }, - counter = counter, - ) - - PropertyName.Label -> currentState.copy(tabItemLabel = valueString) - PropertyName.Value -> currentState.copy(tabItemValue = valueString) - PropertyName.Enabled -> currentState.copy(enabled = valueString.toBoolean()) - PropertyName.ActionEnabled -> currentState.copy(actionEnabled = valueString.toBoolean()) - PropertyName.DividerEnabled -> currentState.copy(dividerEnabled = valueString.toBoolean()) - PropertyName.IndicatorEnabled -> currentState.copy(indicatorEnabled = valueString.toBoolean()) - PropertyName.DisplayMode -> currentState.copy(displayMode = DisplayMode.valueOf(valueString)) - - PropertyName.Counter -> { - if (currentState.icon == TabItemIcon.End) icon = TabItemIcon.No - counter = valueString.toBoolean() - currentState.copy(counter = counter, icon = icon) - } - - PropertyName.Count -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(count = valueString) - } else { - currentState - } - } - } - - override fun TabsUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = PropertyName.Amount.value, - value = amount, - ), - - Property.SingleChoiceProperty( - name = PropertyName.Icon.value, - value = icon::class.simpleName.orEmpty(), - variants = listOf( - TabItemIcon.Start::class.simpleName.orEmpty(), - TabItemIcon.End::class.simpleName.orEmpty(), - TabItemIcon.No::class.simpleName.orEmpty(), - ), - ), - Property.StringProperty( - name = PropertyName.Label.value, - value = tabItemLabel, - ), - Property.StringProperty( - name = PropertyName.Value.value, - value = tabItemValue.orEmpty(), - ), - Property.BooleanProperty( - name = PropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = PropertyName.ActionEnabled.value, - value = actionEnabled, - ), - Property.BooleanProperty( - name = PropertyName.DividerEnabled.value, - value = dividerEnabled, - ), - Property.BooleanProperty( - name = PropertyName.IndicatorEnabled.value, - value = indicatorEnabled, - ), - enumProperty( - name = PropertyName.DisplayMode.value, - value = displayMode, - ), - Property.BooleanProperty( - name = PropertyName.Counter.value, - value = counter, - ), - Property.StringProperty( - name = PropertyName.Count.value, - value = count, - ), - ) - } - - private enum class PropertyName(val value: String) { - Amount("amount"), - Icon("icon"), - Label("label"), - Value("value"), - Enabled("enabled"), - ActionEnabled("hasAction"), - DividerEnabled("hasDivider"), - IndicatorEnabled("hasIndicator"), - DisplayMode("displayMode"), - Counter("hasExtra"), - Count("count"), - } -} - -internal class TabsViewModelFactory( - private val defaultState: TabsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TabsViewModel( - defaultState = defaultState, - componentKey = componentKey, - ) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsScreen.kt deleted file mode 100644 index 6d9f086a55..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsScreen.kt +++ /dev/null @@ -1,105 +0,0 @@ -package com.sdds.playground.sandbox.tabs.compose - -import androidx.annotation.DrawableRes -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.IconTabItem -import com.sdds.compose.uikit.Tabs -import com.sdds.compose.uikit.TabsStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Tabs] - */ -@Composable -internal fun IconTabsScreen(componentKey: ComponentKey = ComponentKey.IconTabs) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = IconTabsViewModelFactory( - defaultState = TabsUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { tabsUiState, style -> - var selectedTab by remember { mutableIntStateOf(0) } - Tabs( - style = style, - enabled = tabsUiState.enabled, - selectedTabIndex = selectedTab, - onTabClicked = { - selectedTab = it - }, - clip = tabsUiState.clip, - stretch = tabsUiState.stretch, - indicatorEnabled = tabsUiState.indicatorEnabled, - dividerEnabled = tabsUiState.dividerEnabled, - ) { - repeat(tabsUiState.amount) { index -> - val label = "${tabsUiState.tabItemLabel}$index" - tab(dropdownAlias = label) { selected -> - IconTabItem( - isSelected = selected, - count = if (tabsUiState.counter) tabsUiState.count else null, - icon = R.drawable.ic_plasma_24, - actionIcon = actionIcon(tabsUiState, style), - onActionClicked = {}, - ) - } - } - } - }, - ) -} - -@DrawableRes -private fun actionIcon(tabsUiState: TabsUiState, style: TabsStyle): Int? { - return if (tabsUiState.actionEnabled) { - style.tabItemStyle.actionIcon - } else { - null - } -} - -@Composable -internal fun IconTabsPreview(style: TabsStyle) { - var selectedTab by remember { mutableIntStateOf(0) } - Tabs( - modifier = Modifier, - style = style, - selectedTabIndex = selectedTab, - onTabClicked = { - selectedTab = it - }, - ) { - repeat(3) { index -> - val label = "Tab$index" - tab(dropdownAlias = label) { selected -> - IconTabItem( - isSelected = selected, - actionIcon = R.drawable.ic_close_24, - icon = R.drawable.ic_plasma_24, - onActionClicked = {}, - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -private fun TabsScreenPreview() { - SandboxTheme { - TabsScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsViewModel.kt deleted file mode 100644 index 1c18a9f767..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/IconTabsViewModel.kt +++ /dev/null @@ -1,88 +0,0 @@ -package com.sdds.playground.sandbox.tabs.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TabsStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента IconTabs - */ -internal class IconTabsViewModel( - defaultState: TabsUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - @Suppress("LongMethod") - override fun TabsUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { internalUiState.value = internalUiState.value.copy(amount = it.coerceIn(1, 50)) }, - ), - enumProperty( - name = "clip", - value = clip, - onApply = { internalUiState.value = internalUiState.value.copy(clip = it) }, - ), - enumProperty( - name = "icon", - value = icon, - onApply = { internalUiState.value = internalUiState.value.copy(icon = it) }, - ), - Property.StringProperty( - name = "count", - value = count, - onApply = { internalUiState.value = internalUiState.value.copy(count = it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { internalUiState.value = internalUiState.value.copy(enabled = it) }, - ), - Property.BooleanProperty( - name = "counter", - value = counter, - onApply = { internalUiState.value = internalUiState.value.copy(counter = it) }, - ), - Property.BooleanProperty( - name = "stretch", - value = stretch, - onApply = { internalUiState.value = internalUiState.value.copy(stretch = it) }, - ), - Property.BooleanProperty( - name = "actionEnabled", - value = actionEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(actionEnabled = it) }, - ), - Property.BooleanProperty( - name = "dividerEnabled", - value = dividerEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(dividerEnabled = it) }, - ), - Property.BooleanProperty( - name = "indicatorEnabled", - value = indicatorEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(indicatorEnabled = it) }, - ), - ) - } -} - -internal class IconTabsViewModelFactory( - private val defaultState: TabsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return IconTabsViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsScreen.kt deleted file mode 100644 index eacd4497a1..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsScreen.kt +++ /dev/null @@ -1,141 +0,0 @@ -package com.sdds.playground.sandbox.tabs.compose - -import androidx.annotation.DrawableRes -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableIntStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.TabItem -import com.sdds.compose.uikit.Tabs -import com.sdds.compose.uikit.TabsStyle -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Tabs] - */ -@Composable -internal fun TabsScreen(componentKey: ComponentKey = ComponentKey.Tabs) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = TabsViewModelFactory( - defaultState = TabsUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { tabsUiState, style -> - var selectedTab by remember { mutableIntStateOf(0) } - Tabs( - style = style, - enabled = tabsUiState.enabled, - selectedTabIndex = selectedTab, - onTabClicked = { - selectedTab = it - }, - clip = tabsUiState.clip, - stretch = tabsUiState.stretch, - indicatorEnabled = tabsUiState.indicatorEnabled, - dividerEnabled = tabsUiState.dividerEnabled, - ) { - repeat(tabsUiState.amount) { index -> - val label = "${tabsUiState.tabItemLabel}$index" - tab(dropdownAlias = label) { selected -> - TabItem( - isSelected = selected, - label = label, - helpText = tabsUiState.tabItemValue, - count = if (tabsUiState.counter) tabsUiState.count else null, - startContent = startIcon(tabsUiState), - endContent = endIcon(tabsUiState), - actionIcon = actionIcon(tabsUiState, style), - onActionClicked = {}, - ) - } - } - } - }, - ) -} - -@DrawableRes -private fun actionIcon(tabsUiState: TabsUiState, style: TabsStyle): Int? { - return if (tabsUiState.actionEnabled) { - style.tabItemStyle.actionIcon - } else { - null - } -} - -private fun endIcon(tabsUiState: TabsUiState): (@Composable () -> Unit)? { - return if (tabsUiState.icon == TabItemIcon.End) { - { - Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), - contentDescription = "", - ) - } - } else { - null - } -} - -private fun startIcon(tabsUiState: TabsUiState): (@Composable () -> Unit)? { - return if (tabsUiState.icon == TabItemIcon.Start) { - { - Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -internal fun TabsPreview(style: TabsStyle) { - var selectedTab by remember { mutableIntStateOf(0) } - Tabs( - modifier = Modifier, - style = style, - selectedTabIndex = selectedTab, - onTabClicked = { - selectedTab = it - }, - ) { - repeat(3) { index -> - val label = "Tab$index" - tab(dropdownAlias = label) { selected -> - TabItem( - isSelected = selected, - label = label, - startContent = { - Icon( - painter = painterResource(com.sdds.icons.R.drawable.ic_plasma_24), - contentDescription = "", - ) - }, - actionIcon = com.sdds.icons.R.drawable.ic_close_24, - onActionClicked = {}, - ) - } - } - } -} - -@Composable -@Preview(showBackground = true) -private fun TabsScreenPreview() { - SandboxTheme { - TabsScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsUiState.kt deleted file mode 100644 index 9147da6c65..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsUiState.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.tabs.compose - -import com.sdds.compose.uikit.TabsClip -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class TabsUiState( - override val variant: String = "", - override val appearance: String = "", - val amount: Int = 5, - val icon: TabItemIcon = TabItemIcon.None, - val tabItemLabel: String = "Tab", - val tabItemValue: String = "", - val enabled: Boolean = true, - val stretch: Boolean = false, - val clip: TabsClip = TabsClip.Scroll, - val counter: Boolean = false, - val count: String = "1", - val actionEnabled: Boolean = false, - val dividerEnabled: Boolean = false, - val indicatorEnabled: Boolean = false, -) : UiState { - - override fun updateVariant( - appearance: String, - variant: String, - ): UiState { - return copy(variant = variant, appearance = appearance) - } -} - -internal enum class TabItemIcon { - Start, End, None, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsViewModel.kt deleted file mode 100644 index b4ef07993f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tabs/compose/TabsViewModel.kt +++ /dev/null @@ -1,98 +0,0 @@ -package com.sdds.playground.sandbox.tabs.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TabsStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Tabs - */ -internal class TabsViewModel( - defaultState: TabsUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - @Suppress("LongMethod") - override fun TabsUiState.toProps(): List> { - return listOf( - Property.IntProperty( - name = "amount", - value = amount, - onApply = { internalUiState.value = internalUiState.value.copy(amount = it.coerceIn(1, 50)) }, - ), - enumProperty( - name = "clip", - value = clip, - onApply = { internalUiState.value = internalUiState.value.copy(clip = it) }, - ), - enumProperty( - name = "icon", - value = icon, - onApply = { internalUiState.value = internalUiState.value.copy(icon = it) }, - ), - Property.StringProperty( - name = "tabItemLabel", - value = tabItemLabel, - onApply = { internalUiState.value = internalUiState.value.copy(tabItemLabel = it) }, - ), - Property.StringProperty( - name = "tabItemValue", - value = tabItemValue, - onApply = { internalUiState.value = internalUiState.value.copy(tabItemValue = it) }, - ), - Property.StringProperty( - name = "count", - value = count, - onApply = { internalUiState.value = internalUiState.value.copy(count = it) }, - ), - Property.BooleanProperty( - name = "stretch", - value = stretch, - onApply = { internalUiState.value = internalUiState.value.copy(stretch = it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { internalUiState.value = internalUiState.value.copy(enabled = it) }, - ), - Property.BooleanProperty( - name = "counter", - value = counter, - onApply = { internalUiState.value = internalUiState.value.copy(counter = it) }, - ), - Property.BooleanProperty( - name = "actionEnabled", - value = actionEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(actionEnabled = it) }, - ), - Property.BooleanProperty( - name = "dividerEnabled", - value = dividerEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(dividerEnabled = it) }, - ), - Property.BooleanProperty( - name = "indicatorEnabled", - value = indicatorEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(indicatorEnabled = it) }, - ), - ) - } -} - -internal class TabsViewModelFactory( - private val defaultState: TabsUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TabsViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldScreen.kt deleted file mode 100644 index 47f98e312a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldScreen.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.platform.LocalFocusManager -import androidx.compose.ui.res.stringResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Switch -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.mask.DateMask -import com.sdds.compose.uikit.mask.MaskedTextField -import com.sdds.compose.uikit.mask.NumberMask -import com.sdds.compose.uikit.mask.PhoneMask -import com.sdds.compose.uikit.mask.TextFieldMask -import com.sdds.compose.uikit.mask.TimeMask -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.FieldFocusSelectorModeSwitch -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.Xs - -/** - * Экран с компонентом [MaskedTextField] - */ -@Suppress("LongMethod") -@Composable -internal fun MaskedTextFieldScreen(componentKey: ComponentKey = ComponentKey.Mask) { - val textFieldViewModel: MaskedTextFieldViewModel = viewModel( - factory = MaskedTextFieldViewModelFactory( - defaultState = MaskedTextFieldUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = textFieldViewModel, - component = { textFieldUiState, style -> - val focusManager = LocalFocusManager.current - var isFocusSelectorOn by remember { mutableStateOf(!FieldFocusSelectorModeSwitch) } - Column { - MaskedTextField( - value = textFieldUiState.textFieldValue, - mask = remember( - textFieldUiState.mask, - textFieldUiState.maskDisplayMode, - ) { - mask(textFieldUiState.mask, textFieldUiState.maskDisplayMode) - }, - onValueChange = { - textFieldViewModel.onValueChange(it) - }, - style = style, - enabled = textFieldUiState.enabled, - readOnly = textFieldUiState.readOnly, - placeholderText = textFieldUiState.placeholderText.ifEmpty { - when (textFieldUiState.mask) { - TextMask.Phone -> "+7 (000) 000-00-00" - TextMask.DateShort -> "ДД.ММ.ГГ" - TextMask.DateLong -> "ДД.ММ.ГГГГ" - TextMask.Time -> "ЧЧ:ММ" - TextMask.Number -> "0,00" - } - }, - prefix = textFieldUiState.prefix, - suffix = textFieldUiState.suffix, - labelText = textFieldUiState.labelText, - startContent = textFieldUiState.hasStartIcon.getTextFieldExampleIcon( - TextFieldIcon.Start, - ), - endContent = textFieldUiState.hasEndIcon.getTextFieldExampleIcon(TextFieldIcon.End), - focusSelectorSettings = FocusSelectorSettings.None, - ) - - if (FieldFocusSelectorModeSwitch) { - Spacer(Modifier.size(64.dp)) - Switch( - active = isFocusSelectorOn, - label = stringResource(R.string.sandbox_enable_focus_selector), - onActiveChanged = { isFocusSelectorOn = it }, - ) - Button( - style = BasicButton.Xs.Default.style(), - label = stringResource(R.string.sandbox_clear_focus), - onClick = { focusManager.clearFocus(true) }, - ) - } - } - }, - ) -} - -private fun mask(mask: TextMask, displayMode: MaskDisplayMode): TextFieldMask { - return when (mask) { - TextMask.Phone -> PhoneMask(maskMode = displayMode.mode) - TextMask.DateShort -> DateMask( - maskMode = displayMode.mode, - pattern = listOf("ДД", "ММ", "ГГ"), - ) - - TextMask.DateLong -> DateMask( - maskMode = displayMode.mode, - pattern = listOf("ДД", "ММ", "ГГГГ"), - ) - - TextMask.Time -> TimeMask(maskMode = displayMode.mode) - TextMask.Number -> NumberMask() - } -} - -@Composable -internal fun MaskedTextFieldPreview(style: TextFieldStyle) { - SandboxTheme { - MaskedTextField( - value = "0000000000", - mask = remember { PhoneMask() }, - onValueChange = {}, - style = style, - placeholderText = "placeholder", - labelText = "label", - startContent = true.getTextFieldExampleIcon(TextFieldIcon.Start), - endContent = true.getTextFieldExampleIcon(TextFieldIcon.End), - focusSelectorSettings = LocalFocusSelectorSettings.current, - ) - } -} - -@Composable -@Preview(showBackground = true) -private fun MaskedTextFieldScreenPreview() { - SandboxTheme { - TextFieldScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldUiState.kt deleted file mode 100644 index 0b932a39db..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldUiState.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import com.sdds.compose.uikit.mask.TextFieldMaskMode -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class MaskedTextFieldUiState( - val textFieldValue: String = "", - override val variant: String = "", - override val appearance: String = "", - val mask: TextMask = TextMask.Phone, - val maskDisplayMode: MaskDisplayMode = MaskDisplayMode.Always, - val labelText: String = "Label", - val placeholderText: String = "", - val hasStartIcon: Boolean = true, - val hasEndIcon: Boolean = true, - val enabled: Boolean = true, - val readOnly: Boolean = false, - val suffix: String = "", - val prefix: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class TextMask { - Phone, - DateShort, - DateLong, - Time, - Number, -} - -internal enum class MaskDisplayMode(val mode: TextFieldMaskMode) { - Always(TextFieldMaskMode.Always), - OnInput(TextFieldMaskMode.OnInput), -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldViewModel.kt deleted file mode 100644 index beb16336b9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/MaskedTextFieldViewModel.kt +++ /dev/null @@ -1,145 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal open class MaskedTextFieldViewModel( - defaultState: MaskedTextFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun onValueChange(textFieldValue: String) { - internalUiState.value = internalUiState.value.copy( - textFieldValue = textFieldValue, - ) - } - - private fun updateMask(mask: TextMask) { - internalUiState.value = internalUiState.value.copy( - mask = mask, - textFieldValue = "", - ) - } - - private fun updateMaskMode(maskDisplayMode: MaskDisplayMode) { - internalUiState.value = internalUiState.value.copy( - maskDisplayMode = maskDisplayMode, - ) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - labelText = text, - ) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholderText = text, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateReadOnlyState(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy( - readOnly = readonly, - ) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasStartIcon = hasIcon, - ) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasEndIcon = hasIcon, - ) - } - - private fun updatePrefix(prefix: String) { - internalUiState.value = internalUiState.value.copy(prefix = prefix) - } - - private fun updateSuffix(suffix: String) { - internalUiState.value = internalUiState.value.copy(suffix = suffix) - } - - @Suppress("LongMethod") - override fun MaskedTextFieldUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = "mask", - value = mask, - onApply = { updateMask(it) }, - ), - enumProperty( - name = "maskDisplayMode", - value = maskDisplayMode, - onApply = { updateMaskMode(it) }, - ), - Property.StringProperty( - name = "label", - value = labelText, - onApply = { updateLabel(it) }, - ), - Property.StringProperty( - name = "placeholder", - value = placeholderText, - onApply = { updatePlaceholder(it) }, - ), - Property.BooleanProperty( - name = "start icon", - value = hasStartIcon, - onApply = { updateStartIcon(it) }, - ), - Property.BooleanProperty( - name = "end icon", - value = hasEndIcon, - onApply = { updateEndIcon(it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "read only", - value = readOnly, - onApply = { updateReadOnlyState(it) }, - ), - Property.StringProperty( - name = "prefix", - value = prefix, - onApply = { updatePrefix(it) }, - ), - Property.StringProperty( - name = "suffix", - value = suffix, - onApply = { updateSuffix(it) }, - ), - ) - } -} - -internal class MaskedTextFieldViewModelFactory( - private val defaultState: MaskedTextFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return MaskedTextFieldViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextAreaPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextAreaPreviews.kt deleted file mode 100644 index e487606cc9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextAreaPreviews.kt +++ /dev/null @@ -1,484 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.textarea.Default -import com.sdds.serv.styles.textarea.Error -import com.sdds.serv.styles.textarea.InnerLabel -import com.sdds.serv.styles.textarea.L -import com.sdds.serv.styles.textarea.M -import com.sdds.serv.styles.textarea.OuterLabel -import com.sdds.serv.styles.textarea.RequiredEnd -import com.sdds.serv.styles.textarea.RequiredStart -import com.sdds.serv.styles.textarea.S -import com.sdds.serv.styles.textarea.TextArea -import com.sdds.serv.styles.textarea.Warning -import com.sdds.serv.styles.textarea.Xs - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewLDefaultInnerLeft() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.L.InnerLabel.RequiredStart.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewMDefaultOuterOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.M.OuterLabel.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewSWarningInnerRight() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.S.InnerLabel.RequiredEnd.Warning.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewXsErrorInnerOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.Xs.Error.style(), - labelText = "", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_16), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewLReadOnly() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box(modifier = Modifier.padding(start = 20.dp)) { - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "", - value = value, - style = TextArea.L.OuterLabel.RequiredStart.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = { value = it }, - readOnly = true, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewMWarningInnerOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.M.InnerLabel.Warning.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewSDefaultInnerRight() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.S.InnerLabel.RequiredEnd.Default.style(), - labelText = "", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewXSDefaultOuterOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.Xs.OuterLabel.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_16), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewLDisabled() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.L.InnerLabel.RequiredStart.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "", - counterText = "", - onValueChange = {}, - readOnly = false, - enabled = false, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_16), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewMErrorOuterOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.M.OuterLabel.Error.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewSWarningInnerRightFocused() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.S.InnerLabel.RequiredEnd.Warning.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewMInnerOptionalChips() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.M.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - chipsContent = { - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewSDefaultOuterRightChips() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.S.OuterLabel.RequiredEnd.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - chipsContent = { - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewSLongText() { - SandboxTheme { - var value by remember { - mutableStateOf( - TextFieldValue( - "O Captain! my Captain! our fearful trip is done,\n" + - "The ship has weather’d every rack, the prize we sought is won,\n" + - "The port is near, the bells I hear, the people all exulting,\n" + - "While follow eyes the steady keel, the vessel grim and daring;\n" + - "But O heart! heart! heart!\n" + - "O the bleeding drops of red,\n" + - "Where on the deck my Captain lies,\n" + - " Fallen cold and dead.", - ), - ) - } - - TextField( - placeholderText = "Placeholder", - value = value, - style = TextArea.S.InnerLabel.Warning.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextAreaPreviewLDefaultTBTA() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - modifier = Modifier.fillMaxWidth(), - placeholderText = "Placeholder", - value = value, - style = TextArea.L.InnerLabel.RequiredEnd.Default.style(), - labelText = "Label", - optionalText = "Optional", - captionText = "Caption", - counterText = "Counter", - onValueChange = {}, - readOnly = false, - enabled = true, - prefix = "TB1!", - suffix = "TA2@", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldPreviews.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldPreviews.kt deleted file mode 100644 index bf23407947..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldPreviews.kt +++ /dev/null @@ -1,740 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.foundation.layout.padding -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.input.TextFieldValue -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.style.style -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.serv.styles.textfield.Default -import com.sdds.serv.styles.textfield.Error -import com.sdds.serv.styles.textfield.InnerLabel -import com.sdds.serv.styles.textfield.L -import com.sdds.serv.styles.textfield.M -import com.sdds.serv.styles.textfield.OuterLabel -import com.sdds.serv.styles.textfield.RequiredEnd -import com.sdds.serv.styles.textfield.RequiredStart -import com.sdds.serv.styles.textfield.S -import com.sdds.serv.styles.textfield.Success -import com.sdds.serv.styles.textfield.TextField -import com.sdds.serv.styles.textfield.TextFieldClear -import com.sdds.serv.styles.textfield.Warning -import com.sdds.serv.styles.textfield.Xs - -/** - * Превью [TextField] - */ -@Composable -@Preview(showBackground = true, backgroundColor = 0x0) -internal fun SandboxTextFieldPreview() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("value")) } - - TextField( - value = value, - captionText = "Сaption", - labelText = "Label", - style = TextField.S.OuterLabel.RequiredStart.Warning.style(), - placeholderText = "Placeholder", - onValueChange = { value = it }, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_add_fill_24), - contentDescription = "", - tint = Color.Black, - ) - }, - chipsContent = { Chip(label = "Chip") }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewLDefaultInnerLeft() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - value = value, - style = TextField.L.InnerLabel.RequiredStart.Default.style(), - labelText = "Label", - placeholderText = "", - captionText = "Caption", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewMSuccessOuterLabel() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextField.M.OuterLabel.Success.style(), - captionText = "Caption", - labelText = "Label", - placeholderText = "Placeholder", - optionalText = "optional", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewSWarningInnerRight() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextField.S.InnerLabel.RequiredEnd.Warning.style(), - captionText = "Caption", - labelText = "Label", - optionalText = "", - placeholderText = "Placeholder", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewXSErrorInner() { - SandboxTheme { - TextField( - value = TextFieldValue(text = ""), - style = TextField.Xs.Error.style(), - captionText = "Caption", - labelText = "Label", - optionalText = "", - placeholderText = "Placeholder", - onValueChange = {}, - enabled = true, - readOnly = false, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewLSuccessRequiredLeftOuter() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box(modifier = Modifier.padding(start = 20.dp)) { - TextField( - value = value, - style = TextField.L.OuterLabel.RequiredStart.Success.style(), - captionText = "Caption", - labelText = "Label", - optionalText = "", - placeholderText = "", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewMWarningInnerLabelOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - - TextField( - value = value, - style = TextField.M.InnerLabel.Warning.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewSReadOnly() { - SandboxTheme { - TextField( - value = TextFieldValue(text = ""), - style = TextField.S.InnerLabel.RequiredEnd.Default.style(), - captionText = "Сaption", - labelText = "", - optionalText = "", - placeholderText = "Placeholder", - onValueChange = {}, - enabled = true, - readOnly = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewXSSuccessOuterLabelOptional() { - SandboxTheme { - TextField( - value = TextFieldValue(text = "Value"), - style = TextField.Xs.OuterLabel.Success.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "", - onValueChange = {}, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_16), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_16), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewLDisabled() { - SandboxTheme { - TextField( - value = TextFieldValue(text = ""), - style = TextField.L.InnerLabel.RequiredStart.Default.style(), - captionText = "", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = {}, - enabled = false, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewMErrorOuterLabelOptional() { - SandboxTheme { - TextField( - value = TextFieldValue(text = ""), - style = TextField.M.OuterLabel.Error.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = {}, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewSWarningInnerLabelRightFocused() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextField.S.InnerLabel.RequiredEnd.Warning.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - prefix = "", - suffix = "", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewMSuccessInnerLabelChips() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - TextField( - value = value, - style = TextField.M.InnerLabel.Success.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - chipsContent = { - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewSOuterLabelRightChips() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - TextField( - value = value, - style = TextField.S.OuterLabel.RequiredEnd.Default.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "", - placeholderText = "Placeholder", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - chipsContent = { - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - Chip( - label = "Chip", - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_close_24), - contentDescription = "", - ) - }, - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewLInputText() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextField.L.InnerLabel.Warning.style(), - captionText = "", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldPreviewLSuffixPrefix() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box(modifier = Modifier.padding(start = 20.dp)) { - TextField( - value = value, - style = TextField.L.OuterLabel.RequiredStart.Default.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - prefix = "TB Prefix", - suffix = "TA Suffix", - onValueChange = { value = it }, - enabled = true, - readOnly = false, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearLErrorInnerOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextFieldClear.L.InnerLabel.Error.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearMWarningInnerRequiredLeft() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box(modifier = Modifier.fillMaxWidth(), contentAlignment = Alignment.Center) { - TextField( - value = value, - style = TextFieldClear.M.InnerLabel.RequiredStart.Warning.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearSDefaultOuterOptional() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextFieldClear.S.OuterLabel.Default.style(), - captionText = "Сaption", - labelText = "", - optionalText = "Optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearXSSuccessOuterRequiredRightFocused() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("")) } - - TextField( - value = value, - style = TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearLDefaultInnerRequiredRight() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box( - modifier = Modifier.fillMaxWidth(), - contentAlignment = Alignment.Center, - ) { - TextField( - value = value, - style = TextFieldClear.L.InnerLabel.RequiredEnd.Default.style(), - captionText = "Сaption", - labelText = "Label", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} - -@Composable -@Preview(showBackground = true) -internal fun SandboxTextFieldClearMErrorInnerRequiredLeft() { - SandboxTheme { - var value by remember { mutableStateOf(TextFieldValue("Value")) } - Box(modifier = Modifier.fillMaxWidth(), contentAlignment = Alignment.Center) { - TextField( - value = value, - style = TextFieldClear.M.InnerLabel.RequiredStart.Error.style(), - captionText = "Сaption", - labelText = "", - optionalText = "optional", - placeholderText = "Placeholder", - onValueChange = { value = it }, - readOnly = false, - enabled = true, - startContent = { - Icon( - painter = painterResource(id = R.drawable.ic_scribble_diagonal_24), - contentDescription = "", - ) - }, - endContent = { - Icon( - painter = painterResource(id = R.drawable.ic_shazam_24), - contentDescription = "", - ) - }, - ) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldScreen.kt deleted file mode 100644 index 7620971779..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldScreen.kt +++ /dev/null @@ -1,180 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.padding -import androidx.compose.foundation.layout.size -import androidx.compose.runtime.Composable -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.runtime.setValue -import androidx.compose.ui.Modifier -import androidx.compose.ui.input.key.Key -import androidx.compose.ui.input.key.key -import androidx.compose.ui.input.key.onKeyEvent -import androidx.compose.ui.platform.LocalFocusManager -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.res.stringResource -import androidx.compose.ui.semantics.Role -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Chip -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Switch -import com.sdds.compose.uikit.TextField -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.FieldFocusSelectorModeSwitch -import com.sdds.playground.sandbox.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.Xs - -/** - * Экран с компонентом [TextField] - */ -@Suppress("LongMethod") -@Composable -internal fun TextFieldScreen(componentKey: ComponentKey = ComponentKey.TextField) { - val textFieldViewModel: TextFieldViewModel = viewModel( - factory = TextFieldViewModelFactory( - defaultState = TextFieldUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = textFieldViewModel, - component = { textFieldUiState, style -> - val focusManager = LocalFocusManager.current - var isFocusSelectorOn by remember { mutableStateOf(!FieldFocusSelectorModeSwitch) } - Column { - TextField( - value = textFieldUiState.textFieldValue, - onValueChange = { - textFieldViewModel.onValueChange(it) - }, - modifier = Modifier - .padding(start = 20.dp) - .onKeyEvent { - if (it.key == Key.Backspace) { - textFieldViewModel.onBackspacePressed() - } - return@onKeyEvent false - }, - style = style, - enabled = textFieldUiState.enabled, - readOnly = textFieldUiState.readOnly, - placeholderText = textFieldUiState.placeholderText, - prefix = textFieldUiState.prefix, - suffix = textFieldUiState.suffix, - labelText = textFieldUiState.labelText, - optionalText = textFieldUiState.optionalText, - captionText = textFieldUiState.captionText, - counterText = textFieldUiState.counterText, - startContent = textFieldUiState.hasStartIcon.getTextFieldExampleIcon(TextFieldIcon.Start), - endContent = textFieldUiState.hasEndIcon.getTextFieldExampleIcon(TextFieldIcon.End), - chipsContent = textFieldUiState.chips.toChipContent( - onChipClosePressed = { - textFieldViewModel.onChipClosePressed(it) - }, - ), - focusSelectorSettings = if (isFocusSelectorOn) { - LocalFocusSelectorSettings.current - } else { - FocusSelectorSettings.None - }, - ) - - if (FieldFocusSelectorModeSwitch) { - Spacer(Modifier.size(64.dp)) - Switch( - active = isFocusSelectorOn, - label = stringResource(R.string.sandbox_enable_focus_selector), - onActiveChanged = { isFocusSelectorOn = it }, - ) - Button( - style = BasicButton.Xs.Default.style(), - label = stringResource(R.string.sandbox_clear_focus), - onClick = { focusManager.clearFocus(true) }, - ) - } - } - }, - ) -} - -private fun List.toChipContent( - onChipClosePressed: (String) -> Unit, -): (@Composable () -> Unit)? { - return if (isEmpty()) { - null - } else { - { - ChipsContent( - chips = this, - onChipClosePressed = onChipClosePressed, - ) - } - } -} - -@Composable -private fun ChipsContent( - chips: List?, - onChipClosePressed: ((String) -> Unit)?, -) { - chips?.forEach { chip -> - Chip( - label = chip, - endContent = { - Icon( - painter = painterResource(id = com.sdds.icons.R.drawable.ic_close_24), - contentDescription = "", - modifier = Modifier.clickable(onClick = { onChipClosePressed?.invoke(chip) }), - ) - }, - ) - } -} - -internal enum class TextFieldIcon(val res: Int) { - Start(com.sdds.icons.R.drawable.ic_scribble_diagonal_24), - End(com.sdds.icons.R.drawable.ic_shazam_24), -} - -internal fun Boolean.getTextFieldExampleIcon(icon: TextFieldIcon): (@Composable () -> Unit)? { - return if (this) { - { - Icon( - modifier = Modifier.clickable( - role = Role.Button, - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { }, - painter = painterResource(id = icon.res), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun TextFieldScreenPreview() { - SandboxTheme { - TextFieldScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldUiState.kt deleted file mode 100644 index 4af5f7396e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldUiState.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class TextFieldUiState( - val textFieldValue: String = "Value", - override val variant: String = "", - override val appearance: String = "", - val labelText: String = "Label", - val optionalText: String = "Optional", - val placeholderText: String = "Placeholder", - val captionText: String = "Caption", - val counterText: String = "Counter", - val hasStartIcon: Boolean = true, - val hasEndIcon: Boolean = true, - val chips: List = emptyList(), - val enabled: Boolean = true, - val readOnly: Boolean = false, - val suffix: String = "", - val prefix: String = "", -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldViewModel.kt deleted file mode 100644 index b6107b3714..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/compose/TextFieldViewModel.kt +++ /dev/null @@ -1,177 +0,0 @@ -package com.sdds.playground.sandbox.textfield.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal open class TextFieldViewModel( - defaultState: TextFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - fun onValueChange(textFieldValue: String) { - internalUiState.value = internalUiState.value.copy( - textFieldValue = textFieldValue, - ) - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - labelText = text, - ) - } - - private fun updateOptionalText(text: String) { - internalUiState.value = internalUiState.value.copy( - optionalText = text, - ) - } - - private fun updateCaption(text: String) { - internalUiState.value = internalUiState.value.copy( - captionText = text, - ) - } - - private fun updateCounter(text: String) { - internalUiState.value = internalUiState.value.copy( - counterText = text, - ) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholderText = text, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateReadOnlyState(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy( - readOnly = readonly, - ) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasStartIcon = hasIcon, - ) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasEndIcon = hasIcon, - ) - } - - private fun updateChipsCount(count: Int) { - if (count < 0) return - internalUiState.value = internalUiState.value.copy(chips = List(count) { "chip $it" }) - } - - private fun updatePrefix(prefix: String) { - internalUiState.value = internalUiState.value.copy(prefix = prefix) - } - - private fun updateSuffix(suffix: String) { - internalUiState.value = internalUiState.value.copy(suffix = suffix) - } - - @Suppress("LongMethod") - override fun TextFieldUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = "label", - value = labelText, - onApply = { updateLabel(it) }, - ), - Property.StringProperty( - name = "optional text", - value = optionalText, - onApply = { updateOptionalText(it) }, - ), - Property.StringProperty( - name = "caption", - value = captionText, - onApply = { updateCaption(it) }, - ), - Property.StringProperty( - name = "counter", - value = counterText, - onApply = { updateCounter(it) }, - ), - Property.StringProperty( - name = "placeholder", - value = placeholderText, - onApply = { updatePlaceholder(it) }, - ), - Property.BooleanProperty( - name = "start icon", - value = hasStartIcon, - onApply = { updateStartIcon(it) }, - ), - Property.BooleanProperty( - name = "end icon", - value = hasEndIcon, - onApply = { updateEndIcon(it) }, - ), - Property.IntProperty( - name = "chips count", - value = chips.size, - onApply = { updateChipsCount(it) }, - ), - Property.BooleanProperty( - name = "enabled", - value = enabled, - onApply = { updateEnabledState(it) }, - ), - Property.BooleanProperty( - name = "read only", - value = readOnly, - onApply = { updateReadOnlyState(it) }, - ), - Property.StringProperty( - name = "prefix", - value = prefix, - onApply = { updatePrefix(it) }, - ), - Property.StringProperty( - name = "suffix", - value = suffix, - onApply = { updateSuffix(it) }, - ), - ) - } - - fun onBackspacePressed() { - if (internalUiState.value.chips.isEmpty()) return - internalUiState.value = internalUiState.value.copy( - chips = internalUiState.value.chips.dropLast(1), - ) - } - - fun onChipClosePressed(chipToRemove: String) { - internalUiState.value = internalUiState.value.copy( - chips = internalUiState.value.chips.filterNot { it == chipToRemove }, - ) - } -} - -internal class TextFieldViewModelFactory( - private val defaultState: TextFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TextFieldViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskFragment.kt deleted file mode 100644 index cf5f341bdb..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskFragment.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.TextField -import com.sdds.uikit.fixtures.stories.mask.MaskUiState -import com.sdds.uikit.fixtures.stories.mask.applyState -import com.sdds.uikit.fixtures.stories.mask.maskedTextField - -/** - * Фрагмент с масками в TextField - */ -internal class MaskFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - MaskViewModelFactory( - defaultState = getState { MaskUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): TextField { - return maskedTextField(contextWrapper) - } - - override fun onComponentUpdate(component: TextField?, state: MaskUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskViewModel.kt deleted file mode 100644 index 2b190306f4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/MaskViewModel.kt +++ /dev/null @@ -1,176 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.TextField -import com.sdds.uikit.fixtures.stories.mask.MaskUiState -import com.sdds.uikit.fixtures.stories.mask.TextFieldMask -import com.sdds.uikit.fixtures.stories.mask.TextFieldMaskDisplayMode - -/** - * [ViewModel] компонента [TextField] с маской - */ -internal class MaskViewModel( - defaultState: MaskUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = MaskPropertyName.values().find { it.value == name } - when (pName) { - MaskPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - MaskPropertyName.Placeholder -> updatePlaceholder(value?.toString().orEmpty()) - MaskPropertyName.Icon -> updateStartIcon(value as Boolean) - MaskPropertyName.Action -> updateEndIcon(value as Boolean) - MaskPropertyName.Enabled -> updateEnabledState(value as Boolean) - MaskPropertyName.ReadOnly -> updateReadOnlyState(value as Boolean) - MaskPropertyName.Prefix -> updatePrefix(value?.toString()) - MaskPropertyName.Suffix -> updateSuffix(value?.toString()) - MaskPropertyName.Mask -> updateMask(value?.toString()) - MaskPropertyName.MaskDisplayMode -> updateMaskDisplayMode(value?.toString()) - else -> Unit - } - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - labelText = text, - ) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholderText = text, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateReadOnlyState(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy( - readOnly = readonly, - ) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - icon = hasIcon, - ) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - action = hasIcon, - ) - } - - private fun updatePrefix(prefix: String?) { - internalUiState.value = internalUiState.value.copy( - prefix = prefix, - ) - } - - private fun updateSuffix(suffix: String?) { - internalUiState.value = internalUiState.value.copy( - suffix = suffix?.takeIf { it.isNotBlank() }, - ) - } - - private fun updateMask(mask: String?) { - internalUiState.value = internalUiState.value.copy( - mask = mask?.let { TextFieldMask.valueOf(it) } ?: TextFieldMask.PHONE, - ) - } - - private fun updateMaskDisplayMode(mask: String?) { - internalUiState.value = internalUiState.value.copy( - maskDisplayMode = mask?.let { TextFieldMaskDisplayMode.valueOf(it) } - ?: TextFieldMaskDisplayMode.ALWAYS, - ) - } - - @Suppress("LongMethod") - override fun MaskUiState.toProps(): List> { - return listOfNotNull( - enumProperty( - name = MaskPropertyName.Mask.value, - value = mask, - ), - enumProperty( - name = MaskPropertyName.MaskDisplayMode.value, - value = maskDisplayMode, - ), - Property.StringProperty( - name = MaskPropertyName.Label.value, - value = labelText, - ), - Property.StringProperty( - name = MaskPropertyName.Placeholder.value, - value = placeholderText, - ), - Property.StringProperty( - name = MaskPropertyName.Prefix.value, - value = prefix.orEmpty(), - ), - Property.StringProperty( - name = MaskPropertyName.Suffix.value, - value = suffix.orEmpty(), - ), - Property.BooleanProperty( - name = MaskPropertyName.Icon.value, - value = icon, - ), - Property.BooleanProperty( - name = MaskPropertyName.Action.value, - value = action, - ), - Property.BooleanProperty( - name = MaskPropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = MaskPropertyName.ReadOnly.value, - value = readOnly, - ), - ) - } - - private enum class MaskPropertyName(val value: String) { - Label("label"), - Placeholder("placeholder"), - Icon("icon"), - Action("action"), - Enabled("enabled"), - ReadOnly("read only"), - HasChips("has chips"), - Prefix("prefix"), - Suffix("suffix"), - Mask("mask"), - MaskDisplayMode("maskDisplayMode"), - } -} - -/** - * Фабрика для [TextFieldViewModel] - */ -internal class MaskViewModelFactory( - private val defaultState: MaskUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return MaskViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaFragment.kt deleted file mode 100644 index dc4f0b40b8..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaFragment.kt +++ /dev/null @@ -1,70 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import android.view.ContextThemeWrapper -import android.view.KeyEvent -import androidx.core.widget.doAfterTextChanged -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.TextArea -import com.sdds.uikit.fixtures.stories.textfield.TextFieldUiState -import com.sdds.uikit.fixtures.stories.textfield.applyState -import com.sdds.uikit.fixtures.stories.textfield.textArea - -/** - * Фрагмент с компонентом TextField - * @author Малышев Александр on 19.08.2024 - */ -internal class TextAreaFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - TextAreaViewModelFactory( - defaultState = getState { TextFieldUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): TextArea { - return textArea(contextWrapper) { componentViewModel.deleteChip(it) } - .apply { - addChipsHandler() - } - } - - override fun onComponentUpdate(component: TextArea?, state: TextFieldUiState) { - component?.applyState(state) - } - - private var shouldDeleteChip: Boolean = false - - override fun onDestroyView() { - super.onDestroyView() - componentRef?.chipAdapter = null - } - - private fun TextArea.addChipsHandler() { - editText.doAfterTextChanged { - val editable = it ?: return@doAfterTextChanged - shouldDeleteChip = - if (editable.isNotBlank() && editable[editable.length - 1].isWhitespace()) { - val currentValue = editable.toString().trim() - componentViewModel.addChip(currentValue) - true - } else { - editable.isEmpty() - } - } - editText.setOnKeyListener { _, keyCode, _ -> - when (keyCode) { - KeyEvent.KEYCODE_DEL -> { - val chipsCount = chipAdapter?.getCount() ?: 0 - if (!value.isNullOrEmpty() || chipsCount == 0 || !shouldDeleteChip) return@setOnKeyListener false - val chipToDelete = componentViewModel.deleteChip(chipsCount - 1) - editText.append(chipToDelete?.text) - chipToDelete != null - } - - else -> false - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaViewModel.kt deleted file mode 100644 index b4778978ae..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextAreaViewModel.kt +++ /dev/null @@ -1,207 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.textfield.ExampleChipData -import com.sdds.uikit.fixtures.stories.textfield.TextFieldUiState - -/** - * [ViewModel] компонента [TextArea] - */ -internal class TextAreaViewModel( - defaultState: TextFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = TextFieldPropertyName.values().find { it.value == name } - when (pName) { - TextFieldPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - TextFieldPropertyName.Caption -> updateCaption(value?.toString().orEmpty()) - TextFieldPropertyName.Counter -> updateCounter(value?.toString().orEmpty()) - TextFieldPropertyName.Placeholder -> updatePlaceholder(value?.toString().orEmpty()) - TextFieldPropertyName.Icon -> updateStartIcon(value as Boolean) - TextFieldPropertyName.Action -> updateEndIcon(value as Boolean) - TextFieldPropertyName.Enabled -> updateEnabledState(value as Boolean) - TextFieldPropertyName.ReadOnly -> updateReadOnlyState(value as Boolean) - TextFieldPropertyName.HasChips -> updateHasChips(value as Boolean) - TextFieldPropertyName.Prefix -> updatePrefix(value?.toString()) - TextFieldPropertyName.Suffix -> updateSuffix(value?.toString()) - else -> Unit - } - } - - /** - * Удаляем чип по индексу - */ - fun deleteChip(index: Int): ExampleChipData? { - val chips = internalUiState.value.chipData - if (index < 0 || index >= chips.size) return null - val chipsList = chips.toMutableList() - val chip = chipsList[index] - chipsList.removeAt(index) - internalUiState.value = internalUiState.value.copy(chipData = chipsList) - return chip - } - - /** - * Добавляет чип с текстом - */ - fun addChip(text: String): Boolean { - if (text.isEmpty() || !internalUiState.value.hasChips) return false - val chipsList = internalUiState.value.chipData.toMutableList() - chipsList.add(ExampleChipData(text)) - internalUiState.value = internalUiState.value.copy(chipData = chipsList) - return true - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - labelText = text, - ) - } - - private fun updateCaption(text: String) { - internalUiState.value = internalUiState.value.copy( - captionText = text, - ) - } - - private fun updateCounter(text: String) { - internalUiState.value = internalUiState.value.copy( - counterText = text, - ) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholderText = text, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateReadOnlyState(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy( - readOnly = readonly, - ) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - icon = hasIcon, - ) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - action = hasIcon, - ) - } - - private fun updateHasChips(hasChips: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasChips = hasChips, - ) - } - - private fun updatePrefix(prefix: String?) { - internalUiState.value = internalUiState.value.copy( - prefix = prefix, - ) - } - - private fun updateSuffix(suffix: String?) { - internalUiState.value = internalUiState.value.copy( - suffix = suffix?.takeIf { it.isNotBlank() }, - ) - } - - @Suppress("LongMethod") - override fun TextFieldUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = TextFieldPropertyName.Label.value, - value = labelText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Caption.value, - value = captionText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Counter.value, - value = counterText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Placeholder.value, - value = placeholderText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Prefix.value, - value = prefix.orEmpty(), - ), - Property.StringProperty( - name = TextFieldPropertyName.Suffix.value, - value = suffix.orEmpty(), - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Icon.value, - value = icon, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Action.value, - value = action, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.ReadOnly.value, - value = readOnly, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.HasChips.value, - value = hasChips, - ), - ) - } - - private enum class TextFieldPropertyName(val value: String) { - Label("label"), - Caption("caption"), - Counter("counter"), - Placeholder("placeholder"), - Icon("icon"), - Action("action"), - Enabled("enabled"), - ReadOnly("read only"), - HasChips("has chips"), - Prefix("prefix"), - Suffix("suffix"), - } -} - -/** - * Фабрика для [TextFieldViewModel] - */ -internal class TextAreaViewModelFactory( - private val defaultState: TextFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TextAreaViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldFragment.kt deleted file mode 100644 index fc07fb4c5a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldFragment.kt +++ /dev/null @@ -1,70 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import android.view.ContextThemeWrapper -import android.view.KeyEvent -import androidx.core.widget.doAfterTextChanged -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.TextField -import com.sdds.uikit.fixtures.stories.textfield.TextFieldUiState -import com.sdds.uikit.fixtures.stories.textfield.applyState -import com.sdds.uikit.fixtures.stories.textfield.textField - -/** - * Фрагмент с компонентом TextField - * @author Малышев Александр on 19.08.2024 - */ -internal class TextFieldFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - TextFieldViewModelFactory( - defaultState = getState { TextFieldUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): TextField { - return textField(contextWrapper, onDeleteChip = { componentViewModel.deleteChip(it) }) - .apply { - addChipsHandler() - } - } - - override fun onComponentUpdate(component: TextField?, state: TextFieldUiState) { - component?.applyState(state) - } - - private var shouldDeleteChip: Boolean = false - - override fun onDestroyView() { - super.onDestroyView() - componentRef?.chipAdapter = null - } - - private fun TextField.addChipsHandler() { - editText.doAfterTextChanged { - val editable = it ?: return@doAfterTextChanged - shouldDeleteChip = - if (editable.isNotBlank() && editable[editable.length - 1].isWhitespace()) { - val currentValue = editable.toString().trim() - componentViewModel.addChip(currentValue) - true - } else { - editable.isEmpty() - } - } - editText.setOnKeyListener { _, keyCode, _ -> - when (keyCode) { - KeyEvent.KEYCODE_DEL -> { - val chipsCount = chipAdapter?.getCount() ?: 0 - if (!value.isNullOrEmpty() || chipsCount == 0 || !shouldDeleteChip) return@setOnKeyListener false - val chipToDelete = componentViewModel.deleteChip(chipsCount - 1) - editText.append(chipToDelete?.text) - chipToDelete != null - } - - else -> false - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldViewModel.kt deleted file mode 100644 index bdfeb2eab3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textfield/vs/TextFieldViewModel.kt +++ /dev/null @@ -1,204 +0,0 @@ -package com.sdds.playground.sandbox.textfield.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.TextField -import com.sdds.uikit.fixtures.stories.textfield.ExampleChipData -import com.sdds.uikit.fixtures.stories.textfield.TextFieldUiState - -/** - * [ViewModel] компонента [TextField] - */ -internal class TextFieldViewModel( - defaultState: TextFieldUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val pName = TextFieldPropertyName.values().find { it.value == name } - when (pName) { - TextFieldPropertyName.Label -> updateLabel(value?.toString().orEmpty()) - TextFieldPropertyName.Caption -> updateCaption(value?.toString().orEmpty()) - TextFieldPropertyName.Counter -> updateCounter(value?.toString().orEmpty()) - TextFieldPropertyName.Placeholder -> updatePlaceholder(value?.toString().orEmpty()) - TextFieldPropertyName.Icon -> updateStartIcon(value as Boolean) - TextFieldPropertyName.Action -> updateEndIcon(value as Boolean) - TextFieldPropertyName.Enabled -> updateEnabledState(value as Boolean) - TextFieldPropertyName.ReadOnly -> updateReadOnlyState(value as Boolean) - TextFieldPropertyName.HasChips -> updateHasChips(value as Boolean) - TextFieldPropertyName.Prefix -> updatePrefix(value?.toString()) - TextFieldPropertyName.Suffix -> updateSuffix(value?.toString()) - else -> Unit - } - } - - /** - * Удаляем чип по индексу - */ - fun deleteChip(index: Int): ExampleChipData? { - val chips = internalUiState.value.chipData - if (index < 0 || index >= chips.size) return null - val chipsList = chips.toMutableList() - val chip = chipsList[index] - chipsList.removeAt(index) - internalUiState.value = internalUiState.value.copy(chipData = chipsList) - return chip - } - - /** - * Добавляет чип с текстом - */ - fun addChip(text: String): Boolean { - if (text.isEmpty() || !internalUiState.value.hasChips) return false - val chipsList = internalUiState.value.chipData.toMutableList() - chipsList.add(ExampleChipData(text)) - internalUiState.value = internalUiState.value.copy(chipData = chipsList) - return true - } - - private fun updateLabel(text: String) { - internalUiState.value = internalUiState.value.copy( - labelText = text, - ) - } - - private fun updateCaption(text: String) { - internalUiState.value = internalUiState.value.copy( - captionText = text, - ) - } - - private fun updateCounter(text: String) { - internalUiState.value = internalUiState.value.copy( - counterText = text, - ) - } - - private fun updatePlaceholder(text: String) { - internalUiState.value = internalUiState.value.copy( - placeholderText = text, - ) - } - - private fun updateEnabledState(enabled: Boolean) { - internalUiState.value = internalUiState.value.copy( - enabled = enabled, - ) - } - - private fun updateReadOnlyState(readonly: Boolean) { - internalUiState.value = internalUiState.value.copy( - readOnly = readonly, - ) - } - - private fun updateStartIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - icon = hasIcon, - ) - } - - private fun updateEndIcon(hasIcon: Boolean) { - internalUiState.value = internalUiState.value.copy( - action = hasIcon, - ) - } - - private fun updateHasChips(hasChips: Boolean) { - internalUiState.value = internalUiState.value.copy( - hasChips = hasChips, - ) - } - - private fun updatePrefix(prefix: String?) { - internalUiState.value = internalUiState.value.copy( - prefix = prefix, - ) - } - - private fun updateSuffix(suffix: String?) { - internalUiState.value = internalUiState.value.copy( - suffix = suffix?.takeIf { it.isNotBlank() }, - ) - } - - @Suppress("LongMethod") - override fun TextFieldUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = TextFieldPropertyName.Label.value, - value = labelText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Caption.value, - value = captionText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Placeholder.value, - value = placeholderText, - ), - Property.StringProperty( - name = TextFieldPropertyName.Prefix.value, - value = prefix.orEmpty(), - ), - Property.StringProperty( - name = TextFieldPropertyName.Suffix.value, - value = suffix.orEmpty(), - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Icon.value, - value = icon, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Action.value, - value = action, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.Enabled.value, - value = enabled, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.ReadOnly.value, - value = readOnly, - ), - Property.BooleanProperty( - name = TextFieldPropertyName.HasChips.value, - value = hasChips, - ), - ) - } - - private enum class TextFieldPropertyName(val value: String) { - Label("label"), - Caption("caption"), - Counter("counter"), - Placeholder("placeholder"), - Icon("icon"), - Action("action"), - Enabled("enabled"), - ReadOnly("read only"), - HasChips("has chips"), - Prefix("prefix"), - Suffix("suffix"), - } -} - -/** - * Фабрика для [TextFieldViewModel] - */ -internal class TextFieldViewModelFactory( - private val defaultState: TextFieldUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TextFieldViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonScreen.kt deleted file mode 100644 index 3e18c4a091..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonScreen.kt +++ /dev/null @@ -1,71 +0,0 @@ -package com.sdds.playground.sandbox.textskeleton.compose - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.fillMaxWidth -import androidx.compose.material.Text -import androidx.compose.runtime.Composable -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.text.TextStyle -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.LocalTextStyle -import com.sdds.compose.uikit.SkeletonLineWidthProvider -import com.sdds.compose.uikit.TextSkeleton -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.serv.theme.SddsServTheme - -/** - * Экран с компонентом [TextSkeleton] - */ -@Composable -internal fun TextSkeletonScreen(componentKey: ComponentKey = ComponentKey.TextSkeleton) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = TextSkeletonViewModelFactory( - defaultState = TextSkeletonUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { textSkeletonUiState, style -> - Box(contentAlignment = Alignment.TopStart) { - val defaultTextStyle = if (style.textStyle == TextStyle.Default) { - LocalTextStyle.current - } else { - style.textStyle.copy(color = LocalTextStyle.current.color) - } - Text( - text = textSkeletonUiState.text, - style = defaultTextStyle, - maxLines = textSkeletonUiState.lineCount, - modifier = Modifier.fillMaxWidth(), - ) - TextSkeleton( - lineCount = textSkeletonUiState.lineCount, - textStyle = defaultTextStyle, - lineWidthProvider = when (textSkeletonUiState.width) { - TextSkeletonWidth.Random -> SkeletonLineWidthProvider.RandomDeviation() - TextSkeletonWidth.FullWidth -> SkeletonLineWidthProvider.FillMaxWidth - }, - modifier = Modifier.fillMaxWidth(), - style = style, - ) - } - }, - ) -} - -@Composable -internal fun TextSkeletonPreview(style: TextSkeletonStyle) { - SandboxTheme { - TextSkeleton( - style = style, - lineCount = 3, - textStyle = SddsServTheme.typography.bodyMNormal, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonUiState.kt deleted file mode 100644 index 80789d42ac..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonUiState.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.textskeleton.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class TextSkeletonUiState( - override val variant: String = "", - override val appearance: String = "", - val lineCount: Int = 3, - val text: String = "", - val width: TextSkeletonWidth = TextSkeletonWidth.Random, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} - -internal enum class TextSkeletonWidth { - Random, - FullWidth, -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonViewModel.kt deleted file mode 100644 index cc3e897533..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/compose/TextSkeletonViewModel.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.sdds.playground.sandbox.textskeleton.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента TextSkeleton - */ -internal class TextSkeletonViewModel( - defaultState: TextSkeletonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun TextSkeletonUiState.toProps() = listOfNotNull( - Property.IntProperty( - name = "lineCount", - value = lineCount, - onApply = { - if (it in 1..20) { - internalUiState.value = internalUiState.value.copy(lineCount = it) - } - }, - ), - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - enumProperty( - name = "width", - value = width, - onApply = { internalUiState.value = internalUiState.value.copy(width = it) }, - ), - ) -} - -internal class TextSkeletonViewModelFactory( - private val defaultState: TextSkeletonUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TextSkeletonViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonFragment.kt deleted file mode 100644 index 75835caf32..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonFragment.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.textskeleton.vs - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.View -import android.view.ViewGroup -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.TextSkeleton -import com.sdds.uikit.TextView -import com.sdds.uikit.fixtures.R -import com.sdds.uikit.fixtures.stories.skeleton.TextSkeletonUiState -import com.sdds.uikit.fixtures.stories.skeleton.applyState -import com.sdds.uikit.fixtures.stories.skeleton.textSkeleton - -/** - * Фрагмент с компонентом TextSkeleton - */ -internal class TextSkeletonFragment : - ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - TextSkeletonParametersViewModelFactory( - defaultState = getState { TextSkeletonUiState() }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - ViewGroup.LayoutParams.MATCH_PARENT, - ViewGroup.LayoutParams.WRAP_CONTENT, - ).apply { - gravity = Gravity.CENTER - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return textSkeleton(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: TextSkeletonUiState) { - component?.findViewById(R.id.text_skeleton)?.applyState(state) - component?.findViewById(R.id.text_over_skeleton)?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonParametersViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonParametersViewModel.kt deleted file mode 100644 index f0d55d9795..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/textskeleton/vs/TextSkeletonParametersViewModel.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.textskeleton.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.skeleton.TextSkeletonUiState -import com.sdds.uikit.fixtures.stories.skeleton.TextSkeletonWidth - -/** - * ViewModel компонента TextSkeleton - */ -internal class TextSkeletonParametersViewModel( - defaultState: TextSkeletonUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - private val _propsMap = TextSkeletonPropertyName.values().associateBy { name -> name.value } - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = _propsMap[name] ?: return - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - TextSkeletonPropertyName.LineCount -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(lineCount = valueString.toInt()) - } else { - currentState - } - TextSkeletonPropertyName.Text -> currentState.copy(text = valueString) - TextSkeletonPropertyName.Width -> currentState.copy(width = TextSkeletonWidth.valueOf(valueString)) - } - } - - override fun TextSkeletonUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = TextSkeletonPropertyName.LineCount.value, - value = lineCount, - ), - Property.StringProperty( - name = TextSkeletonPropertyName.Text.value, - value = text, - ), - enumProperty( - name = TextSkeletonPropertyName.Width.value, - value = width, - ), - ) - } - - private enum class TextSkeletonPropertyName(val value: String) { - LineCount("lineCount"), - Text("text"), - Width("width"), - } -} - -internal class TextSkeletonParametersViewModelFactory( - private val defaultState: TextSkeletonUiState = TextSkeletonUiState(), - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TextSkeletonParametersViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastScreen.kt deleted file mode 100644 index 81588fe9b9..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastScreen.kt +++ /dev/null @@ -1,98 +0,0 @@ -package com.sdds.playground.sandbox.toast.compose - -import androidx.compose.foundation.clickable -import androidx.compose.foundation.interaction.MutableInteractionSource -import androidx.compose.runtime.Composable -import androidx.compose.runtime.remember -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Text -import com.sdds.compose.uikit.Toast -import com.sdds.compose.uikit.overlay.LocalOverlayManager -import com.sdds.compose.uikit.overlay.OverlayManager -import com.sdds.compose.uikit.overlay.showToast -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * Экран с компонентом [Toast] - */ -@Composable -internal fun ToastScreen(componentKey: ComponentKey = ComponentKey.Toast) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = ToastViewModelFactory( - defaultState = ToastUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { toastUiState, style -> - val overlayManager = LocalOverlayManager.current - Button( - modifier = Modifier.align(Alignment.Center), - label = "show", - onClick = { - overlayManager.showToast( - position = toastUiState.position, - durationMillis = OverlayManager.OVERLAY_DURATION_SLOW_MILLIS - .takeIf { toastUiState.autoDismiss }, - ) { - Toast( - style = style, - contentStart = getContentStart(toastUiState.hasContentStart), - contentEnd = getContentEnd(toastUiState.hasContentEnd) { - overlayManager.remove(it) - }, - ) { - Text(toastUiState.text) - } - } - }, - ) - }, - ) -} - -private fun getContentStart(hasContentStart: Boolean): @Composable (() -> Unit)? { - return if (hasContentStart) { - @Composable { Icon(painter = painterResource(R.drawable.ic_shazam_16), "") } - } else { - null - } -} - -private fun getContentEnd(hasContentEnd: Boolean, onClick: () -> Unit): @Composable (() -> Unit)? { - return if (hasContentEnd) { - @Composable { - Icon( - modifier = Modifier.clickable( - indication = null, - interactionSource = remember { MutableInteractionSource() }, - ) { - onClick.invoke() - }, - painter = painterResource(R.drawable.ic_close_16), - contentDescription = "", - ) - } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun ToastScreenPreview() { - SandboxTheme { - ToastScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastUiState.kt deleted file mode 100644 index 90a4af0237..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastUiState.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.toast.compose - -import com.sdds.compose.uikit.overlay.OverlayPosition -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ToastUiState( - override val variant: String = "", - override val appearance: String = "", - val text: String = "Toast Text", - val hasContentStart: Boolean = true, - val hasContentEnd: Boolean = true, - val position: OverlayPosition = OverlayPosition.BottomCenter, - val autoDismiss: Boolean = true, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastViewModel.kt deleted file mode 100644 index 252290afd0..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/compose/ToastViewModel.kt +++ /dev/null @@ -1,59 +0,0 @@ -package com.sdds.playground.sandbox.toast.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ToastStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Toast - */ -internal class ToastViewModel( - defaultState: ToastUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ToastUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - enumProperty( - name = "posittion", - value = position, - onApply = { internalUiState.value = internalUiState.value.copy(position = it) }, - ), - Property.BooleanProperty( - name = "hasContentStart", - value = hasContentStart, - onApply = { internalUiState.value = internalUiState.value.copy(hasContentStart = it) }, - ), - Property.BooleanProperty( - name = "hasContentEnd", - value = hasContentEnd, - onApply = { internalUiState.value = internalUiState.value.copy(hasContentEnd = it) }, - ), - Property.BooleanProperty( - name = "autoDismiss", - value = autoDismiss, - onApply = { internalUiState.value = internalUiState.value.copy(autoDismiss = it) }, - ), - ) - } -} - -internal class ToastViewModelFactory( - private val defaultState: ToastUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ToastViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastFragment.kt deleted file mode 100644 index 4f881e604e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastFragment.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.toast.vs - -import android.content.Context -import android.view.ContextThemeWrapper -import android.view.View -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.fixtures.stories.toast.ToastUiState -import com.sdds.uikit.fixtures.stories.toast.toast -import com.sdds.uikit.fixtures.stories.toast.toastTrigger - -internal class ToastFragment : ComponentFragment() { - private var toastContext: Context? = null - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ToastViewModelFactory( - defaultState = getState { ToastUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - toastContext = contextWrapper - return toastTrigger(contextWrapper) - } - - override fun onComponentUpdate(component: View?, state: ToastUiState) { - val context = toastContext ?: return - component?.setOnClickListener { toast(context, state).show() } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastViewModel.kt deleted file mode 100644 index 46ce12a167..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toast/vs/ToastViewModel.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.playground.sandbox.toast.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.toast.ToastUiState -import com.sdds.uikit.overlays.OverlayPosition - -internal class ToastViewModel( - defaultState: ToastUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = ToastPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - ToastPropertyName.Position -> currentState.copy(position = OverlayPosition.valueOf(valueString)) - ToastPropertyName.AutoDismiss -> currentState.copy(autoDismiss = valueString.toBoolean()) - ToastPropertyName.ContentStart -> currentState.copy(hasContentStart = valueString.toBoolean()) - ToastPropertyName.ContentEnd -> currentState.copy(hasContentEnd = valueString.toBoolean()) - ToastPropertyName.Text -> currentState.copy(text = valueString) - else -> currentState - } - } - - override fun ToastUiState.toProps(): List> { - return listOf( - enumProperty( - name = ToastPropertyName.Position.value, - value = position, - ), - Property.StringProperty( - name = ToastPropertyName.Text.value, - value = text, - ), - Property.BooleanProperty( - name = ToastPropertyName.ContentStart.value, - value = hasContentStart, - ), - Property.BooleanProperty( - name = ToastPropertyName.ContentEnd.value, - value = hasContentEnd, - ), - Property.BooleanProperty( - name = ToastPropertyName.AutoDismiss.value, - value = autoDismiss, - ), - ) - } - - private enum class ToastPropertyName(val value: String) { - Position("position"), - Text("text"), - ContentStart("hasContentStart"), - ContentEnd("hasContentEnd"), - AutoDismiss("autoDismiss"), - } -} - -internal class ToastViewModelFactory( - private val defaultState: ToastUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ToastViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarScreen.kt deleted file mode 100644 index 85c6a95c5e..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarScreen.kt +++ /dev/null @@ -1,96 +0,0 @@ -package com.sdds.playground.sandbox.toolbar.compose - -import androidx.compose.foundation.horizontalScroll -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.Column -import androidx.compose.foundation.layout.Row -import androidx.compose.foundation.layout.Spacer -import androidx.compose.foundation.layout.size -import androidx.compose.foundation.rememberScrollState -import androidx.compose.foundation.verticalScroll -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.IconButton -import com.sdds.compose.uikit.ToolBar -import com.sdds.compose.uikit.ToolBarOrientation -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.icons.R -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -@Composable -internal fun ToolBarScreen(componentKey: ComponentKey = ComponentKey.ToolBar) { - val toolBarViewModel = viewModel( - factory = ToolBarViewModelFactory(ToolBarUiState(), componentKey), - key = componentKey.toString(), - ) - ComponentScaffold( - key = componentKey, - viewModel = toolBarViewModel, - component = { uiState, style -> - val scrollModifier = when (style.orientation) { - ToolBarOrientation.Vertical -> Modifier.verticalScroll(rememberScrollState()) - ToolBarOrientation.Horizontal -> Modifier.horizontalScroll(rememberScrollState()) - } - Box(modifier = scrollModifier) { - ToolBar( - hasDivider = uiState.hasDivider, - style = style, - ) { - for (section in 0 until uiState.sections) { - if (section % 2 == 0) { - section { - ContainerAccordingOrientation(style.orientation) { - IconButton(R.drawable.ic_plasma_24) { } - Spacer(modifier = Modifier.size(4.dp)) - IconButton(R.drawable.ic_salute_outline_24) { } - } - } - } else { - section { Button("Label", {}) } - } - } - } - } - }, - ) -} - -@Composable -private fun ContainerAccordingOrientation( - orientation: ToolBarOrientation, - content: @Composable () -> Unit, -) { - if (orientation == ToolBarOrientation.Horizontal) { - Row { content() } - } else { - Column { content() } - } -} - -@Composable -internal fun ToolBarPreview(style: ToolBarStyle) { - ToolBar( - hasDivider = true, - style = style, - ) { - for (item in 0..2) { - if (item % 2 == 0) { - section { - Row { - IconButton(R.drawable.ic_plasma_24) { } - Spacer(modifier = Modifier.size(4.dp)) - IconButton(R.drawable.ic_salute_outline_24) { } - } - } - } else { - section { - Button("Label", {}) - } - } - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarUiState.kt deleted file mode 100644 index 93b1890f18..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarUiState.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.toolbar.compose - -import com.sdds.playground.sandbox.core.compose.UiState - -internal data class ToolBarUiState( - override val variant: String = "", - override val appearance: String = "", - val hasDivider: Boolean = true, - val sections: Int = 3, -) : UiState { - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarViewModel.kt deleted file mode 100644 index 143b47e5d4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/compose/ToolBarViewModel.kt +++ /dev/null @@ -1,44 +0,0 @@ -package com.sdds.playground.sandbox.toolbar.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -internal class ToolBarViewModel( - defaultState: ToolBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun ToolBarUiState.toProps(): List> { - return listOfNotNull( - Property.IntProperty( - name = "sections", - value = sections, - onApply = { - internalUiState.value = internalUiState.value.copy(sections = it) - }, - ), - Property.BooleanProperty( - name = "hasDivider", - value = hasDivider, - onApply = { - internalUiState.value = internalUiState.value.copy(hasDivider = it) - }, - ), - ) - } -} - -internal class ToolBarViewModelFactory( - private val defaultState: ToolBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ToolBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarFragment.kt deleted file mode 100644 index 61a3b3ac42..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarFragment.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.toolbar.vs - -import android.view.ContextThemeWrapper -import android.widget.LinearLayout.HORIZONTAL -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.ToolBar -import com.sdds.uikit.fixtures.stories.toolbar.ToolBarUiState -import com.sdds.uikit.fixtures.stories.toolbar.applyState -import com.sdds.uikit.fixtures.stories.toolbar.toolBar - -/** - * Фрагмент с компонентом ToolBar - */ -internal class ToolBarFragment : ComponentFragment() { - - private var state: ToolBarUiState = ToolBarUiState() - private var orientation: Int = HORIZONTAL - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - ToolBarViewModelFactory( - defaultState = getState { state }, - componentKey = componentKey, - ) - } - - override val scrollMode: ScrollMode - get() = when (orientation) { - HORIZONTAL -> ScrollMode.HORIZONTAL - else -> ScrollMode.VERTICAL - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): ToolBar { - return toolBar(contextWrapper, state = state) - } - - override fun onComponentUpdate(component: ToolBar?, state: ToolBarUiState) { - component?.applyState(state) - orientation = (component?.orientation) ?: HORIZONTAL - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarViewModel.kt deleted file mode 100644 index 3e7a716ad3..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/toolbar/vs/ToolBarViewModel.kt +++ /dev/null @@ -1,61 +0,0 @@ -package com.sdds.playground.sandbox.toolbar.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.uikit.fixtures.stories.toolbar.ToolBarUiState - -/** - * ViewModel компонента ToolBar - */ -internal class ToolBarViewModel( - defaultState: ToolBarUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val currentState = internalUiState.value - internalUiState.value = when (name) { - ToolBarProperty.HasDivider.value -> currentState.copy(hasDivider = valueString.toBoolean()) - ToolBarProperty.SlotsAmount.value -> if (valueString.matches(Regex("[0-9]+"))) { - currentState.copy(slotsAmount = valueString.toInt()) - } else { - currentState - } - else -> currentState - } - } - - override fun ToolBarUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "hasDivider", - value = hasDivider, - ), - Property.IntProperty( - name = "slotsAmount", - value = slotsAmount, - ), - ) - } - - private enum class ToolBarProperty(val value: String) { - HasDivider("hasDivider"), - SlotsAmount("slotsAmount"), - } -} - -internal class ToolBarViewModelFactory( - private val defaultState: ToolBarUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return ToolBarViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipScreen.kt deleted file mode 100644 index 1ad1f2616a..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipScreen.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.playground.sandbox.tooltip.compose - -import android.util.Log -import androidx.compose.foundation.layout.widthIn -import androidx.compose.runtime.Composable -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.Modifier -import androidx.compose.ui.res.painterResource -import androidx.compose.ui.text.AnnotatedString -import androidx.compose.ui.tooling.preview.Preview -import androidx.compose.ui.unit.dp -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.Button -import com.sdds.compose.uikit.Icon -import com.sdds.compose.uikit.Tooltip -import com.sdds.compose.uikit.TriggerInfo -import com.sdds.compose.uikit.popoverTrigger -import com.sdds.icons.R -import com.sdds.playground.sandbox.SandboxTheme -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.popover.compose.autoHideToMs -import com.sdds.playground.sandbox.popover.compose.toAlignment - -/** - * Экран с компонентом [Tooltip] - */ -@Composable -internal fun TooltipScreen(componentKey: ComponentKey = ComponentKey.Tooltip) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = TooltipViewModelFactory( - defaultState = TooltipUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - componentAlignment = { tooltipUiState -> tooltipUiState.triggerPlacement.toAlignment() }, - component = { tooltipUiState, style -> - val showTooltip = remember { mutableStateOf(false) } - val triggerInfo = remember { mutableStateOf(TriggerInfo()) } - Button( - modifier = Modifier - .align(tooltipUiState.triggerPlacement.toAlignment()) - .popoverTrigger(triggerInfo), - label = "show", - onClick = { - Log.d("Tooltip", "trigger button clicked") - showTooltip.value = true - }, - ) - Tooltip( - show = showTooltip.value, - modifier = Modifier.widthIn(0.dp, 160.dp), - triggerInfo = { triggerInfo.value }, - placement = tooltipUiState.placement, - placementMode = tooltipUiState.placementMode, - triggerCentered = tooltipUiState.triggerCentered, - alignment = tooltipUiState.alignment, - style = style, - tailEnabled = tooltipUiState.tailEnabled, - onDismissRequest = { - showTooltip.value = false - }, - duration = tooltipUiState.autoHide.autoHideToMs(), - contentStart = getContentStart(tooltipUiState.hasContentStart), - text = AnnotatedString(tooltipUiState.text), - ) - }, - ) -} - -private fun getContentStart(hasContentStart: Boolean): @Composable (() -> Unit)? { - return if (hasContentStart) { - @Composable { Icon(painter = painterResource(R.drawable.ic_shazam_16), "") } - } else { - null - } -} - -@Composable -@Preview(showBackground = true) -private fun TooltipScreenPreview() { - SandboxTheme { - TooltipScreen() - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipUiState.kt deleted file mode 100644 index 79a61e78ee..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipUiState.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.tooltip.compose - -import com.sdds.compose.uikit.PopoverAlignment -import com.sdds.compose.uikit.PopoverPlacement -import com.sdds.compose.uikit.PopoverPlacementMode -import com.sdds.playground.sandbox.core.compose.UiState -import com.sdds.playground.sandbox.popover.compose.TriggerPlacement - -internal data class TooltipUiState( - override val variant: String = "", - override val appearance: String = "", - val triggerPlacement: TriggerPlacement = TriggerPlacement.Center, - val alignment: PopoverAlignment = PopoverAlignment.Start, - val placement: PopoverPlacement = PopoverPlacement.Top, - val placementMode: PopoverPlacementMode = PopoverPlacementMode.Loose, - val triggerCentered: Boolean = false, - val tailEnabled: Boolean = true, - val autoHide: Boolean = false, - val text: String = "Tooltip text you can replace", - val hasContentStart: Boolean = true, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipViewModel.kt deleted file mode 100644 index f9f37c2159..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/compose/TooltipViewModel.kt +++ /dev/null @@ -1,79 +0,0 @@ -package com.sdds.playground.sandbox.tooltip.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Tooltip - */ -internal class TooltipViewModel( - defaultState: TooltipUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun TooltipUiState.toProps(): List> { - return listOf( - Property.StringProperty( - name = "text", - value = text, - onApply = { internalUiState.value = internalUiState.value.copy(text = it) }, - ), - enumProperty( - name = "triggerAlignment", - value = triggerPlacement, - onApply = { internalUiState.value = internalUiState.value.copy(triggerPlacement = it) }, - ), - enumProperty( - name = "alignment", - value = alignment, - onApply = { internalUiState.value = internalUiState.value.copy(alignment = it) }, - ), - enumProperty( - name = "placement", - value = placement, - onApply = { internalUiState.value = internalUiState.value.copy(placement = it) }, - ), - enumProperty( - name = "placementMode", - value = placementMode, - onApply = { internalUiState.value = internalUiState.value.copy(placementMode = it) }, - ), - Property.BooleanProperty( - name = "autoHide", - value = autoHide, - onApply = { internalUiState.value = internalUiState.value.copy(autoHide = it) }, - ), - Property.BooleanProperty( - name = "triggerCentered", - value = triggerCentered, - onApply = { internalUiState.value = internalUiState.value.copy(triggerCentered = it) }, - ), - Property.BooleanProperty( - name = "tailEnabled", - value = tailEnabled, - onApply = { internalUiState.value = internalUiState.value.copy(tailEnabled = it) }, - ), - Property.BooleanProperty( - name = "hasContentStart", - value = hasContentStart, - onApply = { internalUiState.value = internalUiState.value.copy(hasContentStart = it) }, - ), - ) - } -} - -internal class TooltipViewModelFactory( - private val defaultState: TooltipUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TooltipViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipFragment.kt deleted file mode 100644 index feccf62cf4..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipFragment.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.playground.sandbox.tooltip.vs - -import android.view.ContextThemeWrapper -import android.view.Gravity -import android.view.View -import android.widget.FrameLayout -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Tooltip -import com.sdds.uikit.fixtures.stories.popover.toGravity -import com.sdds.uikit.fixtures.stories.tooltip.TooltipUiState -import com.sdds.uikit.fixtures.stories.tooltip.showWithState -import com.sdds.uikit.fixtures.stories.tooltip.tooltipWithTrigger - -/** - * Фрагмент с компонентом Tooltip - * @author Малышев Александр on 19.05.2025 - */ -internal class TooltipFragment : ComponentFragment() { - - private var tooltip: Tooltip? = null - private var tooltipUiState: TooltipUiState = TooltipUiState() - private var currentTriggerGravity: Int = Gravity.CENTER - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - TooltipViewModelFactory( - defaultState = getState { tooltipUiState }, - componentKey = componentKey, - ) - } - - override val defaultLayoutParams: FrameLayout.LayoutParams - get() = FrameLayout.LayoutParams( - FrameLayout.LayoutParams.WRAP_CONTENT, - FrameLayout.LayoutParams.WRAP_CONTENT, - ) - - override val defaultGravity: Int - get() = currentTriggerGravity - - override fun shouldRecreateComponentOnStateUpdate(state: TooltipUiState): Boolean { - val newGravity = state.triggerAlignment.toGravity() - if (newGravity != currentTriggerGravity) { - currentTriggerGravity = newGravity - return true - } - return super.shouldRecreateComponentOnStateUpdate(state) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): View { - return tooltipWithTrigger(contextWrapper) - .also { tooltip = it.popover } - .also { popoverTrigger -> - popoverTrigger.trigger.setOnClickListener { - popoverTrigger.popover.showWithState(it, tooltipUiState) - } - }.trigger - } - - override fun onComponentUpdate(component: View?, state: TooltipUiState) { - tooltipUiState = state - updatePopover(component) - } - - override fun onDestroyView() { - super.onDestroyView() - tooltip = null - } - - private fun updatePopover(trigger: View?) = tooltip?.run { - trigger ?: return@run - if (isShowing) { - dismiss() - showWithState(trigger, tooltipUiState) - } - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipViewModel.kt deleted file mode 100644 index 0eaf5b60a6..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/tooltip/vs/TooltipViewModel.kt +++ /dev/null @@ -1,114 +0,0 @@ -package com.sdds.playground.sandbox.tooltip.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.popover.PopoverAlignment -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacement -import com.sdds.uikit.fixtures.stories.popover.PopoverPlacementMode -import com.sdds.uikit.fixtures.stories.popover.PopoverTriggerAlignment -import com.sdds.uikit.fixtures.stories.tooltip.TooltipUiState - -/** - * ViewModel компонента Tooltip - * @author Малышев Александр on 19.05.2025 - */ -internal class TooltipViewModel( - defaultState: TooltipUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - - val valueString = value?.toString() ?: return - val propertyName = TooltipPropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - TooltipPropertyName.Placement -> currentState.copy(placement = PopoverPlacement.valueOf(valueString)) - TooltipPropertyName.PlacementMode -> currentState.copy( - placementMode = PopoverPlacementMode.valueOf(valueString), - ) - TooltipPropertyName.Alignment -> currentState.copy(alignment = PopoverAlignment.valueOf(valueString)) - TooltipPropertyName.TriggerCentered -> currentState.copy(triggerCentered = valueString.toBoolean()) - TooltipPropertyName.TriggerAlignment -> currentState.copy( - triggerAlignment = PopoverTriggerAlignment.valueOf(valueString), - ) - TooltipPropertyName.TailEnabled -> currentState.copy(tailEnabled = valueString.toBoolean()) - TooltipPropertyName.AutoDismiss -> currentState.copy(autoDismiss = valueString.toBoolean()) - TooltipPropertyName.ContentStart -> currentState.copy(contentStart = valueString.toBoolean()) - TooltipPropertyName.Text -> currentState.copy(text = valueString) - else -> currentState - } - } - - override fun TooltipUiState.toProps(): List> { - return listOf( - enumProperty( - name = TooltipPropertyName.PlacementMode.value, - value = placementMode, - ), - enumProperty( - name = TooltipPropertyName.Placement.value, - value = placement, - ), - enumProperty( - name = TooltipPropertyName.Alignment.value, - value = alignment, - ), - enumProperty( - name = TooltipPropertyName.TriggerAlignment.value, - value = triggerAlignment, - ), - Property.BooleanProperty( - name = TooltipPropertyName.TailEnabled.value, - value = tailEnabled, - ), - Property.BooleanProperty( - name = TooltipPropertyName.TriggerCentered.value, - value = triggerCentered, - ), - Property.BooleanProperty( - name = TooltipPropertyName.AutoDismiss.value, - value = autoDismiss, - ), - Property.StringProperty( - name = TooltipPropertyName.Text.value, - value = text, - ), - Property.BooleanProperty( - name = TooltipPropertyName.ContentStart.value, - value = contentStart, - ), - ) - } - - private enum class TooltipPropertyName(val value: String) { - Placement("placement"), - PlacementMode("placementMode"), - Alignment("alignment"), - TriggerCentered("triggerCentered"), - TriggerAlignment("triggerAlignment"), - TailEnabled("tailEnabled"), - AutoDismiss("autoDismiss"), - Text("text"), - ContentStart("hasContentStart"), - } -} - -/** - * Фабрика для [TooltipViewModel] - */ -internal class TooltipViewModelFactory( - private val defaultState: TooltipUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return TooltipViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelScreen.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelScreen.kt deleted file mode 100644 index 3081ee7f8f..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelScreen.kt +++ /dev/null @@ -1,123 +0,0 @@ -package com.sdds.playground.sandbox.wheel.compose - -import android.util.Log -import androidx.compose.runtime.Composable -import androidx.compose.ui.Modifier -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.tooling.preview.Preview -import androidx.lifecycle.viewmodel.compose.viewModel -import com.sdds.compose.uikit.DataEdgePlacement -import com.sdds.compose.uikit.Wheel -import com.sdds.compose.uikit.WheelAlignment -import com.sdds.compose.uikit.WheelDataSet -import com.sdds.compose.uikit.WheelItemData -import com.sdds.compose.uikit.WheelSeparator -import com.sdds.compose.uikit.WheelStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.compose.ComponentScaffold -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider - -/** - * Экран с компонентом [Wheel] - */ -@Composable -internal fun WheelScreen(componentKey: ComponentKey = ComponentKey.Wheel) { - ComponentScaffold( - key = componentKey, - viewModel = viewModel( - factory = WheelViewModelFactory( - defaultState = WheelUiState(), - componentKey = componentKey, - ), - key = componentKey.toString(), - ), - component = { wheelUiState, style -> - Wheel( - modifier = Modifier, - style = style, - hasControls = wheelUiState.hasControls, - wheelCount = wheelUiState.wheelCount, - visibleItemsCount = wheelUiState.visibleItemsCount, - wheelSeparator = wheelUiState.separatorType, - onItemSelected = { wheelIndex, itemIndex -> - println("item selected: $itemIndex in wheel $wheelIndex") - }, - ) { wheelIndex -> - WheelDataSet( - dataSet = List(30) { - WheelItemData( - text = wheelUiState.itemLabel, - textAfter = wheelUiState.itemTextAfter, - ) - }, - description = wheelUiState.description, - ) - } - }, - ) -} - -@Composable -internal fun WheelPreview(style: WheelStyle) { - Wheel( - style = style, - hasControls = true, - wheelCount = 1, - visibleItemsCount = 3, - wheelSeparator = WheelSeparator.None, - ) { wheelIndex -> - WheelDataSet( - List(20) { - WheelItemData( - "Label", - "TA", - ) - }, - ) - } -} - -@Composable -@Preview(showBackground = true) -private fun WheelTest() { - Wheel( - modifier = Modifier, - style = WheelStyle.builder() - .wheelCount(3) - .dividerStyle(Divider.Default.style()) - .visibleItemsCount(5) - .itemAlignment(WheelAlignment.Mixed) - .controlIconUp(com.sdds.icons.R.drawable.ic_disclosure_up_fill_36) - .controlIconDown(com.sdds.icons.R.drawable.ic_disclosure_down_fill_36) - .colors { - controlIconUpColor(Color.Red) - controlIconDownColor(Color.Blue) - } - .style(), - dataEdgePlacement = DataEdgePlacement.WheelCenter, - hasControls = true, - wheelSeparator = WheelSeparator.Divider, - onItemSelected = { wheelIndex, index -> - Log.d("testtag", "Selected on wheel $wheelIndex at index $index") - }, - ) { wheelIndex -> - WheelDataSet( - dataSet = listOf( - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("LabelLong$wheelIndex", textAfter = "ta$wheelIndex"), - WheelItemData("Label$wheelIndex", textAfter = "ta$wheelIndex"), - ), - description = "description$wheelIndex", - initialIndex = 0, - ) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelUiState.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelUiState.kt deleted file mode 100644 index 8bc0bbff34..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelUiState.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.wheel.compose - -import com.sdds.compose.uikit.WheelSeparator -import com.sdds.playground.sandbox.core.compose.UiState -import com.sdds.uikit.Wheel - -/** - * Состояние компонента [Wheel]. - * - * @property variant Вариант отображения. - * @property itemLabel Заголовок элемента. - * @property itemTextAfter Текст после значения. - * @property description Описание колеса. - * @property hasControls Флаг отображения кнопок управления. - * @property wheelCount Количество колес. - * @property visibleItemsCount Количество видимых элементов. - * @property separatorType Тип разделителя между элементами. - */ -data class WheelUiState( - override val variant: String = "", - override val appearance: String = "", - val itemLabel: String = "Label", - val itemTextAfter: String = "", - val description: String = "", - val hasControls: Boolean = true, - val wheelCount: Int = 2, - val visibleItemsCount: Int = 3, - val separatorType: WheelSeparator = WheelSeparator.Dots, -) : UiState { - - override fun updateVariant(appearance: String, variant: String): UiState { - return copy(appearance = appearance, variant = variant) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelViewModel.kt deleted file mode 100644 index 55ddfba291..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/compose/WheelViewModel.kt +++ /dev/null @@ -1,82 +0,0 @@ -package com.sdds.playground.sandbox.wheel.compose - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.compose.uikit.WheelStyle -import com.sdds.playground.sandbox.core.compose.ComponentViewModel -import com.sdds.playground.sandbox.core.compose.Property -import com.sdds.playground.sandbox.core.compose.enumProperty -import com.sdds.playground.sandbox.core.integration.component.ComponentKey - -/** - * ViewModel компонента Wheel - */ -internal class WheelViewModel( - defaultState: WheelUiState, - componentKey: ComponentKey, -) : ComponentViewModel( - defaultState, - componentKey, -) { - - override fun WheelUiState.toProps(): List> { - return listOf( - Property.BooleanProperty( - name = "hasControls", - value = hasControls, - onApply = { internalUiState.value = internalUiState.value.copy(hasControls = it) }, - ), - Property.StringProperty( - name = "itemLabel", - value = itemLabel, - onApply = { internalUiState.value = internalUiState.value.copy(itemLabel = it) }, - ), - Property.StringProperty( - name = "itemTextAfter", - value = itemTextAfter, - onApply = { - internalUiState.value = internalUiState.value.copy(itemTextAfter = it) - }, - ), - Property.StringProperty( - name = "description", - value = description, - onApply = { internalUiState.value = internalUiState.value.copy(description = it) }, - ), - Property.IntProperty( - name = "wheelCount", - value = wheelCount, - onApply = { - internalUiState.value = - internalUiState.value.copy(wheelCount = it.coerceIn(1..5)) - }, - ), - Property.IntProperty( - name = "visibleItemsCount", - value = visibleItemsCount, - onApply = { - internalUiState.value = - internalUiState.value.copy(visibleItemsCount = it.coerceIn(3..9)) - }, - ), - enumProperty( - name = "separatorType", - value = separatorType, - onApply = { - internalUiState.value = internalUiState.value.copy(separatorType = it) - }, - ), - ) - } -} - -internal class WheelViewModelFactory( - private val defaultState: WheelUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return WheelViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelFragment.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelFragment.kt deleted file mode 100644 index 56bad77c97..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelFragment.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.wheel.vs - -import android.view.ContextThemeWrapper -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.vs.ComponentFragment -import com.sdds.uikit.Wheel -import com.sdds.uikit.fixtures.stories.wheel.WheelUiState -import com.sdds.uikit.fixtures.stories.wheel.applyState -import com.sdds.uikit.fixtures.stories.wheel.wheel - -internal class WheelFragment : ComponentFragment() { - - override val viewModelFactory: ViewModelProvider.Factory by lazy { - WheelViewModelFactory( - defaultState = getState { WheelUiState() }, - componentKey = componentKey, - ) - } - - override fun getComponent(contextWrapper: ContextThemeWrapper): Wheel { - return wheel(contextWrapper) - } - - override fun onComponentUpdate(component: Wheel?, state: WheelUiState) { - component?.applyState(state) - } -} diff --git a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelViewModel.kt b/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelViewModel.kt deleted file mode 100644 index f8f80cb3c7..0000000000 --- a/playground/sandbox-compose/src/main/kotlin/com/sdds/playground/sandbox/wheel/vs/WheelViewModel.kt +++ /dev/null @@ -1,115 +0,0 @@ -package com.sdds.playground.sandbox.wheel.vs - -import androidx.lifecycle.ViewModel -import androidx.lifecycle.ViewModelProvider -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.vs.ComponentViewModel -import com.sdds.playground.sandbox.core.vs.Property -import com.sdds.playground.sandbox.core.vs.enumProperty -import com.sdds.uikit.fixtures.stories.wheel.WheelControlsDisplayMode -import com.sdds.uikit.fixtures.stories.wheel.WheelSeparatorType -import com.sdds.uikit.fixtures.stories.wheel.WheelUiState - -internal class WheelViewModel( - defaultState: WheelUiState, - componentKey: ComponentKey, -) : ComponentViewModel(defaultState, componentKey) { - - @Suppress("CyclomaticComplexMethod") - override fun updateProperty(name: String, value: Any?) { - super.updateProperty(name, value) - val valueString = value?.toString() ?: return - val propertyName = PropertyName.values().find { it.value == name } - val currentState = internalUiState.value - internalUiState.value = when (propertyName) { - PropertyName.ItemLabel -> currentState.copy(itemLabel = valueString) - PropertyName.Description -> currentState.copy(description = valueString) - PropertyName.ItemTextAfter -> currentState.copy(itemTextAfter = valueString) - PropertyName.HasControls -> currentState.copy(hasControls = valueString.toBoolean()) - PropertyName.ControlsClickable -> currentState.copy(controlsClickable = valueString.toBoolean()) - PropertyName.ControlsDisplayMode -> currentState.copy( - controlsDisplayMode = WheelControlsDisplayMode.valueOf(valueString), - ) - - PropertyName.WheelCount -> currentState.copy(wheelCount = valueString.toIntOrNull() ?: 0) - PropertyName.VisibleItemsCount -> currentState.copy(visibleItemsCount = valueString.toIntOrNull() ?: 0) - PropertyName.SeparatorType -> currentState.copy(separatorType = WheelSeparatorType.valueOf(valueString)) - PropertyName.HasInfiniteScroll -> currentState.copy(hasInfiniteScroll = valueString.toBoolean()) - else -> currentState - } - } - - override fun WheelUiState.toProps(): List> { - return listOfNotNull( - Property.StringProperty( - name = PropertyName.ItemLabel.value, - value = itemLabel, - ), - Property.StringProperty( - name = PropertyName.Description.value, - value = description, - ), - Property.StringProperty( - name = PropertyName.ItemTextAfter.value, - value = itemTextAfter, - ), - Property.BooleanProperty( - name = PropertyName.HasControls.value, - value = hasControls, - ), - Property.BooleanProperty( - name = PropertyName.ControlsClickable.value, - value = controlsClickable, - ), - enumProperty( - name = PropertyName.ControlsDisplayMode.value, - value = controlsDisplayMode, - ).takeIf { hasControls }, - Property.BooleanProperty( - name = PropertyName.HasInfiniteScroll.value, - value = hasInfiniteScroll, - ), - Property.IntProperty( - name = PropertyName.WheelCount.value, - value = wheelCount, - ), - Property.IntProperty( - name = PropertyName.VisibleItemsCount.value, - value = visibleItemsCount, - ), - enumProperty( - name = PropertyName.SeparatorType.value, - value = separatorType, - ), - - ) - } - - private enum class PropertyName(val value: String) { - ItemLabel("itemLabel"), - Description("description"), - ItemTextAfter("itemTextAfter"), - ItemAlignment("itemAlignment"), - HasControls("hasControls"), - ControlsClickable("controlsClickable"), - ControlsDisplayMode("controlsDisplayMode"), - WheelCount("wheelCount"), - VisibleItemsCount("visibleItemsCount"), - SeparatorType("separatorType"), - HasInfiniteScroll("hasInfiniteScroll"), - } -} - -/** - * Фабрика для [WheelViewModel] - */ -internal class WheelViewModelFactory( - private val defaultState: WheelUiState, - private val componentKey: ComponentKey, -) : ViewModelProvider.Factory { - - @Suppress("UNCHECKED_CAST") - override fun create(modelClass: Class): T { - return WheelViewModel(defaultState, componentKey) as T - } -} diff --git a/playground/sandbox-compose/src/main/res/anim/slide_in_left.xml b/playground/sandbox-compose/src/main/res/anim/slide_in_left.xml deleted file mode 100644 index f7e9cedf3c..0000000000 --- a/playground/sandbox-compose/src/main/res/anim/slide_in_left.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/anim/slide_in_right.xml b/playground/sandbox-compose/src/main/res/anim/slide_in_right.xml deleted file mode 100644 index f5b4b43b32..0000000000 --- a/playground/sandbox-compose/src/main/res/anim/slide_in_right.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/anim/slide_out_left.xml b/playground/sandbox-compose/src/main/res/anim/slide_out_left.xml deleted file mode 100644 index 8b0c59c1a8..0000000000 --- a/playground/sandbox-compose/src/main/res/anim/slide_out_left.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/anim/slide_out_right.xml b/playground/sandbox-compose/src/main/res/anim/slide_out_right.xml deleted file mode 100644 index 5fea646d5d..0000000000 --- a/playground/sandbox-compose/src/main/res/anim/slide_out_right.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/bg_color_property_switch_track.xml b/playground/sandbox-compose/src/main/res/color/bg_color_property_switch_track.xml deleted file mode 100644 index 092593e138..0000000000 --- a/playground/sandbox-compose/src/main/res/color/bg_color_property_switch_track.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/bg_property_choice_item.xml b/playground/sandbox-compose/src/main/res/color/bg_property_choice_item.xml deleted file mode 100644 index 07663c372a..0000000000 --- a/playground/sandbox-compose/src/main/res/color/bg_property_choice_item.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/bg_property_item.xml b/playground/sandbox-compose/src/main/res/color/bg_property_item.xml deleted file mode 100644 index d9099a0384..0000000000 --- a/playground/sandbox-compose/src/main/res/color/bg_property_item.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/color_navigation_item_label.xml b/playground/sandbox-compose/src/main/res/color/color_navigation_item_label.xml deleted file mode 100644 index 7196e9e2e7..0000000000 --- a/playground/sandbox-compose/src/main/res/color/color_navigation_item_label.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/color_property_item_label.xml b/playground/sandbox-compose/src/main/res/color/color_property_item_label.xml deleted file mode 100644 index 62a7588794..0000000000 --- a/playground/sandbox-compose/src/main/res/color/color_property_item_label.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/color/color_property_item_value.xml b/playground/sandbox-compose/src/main/res/color/color_property_item_value.xml deleted file mode 100644 index 7196e9e2e7..0000000000 --- a/playground/sandbox-compose/src/main/res/color/color_property_item_value.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout-television/activity_main_sandbox.xml b/playground/sandbox-compose/src/main/res/layout-television/activity_main_sandbox.xml deleted file mode 100644 index aa715390dd..0000000000 --- a/playground/sandbox-compose/src/main/res/layout-television/activity_main_sandbox.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout-television/fragment_component_list.xml b/playground/sandbox-compose/src/main/res/layout-television/fragment_component_list.xml deleted file mode 100644 index 598486c155..0000000000 --- a/playground/sandbox-compose/src/main/res/layout-television/fragment_component_list.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout-television/fragment_component_scaffold.xml b/playground/sandbox-compose/src/main/res/layout-television/fragment_component_scaffold.xml deleted file mode 100644 index fb9c7b7f62..0000000000 --- a/playground/sandbox-compose/src/main/res/layout-television/fragment_component_scaffold.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout-television/main_activity.xml b/playground/sandbox-compose/src/main/res/layout-television/main_activity.xml deleted file mode 100644 index 62b4b7e8fb..0000000000 --- a/playground/sandbox-compose/src/main/res/layout-television/main_activity.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/activity_main_sandbox.xml b/playground/sandbox-compose/src/main/res/layout/activity_main_sandbox.xml deleted file mode 100644 index 791d5815d6..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/activity_main_sandbox.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/fragment_component_list.xml b/playground/sandbox-compose/src/main/res/layout/fragment_component_list.xml deleted file mode 100644 index b9ac7cd0c1..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/fragment_component_list.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/fragment_component_props.xml b/playground/sandbox-compose/src/main/res/layout/fragment_component_props.xml deleted file mode 100644 index ffd3e6dfc7..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/fragment_component_props.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - diff --git a/playground/sandbox-compose/src/main/res/layout/fragment_component_scaffold.xml b/playground/sandbox-compose/src/main/res/layout/fragment_component_scaffold.xml deleted file mode 100644 index f0607cf092..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/fragment_component_scaffold.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/fragment_editor_choice.xml b/playground/sandbox-compose/src/main/res/layout/fragment_editor_choice.xml deleted file mode 100644 index 1f273335c4..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/fragment_editor_choice.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/fragment_editor_text.xml b/playground/sandbox-compose/src/main/res/layout/fragment_editor_text.xml deleted file mode 100644 index f2cf727bc6..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/fragment_editor_text.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_choice_editor_item.xml b/playground/sandbox-compose/src/main/res/layout/layout_choice_editor_item.xml deleted file mode 100644 index b8dc36c808..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_choice_editor_item.xml +++ /dev/null @@ -1,7 +0,0 @@ - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_component_group.xml b/playground/sandbox-compose/src/main/res/layout/layout_component_group.xml deleted file mode 100644 index c1b8d3e12b..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_component_group.xml +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_component_item.xml b/playground/sandbox-compose/src/main/res/layout/layout_component_item.xml deleted file mode 100644 index 4f65babd56..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_component_item.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_component_tab.xml b/playground/sandbox-compose/src/main/res/layout/layout_component_tab.xml deleted file mode 100644 index 33b0e8f370..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_component_tab.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_header_property_item.xml b/playground/sandbox-compose/src/main/res/layout/layout_header_property_item.xml deleted file mode 100644 index c4d45cb252..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_header_property_item.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_main_header.xml b/playground/sandbox-compose/src/main/res/layout/layout_main_header.xml deleted file mode 100644 index 7dde6c754f..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_main_header.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - diff --git a/playground/sandbox-compose/src/main/res/layout/layout_switch_property_item.xml b/playground/sandbox-compose/src/main/res/layout/layout_switch_property_item.xml deleted file mode 100644 index 63128b290c..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_switch_property_item.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_tabs.xml b/playground/sandbox-compose/src/main/res/layout/layout_tabs.xml deleted file mode 100644 index 20abc94416..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_tabs.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_theme_switcher.xml b/playground/sandbox-compose/src/main/res/layout/layout_theme_switcher.xml deleted file mode 100644 index ca9da08e12..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_theme_switcher.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/layout_update_section.xml b/playground/sandbox-compose/src/main/res/layout/layout_update_section.xml deleted file mode 100644 index 1fe3c58f83..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_update_section.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - diff --git a/playground/sandbox-compose/src/main/res/layout/layout_value_property_item.xml b/playground/sandbox-compose/src/main/res/layout/layout_value_property_item.xml deleted file mode 100644 index 5e3cfd0056..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/layout_value_property_item.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/main_activity.xml b/playground/sandbox-compose/src/main/res/layout/main_activity.xml deleted file mode 100644 index c0da2df47c..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/main_activity.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/layout/main_activity_content.xml b/playground/sandbox-compose/src/main/res/layout/main_activity_content.xml deleted file mode 100644 index c3a4c437e9..0000000000 --- a/playground/sandbox-compose/src/main/res/layout/main_activity_content.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/menu/activity_main_drawer.xml b/playground/sandbox-compose/src/main/res/menu/activity_main_drawer.xml deleted file mode 100644 index f7f55ed8b6..0000000000 --- a/playground/sandbox-compose/src/main/res/menu/activity_main_drawer.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/values-night/styles.xml b/playground/sandbox-compose/src/main/res/values-night/styles.xml deleted file mode 100644 index 9ccbb30254..0000000000 --- a/playground/sandbox-compose/src/main/res/values-night/styles.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/values-night/themes.xml b/playground/sandbox-compose/src/main/res/values-night/themes.xml deleted file mode 100644 index 48b7a7793e..0000000000 --- a/playground/sandbox-compose/src/main/res/values-night/themes.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/playground/sandbox-compose/src/main/res/values-television/base_styles.xml b/playground/sandbox-compose/src/main/res/values-television/base_styles.xml deleted file mode 100644 index 06f1f76156..0000000000 --- a/playground/sandbox-compose/src/main/res/values-television/base_styles.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/playground/sandbox-core-integration/build.gradle.kts b/playground/sandbox-core-integration/build.gradle.kts deleted file mode 100644 index 98ec3f4351..0000000000 --- a/playground/sandbox-core-integration/build.gradle.kts +++ /dev/null @@ -1,22 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("kotlin-parcelize") - alias(libs.plugins.kotlin.serialization) -} - -android { - namespace = "com.sdds.playground.sandbox.core.integration" -} - -dependencies { - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) - implementation(libs.base.kotlin.serialization.json) -} diff --git a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ComposeStyleProvider.kt b/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ComposeStyleProvider.kt deleted file mode 100644 index beae77e795..0000000000 --- a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ComposeStyleProvider.kt +++ /dev/null @@ -1,47 +0,0 @@ -package com.sdds.playground.sandbox.core.integration - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.style.Style - -/** - * Базовый класс провайдера стилей компонента на Compose - */ -abstract class ComposeStyleProvider { - protected abstract val variations: Map S> - - /** - * Список возможных вариаций компонента - */ - val variants: List - get() = variations.keys.toList() - - /** - * Дефолтная вариация - */ - val defaultVariant: K - get() = variations.entries.first().key - - /** - * Вернёт стиль компонента [S] для ключа вариации [key] - */ - @Composable - fun style(key: K): S = variations[key]?.invoke() - ?: variations[defaultVariant]?.invoke() - ?: throw IllegalStateException("Style $key not found") - - companion object { - /** - * Пустой провайдер стиля - */ - val Empty = object : ComposeStyleProvider() { - override val variations: Map EmptyStyle> = mapOf( - "Default" to { EmptyStyle }, - ) - } - } -} - -/** - * Пустой стиль - */ -object EmptyStyle : Style diff --git a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ViewStyleProvider.kt b/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ViewStyleProvider.kt deleted file mode 100644 index c0a4aba194..0000000000 --- a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/ViewStyleProvider.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.core.integration - -import androidx.annotation.StyleRes -import com.sdds.uikit.colorstate.ColorState - -/** - * Базовый класс провайдера стилей компонента на ViewSystem - */ -abstract class ViewStyleProvider { - protected abstract val variations: Map - protected open val colorVariations: Map = emptyMap() - - /** - * Список всех возможных вариаций компонента - */ - val variants: List - get() = variations.keys.toList() - - /** - * Список всех возможных цветовых вариаций компонента - */ - val colorVariants: List - get() = colorVariations.keys.toList() - - /** - * Дефолтная вариация - */ - val defaultVariant: K - get() = variations.entries.first().key - - /** - * Дефолтная вариация цвета - */ - val defaultColorVariant: K - get() = colorVariations.entries.first().key - - /** - * Возвращает true, если у компонента есть вариации цвета - */ - val hasColorVariations: Boolean - get() = colorVariations.isNotEmpty() - - /** - * Вернёт ресурс стиля компонента для ключа вариации [key] - */ - @StyleRes - fun styleRes(key: K): Int = variations[key] - ?: variations[defaultVariant] - ?: throw IllegalStateException("Style $key not found") - - /** - * Вернёт [ColorState] компонента для ключа вариации [key] - */ - fun colorState(key: K): ColorState = colorVariations[key] - ?: colorVariations[defaultColorVariant] - ?: throw IllegalStateException("ColorState $key not found") - - companion object { - /** - * Пустой [ViewStyleProvider] - */ - val Empty = object : ViewStyleProvider() { - override val variations: Map = mapOf( - "Default" to 0, - ) - } - } -} diff --git a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/component/Component.kt b/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/component/Component.kt deleted file mode 100644 index 92b699a426..0000000000 --- a/playground/sandbox-core-integration/src/main/kotlin/com/sdds/playground/sandbox/core/integration/component/Component.kt +++ /dev/null @@ -1,468 +0,0 @@ -package com.sdds.playground.sandbox.core.integration.component - -import android.os.Parcelable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import kotlinx.parcelize.Parcelize -import kotlinx.serialization.Serializable - -/** - * Провайдер компонентов для представлений (View). - */ -abstract class ComponentsProviderView { - - /** - * Все сгенерированные компоненты - */ - abstract val generated: Map> - - /** - * Все компоненты, включая общие и сгенерированные. - */ - @Suppress("UNCHECKED_CAST") - val components: Map> by lazy { - mutableMapOf>().apply { - putAll(generated) - - val textFieldStyles = ( - generated[ComponentKey.TextField] - ?.styleProviders as? Map> - ) - ?: emptyMap() - if (textFieldStyles.isNotEmpty()) { - val maskKey = ComponentKey.Mask - put(maskKey, ViewComponent(maskKey, textFieldStyles)) - } - } - } - - /** - * Получает компонент представления по ключу. - * - * @param key Ключ компонента. - * @return Компонент представления. - * @throws IllegalArgumentException если компонент не найден. - */ - @Suppress("UNCHECKED_CAST") - operator fun get(key: ComponentKey): ViewComponent { - return components[key] as? ViewComponent ?: throw IllegalArgumentException("No $key exists") - } -} - -/** - * Провайдер компонентов для Compose. - */ -abstract class ComponentsProviderCompose { - - /** - * Все cutythbhjdfyyst компоненты - */ - abstract val generated: Map> - - /** - * Все компоненты, включая общие и сгенерированные. - */ - @Suppress("UNCHECKED_CAST") - val components: Map> by lazy { - mutableMapOf>().apply { - putAll(generated) - - val textFieldStyles = ( - generated[ComponentKey.TextField] - ?.styleProviders as? Map> - ) - ?: emptyMap() - if (textFieldStyles.isNotEmpty()) { - val maskKey = ComponentKey.Mask - put(maskKey, ComposeComponent(maskKey, textFieldStyles)) - } - } - } - - /** - * Получает Compose-компонент по ключу. - * - * @param key Ключ компонента. - * @return Compose-компонент. - * @throws IllegalArgumentException если компонент не найден. - */ - @Suppress("UNCHECKED_CAST") - operator fun get(key: ComponentKey): ComposeComponent { - return components[key] as? ComposeComponent ?: throw IllegalArgumentException("No $key exists") - } -} - -/** - * Представляет компонент представления (View). - * - * @param ViewStyle Тип стиля компонента. - * @param key Ключ компонента. - * @param styleProviders Провайдеры стиля для компонента. - * @param name Имя компонента (по умолчанию совпадает с ключом). - * @param defaultAppearance внешний вид по умолчанию. - */ -open class ViewComponent( - override val key: ComponentKey, - val styleProviders: Map>, - override val name: String = key.value, - override val defaultAppearance: String = styleProviders.keys.firstOrNull().orEmpty(), -) : Component { - - constructor( - key: ComponentKey, - styleProvider: ViewStyleProvider, - ) : this(key, mapOf(key.value to styleProvider)) -} - -/** - * Представляет компонент Compose. - * - * @param Key Тип ключа компонента. - * @param S Тип стиля компонента. - * @param key Ключ компонента. - * @param styleProviders Провайдеры стиля для компонента. - * @param name Имя компонента (по умолчанию совпадает с ключом). - * @param defaultAppearance внешний вид по умолчанию. - */ -open class ComposeComponent( - override val key: ComponentKey, - val styleProviders: Map>, - override val name: String = key.value, - override val defaultAppearance: String = styleProviders.keys.firstOrNull().orEmpty(), -) : Component { - - constructor( - key: ComponentKey, - styleProvider: ComposeStyleProvider, - ) : this(key, mapOf(key.value to styleProvider)) -} - -/** - * Базовый интерфейс для всех компонентов. - */ -interface Component { - /** - * Уникальный ключ компонента - */ - val key: ComponentKey - - /** - * Название компонента - */ - val name: String - - /** - * Внешний вид по умолчанию - */ - val defaultAppearance: String -} - -/** - * Ключ для идентификации компонентов. - * - * @param value Уникальное значение ключа. - * @param core Базовый тип компонента. - * @param group группа, к которой принадлежит компонент - */ -@Suppress("UnsafeOptInUsageError") -@Parcelize -@Serializable -data class ComponentKey( - val value: String, - val core: CoreComponent, - val group: CoreComponentGroup = core.group(), -) : Parcelable { - - /** - * Набор предопределенных ключей для компонентов. - */ - @Suppress("UndocumentedPublicProperty") - companion object { - - val Avatar = ComponentKey("Avatar", CoreComponent.AVATAR) - val AvatarGroup = ComponentKey("AvatarGroup", CoreComponent.AVATAR_GROUP) - - val Badge = ComponentKey("Badge", CoreComponent.BADGE) - val IconBadge = ComponentKey("IconBadge", CoreComponent.ICON_BADGE) - - val BottomSheet = ComponentKey("BottomSheet", CoreComponent.BOTTOMSHEET) - - val BasicButton = ComponentKey("BasicButton", CoreComponent.BASIC_BUTTON) - val IconButton = ComponentKey("IconButton", CoreComponent.ICON_BUTTON) - val LinkButton = ComponentKey("LinkButton", CoreComponent.LINK_BUTTON) - - val Card = ComponentKey("Card", CoreComponent.CARD) - - val Cell = ComponentKey("Cell", CoreComponent.CELL) - - val CheckBox = ComponentKey("CheckBox", CoreComponent.CHECKBOX) - val CheckBoxGroup = ComponentKey("CheckBoxGroup", CoreComponent.CHECKBOX_GROUP) - - val Chip = ComponentKey("Chip", CoreComponent.CHIP) - val ChipGroup = ComponentKey("ChipGroup", CoreComponent.CHIP_GROUP) - - val Counter = ComponentKey("Counter", CoreComponent.COUNTER) - val Divider = ComponentKey("Divider", CoreComponent.DIVIDER) - val Indicator = ComponentKey("Indicator", CoreComponent.INDICATOR) - val Flow = ComponentKey("Flow", CoreComponent.FLOW) - val NavigationDrawer = ComponentKey("NavigationDrawer", CoreComponent.NAVIGATION_DRAWER) - val ProgressBar = ComponentKey("ProgressBar", CoreComponent.PROGRESS) - val CircularProgressBar = ComponentKey("CircularProgressBar", CoreComponent.CIRCULAR_PROGRESS) - - val RadioBox = ComponentKey("RadioBox", CoreComponent.RADIOBOX) - val RadioBoxGroup = ComponentKey("RadioBoxGroup", CoreComponent.RADIOBOX_GROUP) - - val Segment = ComponentKey("Segment", CoreComponent.SEGMENT) - val SegmentItem = ComponentKey("SegmentItem", CoreComponent.SEGMENT_ITEM) - - val Switch = ComponentKey("Switch", CoreComponent.SWITCH) - - val TextField = ComponentKey("TextField", CoreComponent.TEXT_FIELD) - val TextArea = ComponentKey("TextArea", CoreComponent.TEXT_AREA) - val Popover = ComponentKey("Popover", CoreComponent.POPOVER) - val Tooltip = ComponentKey("Tooltip", CoreComponent.TOOLTIP) - val Overlay = ComponentKey("Overlay", CoreComponent.OVERLAY) - val Toast = ComponentKey("Toast", CoreComponent.TOAST) - val Modal = ComponentKey("Modal", CoreComponent.MODAL) - val Note = ComponentKey("Note", CoreComponent.NOTE) - val NoteCompact = ComponentKey("NoteCompact", CoreComponent.NOTE_COMPACT) - val Notification = ComponentKey("Notification", CoreComponent.NOTIFICATION) - val NotificationContent = ComponentKey("NotificationContent", CoreComponent.NOTIFICATION_CONTENT) - val RectSkeleton = ComponentKey("RectSkeleton", CoreComponent.RECT_SKELETON) - val Spinner = ComponentKey("Spinner", CoreComponent.SPINNER) - val List = ComponentKey("List", CoreComponent.LIST) - val ListItem = ComponentKey("ListItem", CoreComponent.LIST_ITEM) - val DropdownMenu = ComponentKey("DropdownMenu", CoreComponent.DROPDOWN_MENU) - val TextSkeleton = ComponentKey("TextSkeleton", CoreComponent.TEXT_SKELETON) - val Accordion = ComponentKey("Accordion", CoreComponent.ACCORDION) - val AccordionItem = ComponentKey("AccordionItem", CoreComponent.ACCORDION_ITEM) - val Wheel = ComponentKey("Wheel", CoreComponent.WHEEL) - val ScrollBar = ComponentKey("ScrollBar", CoreComponent.SCROLL_BAR) - val Slider = ComponentKey("Slider", CoreComponent.SLIDER) - val Image = ComponentKey("Image", CoreComponent.IMAGE) - val ButtonGroup = ComponentKey("ButtonGroup", CoreComponent.BUTTON_GROUP) - val TabBar = ComponentKey("TabBar", CoreComponent.TAB_BAR) - val TabBarItem = ComponentKey("TabBarItem", CoreComponent.TAB_BAR_ITEM) - val Loader = ComponentKey("Loader", CoreComponent.LOADER) - val CodeInput = ComponentKey("CodeInput", CoreComponent.CODE_INPUT) - val CodeField = ComponentKey("CodeField", CoreComponent.CODE_FIELD) - val Drawer = ComponentKey("Drawer", CoreComponent.DRAWER) - val Tabs = ComponentKey("Tabs", CoreComponent.TABS) - val TabItem = ComponentKey("TabItem", CoreComponent.TAB_ITEM) - val IconTabItem = ComponentKey("IconTabItem", CoreComponent.ICON_TAB_ITEM) - val IconTabs = ComponentKey("IconTabs", CoreComponent.ICON_TABS) - val Toolbar = ComponentKey("Toolbar", CoreComponent.TOOL_BAR) - val NavigationBar = ComponentKey("NavigationBar", CoreComponent.NAVIGATION_BAR) - val CollapsingNavigationBar = ComponentKey("CollapsingNavigationBar", CoreComponent.COLLAPSING_NAVIGATION_BAR) - val PaginationDots = ComponentKey("PaginationDots", CoreComponent.PAGINATION_DOTS) - val Mask = ComponentKey("Mask", CoreComponent.MASK) - val Carousel = ComponentKey("Carousel", CoreComponent.CAROUSEL) - val Autocomplete = ComponentKey("Autocomplete", CoreComponent.AUTOCOMPLETE) - val DropdownEmptyState = ComponentKey("DropdownEmptyState", CoreComponent.DROPDOWN_EMPTY_STATE) - val File = ComponentKey("File", CoreComponent.FILE) - val FormItem = ComponentKey("FormItem", CoreComponent.FORM_ITEM) - val Editable = ComponentKey("Editable", CoreComponent.EDITABLE) - val ToolBar = ComponentKey("ToolBar", CoreComponent.TOOL_BAR) - val Select = ComponentKey("Select", CoreComponent.SELECT) - val SelectItem = ComponentKey("Editable", CoreComponent.SELECT_ITEM) - } -} - -/** - * Перечисление базовых типов компонентов. - */ -enum class CoreComponent { - AVATAR, - AVATAR_GROUP, - - BADGE, - ICON_BADGE, - - BOTTOMSHEET, - - BASIC_BUTTON, - ICON_BUTTON, - LINK_BUTTON, - BUTTON_GROUP, - - CARD, - - CELL, - - CHECKBOX, - CHECKBOX_GROUP, - - CHIP, - CHIP_GROUP, - - COUNTER, - - DIVIDER, - - FLOW, - - INDICATOR, - - NAVIGATION_DRAWER, - - PROGRESS, - CIRCULAR_PROGRESS, - - RADIOBOX, - RADIOBOX_GROUP, - - SEGMENT, - SEGMENT_ITEM, - - SWITCH, - - TEXT_FIELD, - TEXT_AREA, - POPOVER, - TOOLTIP, - OVERLAY, - TOAST, - MODAL, - NOTE, - NOTE_COMPACT, - NOTIFICATION, - NOTIFICATION_CONTENT, - RECT_SKELETON, - SPINNER, - LIST, - LIST_ITEM, - DROPDOWN_MENU, - TEXT_SKELETON, - ACCORDION, - ACCORDION_ITEM, - WHEEL, - SCROLL_BAR, - SLIDER, - IMAGE, - TAB_BAR, - TAB_BAR_ITEM, - LOADER, - CODE_INPUT, - CODE_FIELD, - DRAWER, - TABS, - TAB_ITEM, - ICON_TAB_ITEM, - ICON_TABS, - NAVIGATION_BAR, - COLLAPSING_NAVIGATION_BAR, - PAGINATION_DOTS, - TOOL_BAR, - MASK, - CAROUSEL, - AUTOCOMPLETE, - DROPDOWN_EMPTY_STATE, - FILE, - FORM_ITEM, - EDITABLE, - SELECT, - SELECT_ITEM, -} - -/** - * Группа компонентов - * @property displayName название группы - */ -enum class CoreComponentGroup(val displayName: String) { - DATA_DISPLAY("Data Display"), - DATA_ENTRY("Data Entry"), - NAVIGATION("Navigation"), - OVERLAY("Overlay"), - LAYOUT("Layout"), -} - -@Suppress("LongMethod") -private fun CoreComponent.group(): CoreComponentGroup { - return when (this) { - CoreComponent.ACCORDION, - CoreComponent.ACCORDION_ITEM, - CoreComponent.AVATAR, - CoreComponent.AVATAR_GROUP, - CoreComponent.BADGE, - CoreComponent.ICON_BADGE, - CoreComponent.CARD, - CoreComponent.COUNTER, - CoreComponent.CELL, - CoreComponent.CHIP, - CoreComponent.CHIP_GROUP, - CoreComponent.DIVIDER, - CoreComponent.IMAGE, - CoreComponent.INDICATOR, - CoreComponent.FORM_ITEM, - CoreComponent.LIST, - CoreComponent.LIST_ITEM, - CoreComponent.RECT_SKELETON, - CoreComponent.SPINNER, - CoreComponent.TEXT_SKELETON, - CoreComponent.LOADER, - CoreComponent.PROGRESS, - CoreComponent.CIRCULAR_PROGRESS, - CoreComponent.NOTE, - CoreComponent.NOTE_COMPACT, - CoreComponent.PAGINATION_DOTS, - CoreComponent.DROPDOWN_EMPTY_STATE, - -> CoreComponentGroup.DATA_DISPLAY - - CoreComponent.BASIC_BUTTON, - CoreComponent.ICON_BUTTON, - CoreComponent.LINK_BUTTON, - CoreComponent.BUTTON_GROUP, - CoreComponent.CHECKBOX, - CoreComponent.CHECKBOX_GROUP, - CoreComponent.CODE_INPUT, - CoreComponent.CODE_FIELD, - CoreComponent.RADIOBOX, - CoreComponent.RADIOBOX_GROUP, - CoreComponent.TEXT_FIELD, - CoreComponent.TEXT_AREA, - CoreComponent.SEGMENT, - CoreComponent.SEGMENT_ITEM, - CoreComponent.SWITCH, - CoreComponent.WHEEL, - CoreComponent.MASK, - CoreComponent.AUTOCOMPLETE, - CoreComponent.SLIDER, - CoreComponent.FILE, - CoreComponent.EDITABLE, - CoreComponent.SELECT, - CoreComponent.SELECT_ITEM, - -> CoreComponentGroup.DATA_ENTRY - - CoreComponent.DROPDOWN_MENU, - CoreComponent.NAVIGATION_DRAWER, - CoreComponent.SCROLL_BAR, - CoreComponent.TABS, - CoreComponent.TAB_ITEM, - CoreComponent.ICON_TAB_ITEM, - CoreComponent.ICON_TABS, - CoreComponent.TAB_BAR, - CoreComponent.TAB_BAR_ITEM, - CoreComponent.CAROUSEL, - -> CoreComponentGroup.NAVIGATION - - CoreComponent.DRAWER, - CoreComponent.BOTTOMSHEET, - CoreComponent.NOTIFICATION, - CoreComponent.NOTIFICATION_CONTENT, - CoreComponent.POPOVER, - CoreComponent.MODAL, - CoreComponent.TOOLTIP, - CoreComponent.TOAST, - CoreComponent.OVERLAY, - CoreComponent.TOOL_BAR, - -> CoreComponentGroup.OVERLAY - - CoreComponent.NAVIGATION_BAR, - CoreComponent.COLLAPSING_NAVIGATION_BAR, - -> CoreComponentGroup.NAVIGATION - - CoreComponent.FLOW -> CoreComponentGroup.LAYOUT - } -} diff --git a/playground/sandbox-plasma-giga-app-integration/build.gradle.kts b/playground/sandbox-plasma-giga-app-integration/build.gradle.kts deleted file mode 100644 index 544e1a4350..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/build.gradle.kts +++ /dev/null @@ -1,22 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") -} - -android { - namespace = "com.sdds.playground.sandbox.plasma.giga.app.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:plasma.giga.app.compose") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-plasma-giga-app-integration/gradle.properties b/playground/sandbox-plasma-giga-app-integration/gradle.properties deleted file mode 100644 index 1565e59ddc..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -integration.compose.config-path=../tokens/plasma.giga.app.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.plasma.giga.app.integration.compose \ No newline at end of file diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/PlasmaGigaAppThemeWrapper.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/PlasmaGigaAppThemeWrapper.kt deleted file mode 100644 index 5124f71c40..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/PlasmaGigaAppThemeWrapper.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalOverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.ListNormal -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.overlay.Default -import com.sdds.plasma.giga.app.styles.overlay.Overlay -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun PlasmaGigaAppThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - PlasmaGigaAppTheme( - colors = if (isDark) darkPlasmaGigaAppColors() else lightPlasmaGigaAppColors(), - gradients = if (isDark) darkPlasmaGigaAppGradients() else lightPlasmaGigaAppGradients(), - ) { - CompositionLocalProvider( - LocalOverlayStyle provides Overlay.Default.style(), - LocalListStyle provides ListNormal.M.style(), - ) { - content() - } - } -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionEndVariationsCompose.kt deleted file mode 100644 index e2e2c39191..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordion.AccordionClearActionEnd -import com.sdds.plasma.giga.app.styles.accordion.H2 -import com.sdds.plasma.giga.app.styles.accordion.H3 -import com.sdds.plasma.giga.app.styles.accordion.H4 -import com.sdds.plasma.giga.app.styles.accordion.H5 -import com.sdds.plasma.giga.app.styles.accordion.L -import com.sdds.plasma.giga.app.styles.accordion.M -import com.sdds.plasma.giga.app.styles.accordion.S -import com.sdds.plasma.giga.app.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionEnd.Xs.style() }, - "S" to { AccordionClearActionEnd.S.style() }, - "M" to { AccordionClearActionEnd.M.style() }, - "L" to { AccordionClearActionEnd.L.style() }, - "H2" to { AccordionClearActionEnd.H2.style() }, - "H3" to { AccordionClearActionEnd.H3.style() }, - "H4" to { AccordionClearActionEnd.H4.style() }, - "H5" to { AccordionClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionStartVariationsCompose.kt deleted file mode 100644 index 6bb566cccf..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordion.AccordionClearActionStart -import com.sdds.plasma.giga.app.styles.accordion.H2 -import com.sdds.plasma.giga.app.styles.accordion.H3 -import com.sdds.plasma.giga.app.styles.accordion.H4 -import com.sdds.plasma.giga.app.styles.accordion.H5 -import com.sdds.plasma.giga.app.styles.accordion.L -import com.sdds.plasma.giga.app.styles.accordion.M -import com.sdds.plasma.giga.app.styles.accordion.S -import com.sdds.plasma.giga.app.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionStart.Xs.style() }, - "S" to { AccordionClearActionStart.S.style() }, - "M" to { AccordionClearActionStart.M.style() }, - "L" to { AccordionClearActionStart.L.style() }, - "H2" to { AccordionClearActionStart.H2.style() }, - "H3" to { AccordionClearActionStart.H3.style() }, - "H4" to { AccordionClearActionStart.H4.style() }, - "H5" to { AccordionClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionEndVariationsCompose.kt deleted file mode 100644 index c955233346..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionEnd.Xs.style() }, - "S" to { AccordionItemClearActionEnd.S.style() }, - "M" to { AccordionItemClearActionEnd.M.style() }, - "L" to { AccordionItemClearActionEnd.L.style() }, - "H2" to { AccordionItemClearActionEnd.H2.style() }, - "H3" to { AccordionItemClearActionEnd.H3.style() }, - "H4" to { AccordionItemClearActionEnd.H4.style() }, - "H5" to { AccordionItemClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionStartVariationsCompose.kt deleted file mode 100644 index 0508777fee..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionStart.Xs.style() }, - "S" to { AccordionItemClearActionStart.S.style() }, - "M" to { AccordionItemClearActionStart.M.style() }, - "L" to { AccordionItemClearActionStart.L.style() }, - "H2" to { AccordionItemClearActionStart.H2.style() }, - "H3" to { AccordionItemClearActionStart.H3.style() }, - "H4" to { AccordionItemClearActionStart.H4.style() }, - "H5" to { AccordionItemClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionEndVariationsCompose.kt deleted file mode 100644 index ce10e58481..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionEnd.Xs.style() }, - "S" to { AccordionItemSolidActionEnd.S.style() }, - "M" to { AccordionItemSolidActionEnd.M.style() }, - "L" to { AccordionItemSolidActionEnd.L.style() }, - "H2" to { AccordionItemSolidActionEnd.H2.style() }, - "H3" to { AccordionItemSolidActionEnd.H3.style() }, - "H4" to { AccordionItemSolidActionEnd.H4.style() }, - "H5" to { AccordionItemSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionStartVariationsCompose.kt deleted file mode 100644 index a2c17c204c..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionItemSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionStart.Xs.style() }, - "S" to { AccordionItemSolidActionStart.S.style() }, - "M" to { AccordionItemSolidActionStart.M.style() }, - "L" to { AccordionItemSolidActionStart.L.style() }, - "H2" to { AccordionItemSolidActionStart.H2.style() }, - "H3" to { AccordionItemSolidActionStart.H3.style() }, - "H4" to { AccordionItemSolidActionStart.H4.style() }, - "H5" to { AccordionItemSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionEndVariationsCompose.kt deleted file mode 100644 index 681753c0ad..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordion.AccordionSolidActionEnd -import com.sdds.plasma.giga.app.styles.accordion.H2 -import com.sdds.plasma.giga.app.styles.accordion.H3 -import com.sdds.plasma.giga.app.styles.accordion.H4 -import com.sdds.plasma.giga.app.styles.accordion.H5 -import com.sdds.plasma.giga.app.styles.accordion.L -import com.sdds.plasma.giga.app.styles.accordion.M -import com.sdds.plasma.giga.app.styles.accordion.S -import com.sdds.plasma.giga.app.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionEnd.Xs.style() }, - "S" to { AccordionSolidActionEnd.S.style() }, - "M" to { AccordionSolidActionEnd.M.style() }, - "L" to { AccordionSolidActionEnd.L.style() }, - "H2" to { AccordionSolidActionEnd.H2.style() }, - "H3" to { AccordionSolidActionEnd.H3.style() }, - "H4" to { AccordionSolidActionEnd.H4.style() }, - "H5" to { AccordionSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionStartVariationsCompose.kt deleted file mode 100644 index f65e6acbb8..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAccordionSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordion.AccordionSolidActionStart -import com.sdds.plasma.giga.app.styles.accordion.H2 -import com.sdds.plasma.giga.app.styles.accordion.H3 -import com.sdds.plasma.giga.app.styles.accordion.H4 -import com.sdds.plasma.giga.app.styles.accordion.H5 -import com.sdds.plasma.giga.app.styles.accordion.L -import com.sdds.plasma.giga.app.styles.accordion.M -import com.sdds.plasma.giga.app.styles.accordion.S -import com.sdds.plasma.giga.app.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionStart.Xs.style() }, - "S" to { AccordionSolidActionStart.S.style() }, - "M" to { AccordionSolidActionStart.M.style() }, - "L" to { AccordionSolidActionStart.L.style() }, - "H2" to { AccordionSolidActionStart.H2.style() }, - "H3" to { AccordionSolidActionStart.H3.style() }, - "H4" to { AccordionSolidActionStart.H4.style() }, - "H5" to { AccordionSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteNormalVariationsCompose.kt deleted file mode 100644 index 10733c1986..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.autocomplete.AutocompleteNormal -import com.sdds.plasma.giga.app.styles.autocomplete.L -import com.sdds.plasma.giga.app.styles.autocomplete.M -import com.sdds.plasma.giga.app.styles.autocomplete.S -import com.sdds.plasma.giga.app.styles.autocomplete.Xl -import com.sdds.plasma.giga.app.styles.autocomplete.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAutocompleteNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteNormal.Xl.style() }, - "L" to { AutocompleteNormal.L.style() }, - "M" to { AutocompleteNormal.M.style() }, - "S" to { AutocompleteNormal.S.style() }, - "Xs" to { AutocompleteNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteTightVariationsCompose.kt deleted file mode 100644 index 2b261c0e95..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAutocompleteTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.autocomplete.AutocompleteTight -import com.sdds.plasma.giga.app.styles.autocomplete.L -import com.sdds.plasma.giga.app.styles.autocomplete.M -import com.sdds.plasma.giga.app.styles.autocomplete.S -import com.sdds.plasma.giga.app.styles.autocomplete.Xl -import com.sdds.plasma.giga.app.styles.autocomplete.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAutocompleteTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteTight.Xl.style() }, - "L" to { AutocompleteTight.L.style() }, - "M" to { AutocompleteTight.M.style() }, - "S" to { AutocompleteTight.S.style() }, - "Xs" to { AutocompleteTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarGroupVariationsCompose.kt deleted file mode 100644 index f83371a69b..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.avatargroup.AvatarGroup -import com.sdds.plasma.giga.app.styles.avatargroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarVariationsCompose.kt deleted file mode 100644 index 838940f3df..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.avatar.Avatar -import com.sdds.plasma.giga.app.styles.avatar.L -import com.sdds.plasma.giga.app.styles.avatar.M -import com.sdds.plasma.giga.app.styles.avatar.S -import com.sdds.plasma.giga.app.styles.avatar.Xxl -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeClearVariationsCompose.kt deleted file mode 100644 index 99deaf5932..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.badge.Accent -import com.sdds.plasma.giga.app.styles.badge.BadgeClear -import com.sdds.plasma.giga.app.styles.badge.Dark -import com.sdds.plasma.giga.app.styles.badge.Default -import com.sdds.plasma.giga.app.styles.badge.L -import com.sdds.plasma.giga.app.styles.badge.Light -import com.sdds.plasma.giga.app.styles.badge.M -import com.sdds.plasma.giga.app.styles.badge.Negative -import com.sdds.plasma.giga.app.styles.badge.Pilled -import com.sdds.plasma.giga.app.styles.badge.Positive -import com.sdds.plasma.giga.app.styles.badge.S -import com.sdds.plasma.giga.app.styles.badge.Warning -import com.sdds.plasma.giga.app.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeSolidVariationsCompose.kt deleted file mode 100644 index 99f473e207..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.badge.Accent -import com.sdds.plasma.giga.app.styles.badge.BadgeSolid -import com.sdds.plasma.giga.app.styles.badge.Dark -import com.sdds.plasma.giga.app.styles.badge.Default -import com.sdds.plasma.giga.app.styles.badge.L -import com.sdds.plasma.giga.app.styles.badge.Light -import com.sdds.plasma.giga.app.styles.badge.M -import com.sdds.plasma.giga.app.styles.badge.Negative -import com.sdds.plasma.giga.app.styles.badge.Pilled -import com.sdds.plasma.giga.app.styles.badge.Positive -import com.sdds.plasma.giga.app.styles.badge.S -import com.sdds.plasma.giga.app.styles.badge.Warning -import com.sdds.plasma.giga.app.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 34b56a0a1f..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.badge.Accent -import com.sdds.plasma.giga.app.styles.badge.BadgeTransparent -import com.sdds.plasma.giga.app.styles.badge.Dark -import com.sdds.plasma.giga.app.styles.badge.Default -import com.sdds.plasma.giga.app.styles.badge.L -import com.sdds.plasma.giga.app.styles.badge.Light -import com.sdds.plasma.giga.app.styles.badge.M -import com.sdds.plasma.giga.app.styles.badge.Negative -import com.sdds.plasma.giga.app.styles.badge.Pilled -import com.sdds.plasma.giga.app.styles.badge.Positive -import com.sdds.plasma.giga.app.styles.badge.S -import com.sdds.plasma.giga.app.styles.badge.Warning -import com.sdds.plasma.giga.app.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index 39482cc41a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.giga.app.styles.buttongroup.Default -import com.sdds.plasma.giga.app.styles.buttongroup.Dense -import com.sdds.plasma.giga.app.styles.buttongroup.L -import com.sdds.plasma.giga.app.styles.buttongroup.M -import com.sdds.plasma.giga.app.styles.buttongroup.NoGap -import com.sdds.plasma.giga.app.styles.buttongroup.S -import com.sdds.plasma.giga.app.styles.buttongroup.Segmented -import com.sdds.plasma.giga.app.styles.buttongroup.Wide -import com.sdds.plasma.giga.app.styles.buttongroup.Xs -import com.sdds.plasma.giga.app.styles.buttongroup.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xxs" to { BasicButtonGroup.Xxs.style() }, - "Xxs.Wide" to { BasicButtonGroup.Xxs.Wide.style() }, - "Xxs.Wide.Default" to { BasicButtonGroup.Xxs.Wide.Default.style() }, - "Xxs.Wide.Segmented" to { BasicButtonGroup.Xxs.Wide.Segmented.style() }, - "Xxs.Dense" to { BasicButtonGroup.Xxs.Dense.style() }, - "Xxs.Dense.Default" to { BasicButtonGroup.Xxs.Dense.Default.style() }, - "Xxs.Dense.Segmented" to { BasicButtonGroup.Xxs.Dense.Segmented.style() }, - "Xxs.NoGap" to { BasicButtonGroup.Xxs.NoGap.style() }, - "Xxs.NoGap.Default" to { BasicButtonGroup.Xxs.NoGap.Default.style() }, - "Xxs.NoGap.Segmented" to { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonVariationsCompose.kt deleted file mode 100644 index 073d16e938..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.Accent -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Black -import com.sdds.plasma.giga.app.styles.basicbutton.Clear -import com.sdds.plasma.giga.app.styles.basicbutton.Dark -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.basicbutton.Negative -import com.sdds.plasma.giga.app.styles.basicbutton.Positive -import com.sdds.plasma.giga.app.styles.basicbutton.S -import com.sdds.plasma.giga.app.styles.basicbutton.Secondary -import com.sdds.plasma.giga.app.styles.basicbutton.Warning -import com.sdds.plasma.giga.app.styles.basicbutton.White -import com.sdds.plasma.giga.app.styles.basicbutton.Xl -import com.sdds.plasma.giga.app.styles.basicbutton.Xs -import com.sdds.plasma.giga.app.styles.basicbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { BasicButton.Xl.Default.style() }, - "Xl.Secondary" to { BasicButton.Xl.Secondary.style() }, - "Xl.Accent" to { BasicButton.Xl.Accent.style() }, - "Xl.Positive" to { BasicButton.Xl.Positive.style() }, - "Xl.Negative" to { BasicButton.Xl.Negative.style() }, - "Xl.Warning" to { BasicButton.Xl.Warning.style() }, - "Xl.Clear" to { BasicButton.Xl.Clear.style() }, - "Xl.Dark" to { BasicButton.Xl.Dark.style() }, - "Xl.Black" to { BasicButton.Xl.Black.style() }, - "Xl.White" to { BasicButton.Xl.White.style() }, - "L.Default" to { BasicButton.L.Default.style() }, - "L.Secondary" to { BasicButton.L.Secondary.style() }, - "L.Accent" to { BasicButton.L.Accent.style() }, - "L.Positive" to { BasicButton.L.Positive.style() }, - "L.Negative" to { BasicButton.L.Negative.style() }, - "L.Warning" to { BasicButton.L.Warning.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "L.Dark" to { BasicButton.L.Dark.style() }, - "L.Black" to { BasicButton.L.Black.style() }, - "L.White" to { BasicButton.L.White.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Positive" to { BasicButton.M.Positive.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Black" to { BasicButton.M.Black.style() }, - "M.White" to { BasicButton.M.White.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Positive" to { BasicButton.S.Positive.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Black" to { BasicButton.S.Black.style() }, - "S.White" to { BasicButton.S.White.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Positive" to { BasicButton.Xs.Positive.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Black" to { BasicButton.Xs.Black.style() }, - "Xs.White" to { BasicButton.Xs.White.style() }, - "Xxs.Default" to { BasicButton.Xxs.Default.style() }, - "Xxs.Secondary" to { BasicButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { BasicButton.Xxs.Accent.style() }, - "Xxs.Positive" to { BasicButton.Xxs.Positive.style() }, - "Xxs.Negative" to { BasicButton.Xxs.Negative.style() }, - "Xxs.Warning" to { BasicButton.Xxs.Warning.style() }, - "Xxs.Clear" to { BasicButton.Xxs.Clear.style() }, - "Xxs.Dark" to { BasicButton.Xxs.Dark.style() }, - "Xxs.Black" to { BasicButton.Xxs.Black.style() }, - "Xxs.White" to { BasicButton.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardClearVariationsCompose.kt deleted file mode 100644 index 1562519c78..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardClearVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.card.CardClear -import com.sdds.plasma.giga.app.styles.card.L -import com.sdds.plasma.giga.app.styles.card.M -import com.sdds.plasma.giga.app.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCardClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardClear.L.style() }, - "M" to { CardClear.M.style() }, - "S" to { CardClear.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardSolidVariationsCompose.kt deleted file mode 100644 index 021ac845af..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCardSolidVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.card.CardSolid -import com.sdds.plasma.giga.app.styles.card.L -import com.sdds.plasma.giga.app.styles.card.M -import com.sdds.plasma.giga.app.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCardSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardSolid.L.style() }, - "M" to { CardSolid.M.style() }, - "S" to { CardSolid.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCellVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCellVariationsCompose.kt deleted file mode 100644 index 60055bbb25..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.cell.Cell -import com.sdds.plasma.giga.app.styles.cell.L -import com.sdds.plasma.giga.app.styles.cell.M -import com.sdds.plasma.giga.app.styles.cell.S -import com.sdds.plasma.giga.app.styles.cell.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index 44c412a730..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.checkboxgroup.CheckBoxGroup -import com.sdds.plasma.giga.app.styles.checkboxgroup.L -import com.sdds.plasma.giga.app.styles.checkboxgroup.M -import com.sdds.plasma.giga.app.styles.checkboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "L" to { CheckBoxGroup.L.style() }, - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxVariationsCompose.kt deleted file mode 100644 index 1d69f09eaa..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.checkbox.CheckBox -import com.sdds.plasma.giga.app.styles.checkbox.Default -import com.sdds.plasma.giga.app.styles.checkbox.L -import com.sdds.plasma.giga.app.styles.checkbox.M -import com.sdds.plasma.giga.app.styles.checkbox.Negative -import com.sdds.plasma.giga.app.styles.checkbox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupDenseVariationsCompose.kt deleted file mode 100644 index f0e1d1b731..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chipgroup.Accent -import com.sdds.plasma.giga.app.styles.chipgroup.ChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.Default -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.Negative -import com.sdds.plasma.giga.app.styles.chipgroup.Pilled -import com.sdds.plasma.giga.app.styles.chipgroup.Positive -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Warning -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Negative" to { ChipGroupDense.L.Negative.style() }, - "L.Positive" to { ChipGroupDense.L.Positive.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Warning" to { ChipGroupDense.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupDense.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupDense.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupDense.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Negative" to { ChipGroupDense.M.Negative.style() }, - "M.Positive" to { ChipGroupDense.M.Positive.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Warning" to { ChipGroupDense.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupDense.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupDense.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupDense.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Negative" to { ChipGroupDense.S.Negative.style() }, - "S.Positive" to { ChipGroupDense.S.Positive.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Warning" to { ChipGroupDense.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupDense.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupDense.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupDense.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupDense.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupDense.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupDense.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupDense.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupWideVariationsCompose.kt deleted file mode 100644 index e9660598bb..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chipgroup.Accent -import com.sdds.plasma.giga.app.styles.chipgroup.ChipGroupWide -import com.sdds.plasma.giga.app.styles.chipgroup.Default -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.Negative -import com.sdds.plasma.giga.app.styles.chipgroup.Pilled -import com.sdds.plasma.giga.app.styles.chipgroup.Positive -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Warning -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Negative" to { ChipGroupWide.L.Negative.style() }, - "L.Positive" to { ChipGroupWide.L.Positive.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Warning" to { ChipGroupWide.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupWide.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupWide.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupWide.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Negative" to { ChipGroupWide.M.Negative.style() }, - "M.Positive" to { ChipGroupWide.M.Positive.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Warning" to { ChipGroupWide.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupWide.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupWide.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupWide.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Negative" to { ChipGroupWide.S.Negative.style() }, - "S.Positive" to { ChipGroupWide.S.Positive.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Warning" to { ChipGroupWide.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupWide.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupWide.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupWide.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupWide.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupWide.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupWide.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupWide.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipVariationsCompose.kt deleted file mode 100644 index 567f7f6667..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppChipVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Chip -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Pilled -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Negative" to { Chip.L.Negative.style() }, - "L.Positive" to { Chip.L.Positive.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Warning" to { Chip.L.Warning.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { Chip.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { Chip.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { Chip.L.Pilled.Warning.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Negative" to { Chip.M.Negative.style() }, - "M.Positive" to { Chip.M.Positive.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Warning" to { Chip.M.Warning.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { Chip.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { Chip.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { Chip.M.Pilled.Warning.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Negative" to { Chip.S.Negative.style() }, - "S.Positive" to { Chip.S.Positive.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Warning" to { Chip.S.Warning.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { Chip.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { Chip.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { Chip.S.Pilled.Warning.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Negative" to { Chip.Xs.Negative.style() }, - "Xs.Positive" to { Chip.Xs.Positive.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Warning" to { Chip.Xs.Warning.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { Chip.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { Chip.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { Chip.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCircularProgressBarVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCircularProgressBarVariationsCompose.kt deleted file mode 100644 index 41f34d9678..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.circularprogressbar.Accent -import com.sdds.plasma.giga.app.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.giga.app.styles.circularprogressbar.Default -import com.sdds.plasma.giga.app.styles.circularprogressbar.Gradient -import com.sdds.plasma.giga.app.styles.circularprogressbar.Info -import com.sdds.plasma.giga.app.styles.circularprogressbar.L -import com.sdds.plasma.giga.app.styles.circularprogressbar.M -import com.sdds.plasma.giga.app.styles.circularprogressbar.Negative -import com.sdds.plasma.giga.app.styles.circularprogressbar.Positive -import com.sdds.plasma.giga.app.styles.circularprogressbar.S -import com.sdds.plasma.giga.app.styles.circularprogressbar.Secondary -import com.sdds.plasma.giga.app.styles.circularprogressbar.Warning -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xl -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xs -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xxl -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeFieldVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeFieldVariationsCompose.kt deleted file mode 100644 index 5fdd1de45d..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeFieldVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.codefield.CodeField -import com.sdds.plasma.giga.app.styles.codefield.L -import com.sdds.plasma.giga.app.styles.codefield.M -import com.sdds.plasma.giga.app.styles.codefield.Segmented -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCodeFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeFieldStyle> = - mapOf( - "L" to { CodeField.L.style() }, - "L.Segmented" to { CodeField.L.Segmented.style() }, - "M" to { CodeField.M.style() }, - "M.Segmented" to { CodeField.M.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeInputVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeInputVariationsCompose.kt deleted file mode 100644 index cdb1dd4639..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.codeinput.CodeInput -import com.sdds.plasma.giga.app.styles.codeinput.L -import com.sdds.plasma.giga.app.styles.codeinput.M -import com.sdds.plasma.giga.app.styles.codeinput.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppComposeComponents.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppComposeComponents.kt deleted file mode 100644 index 9bfd23fb04..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppComposeComponents.kt +++ /dev/null @@ -1,379 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent - -/** - * Компоненты - */ -object PlasmaGigaAppComposeComponents : ComponentsProviderCompose() { - - override val generated: Map> = - listOf( - ComposeComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to PlasmaGigaAppAvatarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to PlasmaGigaAppAvatarGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Badge, - mapOf( - "BadgeClear" to PlasmaGigaAppBadgeClearVariationsCompose, - "BadgeSolid" to PlasmaGigaAppBadgeSolidVariationsCompose, - "BadgeTransparent" to PlasmaGigaAppBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeClear" to PlasmaGigaAppIconBadgeClearVariationsCompose, - "IconBadgeSolid" to PlasmaGigaAppIconBadgeSolidVariationsCompose, - "IconBadgeTransparent" to PlasmaGigaAppIconBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to PlasmaGigaAppBasicButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to PlasmaGigaAppIconButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.LinkButton, - mapOf( - "LinkButton" to PlasmaGigaAppLinkButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BottomSheet, - mapOf( - "ModalBottomSheet" to PlasmaGigaAppModalBottomSheetVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Card, - mapOf( - "CardSolid" to PlasmaGigaAppCardSolidVariationsCompose, - "CardClear" to PlasmaGigaAppCardClearVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Cell, - mapOf( - "Cell" to PlasmaGigaAppCellVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to PlasmaGigaAppCheckBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBoxGroup, - mapOf( - "CheckBoxGroup" to PlasmaGigaAppCheckBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Chip, - mapOf( - "Chip" to PlasmaGigaAppChipVariationsCompose, - "EmbeddedChip" to PlasmaGigaAppEmbeddedChipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to PlasmaGigaAppChipGroupDenseVariationsCompose, - "ChipGroupWide" to PlasmaGigaAppChipGroupWideVariationsCompose, - "EmbeddedChipGroupDense" to PlasmaGigaAppEmbeddedChipGroupDenseVariationsCompose, - "EmbeddedChipGroupWide" to PlasmaGigaAppEmbeddedChipGroupWideVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Counter, - mapOf( - "Counter" to PlasmaGigaAppCounterVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Divider, - mapOf( - "Divider" to PlasmaGigaAppDividerVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to PlasmaGigaAppIndicatorVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Overlay, - mapOf( - "Overlay" to PlasmaGigaAppOverlayVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ProgressBar, - mapOf( - "ProgressBar" to PlasmaGigaAppProgressBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CircularProgressBar, - mapOf( - "CircularProgressBar" to PlasmaGigaAppCircularProgressBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Popover, - mapOf( - "Popover" to PlasmaGigaAppPopoverVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to PlasmaGigaAppRadioBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to PlasmaGigaAppRadioBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Segment, - mapOf( - "Segment" to PlasmaGigaAppSegmentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.SegmentItem, - mapOf( - "SegmentItem" to PlasmaGigaAppSegmentItemVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Switch, - mapOf( - "Switch" to PlasmaGigaAppSwitchVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextField, - mapOf( - "TextField" to PlasmaGigaAppTextFieldVariationsCompose, - "TextFieldClear" to PlasmaGigaAppTextFieldClearVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextArea, - mapOf( - "TextArea" to PlasmaGigaAppTextAreaVariationsCompose, - "TextAreaClear" to PlasmaGigaAppTextAreaClearVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to PlasmaGigaAppTooltipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Toast, - mapOf( - "Toast" to PlasmaGigaAppToastVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Modal, - mapOf( - "Modal" to PlasmaGigaAppModalVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to PlasmaGigaAppRectSkeletonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Notification, - mapOf( - "NotificationCompact" to PlasmaGigaAppNotificationCompactVariationsCompose, - "NotificationLoose" to PlasmaGigaAppNotificationLooseVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.NotificationContent, - mapOf( - "NotificationContent" to PlasmaGigaAppNotificationContentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.List, - mapOf( - "ListNormal" to PlasmaGigaAppListNormalVariationsCompose, - "ListTight" to PlasmaGigaAppListTightVariationsCompose, - "DropdownMenuListNormal" to PlasmaGigaAppDropdownMenuListNormalVariationsCompose, - "DropdownMenuListTight" to PlasmaGigaAppDropdownMenuListTightVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ListItem, - mapOf( - "ListItemNormal" to PlasmaGigaAppListItemNormalVariationsCompose, - "ListItemTight" to PlasmaGigaAppListItemTightVariationsCompose, - "DropdownMenuItemNormal" to PlasmaGigaAppDropdownMenuItemNormalVariationsCompose, - "DropdownMenuItemTight" to PlasmaGigaAppDropdownMenuItemTightVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Spinner, - mapOf( - "Spinner" to PlasmaGigaAppSpinnerVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeleton" to PlasmaGigaAppTextSkeletonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Loader, - mapOf( - "Loader" to PlasmaGigaAppLoaderVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.DropdownMenu, - mapOf( - "DropdownMenuTight" to PlasmaGigaAppDropdownMenuTightVariationsCompose, - "DropdownMenuNormal" to PlasmaGigaAppDropdownMenuNormalVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.AccordionItem, - mapOf( - "AccordionItemSolidActionStart" to PlasmaGigaAppAccordionItemSolidActionStartVariationsCompose, - "AccordionItemSolidActionEnd" to PlasmaGigaAppAccordionItemSolidActionEndVariationsCompose, - "AccordionItemClearActionStart" to PlasmaGigaAppAccordionItemClearActionStartVariationsCompose, - "AccordionItemClearActionEnd" to PlasmaGigaAppAccordionItemClearActionEndVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Accordion, - mapOf( - "AccordionSolidActionStart" to PlasmaGigaAppAccordionSolidActionStartVariationsCompose, - "AccordionSolidActionEnd" to PlasmaGigaAppAccordionSolidActionEndVariationsCompose, - "AccordionClearActionStart" to PlasmaGigaAppAccordionClearActionStartVariationsCompose, - "AccordionClearActionEnd" to PlasmaGigaAppAccordionClearActionEndVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ScrollBar, - mapOf( - "ScrollBar" to PlasmaGigaAppScrollBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Image, - mapOf( - "Image" to PlasmaGigaAppImageVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to PlasmaGigaAppBasicButtonGroupVariationsCompose, - "IconButtonGroup" to PlasmaGigaAppIconButtonGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TabBar, - mapOf( - "TabBarHasLabelClear" to PlasmaGigaAppTabBarHasLabelClearVariationsCompose, - "TabBarHasLabelSolid" to PlasmaGigaAppTabBarHasLabelSolidVariationsCompose, - "TabBarIslandHasLabelClear" to PlasmaGigaAppTabBarIslandHasLabelClearVariationsCompose, - "TabBarIslandHasLabelSolid" to PlasmaGigaAppTabBarIslandHasLabelSolidVariationsCompose, - "TabBarClear" to PlasmaGigaAppTabBarClearVariationsCompose, - "TabBarSolid" to PlasmaGigaAppTabBarSolidVariationsCompose, - "TabBarIslandClear" to PlasmaGigaAppTabBarIslandClearVariationsCompose, - "TabBarIslandSolid" to PlasmaGigaAppTabBarIslandSolidVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TabBarItem, - mapOf( - "TabBarItemClear" to PlasmaGigaAppTabBarItemClearVariationsCompose, - "TabBarItemSolid" to PlasmaGigaAppTabBarItemSolidVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CodeField, - mapOf( - "CodeField" to PlasmaGigaAppCodeFieldVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CodeInput, - mapOf( - "CodeInput" to PlasmaGigaAppCodeInputVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Drawer, - mapOf( - "DrawerCloseNone" to PlasmaGigaAppDrawerCloseNoneVariationsCompose, - "DrawerCloseInner" to PlasmaGigaAppDrawerCloseInnerVariationsCompose, - "DrawerCloseOuter" to PlasmaGigaAppDrawerCloseOuterVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.NavigationBar, - mapOf( - "NavigationBarMainPage" to PlasmaGigaAppNavigationBarMainPageVariationsCompose, - "NavigationBarInternalPage" to PlasmaGigaAppNavigationBarInternalPageVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Autocomplete, - mapOf( - "AutocompleteTight" to PlasmaGigaAppAutocompleteTightVariationsCompose, - "AutocompleteNormal" to PlasmaGigaAppAutocompleteNormalVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.DropdownEmptyState, - mapOf( - "DropdownEmptyState" to PlasmaGigaAppDropdownEmptyStateVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.File, - mapOf( - "FileCircularProgress" to PlasmaGigaAppFileCircularProgressVariationsCompose, - "FileLinearProgress" to PlasmaGigaAppFileLinearProgressVariationsCompose, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCounterVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCounterVariationsCompose.kt deleted file mode 100644 index b8723cdc40..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.counter.Accent -import com.sdds.plasma.giga.app.styles.counter.Black -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.Default -import com.sdds.plasma.giga.app.styles.counter.L -import com.sdds.plasma.giga.app.styles.counter.M -import com.sdds.plasma.giga.app.styles.counter.Negative -import com.sdds.plasma.giga.app.styles.counter.Positive -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Warning -import com.sdds.plasma.giga.app.styles.counter.White -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.counter.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDividerVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDividerVariationsCompose.kt deleted file mode 100644 index bd24ac1bfd..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseInnerVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseInnerVariationsCompose.kt deleted file mode 100644 index 7ef87b03fb..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseInnerVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseInner -import com.sdds.plasma.giga.app.styles.drawer.HasShadow -import com.sdds.plasma.giga.app.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseInner.M.style() }, - "M.HasShadow" to { DrawerCloseInner.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseNoneVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseNoneVariationsCompose.kt deleted file mode 100644 index f535509066..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseNoneVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseNone -import com.sdds.plasma.giga.app.styles.drawer.HasShadow -import com.sdds.plasma.giga.app.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseNone.M.style() }, - "M.HasShadow" to { DrawerCloseNone.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseOuterVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseOuterVariationsCompose.kt deleted file mode 100644 index c34de27330..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDrawerCloseOuterVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseOuter -import com.sdds.plasma.giga.app.styles.drawer.HasShadow -import com.sdds.plasma.giga.app.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseOuter.M.style() }, - "M.HasShadow" to { DrawerCloseOuter.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownEmptyStateVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownEmptyStateVariationsCompose.kt deleted file mode 100644 index ac8fd6921a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownEmptyStateVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownEmptyStateStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.plasma.giga.app.styles.dropdownemptystate.HasButton -import com.sdds.plasma.giga.app.styles.dropdownemptystate.L -import com.sdds.plasma.giga.app.styles.dropdownemptystate.M -import com.sdds.plasma.giga.app.styles.dropdownemptystate.S -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xl -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownEmptyStateStyle> = - mapOf( - "Xs" to { DropdownEmptyState.Xs.style() }, - "Xs.HasButton" to { DropdownEmptyState.Xs.HasButton.style() }, - "S" to { DropdownEmptyState.S.style() }, - "S.HasButton" to { DropdownEmptyState.S.HasButton.style() }, - "M" to { DropdownEmptyState.M.style() }, - "M.HasButton" to { DropdownEmptyState.M.HasButton.style() }, - "L" to { DropdownEmptyState.L.style() }, - "L.HasButton" to { DropdownEmptyState.L.HasButton.style() }, - "Xl" to { DropdownEmptyState.Xl.style() }, - "Xl.HasButton" to { DropdownEmptyState.Xl.HasButton.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemNormalVariationsCompose.kt deleted file mode 100644 index 4636a5f7ec..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemNormalVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.listitem.Default -import com.sdds.plasma.giga.app.styles.listitem.DropdownMenuItemNormal -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.Negative -import com.sdds.plasma.giga.app.styles.listitem.Positive -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemNormal.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemNormal.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemNormal.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemNormal.L.Default.style() }, - "L.Positive" to { DropdownMenuItemNormal.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemNormal.L.Negative.style() }, - "M.Default" to { DropdownMenuItemNormal.M.Default.style() }, - "M.Positive" to { DropdownMenuItemNormal.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemNormal.M.Negative.style() }, - "S.Default" to { DropdownMenuItemNormal.S.Default.style() }, - "S.Positive" to { DropdownMenuItemNormal.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemNormal.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemNormal.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemNormal.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemNormal.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemTightVariationsCompose.kt deleted file mode 100644 index 2c9e40ed95..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuItemTightVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.listitem.Default -import com.sdds.plasma.giga.app.styles.listitem.DropdownMenuItemTight -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.Negative -import com.sdds.plasma.giga.app.styles.listitem.Positive -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemTight.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemTight.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemTight.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemTight.L.Default.style() }, - "L.Positive" to { DropdownMenuItemTight.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemTight.L.Negative.style() }, - "M.Default" to { DropdownMenuItemTight.M.Default.style() }, - "M.Positive" to { DropdownMenuItemTight.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemTight.M.Negative.style() }, - "S.Default" to { DropdownMenuItemTight.S.Default.style() }, - "S.Positive" to { DropdownMenuItemTight.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemTight.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemTight.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemTight.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemTight.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListNormalVariationsCompose.kt deleted file mode 100644 index e2f1f9c4b0..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.DropdownMenuListNormal -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListNormal.Xl.style() }, - "L" to { DropdownMenuListNormal.L.style() }, - "M" to { DropdownMenuListNormal.M.style() }, - "S" to { DropdownMenuListNormal.S.style() }, - "Xs" to { DropdownMenuListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListTightVariationsCompose.kt deleted file mode 100644 index 7de76e47f9..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.DropdownMenuListTight -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListTight.Xl.style() }, - "L" to { DropdownMenuListTight.L.style() }, - "M" to { DropdownMenuListTight.M.style() }, - "S" to { DropdownMenuListTight.S.style() }, - "Xs" to { DropdownMenuListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuNormalVariationsCompose.kt deleted file mode 100644 index 05fc6f6cba..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.plasma.giga.app.styles.dropdownmenu.L -import com.sdds.plasma.giga.app.styles.dropdownmenu.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.S -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuNormal.Xl.style() }, - "L" to { DropdownMenuNormal.L.style() }, - "M" to { DropdownMenuNormal.M.style() }, - "S" to { DropdownMenuNormal.S.style() }, - "Xs" to { DropdownMenuNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuTightVariationsCompose.kt deleted file mode 100644 index 9648e81511..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppDropdownMenuTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuTight -import com.sdds.plasma.giga.app.styles.dropdownmenu.L -import com.sdds.plasma.giga.app.styles.dropdownmenu.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.S -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppDropdownMenuTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuTight.Xl.style() }, - "L" to { DropdownMenuTight.L.style() }, - "M" to { DropdownMenuTight.M.style() }, - "S" to { DropdownMenuTight.S.style() }, - "Xs" to { DropdownMenuTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 51af957d70..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chipgroup.Accent -import com.sdds.plasma.giga.app.styles.chipgroup.Default -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.Negative -import com.sdds.plasma.giga.app.styles.chipgroup.Positive -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Warning -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupDense.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupDense.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupDense.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupDense.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupDense.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupDense.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupDense.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupDense.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupDense.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupDense.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupDense.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupDense.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupDense.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupDense.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupDense.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupDense.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupDense.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupDense.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupDense.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupDense.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupDense.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupDense.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupDense.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupDense.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupDense.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupWideVariationsCompose.kt deleted file mode 100644 index a4f5df49f3..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chipgroup.Accent -import com.sdds.plasma.giga.app.styles.chipgroup.Default -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupWide -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.Negative -import com.sdds.plasma.giga.app.styles.chipgroup.Positive -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Warning -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupWide.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupWide.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupWide.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupWide.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupWide.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupWide.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupWide.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupWide.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupWide.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupWide.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupWide.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupWide.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupWide.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupWide.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupWide.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupWide.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupWide.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupWide.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupWide.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupWide.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupWide.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupWide.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupWide.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupWide.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupWide.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipVariationsCompose.kt deleted file mode 100644 index 2aafdb744c..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppEmbeddedChipVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.EmbeddedChip -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xl -import com.sdds.plasma.giga.app.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppEmbeddedChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "Xl.Default" to { EmbeddedChip.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChip.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChip.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChip.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChip.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChip.Xl.Warning.style() }, - "L.Default" to { EmbeddedChip.L.Default.style() }, - "L.Accent" to { EmbeddedChip.L.Accent.style() }, - "L.Negative" to { EmbeddedChip.L.Negative.style() }, - "L.Positive" to { EmbeddedChip.L.Positive.style() }, - "L.Secondary" to { EmbeddedChip.L.Secondary.style() }, - "L.Warning" to { EmbeddedChip.L.Warning.style() }, - "M.Default" to { EmbeddedChip.M.Default.style() }, - "M.Accent" to { EmbeddedChip.M.Accent.style() }, - "M.Negative" to { EmbeddedChip.M.Negative.style() }, - "M.Positive" to { EmbeddedChip.M.Positive.style() }, - "M.Secondary" to { EmbeddedChip.M.Secondary.style() }, - "M.Warning" to { EmbeddedChip.M.Warning.style() }, - "S.Default" to { EmbeddedChip.S.Default.style() }, - "S.Accent" to { EmbeddedChip.S.Accent.style() }, - "S.Negative" to { EmbeddedChip.S.Negative.style() }, - "S.Positive" to { EmbeddedChip.S.Positive.style() }, - "S.Secondary" to { EmbeddedChip.S.Secondary.style() }, - "S.Warning" to { EmbeddedChip.S.Warning.style() }, - "Xs.Default" to { EmbeddedChip.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChip.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChip.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChip.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChip.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChip.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileCircularProgressVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileCircularProgressVariationsCompose.kt deleted file mode 100644 index db6a78fb35..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileCircularProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.file.Default -import com.sdds.plasma.giga.app.styles.file.FileCircularProgress -import com.sdds.plasma.giga.app.styles.file.L -import com.sdds.plasma.giga.app.styles.file.M -import com.sdds.plasma.giga.app.styles.file.Negative -import com.sdds.plasma.giga.app.styles.file.S -import com.sdds.plasma.giga.app.styles.file.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppFileCircularProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileCircularProgress.Xs.Default.style() }, - "Xs.Negative" to { FileCircularProgress.Xs.Negative.style() }, - "S.Default" to { FileCircularProgress.S.Default.style() }, - "S.Negative" to { FileCircularProgress.S.Negative.style() }, - "M.Default" to { FileCircularProgress.M.Default.style() }, - "M.Negative" to { FileCircularProgress.M.Negative.style() }, - "L.Default" to { FileCircularProgress.L.Default.style() }, - "L.Negative" to { FileCircularProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileLinearProgressVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileLinearProgressVariationsCompose.kt deleted file mode 100644 index 6528ee61c8..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppFileLinearProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.file.Default -import com.sdds.plasma.giga.app.styles.file.FileLinearProgress -import com.sdds.plasma.giga.app.styles.file.L -import com.sdds.plasma.giga.app.styles.file.M -import com.sdds.plasma.giga.app.styles.file.Negative -import com.sdds.plasma.giga.app.styles.file.S -import com.sdds.plasma.giga.app.styles.file.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppFileLinearProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileLinearProgress.Xs.Default.style() }, - "Xs.Negative" to { FileLinearProgress.Xs.Negative.style() }, - "S.Default" to { FileLinearProgress.S.Default.style() }, - "S.Negative" to { FileLinearProgress.S.Negative.style() }, - "M.Default" to { FileLinearProgress.M.Default.style() }, - "M.Negative" to { FileLinearProgress.M.Negative.style() }, - "L.Default" to { FileLinearProgress.L.Default.style() }, - "L.Negative" to { FileLinearProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeClearVariationsCompose.kt deleted file mode 100644 index d99f99d54d..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.iconbadge.Accent -import com.sdds.plasma.giga.app.styles.iconbadge.Dark -import com.sdds.plasma.giga.app.styles.iconbadge.Default -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeClear -import com.sdds.plasma.giga.app.styles.iconbadge.L -import com.sdds.plasma.giga.app.styles.iconbadge.Light -import com.sdds.plasma.giga.app.styles.iconbadge.M -import com.sdds.plasma.giga.app.styles.iconbadge.Negative -import com.sdds.plasma.giga.app.styles.iconbadge.Pilled -import com.sdds.plasma.giga.app.styles.iconbadge.Positive -import com.sdds.plasma.giga.app.styles.iconbadge.S -import com.sdds.plasma.giga.app.styles.iconbadge.Warning -import com.sdds.plasma.giga.app.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index 0fb8607516..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.iconbadge.Accent -import com.sdds.plasma.giga.app.styles.iconbadge.Dark -import com.sdds.plasma.giga.app.styles.iconbadge.Default -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeSolid -import com.sdds.plasma.giga.app.styles.iconbadge.L -import com.sdds.plasma.giga.app.styles.iconbadge.Light -import com.sdds.plasma.giga.app.styles.iconbadge.M -import com.sdds.plasma.giga.app.styles.iconbadge.Negative -import com.sdds.plasma.giga.app.styles.iconbadge.Pilled -import com.sdds.plasma.giga.app.styles.iconbadge.Positive -import com.sdds.plasma.giga.app.styles.iconbadge.S -import com.sdds.plasma.giga.app.styles.iconbadge.Warning -import com.sdds.plasma.giga.app.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 67165d21c1..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.iconbadge.Accent -import com.sdds.plasma.giga.app.styles.iconbadge.Dark -import com.sdds.plasma.giga.app.styles.iconbadge.Default -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeTransparent -import com.sdds.plasma.giga.app.styles.iconbadge.L -import com.sdds.plasma.giga.app.styles.iconbadge.Light -import com.sdds.plasma.giga.app.styles.iconbadge.M -import com.sdds.plasma.giga.app.styles.iconbadge.Negative -import com.sdds.plasma.giga.app.styles.iconbadge.Pilled -import com.sdds.plasma.giga.app.styles.iconbadge.Positive -import com.sdds.plasma.giga.app.styles.iconbadge.S -import com.sdds.plasma.giga.app.styles.iconbadge.Warning -import com.sdds.plasma.giga.app.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonGroupVariationsCompose.kt deleted file mode 100644 index 73d80a9ab7..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.buttongroup.Default -import com.sdds.plasma.giga.app.styles.buttongroup.Dense -import com.sdds.plasma.giga.app.styles.buttongroup.IconButtonGroup -import com.sdds.plasma.giga.app.styles.buttongroup.L -import com.sdds.plasma.giga.app.styles.buttongroup.M -import com.sdds.plasma.giga.app.styles.buttongroup.NoGap -import com.sdds.plasma.giga.app.styles.buttongroup.Pilled -import com.sdds.plasma.giga.app.styles.buttongroup.S -import com.sdds.plasma.giga.app.styles.buttongroup.Segmented -import com.sdds.plasma.giga.app.styles.buttongroup.Wide -import com.sdds.plasma.giga.app.styles.buttongroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { IconButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { IconButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { IconButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { IconButtonGroup.S.Wide.Default.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { IconButtonGroup.S.Dense.Default.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { IconButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { IconButtonGroup.M.Wide.Default.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { IconButtonGroup.M.Dense.Default.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { IconButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { IconButtonGroup.L.Wide.Default.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { IconButtonGroup.L.Dense.Default.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { IconButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonVariationsCompose.kt deleted file mode 100644 index 70de60405a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIconButtonVariationsCompose.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.iconbutton.Accent -import com.sdds.plasma.giga.app.styles.iconbutton.Black -import com.sdds.plasma.giga.app.styles.iconbutton.Clear -import com.sdds.plasma.giga.app.styles.iconbutton.Dark -import com.sdds.plasma.giga.app.styles.iconbutton.Default -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.L -import com.sdds.plasma.giga.app.styles.iconbutton.M -import com.sdds.plasma.giga.app.styles.iconbutton.Negative -import com.sdds.plasma.giga.app.styles.iconbutton.Pilled -import com.sdds.plasma.giga.app.styles.iconbutton.Positive -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Secondary -import com.sdds.plasma.giga.app.styles.iconbutton.Warning -import com.sdds.plasma.giga.app.styles.iconbutton.White -import com.sdds.plasma.giga.app.styles.iconbutton.Xl -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.styles.iconbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { IconButton.Xl.Default.style() }, - "Xl.Secondary" to { IconButton.Xl.Secondary.style() }, - "Xl.Accent" to { IconButton.Xl.Accent.style() }, - "Xl.Positive" to { IconButton.Xl.Positive.style() }, - "Xl.Negative" to { IconButton.Xl.Negative.style() }, - "Xl.Warning" to { IconButton.Xl.Warning.style() }, - "Xl.Clear" to { IconButton.Xl.Clear.style() }, - "Xl.Dark" to { IconButton.Xl.Dark.style() }, - "Xl.Black" to { IconButton.Xl.Black.style() }, - "Xl.White" to { IconButton.Xl.White.style() }, - "Xl.Pilled.Default" to { IconButton.Xl.Pilled.Default.style() }, - "Xl.Pilled.Secondary" to { IconButton.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { IconButton.Xl.Pilled.Accent.style() }, - "Xl.Pilled.Positive" to { IconButton.Xl.Pilled.Positive.style() }, - "Xl.Pilled.Negative" to { IconButton.Xl.Pilled.Negative.style() }, - "Xl.Pilled.Warning" to { IconButton.Xl.Pilled.Warning.style() }, - "Xl.Pilled.Clear" to { IconButton.Xl.Pilled.Clear.style() }, - "Xl.Pilled.Dark" to { IconButton.Xl.Pilled.Dark.style() }, - "Xl.Pilled.Black" to { IconButton.Xl.Pilled.Black.style() }, - "Xl.Pilled.White" to { IconButton.Xl.Pilled.White.style() }, - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Positive" to { IconButton.L.Positive.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Black" to { IconButton.L.Black.style() }, - "L.White" to { IconButton.L.White.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { IconButton.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { IconButton.L.Pilled.Accent.style() }, - "L.Pilled.Positive" to { IconButton.L.Pilled.Positive.style() }, - "L.Pilled.Negative" to { IconButton.L.Pilled.Negative.style() }, - "L.Pilled.Warning" to { IconButton.L.Pilled.Warning.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "L.Pilled.Dark" to { IconButton.L.Pilled.Dark.style() }, - "L.Pilled.Black" to { IconButton.L.Pilled.Black.style() }, - "L.Pilled.White" to { IconButton.L.Pilled.White.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Positive" to { IconButton.M.Positive.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Black" to { IconButton.M.Black.style() }, - "M.White" to { IconButton.M.White.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { IconButton.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { IconButton.M.Pilled.Accent.style() }, - "M.Pilled.Positive" to { IconButton.M.Pilled.Positive.style() }, - "M.Pilled.Negative" to { IconButton.M.Pilled.Negative.style() }, - "M.Pilled.Warning" to { IconButton.M.Pilled.Warning.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "M.Pilled.Dark" to { IconButton.M.Pilled.Dark.style() }, - "M.Pilled.Black" to { IconButton.M.Pilled.Black.style() }, - "M.Pilled.White" to { IconButton.M.Pilled.White.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Positive" to { IconButton.S.Positive.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Black" to { IconButton.S.Black.style() }, - "S.White" to { IconButton.S.White.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { IconButton.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { IconButton.S.Pilled.Accent.style() }, - "S.Pilled.Positive" to { IconButton.S.Pilled.Positive.style() }, - "S.Pilled.Negative" to { IconButton.S.Pilled.Negative.style() }, - "S.Pilled.Warning" to { IconButton.S.Pilled.Warning.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "S.Pilled.Dark" to { IconButton.S.Pilled.Dark.style() }, - "S.Pilled.Black" to { IconButton.S.Pilled.Black.style() }, - "S.Pilled.White" to { IconButton.S.Pilled.White.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Positive" to { IconButton.Xs.Positive.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Black" to { IconButton.Xs.Black.style() }, - "Xs.White" to { IconButton.Xs.White.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { IconButton.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { IconButton.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Positive" to { IconButton.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Negative" to { IconButton.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Warning" to { IconButton.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - "Xs.Pilled.Dark" to { IconButton.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Black" to { IconButton.Xs.Pilled.Black.style() }, - "Xs.Pilled.White" to { IconButton.Xs.Pilled.White.style() }, - "Xxs.Default" to { IconButton.Xxs.Default.style() }, - "Xxs.Secondary" to { IconButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { IconButton.Xxs.Accent.style() }, - "Xxs.Positive" to { IconButton.Xxs.Positive.style() }, - "Xxs.Negative" to { IconButton.Xxs.Negative.style() }, - "Xxs.Warning" to { IconButton.Xxs.Warning.style() }, - "Xxs.Clear" to { IconButton.Xxs.Clear.style() }, - "Xxs.Dark" to { IconButton.Xxs.Dark.style() }, - "Xxs.Black" to { IconButton.Xxs.Black.style() }, - "Xxs.White" to { IconButton.Xxs.White.style() }, - "Xxs.Pilled.Default" to { IconButton.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { IconButton.Xxs.Pilled.Secondary.style() }, - "Xxs.Pilled.Accent" to { IconButton.Xxs.Pilled.Accent.style() }, - "Xxs.Pilled.Positive" to { IconButton.Xxs.Pilled.Positive.style() }, - "Xxs.Pilled.Negative" to { IconButton.Xxs.Pilled.Negative.style() }, - "Xxs.Pilled.Warning" to { IconButton.Xxs.Pilled.Warning.style() }, - "Xxs.Pilled.Clear" to { IconButton.Xxs.Pilled.Clear.style() }, - "Xxs.Pilled.Dark" to { IconButton.Xxs.Pilled.Dark.style() }, - "Xxs.Pilled.Black" to { IconButton.Xxs.Pilled.Black.style() }, - "Xxs.Pilled.White" to { IconButton.Xxs.Pilled.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppImageVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppImageVariationsCompose.kt deleted file mode 100644 index 212669747e..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.image.Image -import com.sdds.plasma.giga.app.styles.image.Ratio16x9 -import com.sdds.plasma.giga.app.styles.image.Ratio1x1 -import com.sdds.plasma.giga.app.styles.image.Ratio1x2 -import com.sdds.plasma.giga.app.styles.image.Ratio2x1 -import com.sdds.plasma.giga.app.styles.image.Ratio3x4 -import com.sdds.plasma.giga.app.styles.image.Ratio4x3 -import com.sdds.plasma.giga.app.styles.image.Ratio9x16 -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIndicatorVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIndicatorVariationsCompose.kt deleted file mode 100644 index eab4b4ffb2..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppIndicatorVariationsCompose.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.indicator.Accent -import com.sdds.plasma.giga.app.styles.indicator.Black -import com.sdds.plasma.giga.app.styles.indicator.Default -import com.sdds.plasma.giga.app.styles.indicator.Inactive -import com.sdds.plasma.giga.app.styles.indicator.Indicator -import com.sdds.plasma.giga.app.styles.indicator.L -import com.sdds.plasma.giga.app.styles.indicator.M -import com.sdds.plasma.giga.app.styles.indicator.Negative -import com.sdds.plasma.giga.app.styles.indicator.Positive -import com.sdds.plasma.giga.app.styles.indicator.S -import com.sdds.plasma.giga.app.styles.indicator.Warning -import com.sdds.plasma.giga.app.styles.indicator.White -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLinkButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLinkButtonVariationsCompose.kt deleted file mode 100644 index b8fa70b8ca..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,61 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.linkbutton.Accent -import com.sdds.plasma.giga.app.styles.linkbutton.Default -import com.sdds.plasma.giga.app.styles.linkbutton.L -import com.sdds.plasma.giga.app.styles.linkbutton.LinkButton -import com.sdds.plasma.giga.app.styles.linkbutton.M -import com.sdds.plasma.giga.app.styles.linkbutton.Negative -import com.sdds.plasma.giga.app.styles.linkbutton.Positive -import com.sdds.plasma.giga.app.styles.linkbutton.S -import com.sdds.plasma.giga.app.styles.linkbutton.Secondary -import com.sdds.plasma.giga.app.styles.linkbutton.Warning -import com.sdds.plasma.giga.app.styles.linkbutton.Xl -import com.sdds.plasma.giga.app.styles.linkbutton.Xs -import com.sdds.plasma.giga.app.styles.linkbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { LinkButton.Xl.Default.style() }, - "Xl.Secondary" to { LinkButton.Xl.Secondary.style() }, - "Xl.Accent" to { LinkButton.Xl.Accent.style() }, - "Xl.Positive" to { LinkButton.Xl.Positive.style() }, - "Xl.Negative" to { LinkButton.Xl.Negative.style() }, - "Xl.Warning" to { LinkButton.Xl.Warning.style() }, - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - "Xxs.Default" to { LinkButton.Xxs.Default.style() }, - "Xxs.Secondary" to { LinkButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.Positive" to { LinkButton.Xxs.Positive.style() }, - "Xxs.Negative" to { LinkButton.Xxs.Negative.style() }, - "Xxs.Warning" to { LinkButton.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemNormalVariationsCompose.kt deleted file mode 100644 index 9da092794a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.ListItemNormal -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppListItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemNormal.Xl.style() }, - "L" to { ListItemNormal.L.style() }, - "M" to { ListItemNormal.M.style() }, - "S" to { ListItemNormal.S.style() }, - "Xs" to { ListItemNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemTightVariationsCompose.kt deleted file mode 100644 index f0469afa7a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListItemTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.ListItemTight -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppListItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemTight.Xl.style() }, - "L" to { ListItemTight.L.style() }, - "M" to { ListItemTight.M.style() }, - "S" to { ListItemTight.S.style() }, - "Xs" to { ListItemTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListNormalVariationsCompose.kt deleted file mode 100644 index f18191ae10..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.ListNormal -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListNormal.Xl.style() }, - "L" to { ListNormal.L.style() }, - "M" to { ListNormal.M.style() }, - "S" to { ListNormal.S.style() }, - "Xs" to { ListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListTightVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListTightVariationsCompose.kt deleted file mode 100644 index 1ea3c6b586..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.ListTight -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListTight.Xl.style() }, - "L" to { ListTight.L.style() }, - "M" to { ListTight.M.style() }, - "S" to { ListTight.S.style() }, - "Xs" to { ListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLoaderVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLoaderVariationsCompose.kt deleted file mode 100644 index 57dbd68186..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.loader.Default -import com.sdds.plasma.giga.app.styles.loader.Loader -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalBottomSheetVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 328fd82b36..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.bottomsheet.Default -import com.sdds.plasma.giga.app.styles.bottomsheet.ModalBottomSheet -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalVariationsCompose.kt deleted file mode 100644 index 5b1fbe5512..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.modal.Default -import com.sdds.plasma.giga.app.styles.modal.Modal -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index 42bef402a7..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.navigationbar.HasBackground -import com.sdds.plasma.giga.app.styles.navigationbar.NavigationBarInternalPage -import com.sdds.plasma.giga.app.styles.navigationbar.NoBackground -import com.sdds.plasma.giga.app.styles.navigationbar.Rounded -import com.sdds.plasma.giga.app.styles.navigationbar.Shadow -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarInternalPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarInternalPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarInternalPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarInternalPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarInternalPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarInternalPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index 7c5b93d083..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.navigationbar.HasBackground -import com.sdds.plasma.giga.app.styles.navigationbar.NavigationBarMainPage -import com.sdds.plasma.giga.app.styles.navigationbar.NoBackground -import com.sdds.plasma.giga.app.styles.navigationbar.Rounded -import com.sdds.plasma.giga.app.styles.navigationbar.Shadow -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarMainPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarMainPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarMainPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarMainPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarMainPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarMainPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationCompactVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationCompactVariationsCompose.kt deleted file mode 100644 index 5820d6fbbe..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.notification.L -import com.sdds.plasma.giga.app.styles.notification.M -import com.sdds.plasma.giga.app.styles.notification.NotificationCompact -import com.sdds.plasma.giga.app.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationContentVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationContentVariationsCompose.kt deleted file mode 100644 index 19d6b5e9eb..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.notificationcontent.ButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.Default -import com.sdds.plasma.giga.app.styles.notificationcontent.IconStart -import com.sdds.plasma.giga.app.styles.notificationcontent.IconTop -import com.sdds.plasma.giga.app.styles.notificationcontent.Info -import com.sdds.plasma.giga.app.styles.notificationcontent.Negative -import com.sdds.plasma.giga.app.styles.notificationcontent.NoButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.NotificationContent -import com.sdds.plasma.giga.app.styles.notificationcontent.Positive -import com.sdds.plasma.giga.app.styles.notificationcontent.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationLooseVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationLooseVariationsCompose.kt deleted file mode 100644 index ed03088953..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.notification.L -import com.sdds.plasma.giga.app.styles.notification.M -import com.sdds.plasma.giga.app.styles.notification.NotificationLoose -import com.sdds.plasma.giga.app.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppOverlayVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppOverlayVariationsCompose.kt deleted file mode 100644 index cc5eac1ef8..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.overlay.Default -import com.sdds.plasma.giga.app.styles.overlay.Overlay -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppPopoverVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppPopoverVariationsCompose.kt deleted file mode 100644 index 7c3f65ee07..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.popover.Accent -import com.sdds.plasma.giga.app.styles.popover.Default -import com.sdds.plasma.giga.app.styles.popover.M -import com.sdds.plasma.giga.app.styles.popover.Popover -import com.sdds.plasma.giga.app.styles.popover.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppProgressBarVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppProgressBarVariationsCompose.kt deleted file mode 100644 index d87ad02ab9..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppProgressBarVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.progressbar.Accent -import com.sdds.plasma.giga.app.styles.progressbar.Default -import com.sdds.plasma.giga.app.styles.progressbar.Gradient -import com.sdds.plasma.giga.app.styles.progressbar.Info -import com.sdds.plasma.giga.app.styles.progressbar.Negative -import com.sdds.plasma.giga.app.styles.progressbar.Positive -import com.sdds.plasma.giga.app.styles.progressbar.ProgressBar -import com.sdds.plasma.giga.app.styles.progressbar.Secondary -import com.sdds.plasma.giga.app.styles.progressbar.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Info" to { ProgressBar.Info.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index 312f85f3aa..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.radioboxgroup.M -import com.sdds.plasma.giga.app.styles.radioboxgroup.RadioBoxGroup -import com.sdds.plasma.giga.app.styles.radioboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxVariationsCompose.kt deleted file mode 100644 index a553cc912b..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.radiobox.L -import com.sdds.plasma.giga.app.styles.radiobox.M -import com.sdds.plasma.giga.app.styles.radiobox.RadioBox -import com.sdds.plasma.giga.app.styles.radiobox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRectSkeletonVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRectSkeletonVariationsCompose.kt deleted file mode 100644 index 3df8c597ab..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.rectskeleton.Default -import com.sdds.plasma.giga.app.styles.rectskeleton.Lighter -import com.sdds.plasma.giga.app.styles.rectskeleton.RectSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Lighter" to { RectSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppScrollBarVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppScrollBarVariationsCompose.kt deleted file mode 100644 index baa01a56bc..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.scrollbar.M -import com.sdds.plasma.giga.app.styles.scrollbar.S -import com.sdds.plasma.giga.app.styles.scrollbar.ScrollBar -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentItemVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentItemVariationsCompose.kt deleted file mode 100644 index 507e818f88..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.segmentitem.Accent -import com.sdds.plasma.giga.app.styles.segmentitem.L -import com.sdds.plasma.giga.app.styles.segmentitem.M -import com.sdds.plasma.giga.app.styles.segmentitem.Pilled -import com.sdds.plasma.giga.app.styles.segmentitem.Primary -import com.sdds.plasma.giga.app.styles.segmentitem.S -import com.sdds.plasma.giga.app.styles.segmentitem.Secondary -import com.sdds.plasma.giga.app.styles.segmentitem.SegmentItem -import com.sdds.plasma.giga.app.styles.segmentitem.Xl -import com.sdds.plasma.giga.app.styles.segmentitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Xl.Primary" to { SegmentItem.Xl.Primary.style() }, - "Xl.Secondary" to { SegmentItem.Xl.Secondary.style() }, - "Xl.Accent" to { SegmentItem.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { SegmentItem.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { SegmentItem.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { SegmentItem.Xl.Pilled.Accent.style() }, - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Accent" to { SegmentItem.L.Accent.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { SegmentItem.L.Pilled.Accent.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Accent" to { SegmentItem.M.Accent.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { SegmentItem.M.Pilled.Accent.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Accent" to { SegmentItem.S.Accent.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { SegmentItem.S.Pilled.Accent.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Accent" to { SegmentItem.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { SegmentItem.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentVariationsCompose.kt deleted file mode 100644 index 98b9458965..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSegmentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.segment.Accent -import com.sdds.plasma.giga.app.styles.segment.L -import com.sdds.plasma.giga.app.styles.segment.M -import com.sdds.plasma.giga.app.styles.segment.Pilled -import com.sdds.plasma.giga.app.styles.segment.Primary -import com.sdds.plasma.giga.app.styles.segment.S -import com.sdds.plasma.giga.app.styles.segment.Secondary -import com.sdds.plasma.giga.app.styles.segment.Segment -import com.sdds.plasma.giga.app.styles.segment.Xl -import com.sdds.plasma.giga.app.styles.segment.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Xl.Primary" to { Segment.Xl.Primary.style() }, - "Xl.Secondary" to { Segment.Xl.Secondary.style() }, - "Xl.Accent" to { Segment.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { Segment.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { Segment.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { Segment.Xl.Pilled.Accent.style() }, - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Accent" to { Segment.L.Accent.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { Segment.L.Pilled.Accent.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Accent" to { Segment.M.Accent.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { Segment.M.Pilled.Accent.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Accent" to { Segment.S.Accent.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { Segment.S.Pilled.Accent.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Accent" to { Segment.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { Segment.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSpinnerVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSpinnerVariationsCompose.kt deleted file mode 100644 index d8d6aff6f7..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSpinnerVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.spinner.Accent -import com.sdds.plasma.giga.app.styles.spinner.Default -import com.sdds.plasma.giga.app.styles.spinner.Info -import com.sdds.plasma.giga.app.styles.spinner.L -import com.sdds.plasma.giga.app.styles.spinner.M -import com.sdds.plasma.giga.app.styles.spinner.Negative -import com.sdds.plasma.giga.app.styles.spinner.Positive -import com.sdds.plasma.giga.app.styles.spinner.S -import com.sdds.plasma.giga.app.styles.spinner.Scalable -import com.sdds.plasma.giga.app.styles.spinner.Secondary -import com.sdds.plasma.giga.app.styles.spinner.Spinner -import com.sdds.plasma.giga.app.styles.spinner.Warning -import com.sdds.plasma.giga.app.styles.spinner.Xl -import com.sdds.plasma.giga.app.styles.spinner.Xs -import com.sdds.plasma.giga.app.styles.spinner.Xxl -import com.sdds.plasma.giga.app.styles.spinner.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "Xxl.Default" to { Spinner.Xxl.Default.style() }, - "Xxl.Secondary" to { Spinner.Xxl.Secondary.style() }, - "Xxl.Accent" to { Spinner.Xxl.Accent.style() }, - "Xxl.Positive" to { Spinner.Xxl.Positive.style() }, - "Xxl.Negative" to { Spinner.Xxl.Negative.style() }, - "Xxl.Warning" to { Spinner.Xxl.Warning.style() }, - "Xxl.Info" to { Spinner.Xxl.Info.style() }, - "Xl.Default" to { Spinner.Xl.Default.style() }, - "Xl.Secondary" to { Spinner.Xl.Secondary.style() }, - "Xl.Accent" to { Spinner.Xl.Accent.style() }, - "Xl.Positive" to { Spinner.Xl.Positive.style() }, - "Xl.Negative" to { Spinner.Xl.Negative.style() }, - "Xl.Warning" to { Spinner.Xl.Warning.style() }, - "Xl.Info" to { Spinner.Xl.Info.style() }, - "L.Default" to { Spinner.L.Default.style() }, - "L.Secondary" to { Spinner.L.Secondary.style() }, - "L.Accent" to { Spinner.L.Accent.style() }, - "L.Positive" to { Spinner.L.Positive.style() }, - "L.Negative" to { Spinner.L.Negative.style() }, - "L.Warning" to { Spinner.L.Warning.style() }, - "L.Info" to { Spinner.L.Info.style() }, - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSwitchVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSwitchVariationsCompose.kt deleted file mode 100644 index 57226358c9..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.switcher.L -import com.sdds.plasma.giga.app.styles.switcher.M -import com.sdds.plasma.giga.app.styles.switcher.S -import com.sdds.plasma.giga.app.styles.switcher.Switch -import com.sdds.plasma.giga.app.styles.switcher.ToggleS -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarClearVariationsCompose.kt deleted file mode 100644 index c09e4a874a..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.Divider -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Rounded -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarClear.M.Default.style() }, - "M.Secondary" to { TabBarClear.M.Secondary.style() }, - "M.Accent" to { TabBarClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarClear.L.Default.style() }, - "L.Secondary" to { TabBarClear.L.Secondary.style() }, - "L.Accent" to { TabBarClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelClearVariationsCompose.kt deleted file mode 100644 index 40f64d2fa7..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.Divider -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Rounded -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelSolidVariationsCompose.kt deleted file mode 100644 index dc932134f5..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.Divider -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Rounded -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandClearVariationsCompose.kt deleted file mode 100644 index b8624a6b5c..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarIslandClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelClearVariationsCompose.kt deleted file mode 100644 index ac6e87b3dd..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelSolidVariationsCompose.kt deleted file mode 100644 index 482008b5f9..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandSolidVariationsCompose.kt deleted file mode 100644 index a940402aa6..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarIslandSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemClearVariationsCompose.kt deleted file mode 100644 index b51d5167db..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarItemClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemClear.M.Default.style() }, - "M.Accent" to { TabBarItemClear.M.Accent.style() }, - "M.Secondary" to { TabBarItemClear.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemClear.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemClear.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemClear.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemClear.L.Default.style() }, - "L.Accent" to { TabBarItemClear.L.Accent.style() }, - "L.Secondary" to { TabBarItemClear.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemClear.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemClear.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemClear.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemSolidVariationsCompose.kt deleted file mode 100644 index c62640db22..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarItemSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarItemSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemSolid.M.Default.style() }, - "M.Accent" to { TabBarItemSolid.M.Accent.style() }, - "M.Secondary" to { TabBarItemSolid.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemSolid.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemSolid.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemSolid.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemSolid.L.Default.style() }, - "L.Accent" to { TabBarItemSolid.L.Accent.style() }, - "L.Secondary" to { TabBarItemSolid.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemSolid.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemSolid.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemSolid.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarSolidVariationsCompose.kt deleted file mode 100644 index 0d7b4e5886..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTabBarSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.Divider -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Rounded -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTabBarSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarSolid.M.Default.style() }, - "M.Secondary" to { TabBarSolid.M.Secondary.style() }, - "M.Accent" to { TabBarSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarSolid.L.Default.style() }, - "L.Secondary" to { TabBarSolid.L.Secondary.style() }, - "L.Accent" to { TabBarSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaClearVariationsCompose.kt deleted file mode 100644 index 5a0436e5ec..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textarea.Default -import com.sdds.plasma.giga.app.styles.textarea.Error -import com.sdds.plasma.giga.app.styles.textarea.InnerLabel -import com.sdds.plasma.giga.app.styles.textarea.L -import com.sdds.plasma.giga.app.styles.textarea.M -import com.sdds.plasma.giga.app.styles.textarea.OuterLabel -import com.sdds.plasma.giga.app.styles.textarea.RequiredEnd -import com.sdds.plasma.giga.app.styles.textarea.RequiredStart -import com.sdds.plasma.giga.app.styles.textarea.S -import com.sdds.plasma.giga.app.styles.textarea.TextAreaClear -import com.sdds.plasma.giga.app.styles.textarea.Warning -import com.sdds.plasma.giga.app.styles.textarea.Xl -import com.sdds.plasma.giga.app.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Warning" to { TextAreaClear.Xs.Warning.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextAreaClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextAreaClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextAreaClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextAreaClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextAreaClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextAreaClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextAreaClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Warning" to { TextAreaClear.S.Warning.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextAreaClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextAreaClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextAreaClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextAreaClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextAreaClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextAreaClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextAreaClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextAreaClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextAreaClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextAreaClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Warning" to { TextAreaClear.M.Warning.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextAreaClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextAreaClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextAreaClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextAreaClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextAreaClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextAreaClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextAreaClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextAreaClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextAreaClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextAreaClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Warning" to { TextAreaClear.L.Warning.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextAreaClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextAreaClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextAreaClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextAreaClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextAreaClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextAreaClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextAreaClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextAreaClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextAreaClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextAreaClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextAreaClear.Xl.Default.style() }, - "Xl.Warning" to { TextAreaClear.Xl.Warning.style() }, - "Xl.Error" to { TextAreaClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextAreaClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextAreaClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextAreaClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextAreaClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextAreaClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextAreaClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextAreaClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextAreaClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextAreaClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextAreaClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextAreaClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextAreaClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaVariationsCompose.kt deleted file mode 100644 index d25333d708..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextAreaVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textarea.Default -import com.sdds.plasma.giga.app.styles.textarea.Error -import com.sdds.plasma.giga.app.styles.textarea.InnerLabel -import com.sdds.plasma.giga.app.styles.textarea.L -import com.sdds.plasma.giga.app.styles.textarea.M -import com.sdds.plasma.giga.app.styles.textarea.OuterLabel -import com.sdds.plasma.giga.app.styles.textarea.RequiredEnd -import com.sdds.plasma.giga.app.styles.textarea.RequiredStart -import com.sdds.plasma.giga.app.styles.textarea.S -import com.sdds.plasma.giga.app.styles.textarea.TextArea -import com.sdds.plasma.giga.app.styles.textarea.Warning -import com.sdds.plasma.giga.app.styles.textarea.Xl -import com.sdds.plasma.giga.app.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Warning" to { TextArea.Xs.Warning.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextArea.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextArea.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextArea.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextArea.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextArea.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextArea.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextArea.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Warning" to { TextArea.S.Warning.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.RequiredStart.Default" to { TextArea.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextArea.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextArea.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextArea.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextArea.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextArea.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextArea.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextArea.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextArea.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextArea.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextArea.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextArea.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Warning" to { TextArea.M.Warning.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.RequiredStart.Default" to { TextArea.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextArea.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextArea.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextArea.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextArea.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextArea.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextArea.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextArea.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextArea.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextArea.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextArea.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextArea.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextArea.L.Default.style() }, - "L.Warning" to { TextArea.L.Warning.style() }, - "L.Error" to { TextArea.L.Error.style() }, - "L.RequiredStart.Default" to { TextArea.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextArea.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextArea.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextArea.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextArea.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextArea.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextArea.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextArea.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextArea.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextArea.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextArea.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextArea.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextArea.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextArea.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextArea.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextArea.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextArea.Xl.Default.style() }, - "Xl.Warning" to { TextArea.Xl.Warning.style() }, - "Xl.Error" to { TextArea.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextArea.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextArea.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextArea.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextArea.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextArea.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextArea.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextArea.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextArea.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextArea.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextArea.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextArea.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextArea.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldClearVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldClearVariationsCompose.kt deleted file mode 100644 index d07fbe5cdc..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textfield.Default -import com.sdds.plasma.giga.app.styles.textfield.Error -import com.sdds.plasma.giga.app.styles.textfield.InnerLabel -import com.sdds.plasma.giga.app.styles.textfield.L -import com.sdds.plasma.giga.app.styles.textfield.M -import com.sdds.plasma.giga.app.styles.textfield.OuterLabel -import com.sdds.plasma.giga.app.styles.textfield.RequiredEnd -import com.sdds.plasma.giga.app.styles.textfield.RequiredStart -import com.sdds.plasma.giga.app.styles.textfield.S -import com.sdds.plasma.giga.app.styles.textfield.Success -import com.sdds.plasma.giga.app.styles.textfield.TextFieldClear -import com.sdds.plasma.giga.app.styles.textfield.Warning -import com.sdds.plasma.giga.app.styles.textfield.Xl -import com.sdds.plasma.giga.app.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Success" to { TextFieldClear.Xs.Success.style() }, - "Xs.Warning" to { TextFieldClear.Xs.Warning.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextFieldClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextFieldClear.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextFieldClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextFieldClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextFieldClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextFieldClear.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextFieldClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextFieldClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextFieldClear.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextFieldClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Success" to { TextFieldClear.S.Success.style() }, - "S.Warning" to { TextFieldClear.S.Warning.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextFieldClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextFieldClear.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextFieldClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextFieldClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextFieldClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextFieldClear.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextFieldClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextFieldClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextFieldClear.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextFieldClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextFieldClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextFieldClear.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextFieldClear.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextFieldClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextFieldClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextFieldClear.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Success" to { TextFieldClear.M.Success.style() }, - "M.Warning" to { TextFieldClear.M.Warning.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextFieldClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextFieldClear.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextFieldClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextFieldClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextFieldClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextFieldClear.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextFieldClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextFieldClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextFieldClear.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextFieldClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextFieldClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextFieldClear.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextFieldClear.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextFieldClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextFieldClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextFieldClear.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Success" to { TextFieldClear.L.Success.style() }, - "L.Warning" to { TextFieldClear.L.Warning.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextFieldClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextFieldClear.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextFieldClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextFieldClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextFieldClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextFieldClear.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextFieldClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextFieldClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextFieldClear.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextFieldClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextFieldClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextFieldClear.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextFieldClear.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextFieldClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextFieldClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextFieldClear.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextFieldClear.Xl.Default.style() }, - "Xl.Success" to { TextFieldClear.Xl.Success.style() }, - "Xl.Warning" to { TextFieldClear.Xl.Warning.style() }, - "Xl.Error" to { TextFieldClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextFieldClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextFieldClear.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextFieldClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextFieldClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextFieldClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextFieldClear.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextFieldClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextFieldClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextFieldClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextFieldClear.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextFieldClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextFieldClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextFieldClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextFieldClear.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextFieldClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextFieldClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldVariationsCompose.kt deleted file mode 100644 index b208cea48e..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextFieldVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textfield.Default -import com.sdds.plasma.giga.app.styles.textfield.Error -import com.sdds.plasma.giga.app.styles.textfield.InnerLabel -import com.sdds.plasma.giga.app.styles.textfield.L -import com.sdds.plasma.giga.app.styles.textfield.M -import com.sdds.plasma.giga.app.styles.textfield.OuterLabel -import com.sdds.plasma.giga.app.styles.textfield.RequiredEnd -import com.sdds.plasma.giga.app.styles.textfield.RequiredStart -import com.sdds.plasma.giga.app.styles.textfield.S -import com.sdds.plasma.giga.app.styles.textfield.Success -import com.sdds.plasma.giga.app.styles.textfield.TextField -import com.sdds.plasma.giga.app.styles.textfield.Warning -import com.sdds.plasma.giga.app.styles.textfield.Xl -import com.sdds.plasma.giga.app.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Success" to { TextField.Xs.Success.style() }, - "Xs.Warning" to { TextField.Xs.Warning.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextField.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextField.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextField.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextField.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextField.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextField.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextField.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextField.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextField.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextField.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextField.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextField.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextField.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Success" to { TextField.S.Success.style() }, - "S.Warning" to { TextField.S.Warning.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextField.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextField.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextField.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextField.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextField.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextField.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextField.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextField.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextField.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextField.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextField.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextField.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextField.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextField.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextField.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextField.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextField.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextField.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Success" to { TextField.M.Success.style() }, - "M.Warning" to { TextField.M.Warning.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextField.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextField.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextField.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextField.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextField.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextField.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextField.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextField.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextField.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextField.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextField.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextField.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextField.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextField.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextField.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextField.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextField.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextField.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Success" to { TextField.L.Success.style() }, - "L.Warning" to { TextField.L.Warning.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextField.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextField.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextField.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextField.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextField.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextField.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextField.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextField.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextField.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextField.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextField.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextField.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextField.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextField.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextField.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextField.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextField.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextField.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextField.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextField.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextField.Xl.Default.style() }, - "Xl.Success" to { TextField.Xl.Success.style() }, - "Xl.Warning" to { TextField.Xl.Warning.style() }, - "Xl.Error" to { TextField.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextField.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextField.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextField.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextField.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextField.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextField.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextField.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextField.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextField.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextField.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextField.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextField.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextField.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextField.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextField.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextField.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextField.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextField.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextField.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextField.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextField.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextField.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextSkeletonVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextSkeletonVariationsCompose.kt deleted file mode 100644 index a336cfcf44..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textskeleton.Default -import com.sdds.plasma.giga.app.styles.textskeleton.Lighter -import com.sdds.plasma.giga.app.styles.textskeleton.TextSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - "Lighter" to { TextSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppToastVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppToastVariationsCompose.kt deleted file mode 100644 index 240faa7a6b..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppToastVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.toast.Default -import com.sdds.plasma.giga.app.styles.toast.Negative -import com.sdds.plasma.giga.app.styles.toast.Pilled -import com.sdds.plasma.giga.app.styles.toast.Positive -import com.sdds.plasma.giga.app.styles.toast.Rounded -import com.sdds.plasma.giga.app.styles.toast.Toast -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Rounded.Default" to { Toast.Rounded.Default.style() }, - "Rounded.Positive" to { Toast.Rounded.Positive.style() }, - "Rounded.Negative" to { Toast.Rounded.Negative.style() }, - "Pilled.Default" to { Toast.Pilled.Default.style() }, - "Pilled.Positive" to { Toast.Pilled.Positive.style() }, - "Pilled.Negative" to { Toast.Pilled.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTooltipVariationsCompose.kt b/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTooltipVariationsCompose.kt deleted file mode 100644 index 34f9dc178c..0000000000 --- a/playground/sandbox-plasma-giga-app-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/app/integration/compose/PlasmaGigaAppTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.app.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tooltip.M -import com.sdds.plasma.giga.app.styles.tooltip.S -import com.sdds.plasma.giga.app.styles.tooltip.Tooltip -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAppTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/build.gradle.kts b/playground/sandbox-plasma-giga-integration/build.gradle.kts deleted file mode 100644 index 9d9d9787a5..0000000000 --- a/playground/sandbox-plasma-giga-integration/build.gradle.kts +++ /dev/null @@ -1,22 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") -} - -android { - namespace = "com.sdds.playground.sandbox.plasma.giga.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:plasma.giga.compose") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-plasma-giga-integration/gradle.properties b/playground/sandbox-plasma-giga-integration/gradle.properties deleted file mode 100644 index 448b1df771..0000000000 --- a/playground/sandbox-plasma-giga-integration/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -integration.compose.config-path=../tokens/plasma.giga.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.plasma.giga.integration.compose diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/PlasmaGigaThemeWrapper.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/PlasmaGigaThemeWrapper.kt deleted file mode 100644 index f6bf1e68dd..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/PlasmaGigaThemeWrapper.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalOverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.list.ListNormal -import com.sdds.plasma.giga.styles.list.M -import com.sdds.plasma.giga.styles.overlay.Default -import com.sdds.plasma.giga.styles.overlay.Overlay -import com.sdds.plasma.giga.theme.PlasmaGigaTheme -import com.sdds.plasma.giga.theme.darkPlasmaGigaColors -import com.sdds.plasma.giga.theme.darkPlasmaGigaGradients -import com.sdds.plasma.giga.theme.lightPlasmaGigaColors -import com.sdds.plasma.giga.theme.lightPlasmaGigaGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun PlasmaGigaThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - PlasmaGigaTheme( - colors = if (isDark) darkPlasmaGigaColors() else lightPlasmaGigaColors(), - gradients = if (isDark) darkPlasmaGigaGradients() else lightPlasmaGigaGradients(), - ) { - CompositionLocalProvider( - LocalOverlayStyle provides Overlay.Default.style(), - LocalListStyle provides ListNormal.M.style(), - ) { - content() - } - } -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionEndVariationsCompose.kt deleted file mode 100644 index 34ae9bbe7d..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordion.AccordionClearActionEnd -import com.sdds.plasma.giga.styles.accordion.H2 -import com.sdds.plasma.giga.styles.accordion.H3 -import com.sdds.plasma.giga.styles.accordion.H4 -import com.sdds.plasma.giga.styles.accordion.H5 -import com.sdds.plasma.giga.styles.accordion.L -import com.sdds.plasma.giga.styles.accordion.M -import com.sdds.plasma.giga.styles.accordion.S -import com.sdds.plasma.giga.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionEnd.Xs.style() }, - "S" to { AccordionClearActionEnd.S.style() }, - "M" to { AccordionClearActionEnd.M.style() }, - "L" to { AccordionClearActionEnd.L.style() }, - "H2" to { AccordionClearActionEnd.H2.style() }, - "H3" to { AccordionClearActionEnd.H3.style() }, - "H4" to { AccordionClearActionEnd.H4.style() }, - "H5" to { AccordionClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionStartVariationsCompose.kt deleted file mode 100644 index 901037ebd7..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordion.AccordionClearActionStart -import com.sdds.plasma.giga.styles.accordion.H2 -import com.sdds.plasma.giga.styles.accordion.H3 -import com.sdds.plasma.giga.styles.accordion.H4 -import com.sdds.plasma.giga.styles.accordion.H5 -import com.sdds.plasma.giga.styles.accordion.L -import com.sdds.plasma.giga.styles.accordion.M -import com.sdds.plasma.giga.styles.accordion.S -import com.sdds.plasma.giga.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionStart.Xs.style() }, - "S" to { AccordionClearActionStart.S.style() }, - "M" to { AccordionClearActionStart.M.style() }, - "L" to { AccordionClearActionStart.L.style() }, - "H2" to { AccordionClearActionStart.H2.style() }, - "H3" to { AccordionClearActionStart.H3.style() }, - "H4" to { AccordionClearActionStart.H4.style() }, - "H5" to { AccordionClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt deleted file mode 100644 index 09322387ba..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.plasma.giga.styles.accordionitem.H2 -import com.sdds.plasma.giga.styles.accordionitem.H3 -import com.sdds.plasma.giga.styles.accordionitem.H4 -import com.sdds.plasma.giga.styles.accordionitem.H5 -import com.sdds.plasma.giga.styles.accordionitem.L -import com.sdds.plasma.giga.styles.accordionitem.M -import com.sdds.plasma.giga.styles.accordionitem.S -import com.sdds.plasma.giga.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionEnd.Xs.style() }, - "S" to { AccordionItemClearActionEnd.S.style() }, - "M" to { AccordionItemClearActionEnd.M.style() }, - "L" to { AccordionItemClearActionEnd.L.style() }, - "H2" to { AccordionItemClearActionEnd.H2.style() }, - "H3" to { AccordionItemClearActionEnd.H3.style() }, - "H4" to { AccordionItemClearActionEnd.H4.style() }, - "H5" to { AccordionItemClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt deleted file mode 100644 index ad402bb0cb..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.plasma.giga.styles.accordionitem.H2 -import com.sdds.plasma.giga.styles.accordionitem.H3 -import com.sdds.plasma.giga.styles.accordionitem.H4 -import com.sdds.plasma.giga.styles.accordionitem.H5 -import com.sdds.plasma.giga.styles.accordionitem.L -import com.sdds.plasma.giga.styles.accordionitem.M -import com.sdds.plasma.giga.styles.accordionitem.S -import com.sdds.plasma.giga.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionStart.Xs.style() }, - "S" to { AccordionItemClearActionStart.S.style() }, - "M" to { AccordionItemClearActionStart.M.style() }, - "L" to { AccordionItemClearActionStart.L.style() }, - "H2" to { AccordionItemClearActionStart.H2.style() }, - "H3" to { AccordionItemClearActionStart.H3.style() }, - "H4" to { AccordionItemClearActionStart.H4.style() }, - "H5" to { AccordionItemClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt deleted file mode 100644 index 5ab521dee5..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.plasma.giga.styles.accordionitem.H2 -import com.sdds.plasma.giga.styles.accordionitem.H3 -import com.sdds.plasma.giga.styles.accordionitem.H4 -import com.sdds.plasma.giga.styles.accordionitem.H5 -import com.sdds.plasma.giga.styles.accordionitem.L -import com.sdds.plasma.giga.styles.accordionitem.M -import com.sdds.plasma.giga.styles.accordionitem.S -import com.sdds.plasma.giga.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionEnd.Xs.style() }, - "S" to { AccordionItemSolidActionEnd.S.style() }, - "M" to { AccordionItemSolidActionEnd.M.style() }, - "L" to { AccordionItemSolidActionEnd.L.style() }, - "H2" to { AccordionItemSolidActionEnd.H2.style() }, - "H3" to { AccordionItemSolidActionEnd.H3.style() }, - "H4" to { AccordionItemSolidActionEnd.H4.style() }, - "H5" to { AccordionItemSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt deleted file mode 100644 index cb34d15d5c..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.plasma.giga.styles.accordionitem.H2 -import com.sdds.plasma.giga.styles.accordionitem.H3 -import com.sdds.plasma.giga.styles.accordionitem.H4 -import com.sdds.plasma.giga.styles.accordionitem.H5 -import com.sdds.plasma.giga.styles.accordionitem.L -import com.sdds.plasma.giga.styles.accordionitem.M -import com.sdds.plasma.giga.styles.accordionitem.S -import com.sdds.plasma.giga.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionStart.Xs.style() }, - "S" to { AccordionItemSolidActionStart.S.style() }, - "M" to { AccordionItemSolidActionStart.M.style() }, - "L" to { AccordionItemSolidActionStart.L.style() }, - "H2" to { AccordionItemSolidActionStart.H2.style() }, - "H3" to { AccordionItemSolidActionStart.H3.style() }, - "H4" to { AccordionItemSolidActionStart.H4.style() }, - "H5" to { AccordionItemSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt deleted file mode 100644 index 45173dd307..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordion.AccordionSolidActionEnd -import com.sdds.plasma.giga.styles.accordion.H2 -import com.sdds.plasma.giga.styles.accordion.H3 -import com.sdds.plasma.giga.styles.accordion.H4 -import com.sdds.plasma.giga.styles.accordion.H5 -import com.sdds.plasma.giga.styles.accordion.L -import com.sdds.plasma.giga.styles.accordion.M -import com.sdds.plasma.giga.styles.accordion.S -import com.sdds.plasma.giga.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionEnd.Xs.style() }, - "S" to { AccordionSolidActionEnd.S.style() }, - "M" to { AccordionSolidActionEnd.M.style() }, - "L" to { AccordionSolidActionEnd.L.style() }, - "H2" to { AccordionSolidActionEnd.H2.style() }, - "H3" to { AccordionSolidActionEnd.H3.style() }, - "H4" to { AccordionSolidActionEnd.H4.style() }, - "H5" to { AccordionSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt deleted file mode 100644 index 43bf69f46a..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.accordion.AccordionSolidActionStart -import com.sdds.plasma.giga.styles.accordion.H2 -import com.sdds.plasma.giga.styles.accordion.H3 -import com.sdds.plasma.giga.styles.accordion.H4 -import com.sdds.plasma.giga.styles.accordion.H5 -import com.sdds.plasma.giga.styles.accordion.L -import com.sdds.plasma.giga.styles.accordion.M -import com.sdds.plasma.giga.styles.accordion.S -import com.sdds.plasma.giga.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionStart.Xs.style() }, - "S" to { AccordionSolidActionStart.S.style() }, - "M" to { AccordionSolidActionStart.M.style() }, - "L" to { AccordionSolidActionStart.L.style() }, - "H2" to { AccordionSolidActionStart.H2.style() }, - "H3" to { AccordionSolidActionStart.H3.style() }, - "H4" to { AccordionSolidActionStart.H4.style() }, - "H5" to { AccordionSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarGroupVariationsCompose.kt deleted file mode 100644 index 6dff62bf66..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.avatargroup.AvatarGroup -import com.sdds.plasma.giga.styles.avatargroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarVariationsCompose.kt deleted file mode 100644 index 4a6e337d5b..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.avatar.Avatar -import com.sdds.plasma.giga.styles.avatar.L -import com.sdds.plasma.giga.styles.avatar.M -import com.sdds.plasma.giga.styles.avatar.S -import com.sdds.plasma.giga.styles.avatar.Xxl -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeClearVariationsCompose.kt deleted file mode 100644 index 6bc953acb1..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.badge.Accent -import com.sdds.plasma.giga.styles.badge.BadgeClear -import com.sdds.plasma.giga.styles.badge.Dark -import com.sdds.plasma.giga.styles.badge.Default -import com.sdds.plasma.giga.styles.badge.L -import com.sdds.plasma.giga.styles.badge.Light -import com.sdds.plasma.giga.styles.badge.M -import com.sdds.plasma.giga.styles.badge.Negative -import com.sdds.plasma.giga.styles.badge.Pilled -import com.sdds.plasma.giga.styles.badge.Positive -import com.sdds.plasma.giga.styles.badge.S -import com.sdds.plasma.giga.styles.badge.Warning -import com.sdds.plasma.giga.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeSolidVariationsCompose.kt deleted file mode 100644 index 8c00c4f1e6..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.badge.Accent -import com.sdds.plasma.giga.styles.badge.BadgeSolid -import com.sdds.plasma.giga.styles.badge.Dark -import com.sdds.plasma.giga.styles.badge.Default -import com.sdds.plasma.giga.styles.badge.L -import com.sdds.plasma.giga.styles.badge.Light -import com.sdds.plasma.giga.styles.badge.M -import com.sdds.plasma.giga.styles.badge.Negative -import com.sdds.plasma.giga.styles.badge.Pilled -import com.sdds.plasma.giga.styles.badge.Positive -import com.sdds.plasma.giga.styles.badge.S -import com.sdds.plasma.giga.styles.badge.Warning -import com.sdds.plasma.giga.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 7abaed2e1f..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.badge.Accent -import com.sdds.plasma.giga.styles.badge.BadgeTransparent -import com.sdds.plasma.giga.styles.badge.Dark -import com.sdds.plasma.giga.styles.badge.Default -import com.sdds.plasma.giga.styles.badge.L -import com.sdds.plasma.giga.styles.badge.Light -import com.sdds.plasma.giga.styles.badge.M -import com.sdds.plasma.giga.styles.badge.Negative -import com.sdds.plasma.giga.styles.badge.Pilled -import com.sdds.plasma.giga.styles.badge.Positive -import com.sdds.plasma.giga.styles.badge.S -import com.sdds.plasma.giga.styles.badge.Warning -import com.sdds.plasma.giga.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index f74f97d145..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.giga.styles.buttongroup.Default -import com.sdds.plasma.giga.styles.buttongroup.Dense -import com.sdds.plasma.giga.styles.buttongroup.L -import com.sdds.plasma.giga.styles.buttongroup.M -import com.sdds.plasma.giga.styles.buttongroup.NoGap -import com.sdds.plasma.giga.styles.buttongroup.S -import com.sdds.plasma.giga.styles.buttongroup.Segmented -import com.sdds.plasma.giga.styles.buttongroup.Wide -import com.sdds.plasma.giga.styles.buttongroup.Xs -import com.sdds.plasma.giga.styles.buttongroup.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xxs" to { BasicButtonGroup.Xxs.style() }, - "Xxs.Wide" to { BasicButtonGroup.Xxs.Wide.style() }, - "Xxs.Wide.Default" to { BasicButtonGroup.Xxs.Wide.Default.style() }, - "Xxs.Wide.Segmented" to { BasicButtonGroup.Xxs.Wide.Segmented.style() }, - "Xxs.Dense" to { BasicButtonGroup.Xxs.Dense.style() }, - "Xxs.Dense.Default" to { BasicButtonGroup.Xxs.Dense.Default.style() }, - "Xxs.Dense.Segmented" to { BasicButtonGroup.Xxs.Dense.Segmented.style() }, - "Xxs.NoGap" to { BasicButtonGroup.Xxs.NoGap.style() }, - "Xxs.NoGap.Default" to { BasicButtonGroup.Xxs.NoGap.Default.style() }, - "Xxs.NoGap.Segmented" to { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonVariationsCompose.kt deleted file mode 100644 index 11979adc69..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.basicbutton.Accent -import com.sdds.plasma.giga.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.styles.basicbutton.Black -import com.sdds.plasma.giga.styles.basicbutton.Clear -import com.sdds.plasma.giga.styles.basicbutton.Dark -import com.sdds.plasma.giga.styles.basicbutton.Default -import com.sdds.plasma.giga.styles.basicbutton.L -import com.sdds.plasma.giga.styles.basicbutton.M -import com.sdds.plasma.giga.styles.basicbutton.Negative -import com.sdds.plasma.giga.styles.basicbutton.Positive -import com.sdds.plasma.giga.styles.basicbutton.S -import com.sdds.plasma.giga.styles.basicbutton.Secondary -import com.sdds.plasma.giga.styles.basicbutton.Warning -import com.sdds.plasma.giga.styles.basicbutton.White -import com.sdds.plasma.giga.styles.basicbutton.Xl -import com.sdds.plasma.giga.styles.basicbutton.Xs -import com.sdds.plasma.giga.styles.basicbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { BasicButton.Xl.Default.style() }, - "Xl.Secondary" to { BasicButton.Xl.Secondary.style() }, - "Xl.Accent" to { BasicButton.Xl.Accent.style() }, - "Xl.Positive" to { BasicButton.Xl.Positive.style() }, - "Xl.Negative" to { BasicButton.Xl.Negative.style() }, - "Xl.Warning" to { BasicButton.Xl.Warning.style() }, - "Xl.Clear" to { BasicButton.Xl.Clear.style() }, - "Xl.Dark" to { BasicButton.Xl.Dark.style() }, - "Xl.Black" to { BasicButton.Xl.Black.style() }, - "Xl.White" to { BasicButton.Xl.White.style() }, - "L.Default" to { BasicButton.L.Default.style() }, - "L.Secondary" to { BasicButton.L.Secondary.style() }, - "L.Accent" to { BasicButton.L.Accent.style() }, - "L.Positive" to { BasicButton.L.Positive.style() }, - "L.Negative" to { BasicButton.L.Negative.style() }, - "L.Warning" to { BasicButton.L.Warning.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "L.Dark" to { BasicButton.L.Dark.style() }, - "L.Black" to { BasicButton.L.Black.style() }, - "L.White" to { BasicButton.L.White.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Positive" to { BasicButton.M.Positive.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Black" to { BasicButton.M.Black.style() }, - "M.White" to { BasicButton.M.White.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Positive" to { BasicButton.S.Positive.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Black" to { BasicButton.S.Black.style() }, - "S.White" to { BasicButton.S.White.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Positive" to { BasicButton.Xs.Positive.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Black" to { BasicButton.Xs.Black.style() }, - "Xs.White" to { BasicButton.Xs.White.style() }, - "Xxs.Default" to { BasicButton.Xxs.Default.style() }, - "Xxs.Secondary" to { BasicButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { BasicButton.Xxs.Accent.style() }, - "Xxs.Positive" to { BasicButton.Xxs.Positive.style() }, - "Xxs.Negative" to { BasicButton.Xxs.Negative.style() }, - "Xxs.Warning" to { BasicButton.Xxs.Warning.style() }, - "Xxs.Clear" to { BasicButton.Xxs.Clear.style() }, - "Xxs.Dark" to { BasicButton.Xxs.Dark.style() }, - "Xxs.Black" to { BasicButton.Xxs.Black.style() }, - "Xxs.White" to { BasicButton.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardClearVariationsCompose.kt deleted file mode 100644 index 85f5d1c03d..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardClearVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.card.CardClear -import com.sdds.plasma.giga.styles.card.L -import com.sdds.plasma.giga.styles.card.M -import com.sdds.plasma.giga.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCardClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardClear.L.style() }, - "M" to { CardClear.M.style() }, - "S" to { CardClear.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardSolidVariationsCompose.kt deleted file mode 100644 index 98120185bb..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCardSolidVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.card.CardSolid -import com.sdds.plasma.giga.styles.card.L -import com.sdds.plasma.giga.styles.card.M -import com.sdds.plasma.giga.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCardSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardSolid.L.style() }, - "M" to { CardSolid.M.style() }, - "S" to { CardSolid.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCellVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCellVariationsCompose.kt deleted file mode 100644 index c2e6d8bfea..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.cell.Cell -import com.sdds.plasma.giga.styles.cell.L -import com.sdds.plasma.giga.styles.cell.M -import com.sdds.plasma.giga.styles.cell.S -import com.sdds.plasma.giga.styles.cell.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index 0dc7ec7bc5..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.checkboxgroup.CheckBoxGroup -import com.sdds.plasma.giga.styles.checkboxgroup.L -import com.sdds.plasma.giga.styles.checkboxgroup.M -import com.sdds.plasma.giga.styles.checkboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "L" to { CheckBoxGroup.L.style() }, - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxVariationsCompose.kt deleted file mode 100644 index 02f19eb8aa..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.checkbox.CheckBox -import com.sdds.plasma.giga.styles.checkbox.Default -import com.sdds.plasma.giga.styles.checkbox.L -import com.sdds.plasma.giga.styles.checkbox.M -import com.sdds.plasma.giga.styles.checkbox.Negative -import com.sdds.plasma.giga.styles.checkbox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 5d796299d9..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chipgroup.Accent -import com.sdds.plasma.giga.styles.chipgroup.ChipGroupDense -import com.sdds.plasma.giga.styles.chipgroup.Default -import com.sdds.plasma.giga.styles.chipgroup.L -import com.sdds.plasma.giga.styles.chipgroup.M -import com.sdds.plasma.giga.styles.chipgroup.Negative -import com.sdds.plasma.giga.styles.chipgroup.Pilled -import com.sdds.plasma.giga.styles.chipgroup.Positive -import com.sdds.plasma.giga.styles.chipgroup.S -import com.sdds.plasma.giga.styles.chipgroup.Secondary -import com.sdds.plasma.giga.styles.chipgroup.Warning -import com.sdds.plasma.giga.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Negative" to { ChipGroupDense.L.Negative.style() }, - "L.Positive" to { ChipGroupDense.L.Positive.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Warning" to { ChipGroupDense.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupDense.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupDense.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupDense.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Negative" to { ChipGroupDense.M.Negative.style() }, - "M.Positive" to { ChipGroupDense.M.Positive.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Warning" to { ChipGroupDense.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupDense.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupDense.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupDense.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Negative" to { ChipGroupDense.S.Negative.style() }, - "S.Positive" to { ChipGroupDense.S.Positive.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Warning" to { ChipGroupDense.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupDense.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupDense.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupDense.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupDense.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupDense.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupDense.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupDense.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupWideVariationsCompose.kt deleted file mode 100644 index bce7114373..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chipgroup.Accent -import com.sdds.plasma.giga.styles.chipgroup.ChipGroupWide -import com.sdds.plasma.giga.styles.chipgroup.Default -import com.sdds.plasma.giga.styles.chipgroup.L -import com.sdds.plasma.giga.styles.chipgroup.M -import com.sdds.plasma.giga.styles.chipgroup.Negative -import com.sdds.plasma.giga.styles.chipgroup.Pilled -import com.sdds.plasma.giga.styles.chipgroup.Positive -import com.sdds.plasma.giga.styles.chipgroup.S -import com.sdds.plasma.giga.styles.chipgroup.Secondary -import com.sdds.plasma.giga.styles.chipgroup.Warning -import com.sdds.plasma.giga.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Negative" to { ChipGroupWide.L.Negative.style() }, - "L.Positive" to { ChipGroupWide.L.Positive.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Warning" to { ChipGroupWide.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupWide.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupWide.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupWide.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Negative" to { ChipGroupWide.M.Negative.style() }, - "M.Positive" to { ChipGroupWide.M.Positive.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Warning" to { ChipGroupWide.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupWide.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupWide.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupWide.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Negative" to { ChipGroupWide.S.Negative.style() }, - "S.Positive" to { ChipGroupWide.S.Positive.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Warning" to { ChipGroupWide.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupWide.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupWide.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupWide.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupWide.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupWide.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupWide.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupWide.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipVariationsCompose.kt deleted file mode 100644 index a9188b9049..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaChipVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chip.Accent -import com.sdds.plasma.giga.styles.chip.Chip -import com.sdds.plasma.giga.styles.chip.Default -import com.sdds.plasma.giga.styles.chip.L -import com.sdds.plasma.giga.styles.chip.M -import com.sdds.plasma.giga.styles.chip.Negative -import com.sdds.plasma.giga.styles.chip.Pilled -import com.sdds.plasma.giga.styles.chip.Positive -import com.sdds.plasma.giga.styles.chip.S -import com.sdds.plasma.giga.styles.chip.Secondary -import com.sdds.plasma.giga.styles.chip.Warning -import com.sdds.plasma.giga.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Negative" to { Chip.L.Negative.style() }, - "L.Positive" to { Chip.L.Positive.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Warning" to { Chip.L.Warning.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { Chip.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { Chip.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { Chip.L.Pilled.Warning.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Negative" to { Chip.M.Negative.style() }, - "M.Positive" to { Chip.M.Positive.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Warning" to { Chip.M.Warning.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { Chip.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { Chip.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { Chip.M.Pilled.Warning.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Negative" to { Chip.S.Negative.style() }, - "S.Positive" to { Chip.S.Positive.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Warning" to { Chip.S.Warning.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { Chip.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { Chip.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { Chip.S.Pilled.Warning.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Negative" to { Chip.Xs.Negative.style() }, - "Xs.Positive" to { Chip.Xs.Positive.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Warning" to { Chip.Xs.Warning.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { Chip.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { Chip.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { Chip.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCircularProgressBarVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCircularProgressBarVariationsCompose.kt deleted file mode 100644 index da717761f1..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.circularprogressbar.Accent -import com.sdds.plasma.giga.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.giga.styles.circularprogressbar.Default -import com.sdds.plasma.giga.styles.circularprogressbar.Gradient -import com.sdds.plasma.giga.styles.circularprogressbar.Info -import com.sdds.plasma.giga.styles.circularprogressbar.L -import com.sdds.plasma.giga.styles.circularprogressbar.M -import com.sdds.plasma.giga.styles.circularprogressbar.Negative -import com.sdds.plasma.giga.styles.circularprogressbar.Positive -import com.sdds.plasma.giga.styles.circularprogressbar.S -import com.sdds.plasma.giga.styles.circularprogressbar.Secondary -import com.sdds.plasma.giga.styles.circularprogressbar.Warning -import com.sdds.plasma.giga.styles.circularprogressbar.Xl -import com.sdds.plasma.giga.styles.circularprogressbar.Xs -import com.sdds.plasma.giga.styles.circularprogressbar.Xxl -import com.sdds.plasma.giga.styles.circularprogressbar.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeFieldVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeFieldVariationsCompose.kt deleted file mode 100644 index 9227466efc..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeFieldVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.codefield.CodeField -import com.sdds.plasma.giga.styles.codefield.L -import com.sdds.plasma.giga.styles.codefield.M -import com.sdds.plasma.giga.styles.codefield.Segmented -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCodeFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeFieldStyle> = - mapOf( - "L" to { CodeField.L.style() }, - "L.Segmented" to { CodeField.L.Segmented.style() }, - "M" to { CodeField.M.style() }, - "M.Segmented" to { CodeField.M.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeInputVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeInputVariationsCompose.kt deleted file mode 100644 index 78f8edeb61..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.codeinput.CodeInput -import com.sdds.plasma.giga.styles.codeinput.L -import com.sdds.plasma.giga.styles.codeinput.M -import com.sdds.plasma.giga.styles.codeinput.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCounterVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCounterVariationsCompose.kt deleted file mode 100644 index 024465ae0e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.counter.Accent -import com.sdds.plasma.giga.styles.counter.Black -import com.sdds.plasma.giga.styles.counter.Counter -import com.sdds.plasma.giga.styles.counter.Default -import com.sdds.plasma.giga.styles.counter.L -import com.sdds.plasma.giga.styles.counter.M -import com.sdds.plasma.giga.styles.counter.Negative -import com.sdds.plasma.giga.styles.counter.Positive -import com.sdds.plasma.giga.styles.counter.S -import com.sdds.plasma.giga.styles.counter.Warning -import com.sdds.plasma.giga.styles.counter.White -import com.sdds.plasma.giga.styles.counter.Xs -import com.sdds.plasma.giga.styles.counter.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDividerVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDividerVariationsCompose.kt deleted file mode 100644 index c27b54687e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.divider.Default -import com.sdds.plasma.giga.styles.divider.Divider -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseInnerVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseInnerVariationsCompose.kt deleted file mode 100644 index d321208976..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseInnerVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.drawer.DrawerCloseInner -import com.sdds.plasma.giga.styles.drawer.HasShadow -import com.sdds.plasma.giga.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseInner.M.style() }, - "M.HasShadow" to { DrawerCloseInner.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseNoneVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseNoneVariationsCompose.kt deleted file mode 100644 index 31656d10c0..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseNoneVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.drawer.DrawerCloseNone -import com.sdds.plasma.giga.styles.drawer.HasShadow -import com.sdds.plasma.giga.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseNone.M.style() }, - "M.HasShadow" to { DrawerCloseNone.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseOuterVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseOuterVariationsCompose.kt deleted file mode 100644 index c772e8276e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDrawerCloseOuterVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.drawer.DrawerCloseOuter -import com.sdds.plasma.giga.styles.drawer.HasShadow -import com.sdds.plasma.giga.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseOuter.M.style() }, - "M.HasShadow" to { DrawerCloseOuter.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownEmptyStateVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownEmptyStateVariationsCompose.kt deleted file mode 100644 index 93238017f1..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownEmptyStateVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownEmptyStateStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.plasma.giga.styles.dropdownemptystate.HasButton -import com.sdds.plasma.giga.styles.dropdownemptystate.L -import com.sdds.plasma.giga.styles.dropdownemptystate.M -import com.sdds.plasma.giga.styles.dropdownemptystate.S -import com.sdds.plasma.giga.styles.dropdownemptystate.Xl -import com.sdds.plasma.giga.styles.dropdownemptystate.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownEmptyStateStyle> = - mapOf( - "Xs" to { DropdownEmptyState.Xs.style() }, - "Xs.HasButton" to { DropdownEmptyState.Xs.HasButton.style() }, - "S" to { DropdownEmptyState.S.style() }, - "S.HasButton" to { DropdownEmptyState.S.HasButton.style() }, - "M" to { DropdownEmptyState.M.style() }, - "M.HasButton" to { DropdownEmptyState.M.HasButton.style() }, - "L" to { DropdownEmptyState.L.style() }, - "L.HasButton" to { DropdownEmptyState.L.HasButton.style() }, - "Xl" to { DropdownEmptyState.Xl.style() }, - "Xl.HasButton" to { DropdownEmptyState.Xl.HasButton.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt deleted file mode 100644 index bfa51a58e0..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.listitem.Default -import com.sdds.plasma.giga.styles.listitem.DropdownMenuItemNormal -import com.sdds.plasma.giga.styles.listitem.L -import com.sdds.plasma.giga.styles.listitem.M -import com.sdds.plasma.giga.styles.listitem.Negative -import com.sdds.plasma.giga.styles.listitem.Positive -import com.sdds.plasma.giga.styles.listitem.S -import com.sdds.plasma.giga.styles.listitem.Xl -import com.sdds.plasma.giga.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemNormal.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemNormal.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemNormal.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemNormal.L.Default.style() }, - "L.Positive" to { DropdownMenuItemNormal.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemNormal.L.Negative.style() }, - "M.Default" to { DropdownMenuItemNormal.M.Default.style() }, - "M.Positive" to { DropdownMenuItemNormal.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemNormal.M.Negative.style() }, - "S.Default" to { DropdownMenuItemNormal.S.Default.style() }, - "S.Positive" to { DropdownMenuItemNormal.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemNormal.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemNormal.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemNormal.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemNormal.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt deleted file mode 100644 index 1410c4d014..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.listitem.Default -import com.sdds.plasma.giga.styles.listitem.DropdownMenuItemTight -import com.sdds.plasma.giga.styles.listitem.L -import com.sdds.plasma.giga.styles.listitem.M -import com.sdds.plasma.giga.styles.listitem.Negative -import com.sdds.plasma.giga.styles.listitem.Positive -import com.sdds.plasma.giga.styles.listitem.S -import com.sdds.plasma.giga.styles.listitem.Xl -import com.sdds.plasma.giga.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemTight.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemTight.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemTight.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemTight.L.Default.style() }, - "L.Positive" to { DropdownMenuItemTight.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemTight.L.Negative.style() }, - "M.Default" to { DropdownMenuItemTight.M.Default.style() }, - "M.Positive" to { DropdownMenuItemTight.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemTight.M.Negative.style() }, - "S.Default" to { DropdownMenuItemTight.S.Default.style() }, - "S.Positive" to { DropdownMenuItemTight.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemTight.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemTight.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemTight.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemTight.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt deleted file mode 100644 index e0e21376c8..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.list.DropdownMenuListNormal -import com.sdds.plasma.giga.styles.list.L -import com.sdds.plasma.giga.styles.list.M -import com.sdds.plasma.giga.styles.list.S -import com.sdds.plasma.giga.styles.list.Xl -import com.sdds.plasma.giga.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListNormal.Xl.style() }, - "L" to { DropdownMenuListNormal.L.style() }, - "M" to { DropdownMenuListNormal.M.style() }, - "S" to { DropdownMenuListNormal.S.style() }, - "Xs" to { DropdownMenuListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListTightVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListTightVariationsCompose.kt deleted file mode 100644 index ef4a496231..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.list.DropdownMenuListTight -import com.sdds.plasma.giga.styles.list.L -import com.sdds.plasma.giga.styles.list.M -import com.sdds.plasma.giga.styles.list.S -import com.sdds.plasma.giga.styles.list.Xl -import com.sdds.plasma.giga.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListTight.Xl.style() }, - "L" to { DropdownMenuListTight.L.style() }, - "M" to { DropdownMenuListTight.M.style() }, - "S" to { DropdownMenuListTight.S.style() }, - "Xs" to { DropdownMenuListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuNormalVariationsCompose.kt deleted file mode 100644 index 72612205d1..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.plasma.giga.styles.dropdownmenu.L -import com.sdds.plasma.giga.styles.dropdownmenu.M -import com.sdds.plasma.giga.styles.dropdownmenu.S -import com.sdds.plasma.giga.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuNormal.Xl.style() }, - "L" to { DropdownMenuNormal.L.style() }, - "M" to { DropdownMenuNormal.M.style() }, - "S" to { DropdownMenuNormal.S.style() }, - "Xs" to { DropdownMenuNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuTightVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuTightVariationsCompose.kt deleted file mode 100644 index 9513feb156..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaDropdownMenuTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.dropdownmenu.DropdownMenuTight -import com.sdds.plasma.giga.styles.dropdownmenu.L -import com.sdds.plasma.giga.styles.dropdownmenu.M -import com.sdds.plasma.giga.styles.dropdownmenu.S -import com.sdds.plasma.giga.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaDropdownMenuTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuTight.Xl.style() }, - "L" to { DropdownMenuTight.L.style() }, - "M" to { DropdownMenuTight.M.style() }, - "S" to { DropdownMenuTight.S.style() }, - "Xs" to { DropdownMenuTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt deleted file mode 100644 index c278e87635..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chipgroup.Accent -import com.sdds.plasma.giga.styles.chipgroup.Default -import com.sdds.plasma.giga.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.styles.chipgroup.L -import com.sdds.plasma.giga.styles.chipgroup.M -import com.sdds.plasma.giga.styles.chipgroup.Negative -import com.sdds.plasma.giga.styles.chipgroup.Positive -import com.sdds.plasma.giga.styles.chipgroup.S -import com.sdds.plasma.giga.styles.chipgroup.Secondary -import com.sdds.plasma.giga.styles.chipgroup.Warning -import com.sdds.plasma.giga.styles.chipgroup.Xl -import com.sdds.plasma.giga.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupDense.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupDense.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupDense.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupDense.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupDense.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupDense.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupDense.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupDense.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupDense.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupDense.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupDense.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupDense.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupDense.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupDense.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupDense.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupDense.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupDense.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupDense.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupDense.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupDense.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupDense.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupDense.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupDense.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupDense.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupDense.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt deleted file mode 100644 index bfa378fe09..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chipgroup.Accent -import com.sdds.plasma.giga.styles.chipgroup.Default -import com.sdds.plasma.giga.styles.chipgroup.EmbeddedChipGroupWide -import com.sdds.plasma.giga.styles.chipgroup.L -import com.sdds.plasma.giga.styles.chipgroup.M -import com.sdds.plasma.giga.styles.chipgroup.Negative -import com.sdds.plasma.giga.styles.chipgroup.Positive -import com.sdds.plasma.giga.styles.chipgroup.S -import com.sdds.plasma.giga.styles.chipgroup.Secondary -import com.sdds.plasma.giga.styles.chipgroup.Warning -import com.sdds.plasma.giga.styles.chipgroup.Xl -import com.sdds.plasma.giga.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupWide.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupWide.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupWide.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupWide.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupWide.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupWide.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupWide.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupWide.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupWide.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupWide.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupWide.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupWide.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupWide.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupWide.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupWide.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupWide.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupWide.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupWide.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupWide.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupWide.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupWide.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupWide.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupWide.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupWide.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupWide.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipVariationsCompose.kt deleted file mode 100644 index 0ecb1193f0..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaEmbeddedChipVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.chip.Accent -import com.sdds.plasma.giga.styles.chip.Default -import com.sdds.plasma.giga.styles.chip.EmbeddedChip -import com.sdds.plasma.giga.styles.chip.L -import com.sdds.plasma.giga.styles.chip.M -import com.sdds.plasma.giga.styles.chip.Negative -import com.sdds.plasma.giga.styles.chip.Positive -import com.sdds.plasma.giga.styles.chip.S -import com.sdds.plasma.giga.styles.chip.Secondary -import com.sdds.plasma.giga.styles.chip.Warning -import com.sdds.plasma.giga.styles.chip.Xl -import com.sdds.plasma.giga.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaEmbeddedChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "Xl.Default" to { EmbeddedChip.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChip.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChip.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChip.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChip.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChip.Xl.Warning.style() }, - "L.Default" to { EmbeddedChip.L.Default.style() }, - "L.Accent" to { EmbeddedChip.L.Accent.style() }, - "L.Negative" to { EmbeddedChip.L.Negative.style() }, - "L.Positive" to { EmbeddedChip.L.Positive.style() }, - "L.Secondary" to { EmbeddedChip.L.Secondary.style() }, - "L.Warning" to { EmbeddedChip.L.Warning.style() }, - "M.Default" to { EmbeddedChip.M.Default.style() }, - "M.Accent" to { EmbeddedChip.M.Accent.style() }, - "M.Negative" to { EmbeddedChip.M.Negative.style() }, - "M.Positive" to { EmbeddedChip.M.Positive.style() }, - "M.Secondary" to { EmbeddedChip.M.Secondary.style() }, - "M.Warning" to { EmbeddedChip.M.Warning.style() }, - "S.Default" to { EmbeddedChip.S.Default.style() }, - "S.Accent" to { EmbeddedChip.S.Accent.style() }, - "S.Negative" to { EmbeddedChip.S.Negative.style() }, - "S.Positive" to { EmbeddedChip.S.Positive.style() }, - "S.Secondary" to { EmbeddedChip.S.Secondary.style() }, - "S.Warning" to { EmbeddedChip.S.Warning.style() }, - "Xs.Default" to { EmbeddedChip.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChip.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChip.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChip.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChip.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChip.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeClearVariationsCompose.kt deleted file mode 100644 index 244480a73e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.iconbadge.Accent -import com.sdds.plasma.giga.styles.iconbadge.Dark -import com.sdds.plasma.giga.styles.iconbadge.Default -import com.sdds.plasma.giga.styles.iconbadge.IconBadgeClear -import com.sdds.plasma.giga.styles.iconbadge.L -import com.sdds.plasma.giga.styles.iconbadge.Light -import com.sdds.plasma.giga.styles.iconbadge.M -import com.sdds.plasma.giga.styles.iconbadge.Negative -import com.sdds.plasma.giga.styles.iconbadge.Pilled -import com.sdds.plasma.giga.styles.iconbadge.Positive -import com.sdds.plasma.giga.styles.iconbadge.S -import com.sdds.plasma.giga.styles.iconbadge.Warning -import com.sdds.plasma.giga.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index 1aa4f24fc6..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.iconbadge.Accent -import com.sdds.plasma.giga.styles.iconbadge.Dark -import com.sdds.plasma.giga.styles.iconbadge.Default -import com.sdds.plasma.giga.styles.iconbadge.IconBadgeSolid -import com.sdds.plasma.giga.styles.iconbadge.L -import com.sdds.plasma.giga.styles.iconbadge.Light -import com.sdds.plasma.giga.styles.iconbadge.M -import com.sdds.plasma.giga.styles.iconbadge.Negative -import com.sdds.plasma.giga.styles.iconbadge.Pilled -import com.sdds.plasma.giga.styles.iconbadge.Positive -import com.sdds.plasma.giga.styles.iconbadge.S -import com.sdds.plasma.giga.styles.iconbadge.Warning -import com.sdds.plasma.giga.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 23d2f07597..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.iconbadge.Accent -import com.sdds.plasma.giga.styles.iconbadge.Dark -import com.sdds.plasma.giga.styles.iconbadge.Default -import com.sdds.plasma.giga.styles.iconbadge.IconBadgeTransparent -import com.sdds.plasma.giga.styles.iconbadge.L -import com.sdds.plasma.giga.styles.iconbadge.Light -import com.sdds.plasma.giga.styles.iconbadge.M -import com.sdds.plasma.giga.styles.iconbadge.Negative -import com.sdds.plasma.giga.styles.iconbadge.Pilled -import com.sdds.plasma.giga.styles.iconbadge.Positive -import com.sdds.plasma.giga.styles.iconbadge.S -import com.sdds.plasma.giga.styles.iconbadge.Warning -import com.sdds.plasma.giga.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonGroupVariationsCompose.kt deleted file mode 100644 index d9e95bc5a4..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.buttongroup.Default -import com.sdds.plasma.giga.styles.buttongroup.Dense -import com.sdds.plasma.giga.styles.buttongroup.IconButtonGroup -import com.sdds.plasma.giga.styles.buttongroup.L -import com.sdds.plasma.giga.styles.buttongroup.M -import com.sdds.plasma.giga.styles.buttongroup.NoGap -import com.sdds.plasma.giga.styles.buttongroup.Pilled -import com.sdds.plasma.giga.styles.buttongroup.S -import com.sdds.plasma.giga.styles.buttongroup.Segmented -import com.sdds.plasma.giga.styles.buttongroup.Wide -import com.sdds.plasma.giga.styles.buttongroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { IconButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { IconButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { IconButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { IconButtonGroup.S.Wide.Default.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { IconButtonGroup.S.Dense.Default.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { IconButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { IconButtonGroup.M.Wide.Default.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { IconButtonGroup.M.Dense.Default.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { IconButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { IconButtonGroup.L.Wide.Default.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { IconButtonGroup.L.Dense.Default.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { IconButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonVariationsCompose.kt deleted file mode 100644 index d0904dc736..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIconButtonVariationsCompose.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.iconbutton.Accent -import com.sdds.plasma.giga.styles.iconbutton.Black -import com.sdds.plasma.giga.styles.iconbutton.Clear -import com.sdds.plasma.giga.styles.iconbutton.Dark -import com.sdds.plasma.giga.styles.iconbutton.Default -import com.sdds.plasma.giga.styles.iconbutton.IconButton -import com.sdds.plasma.giga.styles.iconbutton.L -import com.sdds.plasma.giga.styles.iconbutton.M -import com.sdds.plasma.giga.styles.iconbutton.Negative -import com.sdds.plasma.giga.styles.iconbutton.Pilled -import com.sdds.plasma.giga.styles.iconbutton.Positive -import com.sdds.plasma.giga.styles.iconbutton.S -import com.sdds.plasma.giga.styles.iconbutton.Secondary -import com.sdds.plasma.giga.styles.iconbutton.Warning -import com.sdds.plasma.giga.styles.iconbutton.White -import com.sdds.plasma.giga.styles.iconbutton.Xl -import com.sdds.plasma.giga.styles.iconbutton.Xs -import com.sdds.plasma.giga.styles.iconbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { IconButton.Xl.Default.style() }, - "Xl.Secondary" to { IconButton.Xl.Secondary.style() }, - "Xl.Accent" to { IconButton.Xl.Accent.style() }, - "Xl.Positive" to { IconButton.Xl.Positive.style() }, - "Xl.Negative" to { IconButton.Xl.Negative.style() }, - "Xl.Warning" to { IconButton.Xl.Warning.style() }, - "Xl.Clear" to { IconButton.Xl.Clear.style() }, - "Xl.Dark" to { IconButton.Xl.Dark.style() }, - "Xl.Black" to { IconButton.Xl.Black.style() }, - "Xl.White" to { IconButton.Xl.White.style() }, - "Xl.Pilled.Default" to { IconButton.Xl.Pilled.Default.style() }, - "Xl.Pilled.Secondary" to { IconButton.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { IconButton.Xl.Pilled.Accent.style() }, - "Xl.Pilled.Positive" to { IconButton.Xl.Pilled.Positive.style() }, - "Xl.Pilled.Negative" to { IconButton.Xl.Pilled.Negative.style() }, - "Xl.Pilled.Warning" to { IconButton.Xl.Pilled.Warning.style() }, - "Xl.Pilled.Clear" to { IconButton.Xl.Pilled.Clear.style() }, - "Xl.Pilled.Dark" to { IconButton.Xl.Pilled.Dark.style() }, - "Xl.Pilled.Black" to { IconButton.Xl.Pilled.Black.style() }, - "Xl.Pilled.White" to { IconButton.Xl.Pilled.White.style() }, - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Positive" to { IconButton.L.Positive.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Black" to { IconButton.L.Black.style() }, - "L.White" to { IconButton.L.White.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { IconButton.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { IconButton.L.Pilled.Accent.style() }, - "L.Pilled.Positive" to { IconButton.L.Pilled.Positive.style() }, - "L.Pilled.Negative" to { IconButton.L.Pilled.Negative.style() }, - "L.Pilled.Warning" to { IconButton.L.Pilled.Warning.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "L.Pilled.Dark" to { IconButton.L.Pilled.Dark.style() }, - "L.Pilled.Black" to { IconButton.L.Pilled.Black.style() }, - "L.Pilled.White" to { IconButton.L.Pilled.White.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Positive" to { IconButton.M.Positive.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Black" to { IconButton.M.Black.style() }, - "M.White" to { IconButton.M.White.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { IconButton.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { IconButton.M.Pilled.Accent.style() }, - "M.Pilled.Positive" to { IconButton.M.Pilled.Positive.style() }, - "M.Pilled.Negative" to { IconButton.M.Pilled.Negative.style() }, - "M.Pilled.Warning" to { IconButton.M.Pilled.Warning.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "M.Pilled.Dark" to { IconButton.M.Pilled.Dark.style() }, - "M.Pilled.Black" to { IconButton.M.Pilled.Black.style() }, - "M.Pilled.White" to { IconButton.M.Pilled.White.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Positive" to { IconButton.S.Positive.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Black" to { IconButton.S.Black.style() }, - "S.White" to { IconButton.S.White.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { IconButton.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { IconButton.S.Pilled.Accent.style() }, - "S.Pilled.Positive" to { IconButton.S.Pilled.Positive.style() }, - "S.Pilled.Negative" to { IconButton.S.Pilled.Negative.style() }, - "S.Pilled.Warning" to { IconButton.S.Pilled.Warning.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "S.Pilled.Dark" to { IconButton.S.Pilled.Dark.style() }, - "S.Pilled.Black" to { IconButton.S.Pilled.Black.style() }, - "S.Pilled.White" to { IconButton.S.Pilled.White.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Positive" to { IconButton.Xs.Positive.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Black" to { IconButton.Xs.Black.style() }, - "Xs.White" to { IconButton.Xs.White.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { IconButton.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { IconButton.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Positive" to { IconButton.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Negative" to { IconButton.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Warning" to { IconButton.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - "Xs.Pilled.Dark" to { IconButton.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Black" to { IconButton.Xs.Pilled.Black.style() }, - "Xs.Pilled.White" to { IconButton.Xs.Pilled.White.style() }, - "Xxs.Default" to { IconButton.Xxs.Default.style() }, - "Xxs.Secondary" to { IconButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { IconButton.Xxs.Accent.style() }, - "Xxs.Positive" to { IconButton.Xxs.Positive.style() }, - "Xxs.Negative" to { IconButton.Xxs.Negative.style() }, - "Xxs.Warning" to { IconButton.Xxs.Warning.style() }, - "Xxs.Clear" to { IconButton.Xxs.Clear.style() }, - "Xxs.Dark" to { IconButton.Xxs.Dark.style() }, - "Xxs.Black" to { IconButton.Xxs.Black.style() }, - "Xxs.White" to { IconButton.Xxs.White.style() }, - "Xxs.Pilled.Default" to { IconButton.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { IconButton.Xxs.Pilled.Secondary.style() }, - "Xxs.Pilled.Accent" to { IconButton.Xxs.Pilled.Accent.style() }, - "Xxs.Pilled.Positive" to { IconButton.Xxs.Pilled.Positive.style() }, - "Xxs.Pilled.Negative" to { IconButton.Xxs.Pilled.Negative.style() }, - "Xxs.Pilled.Warning" to { IconButton.Xxs.Pilled.Warning.style() }, - "Xxs.Pilled.Clear" to { IconButton.Xxs.Pilled.Clear.style() }, - "Xxs.Pilled.Dark" to { IconButton.Xxs.Pilled.Dark.style() }, - "Xxs.Pilled.Black" to { IconButton.Xxs.Pilled.Black.style() }, - "Xxs.Pilled.White" to { IconButton.Xxs.Pilled.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaImageVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaImageVariationsCompose.kt deleted file mode 100644 index 0cc25d6840..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.image.Image -import com.sdds.plasma.giga.styles.image.Ratio16x9 -import com.sdds.plasma.giga.styles.image.Ratio1x1 -import com.sdds.plasma.giga.styles.image.Ratio1x2 -import com.sdds.plasma.giga.styles.image.Ratio2x1 -import com.sdds.plasma.giga.styles.image.Ratio3x4 -import com.sdds.plasma.giga.styles.image.Ratio4x3 -import com.sdds.plasma.giga.styles.image.Ratio9x16 -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIndicatorVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIndicatorVariationsCompose.kt deleted file mode 100644 index 174a8ccb29..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaIndicatorVariationsCompose.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.indicator.Accent -import com.sdds.plasma.giga.styles.indicator.Black -import com.sdds.plasma.giga.styles.indicator.Default -import com.sdds.plasma.giga.styles.indicator.Inactive -import com.sdds.plasma.giga.styles.indicator.Indicator -import com.sdds.plasma.giga.styles.indicator.L -import com.sdds.plasma.giga.styles.indicator.M -import com.sdds.plasma.giga.styles.indicator.Negative -import com.sdds.plasma.giga.styles.indicator.Positive -import com.sdds.plasma.giga.styles.indicator.S -import com.sdds.plasma.giga.styles.indicator.Warning -import com.sdds.plasma.giga.styles.indicator.White -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLinkButtonVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLinkButtonVariationsCompose.kt deleted file mode 100644 index 4f6df29bb2..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,61 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.linkbutton.Accent -import com.sdds.plasma.giga.styles.linkbutton.Default -import com.sdds.plasma.giga.styles.linkbutton.L -import com.sdds.plasma.giga.styles.linkbutton.LinkButton -import com.sdds.plasma.giga.styles.linkbutton.M -import com.sdds.plasma.giga.styles.linkbutton.Negative -import com.sdds.plasma.giga.styles.linkbutton.Positive -import com.sdds.plasma.giga.styles.linkbutton.S -import com.sdds.plasma.giga.styles.linkbutton.Secondary -import com.sdds.plasma.giga.styles.linkbutton.Warning -import com.sdds.plasma.giga.styles.linkbutton.Xl -import com.sdds.plasma.giga.styles.linkbutton.Xs -import com.sdds.plasma.giga.styles.linkbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { LinkButton.Xl.Default.style() }, - "Xl.Secondary" to { LinkButton.Xl.Secondary.style() }, - "Xl.Accent" to { LinkButton.Xl.Accent.style() }, - "Xl.Positive" to { LinkButton.Xl.Positive.style() }, - "Xl.Negative" to { LinkButton.Xl.Negative.style() }, - "Xl.Warning" to { LinkButton.Xl.Warning.style() }, - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - "Xxs.Default" to { LinkButton.Xxs.Default.style() }, - "Xxs.Secondary" to { LinkButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.Positive" to { LinkButton.Xxs.Positive.style() }, - "Xxs.Negative" to { LinkButton.Xxs.Negative.style() }, - "Xxs.Warning" to { LinkButton.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemNormalVariationsCompose.kt deleted file mode 100644 index 6576ef7241..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.listitem.L -import com.sdds.plasma.giga.styles.listitem.ListItemNormal -import com.sdds.plasma.giga.styles.listitem.M -import com.sdds.plasma.giga.styles.listitem.S -import com.sdds.plasma.giga.styles.listitem.Xl -import com.sdds.plasma.giga.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaListItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemNormal.Xl.style() }, - "L" to { ListItemNormal.L.style() }, - "M" to { ListItemNormal.M.style() }, - "S" to { ListItemNormal.S.style() }, - "Xs" to { ListItemNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemTightVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemTightVariationsCompose.kt deleted file mode 100644 index e7dca6b09e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListItemTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.listitem.L -import com.sdds.plasma.giga.styles.listitem.ListItemTight -import com.sdds.plasma.giga.styles.listitem.M -import com.sdds.plasma.giga.styles.listitem.S -import com.sdds.plasma.giga.styles.listitem.Xl -import com.sdds.plasma.giga.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaListItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemTight.Xl.style() }, - "L" to { ListItemTight.L.style() }, - "M" to { ListItemTight.M.style() }, - "S" to { ListItemTight.S.style() }, - "Xs" to { ListItemTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListNormalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListNormalVariationsCompose.kt deleted file mode 100644 index 93a90fd83a..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.list.L -import com.sdds.plasma.giga.styles.list.ListNormal -import com.sdds.plasma.giga.styles.list.M -import com.sdds.plasma.giga.styles.list.S -import com.sdds.plasma.giga.styles.list.Xl -import com.sdds.plasma.giga.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListNormal.Xl.style() }, - "L" to { ListNormal.L.style() }, - "M" to { ListNormal.M.style() }, - "S" to { ListNormal.S.style() }, - "Xs" to { ListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListTightVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListTightVariationsCompose.kt deleted file mode 100644 index 12221c191c..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.list.L -import com.sdds.plasma.giga.styles.list.ListTight -import com.sdds.plasma.giga.styles.list.M -import com.sdds.plasma.giga.styles.list.S -import com.sdds.plasma.giga.styles.list.Xl -import com.sdds.plasma.giga.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListTight.Xl.style() }, - "L" to { ListTight.L.style() }, - "M" to { ListTight.M.style() }, - "S" to { ListTight.S.style() }, - "Xs" to { ListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLoaderVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLoaderVariationsCompose.kt deleted file mode 100644 index 1227d43945..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.loader.Default -import com.sdds.plasma.giga.styles.loader.Loader -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalBottomSheetVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 17f2ec81ba..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.bottomsheet.Default -import com.sdds.plasma.giga.styles.bottomsheet.ModalBottomSheet -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalVariationsCompose.kt deleted file mode 100644 index a6077357c2..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.modal.Default -import com.sdds.plasma.giga.styles.modal.Modal -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationCompactVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationCompactVariationsCompose.kt deleted file mode 100644 index 1276188314..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.notification.L -import com.sdds.plasma.giga.styles.notification.M -import com.sdds.plasma.giga.styles.notification.NotificationCompact -import com.sdds.plasma.giga.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationContentVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationContentVariationsCompose.kt deleted file mode 100644 index 9cb491e0e4..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.notificationcontent.ButtonStretch -import com.sdds.plasma.giga.styles.notificationcontent.Default -import com.sdds.plasma.giga.styles.notificationcontent.IconStart -import com.sdds.plasma.giga.styles.notificationcontent.IconTop -import com.sdds.plasma.giga.styles.notificationcontent.Info -import com.sdds.plasma.giga.styles.notificationcontent.Negative -import com.sdds.plasma.giga.styles.notificationcontent.NoButtonStretch -import com.sdds.plasma.giga.styles.notificationcontent.NotificationContent -import com.sdds.plasma.giga.styles.notificationcontent.Positive -import com.sdds.plasma.giga.styles.notificationcontent.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationLooseVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationLooseVariationsCompose.kt deleted file mode 100644 index e0f5aa8a56..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.notification.L -import com.sdds.plasma.giga.styles.notification.M -import com.sdds.plasma.giga.styles.notification.NotificationLoose -import com.sdds.plasma.giga.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaOverlayVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaOverlayVariationsCompose.kt deleted file mode 100644 index 3085442b4f..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.overlay.Default -import com.sdds.plasma.giga.styles.overlay.Overlay -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaPopoverVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaPopoverVariationsCompose.kt deleted file mode 100644 index df93a76808..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.popover.Accent -import com.sdds.plasma.giga.styles.popover.Default -import com.sdds.plasma.giga.styles.popover.M -import com.sdds.plasma.giga.styles.popover.Popover -import com.sdds.plasma.giga.styles.popover.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaProgressBarVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaProgressBarVariationsCompose.kt deleted file mode 100644 index b98530598f..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaProgressBarVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.progressbar.Accent -import com.sdds.plasma.giga.styles.progressbar.Default -import com.sdds.plasma.giga.styles.progressbar.Gradient -import com.sdds.plasma.giga.styles.progressbar.Info -import com.sdds.plasma.giga.styles.progressbar.Negative -import com.sdds.plasma.giga.styles.progressbar.Positive -import com.sdds.plasma.giga.styles.progressbar.ProgressBar -import com.sdds.plasma.giga.styles.progressbar.Secondary -import com.sdds.plasma.giga.styles.progressbar.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Info" to { ProgressBar.Info.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index d9754da16a..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.radioboxgroup.M -import com.sdds.plasma.giga.styles.radioboxgroup.RadioBoxGroup -import com.sdds.plasma.giga.styles.radioboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxVariationsCompose.kt deleted file mode 100644 index b6b21fc8a6..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.radiobox.L -import com.sdds.plasma.giga.styles.radiobox.M -import com.sdds.plasma.giga.styles.radiobox.RadioBox -import com.sdds.plasma.giga.styles.radiobox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRectSkeletonVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRectSkeletonVariationsCompose.kt deleted file mode 100644 index 8f00c188b9..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.rectskeleton.Default -import com.sdds.plasma.giga.styles.rectskeleton.Lighter -import com.sdds.plasma.giga.styles.rectskeleton.RectSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Lighter" to { RectSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaScrollBarVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaScrollBarVariationsCompose.kt deleted file mode 100644 index 35613e9a77..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.scrollbar.M -import com.sdds.plasma.giga.styles.scrollbar.S -import com.sdds.plasma.giga.styles.scrollbar.ScrollBar -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentItemVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentItemVariationsCompose.kt deleted file mode 100644 index 34841b4221..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.segmentitem.Accent -import com.sdds.plasma.giga.styles.segmentitem.L -import com.sdds.plasma.giga.styles.segmentitem.M -import com.sdds.plasma.giga.styles.segmentitem.Pilled -import com.sdds.plasma.giga.styles.segmentitem.Primary -import com.sdds.plasma.giga.styles.segmentitem.S -import com.sdds.plasma.giga.styles.segmentitem.Secondary -import com.sdds.plasma.giga.styles.segmentitem.SegmentItem -import com.sdds.plasma.giga.styles.segmentitem.Xl -import com.sdds.plasma.giga.styles.segmentitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Xl.Primary" to { SegmentItem.Xl.Primary.style() }, - "Xl.Secondary" to { SegmentItem.Xl.Secondary.style() }, - "Xl.Accent" to { SegmentItem.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { SegmentItem.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { SegmentItem.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { SegmentItem.Xl.Pilled.Accent.style() }, - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Accent" to { SegmentItem.L.Accent.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { SegmentItem.L.Pilled.Accent.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Accent" to { SegmentItem.M.Accent.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { SegmentItem.M.Pilled.Accent.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Accent" to { SegmentItem.S.Accent.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { SegmentItem.S.Pilled.Accent.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Accent" to { SegmentItem.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { SegmentItem.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentVariationsCompose.kt deleted file mode 100644 index 75cb40ffc7..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSegmentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.segment.Accent -import com.sdds.plasma.giga.styles.segment.L -import com.sdds.plasma.giga.styles.segment.M -import com.sdds.plasma.giga.styles.segment.Pilled -import com.sdds.plasma.giga.styles.segment.Primary -import com.sdds.plasma.giga.styles.segment.S -import com.sdds.plasma.giga.styles.segment.Secondary -import com.sdds.plasma.giga.styles.segment.Segment -import com.sdds.plasma.giga.styles.segment.Xl -import com.sdds.plasma.giga.styles.segment.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Xl.Primary" to { Segment.Xl.Primary.style() }, - "Xl.Secondary" to { Segment.Xl.Secondary.style() }, - "Xl.Accent" to { Segment.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { Segment.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { Segment.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { Segment.Xl.Pilled.Accent.style() }, - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Accent" to { Segment.L.Accent.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { Segment.L.Pilled.Accent.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Accent" to { Segment.M.Accent.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { Segment.M.Pilled.Accent.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Accent" to { Segment.S.Accent.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { Segment.S.Pilled.Accent.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Accent" to { Segment.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { Segment.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSpinnerVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSpinnerVariationsCompose.kt deleted file mode 100644 index b516dfec0c..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSpinnerVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.spinner.Accent -import com.sdds.plasma.giga.styles.spinner.Default -import com.sdds.plasma.giga.styles.spinner.Info -import com.sdds.plasma.giga.styles.spinner.L -import com.sdds.plasma.giga.styles.spinner.M -import com.sdds.plasma.giga.styles.spinner.Negative -import com.sdds.plasma.giga.styles.spinner.Positive -import com.sdds.plasma.giga.styles.spinner.S -import com.sdds.plasma.giga.styles.spinner.Scalable -import com.sdds.plasma.giga.styles.spinner.Secondary -import com.sdds.plasma.giga.styles.spinner.Spinner -import com.sdds.plasma.giga.styles.spinner.Warning -import com.sdds.plasma.giga.styles.spinner.Xl -import com.sdds.plasma.giga.styles.spinner.Xs -import com.sdds.plasma.giga.styles.spinner.Xxl -import com.sdds.plasma.giga.styles.spinner.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "Xxl.Default" to { Spinner.Xxl.Default.style() }, - "Xxl.Secondary" to { Spinner.Xxl.Secondary.style() }, - "Xxl.Accent" to { Spinner.Xxl.Accent.style() }, - "Xxl.Positive" to { Spinner.Xxl.Positive.style() }, - "Xxl.Negative" to { Spinner.Xxl.Negative.style() }, - "Xxl.Warning" to { Spinner.Xxl.Warning.style() }, - "Xxl.Info" to { Spinner.Xxl.Info.style() }, - "Xl.Default" to { Spinner.Xl.Default.style() }, - "Xl.Secondary" to { Spinner.Xl.Secondary.style() }, - "Xl.Accent" to { Spinner.Xl.Accent.style() }, - "Xl.Positive" to { Spinner.Xl.Positive.style() }, - "Xl.Negative" to { Spinner.Xl.Negative.style() }, - "Xl.Warning" to { Spinner.Xl.Warning.style() }, - "Xl.Info" to { Spinner.Xl.Info.style() }, - "L.Default" to { Spinner.L.Default.style() }, - "L.Secondary" to { Spinner.L.Secondary.style() }, - "L.Accent" to { Spinner.L.Accent.style() }, - "L.Positive" to { Spinner.L.Positive.style() }, - "L.Negative" to { Spinner.L.Negative.style() }, - "L.Warning" to { Spinner.L.Warning.style() }, - "L.Info" to { Spinner.L.Info.style() }, - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSwitchVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSwitchVariationsCompose.kt deleted file mode 100644 index e03892a785..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.switcher.L -import com.sdds.plasma.giga.styles.switcher.M -import com.sdds.plasma.giga.styles.switcher.S -import com.sdds.plasma.giga.styles.switcher.Switch -import com.sdds.plasma.giga.styles.switcher.ToggleS -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarClearVariationsCompose.kt deleted file mode 100644 index 2cfcd94403..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.Divider -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Rounded -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarClear.M.Default.style() }, - "M.Secondary" to { TabBarClear.M.Secondary.style() }, - "M.Accent" to { TabBarClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarClear.L.Default.style() }, - "L.Secondary" to { TabBarClear.L.Secondary.style() }, - "L.Accent" to { TabBarClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt deleted file mode 100644 index 6e392d9819..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.Divider -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Rounded -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt deleted file mode 100644 index 3675e6494e..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.Divider -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Rounded -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandClearVariationsCompose.kt deleted file mode 100644 index 7c6b31c7e7..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarIslandClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarIslandClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt deleted file mode 100644 index 4763c5fa41..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarIslandHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt deleted file mode 100644 index d38d49f7e5..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarIslandHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandSolidVariationsCompose.kt deleted file mode 100644 index 3948726d93..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarIslandSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarIslandSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemClearVariationsCompose.kt deleted file mode 100644 index b80a29bc03..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbaritem.Accent -import com.sdds.plasma.giga.styles.tabbaritem.Default -import com.sdds.plasma.giga.styles.tabbaritem.L -import com.sdds.plasma.giga.styles.tabbaritem.Label -import com.sdds.plasma.giga.styles.tabbaritem.M -import com.sdds.plasma.giga.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.styles.tabbaritem.TabBarItemClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarItemClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemClear.M.Default.style() }, - "M.Accent" to { TabBarItemClear.M.Accent.style() }, - "M.Secondary" to { TabBarItemClear.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemClear.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemClear.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemClear.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemClear.L.Default.style() }, - "L.Accent" to { TabBarItemClear.L.Accent.style() }, - "L.Secondary" to { TabBarItemClear.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemClear.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemClear.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemClear.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemSolidVariationsCompose.kt deleted file mode 100644 index 482897c476..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarItemSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbaritem.Accent -import com.sdds.plasma.giga.styles.tabbaritem.Default -import com.sdds.plasma.giga.styles.tabbaritem.L -import com.sdds.plasma.giga.styles.tabbaritem.Label -import com.sdds.plasma.giga.styles.tabbaritem.M -import com.sdds.plasma.giga.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.styles.tabbaritem.TabBarItemSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarItemSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemSolid.M.Default.style() }, - "M.Accent" to { TabBarItemSolid.M.Accent.style() }, - "M.Secondary" to { TabBarItemSolid.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemSolid.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemSolid.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemSolid.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemSolid.L.Default.style() }, - "L.Accent" to { TabBarItemSolid.L.Accent.style() }, - "L.Secondary" to { TabBarItemSolid.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemSolid.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemSolid.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemSolid.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarSolidVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarSolidVariationsCompose.kt deleted file mode 100644 index d8daf41605..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTabBarSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tabbar.Accent -import com.sdds.plasma.giga.styles.tabbar.Default -import com.sdds.plasma.giga.styles.tabbar.Divider -import com.sdds.plasma.giga.styles.tabbar.L -import com.sdds.plasma.giga.styles.tabbar.M -import com.sdds.plasma.giga.styles.tabbar.Rounded -import com.sdds.plasma.giga.styles.tabbar.Secondary -import com.sdds.plasma.giga.styles.tabbar.Shadow -import com.sdds.plasma.giga.styles.tabbar.TabBarSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTabBarSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarSolid.M.Default.style() }, - "M.Secondary" to { TabBarSolid.M.Secondary.style() }, - "M.Accent" to { TabBarSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarSolid.L.Default.style() }, - "L.Secondary" to { TabBarSolid.L.Secondary.style() }, - "L.Accent" to { TabBarSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaClearVariationsCompose.kt deleted file mode 100644 index 5b277a6b9f..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.textarea.Default -import com.sdds.plasma.giga.styles.textarea.Error -import com.sdds.plasma.giga.styles.textarea.InnerLabel -import com.sdds.plasma.giga.styles.textarea.L -import com.sdds.plasma.giga.styles.textarea.M -import com.sdds.plasma.giga.styles.textarea.OuterLabel -import com.sdds.plasma.giga.styles.textarea.RequiredEnd -import com.sdds.plasma.giga.styles.textarea.RequiredStart -import com.sdds.plasma.giga.styles.textarea.S -import com.sdds.plasma.giga.styles.textarea.TextAreaClear -import com.sdds.plasma.giga.styles.textarea.Warning -import com.sdds.plasma.giga.styles.textarea.Xl -import com.sdds.plasma.giga.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Warning" to { TextAreaClear.Xs.Warning.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextAreaClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextAreaClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextAreaClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextAreaClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextAreaClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextAreaClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextAreaClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Warning" to { TextAreaClear.S.Warning.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextAreaClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextAreaClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextAreaClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextAreaClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextAreaClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextAreaClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextAreaClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextAreaClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextAreaClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextAreaClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Warning" to { TextAreaClear.M.Warning.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextAreaClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextAreaClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextAreaClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextAreaClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextAreaClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextAreaClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextAreaClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextAreaClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextAreaClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextAreaClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Warning" to { TextAreaClear.L.Warning.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextAreaClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextAreaClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextAreaClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextAreaClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextAreaClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextAreaClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextAreaClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextAreaClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextAreaClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextAreaClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextAreaClear.Xl.Default.style() }, - "Xl.Warning" to { TextAreaClear.Xl.Warning.style() }, - "Xl.Error" to { TextAreaClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextAreaClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextAreaClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextAreaClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextAreaClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextAreaClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextAreaClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextAreaClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextAreaClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextAreaClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextAreaClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextAreaClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextAreaClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaVariationsCompose.kt deleted file mode 100644 index 87604e1d49..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextAreaVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.textarea.Default -import com.sdds.plasma.giga.styles.textarea.Error -import com.sdds.plasma.giga.styles.textarea.InnerLabel -import com.sdds.plasma.giga.styles.textarea.L -import com.sdds.plasma.giga.styles.textarea.M -import com.sdds.plasma.giga.styles.textarea.OuterLabel -import com.sdds.plasma.giga.styles.textarea.RequiredEnd -import com.sdds.plasma.giga.styles.textarea.RequiredStart -import com.sdds.plasma.giga.styles.textarea.S -import com.sdds.plasma.giga.styles.textarea.TextArea -import com.sdds.plasma.giga.styles.textarea.Warning -import com.sdds.plasma.giga.styles.textarea.Xl -import com.sdds.plasma.giga.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Warning" to { TextArea.Xs.Warning.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextArea.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextArea.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextArea.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextArea.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextArea.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextArea.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextArea.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Warning" to { TextArea.S.Warning.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.RequiredStart.Default" to { TextArea.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextArea.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextArea.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextArea.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextArea.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextArea.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextArea.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextArea.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextArea.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextArea.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextArea.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextArea.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Warning" to { TextArea.M.Warning.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.RequiredStart.Default" to { TextArea.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextArea.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextArea.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextArea.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextArea.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextArea.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextArea.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextArea.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextArea.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextArea.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextArea.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextArea.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextArea.L.Default.style() }, - "L.Warning" to { TextArea.L.Warning.style() }, - "L.Error" to { TextArea.L.Error.style() }, - "L.RequiredStart.Default" to { TextArea.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextArea.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextArea.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextArea.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextArea.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextArea.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextArea.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextArea.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextArea.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextArea.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextArea.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextArea.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextArea.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextArea.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextArea.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextArea.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextArea.Xl.Default.style() }, - "Xl.Warning" to { TextArea.Xl.Warning.style() }, - "Xl.Error" to { TextArea.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextArea.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextArea.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextArea.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextArea.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextArea.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextArea.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextArea.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextArea.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextArea.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextArea.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextArea.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextArea.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldClearVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldClearVariationsCompose.kt deleted file mode 100644 index d319673bae..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.textfield.Default -import com.sdds.plasma.giga.styles.textfield.Error -import com.sdds.plasma.giga.styles.textfield.InnerLabel -import com.sdds.plasma.giga.styles.textfield.L -import com.sdds.plasma.giga.styles.textfield.M -import com.sdds.plasma.giga.styles.textfield.OuterLabel -import com.sdds.plasma.giga.styles.textfield.RequiredEnd -import com.sdds.plasma.giga.styles.textfield.RequiredStart -import com.sdds.plasma.giga.styles.textfield.S -import com.sdds.plasma.giga.styles.textfield.Success -import com.sdds.plasma.giga.styles.textfield.TextFieldClear -import com.sdds.plasma.giga.styles.textfield.Warning -import com.sdds.plasma.giga.styles.textfield.Xl -import com.sdds.plasma.giga.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Success" to { TextFieldClear.Xs.Success.style() }, - "Xs.Warning" to { TextFieldClear.Xs.Warning.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextFieldClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextFieldClear.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextFieldClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextFieldClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextFieldClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextFieldClear.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextFieldClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextFieldClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextFieldClear.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextFieldClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Success" to { TextFieldClear.S.Success.style() }, - "S.Warning" to { TextFieldClear.S.Warning.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextFieldClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextFieldClear.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextFieldClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextFieldClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextFieldClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextFieldClear.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextFieldClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextFieldClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextFieldClear.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextFieldClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextFieldClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextFieldClear.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextFieldClear.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextFieldClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextFieldClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextFieldClear.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Success" to { TextFieldClear.M.Success.style() }, - "M.Warning" to { TextFieldClear.M.Warning.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextFieldClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextFieldClear.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextFieldClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextFieldClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextFieldClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextFieldClear.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextFieldClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextFieldClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextFieldClear.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextFieldClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextFieldClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextFieldClear.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextFieldClear.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextFieldClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextFieldClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextFieldClear.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Success" to { TextFieldClear.L.Success.style() }, - "L.Warning" to { TextFieldClear.L.Warning.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextFieldClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextFieldClear.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextFieldClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextFieldClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextFieldClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextFieldClear.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextFieldClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextFieldClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextFieldClear.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextFieldClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextFieldClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextFieldClear.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextFieldClear.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextFieldClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextFieldClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextFieldClear.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextFieldClear.Xl.Default.style() }, - "Xl.Success" to { TextFieldClear.Xl.Success.style() }, - "Xl.Warning" to { TextFieldClear.Xl.Warning.style() }, - "Xl.Error" to { TextFieldClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextFieldClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextFieldClear.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextFieldClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextFieldClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextFieldClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextFieldClear.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextFieldClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextFieldClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextFieldClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextFieldClear.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextFieldClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextFieldClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextFieldClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextFieldClear.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextFieldClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextFieldClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldVariationsCompose.kt deleted file mode 100644 index 935240e16c..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextFieldVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.textfield.Default -import com.sdds.plasma.giga.styles.textfield.Error -import com.sdds.plasma.giga.styles.textfield.InnerLabel -import com.sdds.plasma.giga.styles.textfield.L -import com.sdds.plasma.giga.styles.textfield.M -import com.sdds.plasma.giga.styles.textfield.OuterLabel -import com.sdds.plasma.giga.styles.textfield.RequiredEnd -import com.sdds.plasma.giga.styles.textfield.RequiredStart -import com.sdds.plasma.giga.styles.textfield.S -import com.sdds.plasma.giga.styles.textfield.Success -import com.sdds.plasma.giga.styles.textfield.TextField -import com.sdds.plasma.giga.styles.textfield.Warning -import com.sdds.plasma.giga.styles.textfield.Xl -import com.sdds.plasma.giga.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Success" to { TextField.Xs.Success.style() }, - "Xs.Warning" to { TextField.Xs.Warning.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextField.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextField.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextField.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextField.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextField.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextField.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextField.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextField.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextField.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextField.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextField.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextField.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextField.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Success" to { TextField.S.Success.style() }, - "S.Warning" to { TextField.S.Warning.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextField.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextField.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextField.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextField.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextField.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextField.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextField.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextField.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextField.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextField.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextField.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextField.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextField.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextField.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextField.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextField.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextField.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextField.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Success" to { TextField.M.Success.style() }, - "M.Warning" to { TextField.M.Warning.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextField.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextField.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextField.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextField.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextField.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextField.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextField.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextField.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextField.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextField.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextField.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextField.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextField.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextField.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextField.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextField.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextField.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextField.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Success" to { TextField.L.Success.style() }, - "L.Warning" to { TextField.L.Warning.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextField.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextField.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextField.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextField.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextField.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextField.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextField.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextField.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextField.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextField.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextField.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextField.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextField.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextField.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextField.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextField.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextField.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextField.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextField.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextField.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextField.Xl.Default.style() }, - "Xl.Success" to { TextField.Xl.Success.style() }, - "Xl.Warning" to { TextField.Xl.Warning.style() }, - "Xl.Error" to { TextField.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextField.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextField.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextField.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextField.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextField.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextField.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextField.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextField.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextField.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextField.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextField.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextField.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextField.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextField.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextField.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextField.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextField.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextField.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextField.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextField.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextField.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextField.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextSkeletonVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextSkeletonVariationsCompose.kt deleted file mode 100644 index 87cc91af96..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.textskeleton.Default -import com.sdds.plasma.giga.styles.textskeleton.Lighter -import com.sdds.plasma.giga.styles.textskeleton.TextSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - "Lighter" to { TextSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToastVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToastVariationsCompose.kt deleted file mode 100644 index e7ef5e79a4..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToastVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.toast.Default -import com.sdds.plasma.giga.styles.toast.Negative -import com.sdds.plasma.giga.styles.toast.Pilled -import com.sdds.plasma.giga.styles.toast.Positive -import com.sdds.plasma.giga.styles.toast.Rounded -import com.sdds.plasma.giga.styles.toast.Toast -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Rounded.Default" to { Toast.Rounded.Default.style() }, - "Rounded.Positive" to { Toast.Rounded.Positive.style() }, - "Rounded.Negative" to { Toast.Rounded.Negative.style() }, - "Pilled.Default" to { Toast.Pilled.Default.style() }, - "Pilled.Positive" to { Toast.Pilled.Positive.style() }, - "Pilled.Negative" to { Toast.Pilled.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarHorizontalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarHorizontalVariationsCompose.kt deleted file mode 100644 index d5f66777fb..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarHorizontalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.toolbar.HasShadow -import com.sdds.plasma.giga.styles.toolbar.L -import com.sdds.plasma.giga.styles.toolbar.M -import com.sdds.plasma.giga.styles.toolbar.S -import com.sdds.plasma.giga.styles.toolbar.ToolBarHorizontal -import com.sdds.plasma.giga.styles.toolbar.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaToolBarHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarHorizontal.L.style() }, - "L.HasShadow" to { ToolBarHorizontal.L.HasShadow.style() }, - "M" to { ToolBarHorizontal.M.style() }, - "M.HasShadow" to { ToolBarHorizontal.M.HasShadow.style() }, - "S" to { ToolBarHorizontal.S.style() }, - "S.HasShadow" to { ToolBarHorizontal.S.HasShadow.style() }, - "Xs" to { ToolBarHorizontal.Xs.style() }, - "Xs.HasShadow" to { ToolBarHorizontal.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarVerticalVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarVerticalVariationsCompose.kt deleted file mode 100644 index aecf8e0932..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaToolBarVerticalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.toolbar.HasShadow -import com.sdds.plasma.giga.styles.toolbar.L -import com.sdds.plasma.giga.styles.toolbar.M -import com.sdds.plasma.giga.styles.toolbar.S -import com.sdds.plasma.giga.styles.toolbar.ToolBarVertical -import com.sdds.plasma.giga.styles.toolbar.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaToolBarVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarVertical.L.style() }, - "L.HasShadow" to { ToolBarVertical.L.HasShadow.style() }, - "M" to { ToolBarVertical.M.style() }, - "M.HasShadow" to { ToolBarVertical.M.HasShadow.style() }, - "S" to { ToolBarVertical.S.style() }, - "S.HasShadow" to { ToolBarVertical.S.HasShadow.style() }, - "Xs" to { ToolBarVertical.Xs.style() }, - "Xs.HasShadow" to { ToolBarVertical.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTooltipVariationsCompose.kt b/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTooltipVariationsCompose.kt deleted file mode 100644 index b09278c216..0000000000 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.styles.tooltip.M -import com.sdds.plasma.giga.styles.tooltip.S -import com.sdds.plasma.giga.styles.tooltip.Tooltip -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaGigaTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/build.gradle.kts b/playground/sandbox-plasma-homeds-integration/build.gradle.kts deleted file mode 100644 index 1a7c7439c2..0000000000 --- a/playground/sandbox-plasma-homeds-integration/build.gradle.kts +++ /dev/null @@ -1,22 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") -} - -android { - namespace = "com.sdds.playground.sandbox.plasma.homeds.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:plasma.homeds.compose") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-plasma-homeds-integration/gradle.properties b/playground/sandbox-plasma-homeds-integration/gradle.properties deleted file mode 100644 index c10bde607d..0000000000 --- a/playground/sandbox-plasma-homeds-integration/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -integration.compose.config-path=../tokens/plasma.homeds.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.plasma.homeds.integration.compose \ No newline at end of file diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/PlasmaHomeDsThemeWrapper.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/PlasmaHomeDsThemeWrapper.kt deleted file mode 100644 index 7152486fde..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/PlasmaHomeDsThemeWrapper.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.plasma.homeds.theme.PlasmaHomeDsTheme -import com.sdds.plasma.homeds.theme.darkPlasmaHomeDsColors -import com.sdds.plasma.homeds.theme.darkPlasmaHomeDsGradients -import com.sdds.plasma.homeds.theme.lightPlasmaHomeDsColors -import com.sdds.plasma.homeds.theme.lightPlasmaHomeDsGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun PlasmaHomeDsThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - PlasmaHomeDsTheme( - colors = if (isDark) darkPlasmaHomeDsColors() else lightPlasmaHomeDsColors(), - gradients = if (isDark) darkPlasmaHomeDsGradients() else lightPlasmaHomeDsGradients(), - ) { - content() - } -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarGroupVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarGroupVariationsCompose.kt deleted file mode 100644 index b4420337c7..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.avatargroup.AvatarGroup -import com.sdds.plasma.homeds.styles.avatargroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarVariationsCompose.kt deleted file mode 100644 index f27027369e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsAvatarVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.avatar.Avatar -import com.sdds.plasma.homeds.styles.avatar.L -import com.sdds.plasma.homeds.styles.avatar.M -import com.sdds.plasma.homeds.styles.avatar.Pilled -import com.sdds.plasma.homeds.styles.avatar.S -import com.sdds.plasma.homeds.styles.avatar.Xxl -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "Xxl.Pilled" to { Avatar.Xxl.Pilled.style() }, - "L" to { Avatar.L.style() }, - "L.Pilled" to { Avatar.L.Pilled.style() }, - "M" to { Avatar.M.style() }, - "M.Pilled" to { Avatar.M.Pilled.style() }, - "S" to { Avatar.S.style() }, - "S.Pilled" to { Avatar.S.Pilled.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeClearVariationsCompose.kt deleted file mode 100644 index f90a4387a7..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.badge.Accent -import com.sdds.plasma.homeds.styles.badge.BadgeClear -import com.sdds.plasma.homeds.styles.badge.Dark -import com.sdds.plasma.homeds.styles.badge.Default -import com.sdds.plasma.homeds.styles.badge.L -import com.sdds.plasma.homeds.styles.badge.Light -import com.sdds.plasma.homeds.styles.badge.M -import com.sdds.plasma.homeds.styles.badge.Negative -import com.sdds.plasma.homeds.styles.badge.Pilled -import com.sdds.plasma.homeds.styles.badge.Positive -import com.sdds.plasma.homeds.styles.badge.S -import com.sdds.plasma.homeds.styles.badge.Warning -import com.sdds.plasma.homeds.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeSolidVariationsCompose.kt deleted file mode 100644 index fd91c05ccd..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.badge.Accent -import com.sdds.plasma.homeds.styles.badge.BadgeSolid -import com.sdds.plasma.homeds.styles.badge.Dark -import com.sdds.plasma.homeds.styles.badge.Default -import com.sdds.plasma.homeds.styles.badge.L -import com.sdds.plasma.homeds.styles.badge.Light -import com.sdds.plasma.homeds.styles.badge.M -import com.sdds.plasma.homeds.styles.badge.Negative -import com.sdds.plasma.homeds.styles.badge.Pilled -import com.sdds.plasma.homeds.styles.badge.Positive -import com.sdds.plasma.homeds.styles.badge.S -import com.sdds.plasma.homeds.styles.badge.Warning -import com.sdds.plasma.homeds.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeTransparentVariationsCompose.kt deleted file mode 100644 index e30a368735..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.badge.Accent -import com.sdds.plasma.homeds.styles.badge.BadgeTransparent -import com.sdds.plasma.homeds.styles.badge.Dark -import com.sdds.plasma.homeds.styles.badge.Default -import com.sdds.plasma.homeds.styles.badge.L -import com.sdds.plasma.homeds.styles.badge.Light -import com.sdds.plasma.homeds.styles.badge.M -import com.sdds.plasma.homeds.styles.badge.Negative -import com.sdds.plasma.homeds.styles.badge.Pilled -import com.sdds.plasma.homeds.styles.badge.Positive -import com.sdds.plasma.homeds.styles.badge.S -import com.sdds.plasma.homeds.styles.badge.Warning -import com.sdds.plasma.homeds.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index ae633337dc..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,51 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.homeds.styles.buttongroup.Default -import com.sdds.plasma.homeds.styles.buttongroup.Dense -import com.sdds.plasma.homeds.styles.buttongroup.M -import com.sdds.plasma.homeds.styles.buttongroup.NoGap -import com.sdds.plasma.homeds.styles.buttongroup.S -import com.sdds.plasma.homeds.styles.buttongroup.Segmented -import com.sdds.plasma.homeds.styles.buttongroup.Wide -import com.sdds.plasma.homeds.styles.buttongroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonVariationsCompose.kt deleted file mode 100644 index 946ce6a5f2..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,44 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.basicbutton.Accent -import com.sdds.plasma.homeds.styles.basicbutton.BasicButton -import com.sdds.plasma.homeds.styles.basicbutton.Clear -import com.sdds.plasma.homeds.styles.basicbutton.Dark -import com.sdds.plasma.homeds.styles.basicbutton.Default -import com.sdds.plasma.homeds.styles.basicbutton.M -import com.sdds.plasma.homeds.styles.basicbutton.Negative -import com.sdds.plasma.homeds.styles.basicbutton.S -import com.sdds.plasma.homeds.styles.basicbutton.Secondary -import com.sdds.plasma.homeds.styles.basicbutton.Warning -import com.sdds.plasma.homeds.styles.basicbutton.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCardVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCardVariationsCompose.kt deleted file mode 100644 index 92dc9395b8..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCardVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.card.Card -import com.sdds.plasma.homeds.styles.card.HasInnerPaddings -import com.sdds.plasma.homeds.styles.card.L -import com.sdds.plasma.homeds.styles.card.M -import com.sdds.plasma.homeds.styles.card.S -import com.sdds.plasma.homeds.styles.card.Xl -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCardVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "Xl" to { Card.Xl.style() }, - "Xl.HasInnerPaddings" to { Card.Xl.HasInnerPaddings.style() }, - "L" to { Card.L.style() }, - "L.HasInnerPaddings" to { Card.L.HasInnerPaddings.style() }, - "M" to { Card.M.style() }, - "M.HasInnerPaddings" to { Card.M.HasInnerPaddings.style() }, - "S" to { Card.S.style() }, - "S.HasInnerPaddings" to { Card.S.HasInnerPaddings.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCellVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCellVariationsCompose.kt deleted file mode 100644 index 8fe0ed14d5..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.cell.Cell -import com.sdds.plasma.homeds.styles.cell.L -import com.sdds.plasma.homeds.styles.cell.M -import com.sdds.plasma.homeds.styles.cell.S -import com.sdds.plasma.homeds.styles.cell.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index df32a41da1..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.checkboxgroup.CheckBoxGroup -import com.sdds.plasma.homeds.styles.checkboxgroup.L -import com.sdds.plasma.homeds.styles.checkboxgroup.M -import com.sdds.plasma.homeds.styles.checkboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "L" to { CheckBoxGroup.L.style() }, - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxVariationsCompose.kt deleted file mode 100644 index 421dba5080..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.checkbox.CheckBox -import com.sdds.plasma.homeds.styles.checkbox.Default -import com.sdds.plasma.homeds.styles.checkbox.L -import com.sdds.plasma.homeds.styles.checkbox.M -import com.sdds.plasma.homeds.styles.checkbox.Negative -import com.sdds.plasma.homeds.styles.checkbox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 9cd8f97f0c..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.chipgroup.ChipGroupDense -import com.sdds.plasma.homeds.styles.chipgroup.Default -import com.sdds.plasma.homeds.styles.chipgroup.L -import com.sdds.plasma.homeds.styles.chipgroup.M -import com.sdds.plasma.homeds.styles.chipgroup.Pilled -import com.sdds.plasma.homeds.styles.chipgroup.S -import com.sdds.plasma.homeds.styles.chipgroup.Secondary -import com.sdds.plasma.homeds.styles.chipgroup.Xs -import com.sdds.plasma.homeds.styles.chipgroup.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xxs.Default" to { ChipGroupDense.Xxs.Default.style() }, - "Xxs.Secondary" to { ChipGroupDense.Xxs.Secondary.style() }, - "Xxs.Pilled.Default" to { ChipGroupDense.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { ChipGroupDense.Xxs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupWideVariationsCompose.kt deleted file mode 100644 index c8e604fb0c..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.chipgroup.ChipGroupWide -import com.sdds.plasma.homeds.styles.chipgroup.Default -import com.sdds.plasma.homeds.styles.chipgroup.L -import com.sdds.plasma.homeds.styles.chipgroup.M -import com.sdds.plasma.homeds.styles.chipgroup.Pilled -import com.sdds.plasma.homeds.styles.chipgroup.S -import com.sdds.plasma.homeds.styles.chipgroup.Secondary -import com.sdds.plasma.homeds.styles.chipgroup.Xs -import com.sdds.plasma.homeds.styles.chipgroup.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xxs.Default" to { ChipGroupWide.Xxs.Default.style() }, - "Xxs.Secondary" to { ChipGroupWide.Xxs.Secondary.style() }, - "Xxs.Pilled.Default" to { ChipGroupWide.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { ChipGroupWide.Xxs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipVariationsCompose.kt deleted file mode 100644 index 08da598007..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsChipVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.chip.Chip -import com.sdds.plasma.homeds.styles.chip.Default -import com.sdds.plasma.homeds.styles.chip.L -import com.sdds.plasma.homeds.styles.chip.M -import com.sdds.plasma.homeds.styles.chip.Pilled -import com.sdds.plasma.homeds.styles.chip.S -import com.sdds.plasma.homeds.styles.chip.Secondary -import com.sdds.plasma.homeds.styles.chip.Xs -import com.sdds.plasma.homeds.styles.chip.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xxs.Default" to { Chip.Xxs.Default.style() }, - "Xxs.Secondary" to { Chip.Xxs.Secondary.style() }, - "Xxs.Pilled.Default" to { Chip.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { Chip.Xxs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCircularProgressBarVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCircularProgressBarVariationsCompose.kt deleted file mode 100644 index f88c190fb5..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.circularprogressbar.Accent -import com.sdds.plasma.homeds.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.homeds.styles.circularprogressbar.Default -import com.sdds.plasma.homeds.styles.circularprogressbar.Gradient -import com.sdds.plasma.homeds.styles.circularprogressbar.Info -import com.sdds.plasma.homeds.styles.circularprogressbar.L -import com.sdds.plasma.homeds.styles.circularprogressbar.M -import com.sdds.plasma.homeds.styles.circularprogressbar.Negative -import com.sdds.plasma.homeds.styles.circularprogressbar.Positive -import com.sdds.plasma.homeds.styles.circularprogressbar.S -import com.sdds.plasma.homeds.styles.circularprogressbar.Secondary -import com.sdds.plasma.homeds.styles.circularprogressbar.Warning -import com.sdds.plasma.homeds.styles.circularprogressbar.Xl -import com.sdds.plasma.homeds.styles.circularprogressbar.Xs -import com.sdds.plasma.homeds.styles.circularprogressbar.Xxl -import com.sdds.plasma.homeds.styles.circularprogressbar.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index 84bc377388..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.collapsingnavigationbar.CollapsingNavigationBarInternalPage -import com.sdds.plasma.homeds.styles.collapsingnavigationbar.Default -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCollapsingNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map CollapsingNavigationBarStyle> = - mapOf( - "Default" to { CollapsingNavigationBarInternalPage.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index fa4727a581..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCollapsingNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.collapsingnavigationbar.CollapsingNavigationBarMainPage -import com.sdds.plasma.homeds.styles.collapsingnavigationbar.Default -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCollapsingNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map CollapsingNavigationBarStyle> = - mapOf( - "Default" to { CollapsingNavigationBarMainPage.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsComposeComponents.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsComposeComponents.kt deleted file mode 100644 index d45ceee6ba..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsComposeComponents.kt +++ /dev/null @@ -1,281 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent - -/** - * Компоненты - */ -object PlasmaHomedsComposeComponents : ComponentsProviderCompose() { - - override val generated: Map> = - listOf( - ComposeComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to PlasmaHomedsAvatarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to PlasmaHomedsAvatarGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Badge, - mapOf( - "BadgeClear" to PlasmaHomedsBadgeClearVariationsCompose, - "BadgeSolid" to PlasmaHomedsBadgeSolidVariationsCompose, - "BadgeTransparent" to PlasmaHomedsBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeClear" to PlasmaHomedsIconBadgeClearVariationsCompose, - "IconBadgeSolid" to PlasmaHomedsIconBadgeSolidVariationsCompose, - "IconBadgeTransparent" to PlasmaHomedsIconBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to PlasmaHomedsCheckBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBoxGroup, - mapOf( - "CheckBoxGroup" to PlasmaHomedsCheckBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to PlasmaHomedsRadioBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to PlasmaHomedsRadioBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Switch, - mapOf( - "Switch" to PlasmaHomedsSwitchVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TabBar, - mapOf( - "TabBar" to PlasmaHomedsTabBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TabBarItem, - mapOf( - "TabBarItem" to PlasmaHomedsTabBarItemVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.NavigationBar, - mapOf( - "NavigationBarMainPage" to PlasmaHomedsNavigationBarMainPageVariationsCompose, - "NavigationBarInternalPage" to PlasmaHomedsNavigationBarInternalPageVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CollapsingNavigationBar, - mapOf( - "CollapsingNavigationBarMainPage" to PlasmaHomedsCollapsingNavigationBarMainPageVariationsCompose, - "CollapsingNavigationBarInternalPage" to PlasmaHomedsCollapsingNavigationBarInternalPageVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to PlasmaHomedsBasicButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to PlasmaHomedsIconButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to PlasmaHomedsBasicButtonGroupVariationsCompose, - "IconButtonGroup" to PlasmaHomedsIconButtonGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Card, - mapOf( - "Card" to PlasmaHomedsCardVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Cell, - mapOf( - "Cell" to PlasmaHomedsCellVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CircularProgressBar, - mapOf( - "CircularProgressBar" to PlasmaHomedsCircularProgressBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Chip, - mapOf( - "Chip" to PlasmaHomedsChipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to PlasmaHomedsChipGroupDenseVariationsCompose, - "ChipGroupWide" to PlasmaHomedsChipGroupWideVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Counter, - mapOf( - "Counter" to PlasmaHomedsCounterVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Divider, - mapOf( - "Divider" to PlasmaHomedsDividerVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to PlasmaHomedsIndicatorVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Image, - mapOf( - "Image" to PlasmaHomedsImageVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.List, - mapOf( - "List" to PlasmaHomedsListVariationsCompose, - "ListNumbered" to PlasmaHomedsListNumberedVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ListItem, - mapOf( - "ListItem" to PlasmaHomedsListItemVariationsCompose, - "ListNumberedItem" to PlasmaHomedsListNumberedItemVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Loader, - mapOf( - "Loader" to PlasmaHomedsLoaderVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Overlay, - mapOf( - "Overlay" to PlasmaHomedsOverlayVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Spinner, - mapOf( - "Spinner" to PlasmaHomedsSpinnerVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextField, - mapOf( - "TextField" to PlasmaHomedsTextFieldVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to PlasmaHomedsTooltipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Wheel, - mapOf( - "Wheel" to PlasmaHomedsWheelVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Note, - mapOf( - "Note" to PlasmaHomedsNoteVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.NoteCompact, - mapOf( - "NoteCompact" to PlasmaHomedsNoteCompactVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Toast, - mapOf( - "Toast" to PlasmaHomedsToastVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.LinkButton, - mapOf( - "LinkButton" to PlasmaHomedsLinkButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BottomSheet, - mapOf( - "ModalBottomSheet" to PlasmaHomedsModalBottomSheetVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to PlasmaHomedsRectSkeletonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeletonBody" to PlasmaHomedsTextSkeletonBodyVariationsCompose, - "TextSkeletonDisplay" to PlasmaHomedsTextSkeletonDisplayVariationsCompose, - "TextSkeletonHeader" to PlasmaHomedsTextSkeletonHeaderVariationsCompose, - "TextSkeletonText" to PlasmaHomedsTextSkeletonTextVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.FormItem, - mapOf( - "FormItem" to PlasmaHomedsFormItemVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Editable, - mapOf( - "Editable" to PlasmaHomedsEditableVariationsCompose, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCounterVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCounterVariationsCompose.kt deleted file mode 100644 index ae82dee4cd..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsCounterVariationsCompose.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.counter.Accent -import com.sdds.plasma.homeds.styles.counter.Black -import com.sdds.plasma.homeds.styles.counter.Counter -import com.sdds.plasma.homeds.styles.counter.Default -import com.sdds.plasma.homeds.styles.counter.L -import com.sdds.plasma.homeds.styles.counter.M -import com.sdds.plasma.homeds.styles.counter.Negative -import com.sdds.plasma.homeds.styles.counter.Positive -import com.sdds.plasma.homeds.styles.counter.S -import com.sdds.plasma.homeds.styles.counter.Secondary -import com.sdds.plasma.homeds.styles.counter.Warning -import com.sdds.plasma.homeds.styles.counter.White -import com.sdds.plasma.homeds.styles.counter.Xs -import com.sdds.plasma.homeds.styles.counter.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Secondary" to { Counter.L.Secondary.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Secondary" to { Counter.M.Secondary.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Secondary" to { Counter.S.Secondary.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Secondary" to { Counter.Xs.Secondary.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Secondary" to { Counter.Xxs.Secondary.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsDividerVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsDividerVariationsCompose.kt deleted file mode 100644 index 176f26cf83..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.divider.Default -import com.sdds.plasma.homeds.styles.divider.Divider -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsEditableVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsEditableVariationsCompose.kt deleted file mode 100644 index 5aa3971337..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsEditableVariationsCompose.kt +++ /dev/null @@ -1,35 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.EditableStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.editable.BodyL -import com.sdds.plasma.homeds.styles.editable.BodyM -import com.sdds.plasma.homeds.styles.editable.BodyS -import com.sdds.plasma.homeds.styles.editable.BodyXs -import com.sdds.plasma.homeds.styles.editable.BodyXxs -import com.sdds.plasma.homeds.styles.editable.Editable -import com.sdds.plasma.homeds.styles.editable.H1 -import com.sdds.plasma.homeds.styles.editable.H2 -import com.sdds.plasma.homeds.styles.editable.H3 -import com.sdds.plasma.homeds.styles.editable.H4 -import com.sdds.plasma.homeds.styles.editable.H5 -import com.sdds.plasma.homeds.styles.editable.H6 -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsEditableVariationsCompose : ComposeStyleProvider() { - override val variations: Map EditableStyle> = - mapOf( - "H1" to { Editable.H1.style() }, - "H2" to { Editable.H2.style() }, - "H3" to { Editable.H3.style() }, - "H4" to { Editable.H4.style() }, - "H5" to { Editable.H5.style() }, - "H6" to { Editable.H6.style() }, - "BodyL" to { Editable.BodyL.style() }, - "BodyM" to { Editable.BodyM.style() }, - "BodyS" to { Editable.BodyS.style() }, - "BodyXs" to { Editable.BodyXs.style() }, - "BodyXxs" to { Editable.BodyXxs.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsFormItemVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsFormItemVariationsCompose.kt deleted file mode 100644 index f776e3c31e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsFormItemVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FormItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.formitem.Default -import com.sdds.plasma.homeds.styles.formitem.FormItem -import com.sdds.plasma.homeds.styles.formitem.Negative -import com.sdds.plasma.homeds.styles.formitem.Positive -import com.sdds.plasma.homeds.styles.formitem.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsFormItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map FormItemStyle> = - mapOf( - "Default" to { FormItem.Default.style() }, - "Positive" to { FormItem.Positive.style() }, - "Negative" to { FormItem.Negative.style() }, - "Warning" to { FormItem.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeClearVariationsCompose.kt deleted file mode 100644 index fb83745e74..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.iconbadge.Accent -import com.sdds.plasma.homeds.styles.iconbadge.Dark -import com.sdds.plasma.homeds.styles.iconbadge.Default -import com.sdds.plasma.homeds.styles.iconbadge.IconBadgeClear -import com.sdds.plasma.homeds.styles.iconbadge.L -import com.sdds.plasma.homeds.styles.iconbadge.Light -import com.sdds.plasma.homeds.styles.iconbadge.M -import com.sdds.plasma.homeds.styles.iconbadge.Negative -import com.sdds.plasma.homeds.styles.iconbadge.Pilled -import com.sdds.plasma.homeds.styles.iconbadge.Positive -import com.sdds.plasma.homeds.styles.iconbadge.S -import com.sdds.plasma.homeds.styles.iconbadge.Warning -import com.sdds.plasma.homeds.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index 256d766a3f..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.iconbadge.Accent -import com.sdds.plasma.homeds.styles.iconbadge.Dark -import com.sdds.plasma.homeds.styles.iconbadge.Default -import com.sdds.plasma.homeds.styles.iconbadge.IconBadgeSolid -import com.sdds.plasma.homeds.styles.iconbadge.L -import com.sdds.plasma.homeds.styles.iconbadge.Light -import com.sdds.plasma.homeds.styles.iconbadge.M -import com.sdds.plasma.homeds.styles.iconbadge.Negative -import com.sdds.plasma.homeds.styles.iconbadge.Pilled -import com.sdds.plasma.homeds.styles.iconbadge.Positive -import com.sdds.plasma.homeds.styles.iconbadge.S -import com.sdds.plasma.homeds.styles.iconbadge.Warning -import com.sdds.plasma.homeds.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 02e6f60c56..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.iconbadge.Accent -import com.sdds.plasma.homeds.styles.iconbadge.Dark -import com.sdds.plasma.homeds.styles.iconbadge.Default -import com.sdds.plasma.homeds.styles.iconbadge.IconBadgeTransparent -import com.sdds.plasma.homeds.styles.iconbadge.L -import com.sdds.plasma.homeds.styles.iconbadge.Light -import com.sdds.plasma.homeds.styles.iconbadge.M -import com.sdds.plasma.homeds.styles.iconbadge.Negative -import com.sdds.plasma.homeds.styles.iconbadge.Pilled -import com.sdds.plasma.homeds.styles.iconbadge.Positive -import com.sdds.plasma.homeds.styles.iconbadge.S -import com.sdds.plasma.homeds.styles.iconbadge.Warning -import com.sdds.plasma.homeds.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonGroupVariationsCompose.kt deleted file mode 100644 index c05dbc369a..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.buttongroup.Dense -import com.sdds.plasma.homeds.styles.buttongroup.IconButtonGroup -import com.sdds.plasma.homeds.styles.buttongroup.L -import com.sdds.plasma.homeds.styles.buttongroup.M -import com.sdds.plasma.homeds.styles.buttongroup.NoGap -import com.sdds.plasma.homeds.styles.buttongroup.Pilled -import com.sdds.plasma.homeds.styles.buttongroup.S -import com.sdds.plasma.homeds.styles.buttongroup.Segmented -import com.sdds.plasma.homeds.styles.buttongroup.Wide -import com.sdds.plasma.homeds.styles.buttongroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonVariationsCompose.kt deleted file mode 100644 index 0dd83da892..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIconButtonVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.iconbutton.Accent -import com.sdds.plasma.homeds.styles.iconbutton.Clear -import com.sdds.plasma.homeds.styles.iconbutton.Dark -import com.sdds.plasma.homeds.styles.iconbutton.Default -import com.sdds.plasma.homeds.styles.iconbutton.IconButton -import com.sdds.plasma.homeds.styles.iconbutton.L -import com.sdds.plasma.homeds.styles.iconbutton.M -import com.sdds.plasma.homeds.styles.iconbutton.Negative -import com.sdds.plasma.homeds.styles.iconbutton.S -import com.sdds.plasma.homeds.styles.iconbutton.Secondary -import com.sdds.plasma.homeds.styles.iconbutton.Warning -import com.sdds.plasma.homeds.styles.iconbutton.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsImageVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsImageVariationsCompose.kt deleted file mode 100644 index 98d8e6766e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.image.Image -import com.sdds.plasma.homeds.styles.image.Ratio16x9 -import com.sdds.plasma.homeds.styles.image.Ratio1x1 -import com.sdds.plasma.homeds.styles.image.Ratio1x2 -import com.sdds.plasma.homeds.styles.image.Ratio2x1 -import com.sdds.plasma.homeds.styles.image.Ratio3x4 -import com.sdds.plasma.homeds.styles.image.Ratio4x3 -import com.sdds.plasma.homeds.styles.image.Ratio9x16 -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIndicatorVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIndicatorVariationsCompose.kt deleted file mode 100644 index ca0bf345d6..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsIndicatorVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.indicator.Accent -import com.sdds.plasma.homeds.styles.indicator.Black -import com.sdds.plasma.homeds.styles.indicator.Dark -import com.sdds.plasma.homeds.styles.indicator.Default -import com.sdds.plasma.homeds.styles.indicator.Inactive -import com.sdds.plasma.homeds.styles.indicator.Indicator -import com.sdds.plasma.homeds.styles.indicator.L -import com.sdds.plasma.homeds.styles.indicator.M -import com.sdds.plasma.homeds.styles.indicator.Negative -import com.sdds.plasma.homeds.styles.indicator.Positive -import com.sdds.plasma.homeds.styles.indicator.S -import com.sdds.plasma.homeds.styles.indicator.Warning -import com.sdds.plasma.homeds.styles.indicator.White -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Dark" to { Indicator.L.Dark.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Dark" to { Indicator.M.Dark.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Dark" to { Indicator.S.Dark.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLinkButtonVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLinkButtonVariationsCompose.kt deleted file mode 100644 index 762efd6b2a..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.linkbutton.Accent -import com.sdds.plasma.homeds.styles.linkbutton.Default -import com.sdds.plasma.homeds.styles.linkbutton.Info -import com.sdds.plasma.homeds.styles.linkbutton.L -import com.sdds.plasma.homeds.styles.linkbutton.LinkButton -import com.sdds.plasma.homeds.styles.linkbutton.M -import com.sdds.plasma.homeds.styles.linkbutton.Negative -import com.sdds.plasma.homeds.styles.linkbutton.Positive -import com.sdds.plasma.homeds.styles.linkbutton.S -import com.sdds.plasma.homeds.styles.linkbutton.Secondary -import com.sdds.plasma.homeds.styles.linkbutton.Warning -import com.sdds.plasma.homeds.styles.linkbutton.Xl -import com.sdds.plasma.homeds.styles.linkbutton.Xs -import com.sdds.plasma.homeds.styles.linkbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { LinkButton.Xl.Default.style() }, - "Xl.Secondary" to { LinkButton.Xl.Secondary.style() }, - "Xl.Accent" to { LinkButton.Xl.Accent.style() }, - "Xl.Positive" to { LinkButton.Xl.Positive.style() }, - "Xl.Negative" to { LinkButton.Xl.Negative.style() }, - "Xl.Warning" to { LinkButton.Xl.Warning.style() }, - "Xl.Info" to { LinkButton.Xl.Info.style() }, - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "L.Info" to { LinkButton.L.Info.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "M.Info" to { LinkButton.M.Info.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "S.Info" to { LinkButton.S.Info.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - "Xs.Info" to { LinkButton.Xs.Info.style() }, - "Xxs.Default" to { LinkButton.Xxs.Default.style() }, - "Xxs.Secondary" to { LinkButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.Positive" to { LinkButton.Xxs.Positive.style() }, - "Xxs.Negative" to { LinkButton.Xxs.Negative.style() }, - "Xxs.Warning" to { LinkButton.Xxs.Warning.style() }, - "Xxs.Info" to { LinkButton.Xxs.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListItemVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListItemVariationsCompose.kt deleted file mode 100644 index c573a2a312..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListItemVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.listitem.HasBackground -import com.sdds.plasma.homeds.styles.listitem.ListItem -import com.sdds.plasma.homeds.styles.listitem.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsListItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "S" to { ListItem.S.style() }, - "S.HasBackground" to { ListItem.S.HasBackground.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedItemVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedItemVariationsCompose.kt deleted file mode 100644 index 5ecc762c0a..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedItemVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.listitem.ListNumberedItem -import com.sdds.plasma.homeds.styles.listitem.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsListNumberedItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "S" to { ListNumberedItem.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedVariationsCompose.kt deleted file mode 100644 index 7a5ed4c680..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListNumberedVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.list.ListNumbered -import com.sdds.plasma.homeds.styles.list.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsListNumberedVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "S" to { ListNumbered.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListVariationsCompose.kt deleted file mode 100644 index b92b740998..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsListVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.list.HasBackground -import com.sdds.plasma.homeds.styles.list.HasItemBackground -import com.sdds.plasma.homeds.styles.list.List -import com.sdds.plasma.homeds.styles.list.NoBackground -import com.sdds.plasma.homeds.styles.list.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsListVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "S" to { List.S.style() }, - "S.NoBackground" to { List.S.NoBackground.style() }, - "S.NoBackground.HasItemBackground" to { List.S.NoBackground.HasItemBackground.style() }, - "S.HasBackground" to { List.S.HasBackground.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLoaderVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLoaderVariationsCompose.kt deleted file mode 100644 index ee8f4c72ea..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.loader.Default -import com.sdds.plasma.homeds.styles.loader.Loader -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsModalBottomSheetVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 9ef1752eac..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.bottomsheet.Default -import com.sdds.plasma.homeds.styles.bottomsheet.ModalBottomSheet -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index 604f0a25db..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.navigationbar.Default -import com.sdds.plasma.homeds.styles.navigationbar.NavigationBarInternalPage -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "Default" to { NavigationBarInternalPage.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index 47278a5a03..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.navigationbar.Default -import com.sdds.plasma.homeds.styles.navigationbar.NavigationBarMainPage -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "Default" to { NavigationBarMainPage.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteCompactVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteCompactVariationsCompose.kt deleted file mode 100644 index 789001d147..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteCompactVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NoteCompactStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.notecompact.ContentBeforeFixed -import com.sdds.plasma.homeds.styles.notecompact.ContentBeforeScalable -import com.sdds.plasma.homeds.styles.notecompact.Default -import com.sdds.plasma.homeds.styles.notecompact.HasClose -import com.sdds.plasma.homeds.styles.notecompact.Info -import com.sdds.plasma.homeds.styles.notecompact.Negative -import com.sdds.plasma.homeds.styles.notecompact.NoteCompact -import com.sdds.plasma.homeds.styles.notecompact.Positive -import com.sdds.plasma.homeds.styles.notecompact.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsNoteCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NoteCompactStyle> = - mapOf( - "ContentBeforeFixed.Default" to { NoteCompact.ContentBeforeFixed.Default.style() }, - "ContentBeforeFixed.Positive" to { NoteCompact.ContentBeforeFixed.Positive.style() }, - "ContentBeforeFixed.Negative" to { NoteCompact.ContentBeforeFixed.Negative.style() }, - "ContentBeforeFixed.Warning" to { NoteCompact.ContentBeforeFixed.Warning.style() }, - "ContentBeforeFixed.Info" to { NoteCompact.ContentBeforeFixed.Info.style() }, - "ContentBeforeFixed.HasClose.Default" to { NoteCompact.ContentBeforeFixed.HasClose.Default.style() }, - "ContentBeforeFixed.HasClose.Positive" to { NoteCompact.ContentBeforeFixed.HasClose.Positive.style() }, - "ContentBeforeFixed.HasClose.Negative" to { NoteCompact.ContentBeforeFixed.HasClose.Negative.style() }, - "ContentBeforeFixed.HasClose.Warning" to { NoteCompact.ContentBeforeFixed.HasClose.Warning.style() }, - "ContentBeforeFixed.HasClose.Info" to { NoteCompact.ContentBeforeFixed.HasClose.Info.style() }, - "ContentBeforeScalable.Default" to { NoteCompact.ContentBeforeScalable.Default.style() }, - "ContentBeforeScalable.Positive" to { NoteCompact.ContentBeforeScalable.Positive.style() }, - "ContentBeforeScalable.Negative" to { NoteCompact.ContentBeforeScalable.Negative.style() }, - "ContentBeforeScalable.Warning" to { NoteCompact.ContentBeforeScalable.Warning.style() }, - "ContentBeforeScalable.Info" to { NoteCompact.ContentBeforeScalable.Info.style() }, - "ContentBeforeScalable.HasClose.Default" to { NoteCompact.ContentBeforeScalable.HasClose.Default.style() }, - "ContentBeforeScalable.HasClose.Positive" to { NoteCompact.ContentBeforeScalable.HasClose.Positive.style() }, - "ContentBeforeScalable.HasClose.Negative" to { NoteCompact.ContentBeforeScalable.HasClose.Negative.style() }, - "ContentBeforeScalable.HasClose.Warning" to { NoteCompact.ContentBeforeScalable.HasClose.Warning.style() }, - "ContentBeforeScalable.HasClose.Info" to { NoteCompact.ContentBeforeScalable.HasClose.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteVariationsCompose.kt deleted file mode 100644 index 6402d25b8b..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsNoteVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NoteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.note.ContentBeforeFixed -import com.sdds.plasma.homeds.styles.note.ContentBeforeScalable -import com.sdds.plasma.homeds.styles.note.Default -import com.sdds.plasma.homeds.styles.note.HasClose -import com.sdds.plasma.homeds.styles.note.Info -import com.sdds.plasma.homeds.styles.note.Negative -import com.sdds.plasma.homeds.styles.note.Note -import com.sdds.plasma.homeds.styles.note.Positive -import com.sdds.plasma.homeds.styles.note.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsNoteVariationsCompose : ComposeStyleProvider() { - override val variations: Map NoteStyle> = - mapOf( - "ContentBeforeScalable.Default" to { Note.ContentBeforeScalable.Default.style() }, - "ContentBeforeScalable.Positive" to { Note.ContentBeforeScalable.Positive.style() }, - "ContentBeforeScalable.Negative" to { Note.ContentBeforeScalable.Negative.style() }, - "ContentBeforeScalable.Warning" to { Note.ContentBeforeScalable.Warning.style() }, - "ContentBeforeScalable.Info" to { Note.ContentBeforeScalable.Info.style() }, - "ContentBeforeScalable.HasClose.Default" to { Note.ContentBeforeScalable.HasClose.Default.style() }, - "ContentBeforeScalable.HasClose.Positive" to { Note.ContentBeforeScalable.HasClose.Positive.style() }, - "ContentBeforeScalable.HasClose.Negative" to { Note.ContentBeforeScalable.HasClose.Negative.style() }, - "ContentBeforeScalable.HasClose.Warning" to { Note.ContentBeforeScalable.HasClose.Warning.style() }, - "ContentBeforeScalable.HasClose.Info" to { Note.ContentBeforeScalable.HasClose.Info.style() }, - "ContentBeforeFixed.Default" to { Note.ContentBeforeFixed.Default.style() }, - "ContentBeforeFixed.Positive" to { Note.ContentBeforeFixed.Positive.style() }, - "ContentBeforeFixed.Negative" to { Note.ContentBeforeFixed.Negative.style() }, - "ContentBeforeFixed.Warning" to { Note.ContentBeforeFixed.Warning.style() }, - "ContentBeforeFixed.Info" to { Note.ContentBeforeFixed.Info.style() }, - "ContentBeforeFixed.HasClose.Default" to { Note.ContentBeforeFixed.HasClose.Default.style() }, - "ContentBeforeFixed.HasClose.Positive" to { Note.ContentBeforeFixed.HasClose.Positive.style() }, - "ContentBeforeFixed.HasClose.Negative" to { Note.ContentBeforeFixed.HasClose.Negative.style() }, - "ContentBeforeFixed.HasClose.Warning" to { Note.ContentBeforeFixed.HasClose.Warning.style() }, - "ContentBeforeFixed.HasClose.Info" to { Note.ContentBeforeFixed.HasClose.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsOverlayVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsOverlayVariationsCompose.kt deleted file mode 100644 index 11bdd89e6e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsOverlayVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.overlay.Default -import com.sdds.plasma.homeds.styles.overlay.DirectionBottom -import com.sdds.plasma.homeds.styles.overlay.DirectionTop -import com.sdds.plasma.homeds.styles.overlay.Overlay -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - "DirectionTop" to { Overlay.DirectionTop.style() }, - "DirectionBottom" to { Overlay.DirectionBottom.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index b0b29587ec..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.radioboxgroup.M -import com.sdds.plasma.homeds.styles.radioboxgroup.RadioBoxGroup -import com.sdds.plasma.homeds.styles.radioboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxVariationsCompose.kt deleted file mode 100644 index 736a84edd5..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.radiobox.L -import com.sdds.plasma.homeds.styles.radiobox.M -import com.sdds.plasma.homeds.styles.radiobox.RadioBox -import com.sdds.plasma.homeds.styles.radiobox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRectSkeletonVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRectSkeletonVariationsCompose.kt deleted file mode 100644 index cd213a4d1e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.rectskeleton.Default -import com.sdds.plasma.homeds.styles.rectskeleton.RectSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSpinnerVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSpinnerVariationsCompose.kt deleted file mode 100644 index 6abf23887f..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSpinnerVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.spinner.Accent -import com.sdds.plasma.homeds.styles.spinner.Default -import com.sdds.plasma.homeds.styles.spinner.Info -import com.sdds.plasma.homeds.styles.spinner.M -import com.sdds.plasma.homeds.styles.spinner.Negative -import com.sdds.plasma.homeds.styles.spinner.Positive -import com.sdds.plasma.homeds.styles.spinner.S -import com.sdds.plasma.homeds.styles.spinner.Scalable -import com.sdds.plasma.homeds.styles.spinner.Secondary -import com.sdds.plasma.homeds.styles.spinner.Spinner -import com.sdds.plasma.homeds.styles.spinner.Warning -import com.sdds.plasma.homeds.styles.spinner.Xs -import com.sdds.plasma.homeds.styles.spinner.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSwitchVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSwitchVariationsCompose.kt deleted file mode 100644 index a17cda2570..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.switcher.L -import com.sdds.plasma.homeds.styles.switcher.M -import com.sdds.plasma.homeds.styles.switcher.S -import com.sdds.plasma.homeds.styles.switcher.Switch -import com.sdds.plasma.homeds.styles.switcher.ToggleS -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarItemVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarItemVariationsCompose.kt deleted file mode 100644 index 2439db992c..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarItemVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.tabbaritem.Default -import com.sdds.plasma.homeds.styles.tabbaritem.TabBarItem -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTabBarItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "Default" to { TabBarItem.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarVariationsCompose.kt deleted file mode 100644 index 35c336303d..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTabBarVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.tabbar.Default -import com.sdds.plasma.homeds.styles.tabbar.TabBar -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTabBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "Default" to { TabBar.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextFieldVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextFieldVariationsCompose.kt deleted file mode 100644 index 596ea5aa8b..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextFieldVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textfield.Default -import com.sdds.plasma.homeds.styles.textfield.Error -import com.sdds.plasma.homeds.styles.textfield.InnerLabel -import com.sdds.plasma.homeds.styles.textfield.L -import com.sdds.plasma.homeds.styles.textfield.M -import com.sdds.plasma.homeds.styles.textfield.RequiredEnd -import com.sdds.plasma.homeds.styles.textfield.RequiredStart -import com.sdds.plasma.homeds.styles.textfield.S -import com.sdds.plasma.homeds.styles.textfield.TextField -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "S.Default" to { TextField.S.Default.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonBodyVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonBodyVariationsCompose.kt deleted file mode 100644 index 36403783ae..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonBodyVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textskeleton.L -import com.sdds.plasma.homeds.styles.textskeleton.M -import com.sdds.plasma.homeds.styles.textskeleton.S -import com.sdds.plasma.homeds.styles.textskeleton.TextSkeletonBody -import com.sdds.plasma.homeds.styles.textskeleton.Xs -import com.sdds.plasma.homeds.styles.textskeleton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextSkeletonBodyVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonBody.L.style() }, - "M" to { TextSkeletonBody.M.style() }, - "S" to { TextSkeletonBody.S.style() }, - "Xs" to { TextSkeletonBody.Xs.style() }, - "Xxs" to { TextSkeletonBody.Xxs.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonDisplayVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonDisplayVariationsCompose.kt deleted file mode 100644 index 64688f31e7..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonDisplayVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textskeleton.L -import com.sdds.plasma.homeds.styles.textskeleton.M -import com.sdds.plasma.homeds.styles.textskeleton.S -import com.sdds.plasma.homeds.styles.textskeleton.TextSkeletonDisplay -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextSkeletonDisplayVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonDisplay.L.style() }, - "M" to { TextSkeletonDisplay.M.style() }, - "S" to { TextSkeletonDisplay.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonHeaderVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonHeaderVariationsCompose.kt deleted file mode 100644 index eab7169151..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonHeaderVariationsCompose.kt +++ /dev/null @@ -1,25 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textskeleton.H1 -import com.sdds.plasma.homeds.styles.textskeleton.H2 -import com.sdds.plasma.homeds.styles.textskeleton.H3 -import com.sdds.plasma.homeds.styles.textskeleton.H4 -import com.sdds.plasma.homeds.styles.textskeleton.H5 -import com.sdds.plasma.homeds.styles.textskeleton.H6 -import com.sdds.plasma.homeds.styles.textskeleton.TextSkeletonHeader -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextSkeletonHeaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "H1" to { TextSkeletonHeader.H1.style() }, - "H2" to { TextSkeletonHeader.H2.style() }, - "H3" to { TextSkeletonHeader.H3.style() }, - "H4" to { TextSkeletonHeader.H4.style() }, - "H5" to { TextSkeletonHeader.H5.style() }, - "H6" to { TextSkeletonHeader.H6.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonTextVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonTextVariationsCompose.kt deleted file mode 100644 index c89d24b55f..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonTextVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textskeleton.L -import com.sdds.plasma.homeds.styles.textskeleton.M -import com.sdds.plasma.homeds.styles.textskeleton.S -import com.sdds.plasma.homeds.styles.textskeleton.TextSkeletonText -import com.sdds.plasma.homeds.styles.textskeleton.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextSkeletonTextVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonText.L.style() }, - "M" to { TextSkeletonText.M.style() }, - "S" to { TextSkeletonText.S.style() }, - "Xs" to { TextSkeletonText.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonVariationsCompose.kt deleted file mode 100644 index 6f471eee5e..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.textskeleton.Default -import com.sdds.plasma.homeds.styles.textskeleton.TextSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsToastVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsToastVariationsCompose.kt deleted file mode 100644 index 48a415f431..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsToastVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.toast.Default -import com.sdds.plasma.homeds.styles.toast.Negative -import com.sdds.plasma.homeds.styles.toast.Positive -import com.sdds.plasma.homeds.styles.toast.Toast -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Default" to { Toast.Default.style() }, - "Positive" to { Toast.Positive.style() }, - "Negative" to { Toast.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTooltipVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTooltipVariationsCompose.kt deleted file mode 100644 index 2b215f3a1d..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.tooltip.M -import com.sdds.plasma.homeds.styles.tooltip.S -import com.sdds.plasma.homeds.styles.tooltip.Tooltip -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsWheelVariationsCompose.kt b/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsWheelVariationsCompose.kt deleted file mode 100644 index ad276498e3..0000000000 --- a/playground/sandbox-plasma-homeds-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/homeds/integration/compose/PlasmaHomedsWheelVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.homeds.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.WheelStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.homeds.styles.wheel.CenterAlign -import com.sdds.plasma.homeds.styles.wheel.H1 -import com.sdds.plasma.homeds.styles.wheel.LeftAlign -import com.sdds.plasma.homeds.styles.wheel.MixedAlign -import com.sdds.plasma.homeds.styles.wheel.RightAlign -import com.sdds.plasma.homeds.styles.wheel.Wheel -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaHomedsWheelVariationsCompose : ComposeStyleProvider() { - override val variations: Map WheelStyle> = - mapOf( - "H1" to { Wheel.H1.style() }, - "H1.RightAlign" to { Wheel.H1.RightAlign.style() }, - "H1.CenterAlign" to { Wheel.H1.CenterAlign.style() }, - "H1.LeftAlign" to { Wheel.H1.LeftAlign.style() }, - "H1.MixedAlign" to { Wheel.H1.MixedAlign.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/build.gradle.kts b/playground/sandbox-plasma-sd-service-integration/build.gradle.kts deleted file mode 100644 index a3210c0b5d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/build.gradle.kts +++ /dev/null @@ -1,24 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") - id("convention.integration-view") -} - -android { - namespace = "com.sdds.playground.sandbox.plasma.sd.service.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:plasma.sd.service.compose") - implementation("tokens:plasma.sd.service.view") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-plasma-sd-service-integration/gradle.properties b/playground/sandbox-plasma-sd-service-integration/gradle.properties deleted file mode 100644 index 2a06d3fdea..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/gradle.properties +++ /dev/null @@ -1,5 +0,0 @@ -integration.compose.config-path=../tokens/plasma.sd.service.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -integration.view.config-path=../tokens/plasma.sd.service.view/config-info-view-system.json -integration.view.package-name=com.sdds.playground.sandbox.plasma.sd.service.integration.view \ No newline at end of file diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/PlasmaSdServiceThemeWrapper.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/PlasmaSdServiceThemeWrapper.kt deleted file mode 100644 index 66e18bc2f1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/PlasmaSdServiceThemeWrapper.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalOverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.list.ListNormal -import com.sdds.plasma.sd.service.styles.list.M -import com.sdds.plasma.sd.service.styles.overlay.Default -import com.sdds.plasma.sd.service.styles.overlay.Overlay -import com.sdds.plasma.sd.service.theme.PlasmaSdServiceTheme -import com.sdds.plasma.sd.service.theme.darkPlasmaSdServiceColors -import com.sdds.plasma.sd.service.theme.darkPlasmaSdServiceGradients -import com.sdds.plasma.sd.service.theme.lightPlasmaSdServiceColors -import com.sdds.plasma.sd.service.theme.lightPlasmaSdServiceGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun PlasmaSdServiceThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - PlasmaSdServiceTheme( - colors = if (isDark) darkPlasmaSdServiceColors() else lightPlasmaSdServiceColors(), - gradients = if (isDark) darkPlasmaSdServiceGradients() else lightPlasmaSdServiceGradients(), - ) { - CompositionLocalProvider( - LocalOverlayStyle provides Overlay.Default.style(), - LocalListStyle provides ListNormal.M.style(), - ) { - content() - } - } -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionEndVariationsCompose.kt deleted file mode 100644 index 1d577cc513..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordion.AccordionClearActionEnd -import com.sdds.plasma.sd.service.styles.accordion.H2 -import com.sdds.plasma.sd.service.styles.accordion.H3 -import com.sdds.plasma.sd.service.styles.accordion.H4 -import com.sdds.plasma.sd.service.styles.accordion.H5 -import com.sdds.plasma.sd.service.styles.accordion.L -import com.sdds.plasma.sd.service.styles.accordion.M -import com.sdds.plasma.sd.service.styles.accordion.S -import com.sdds.plasma.sd.service.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionEnd.Xs.style() }, - "S" to { AccordionClearActionEnd.S.style() }, - "M" to { AccordionClearActionEnd.M.style() }, - "L" to { AccordionClearActionEnd.L.style() }, - "H2" to { AccordionClearActionEnd.H2.style() }, - "H3" to { AccordionClearActionEnd.H3.style() }, - "H4" to { AccordionClearActionEnd.H4.style() }, - "H5" to { AccordionClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionStartVariationsCompose.kt deleted file mode 100644 index 19cf5a756a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordion.AccordionClearActionStart -import com.sdds.plasma.sd.service.styles.accordion.H2 -import com.sdds.plasma.sd.service.styles.accordion.H3 -import com.sdds.plasma.sd.service.styles.accordion.H4 -import com.sdds.plasma.sd.service.styles.accordion.H5 -import com.sdds.plasma.sd.service.styles.accordion.L -import com.sdds.plasma.sd.service.styles.accordion.M -import com.sdds.plasma.sd.service.styles.accordion.S -import com.sdds.plasma.sd.service.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionStart.Xs.style() }, - "S" to { AccordionClearActionStart.S.style() }, - "M" to { AccordionClearActionStart.M.style() }, - "L" to { AccordionClearActionStart.L.style() }, - "H2" to { AccordionClearActionStart.H2.style() }, - "H3" to { AccordionClearActionStart.H3.style() }, - "H4" to { AccordionClearActionStart.H4.style() }, - "H5" to { AccordionClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt deleted file mode 100644 index c5f56eddbe..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.plasma.sd.service.styles.accordionitem.H2 -import com.sdds.plasma.sd.service.styles.accordionitem.H3 -import com.sdds.plasma.sd.service.styles.accordionitem.H4 -import com.sdds.plasma.sd.service.styles.accordionitem.H5 -import com.sdds.plasma.sd.service.styles.accordionitem.L -import com.sdds.plasma.sd.service.styles.accordionitem.M -import com.sdds.plasma.sd.service.styles.accordionitem.S -import com.sdds.plasma.sd.service.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionEnd.Xs.style() }, - "S" to { AccordionItemClearActionEnd.S.style() }, - "M" to { AccordionItemClearActionEnd.M.style() }, - "L" to { AccordionItemClearActionEnd.L.style() }, - "H2" to { AccordionItemClearActionEnd.H2.style() }, - "H3" to { AccordionItemClearActionEnd.H3.style() }, - "H4" to { AccordionItemClearActionEnd.H4.style() }, - "H5" to { AccordionItemClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt deleted file mode 100644 index cf69ed3c5c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.plasma.sd.service.styles.accordionitem.H2 -import com.sdds.plasma.sd.service.styles.accordionitem.H3 -import com.sdds.plasma.sd.service.styles.accordionitem.H4 -import com.sdds.plasma.sd.service.styles.accordionitem.H5 -import com.sdds.plasma.sd.service.styles.accordionitem.L -import com.sdds.plasma.sd.service.styles.accordionitem.M -import com.sdds.plasma.sd.service.styles.accordionitem.S -import com.sdds.plasma.sd.service.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionStart.Xs.style() }, - "S" to { AccordionItemClearActionStart.S.style() }, - "M" to { AccordionItemClearActionStart.M.style() }, - "L" to { AccordionItemClearActionStart.L.style() }, - "H2" to { AccordionItemClearActionStart.H2.style() }, - "H3" to { AccordionItemClearActionStart.H3.style() }, - "H4" to { AccordionItemClearActionStart.H4.style() }, - "H5" to { AccordionItemClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt deleted file mode 100644 index 967ff805b2..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.plasma.sd.service.styles.accordionitem.H2 -import com.sdds.plasma.sd.service.styles.accordionitem.H3 -import com.sdds.plasma.sd.service.styles.accordionitem.H4 -import com.sdds.plasma.sd.service.styles.accordionitem.H5 -import com.sdds.plasma.sd.service.styles.accordionitem.L -import com.sdds.plasma.sd.service.styles.accordionitem.M -import com.sdds.plasma.sd.service.styles.accordionitem.S -import com.sdds.plasma.sd.service.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionEnd.Xs.style() }, - "S" to { AccordionItemSolidActionEnd.S.style() }, - "M" to { AccordionItemSolidActionEnd.M.style() }, - "L" to { AccordionItemSolidActionEnd.L.style() }, - "H2" to { AccordionItemSolidActionEnd.H2.style() }, - "H3" to { AccordionItemSolidActionEnd.H3.style() }, - "H4" to { AccordionItemSolidActionEnd.H4.style() }, - "H5" to { AccordionItemSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt deleted file mode 100644 index 1c4895965c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.plasma.sd.service.styles.accordionitem.H2 -import com.sdds.plasma.sd.service.styles.accordionitem.H3 -import com.sdds.plasma.sd.service.styles.accordionitem.H4 -import com.sdds.plasma.sd.service.styles.accordionitem.H5 -import com.sdds.plasma.sd.service.styles.accordionitem.L -import com.sdds.plasma.sd.service.styles.accordionitem.M -import com.sdds.plasma.sd.service.styles.accordionitem.S -import com.sdds.plasma.sd.service.styles.accordionitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionStart.Xs.style() }, - "S" to { AccordionItemSolidActionStart.S.style() }, - "M" to { AccordionItemSolidActionStart.M.style() }, - "L" to { AccordionItemSolidActionStart.L.style() }, - "H2" to { AccordionItemSolidActionStart.H2.style() }, - "H3" to { AccordionItemSolidActionStart.H3.style() }, - "H4" to { AccordionItemSolidActionStart.H4.style() }, - "H5" to { AccordionItemSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt deleted file mode 100644 index 87c9bdae88..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordion.AccordionSolidActionEnd -import com.sdds.plasma.sd.service.styles.accordion.H2 -import com.sdds.plasma.sd.service.styles.accordion.H3 -import com.sdds.plasma.sd.service.styles.accordion.H4 -import com.sdds.plasma.sd.service.styles.accordion.H5 -import com.sdds.plasma.sd.service.styles.accordion.L -import com.sdds.plasma.sd.service.styles.accordion.M -import com.sdds.plasma.sd.service.styles.accordion.S -import com.sdds.plasma.sd.service.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionEnd.Xs.style() }, - "S" to { AccordionSolidActionEnd.S.style() }, - "M" to { AccordionSolidActionEnd.M.style() }, - "L" to { AccordionSolidActionEnd.L.style() }, - "H2" to { AccordionSolidActionEnd.H2.style() }, - "H3" to { AccordionSolidActionEnd.H3.style() }, - "H4" to { AccordionSolidActionEnd.H4.style() }, - "H5" to { AccordionSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt deleted file mode 100644 index 52bd4da951..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.accordion.AccordionSolidActionStart -import com.sdds.plasma.sd.service.styles.accordion.H2 -import com.sdds.plasma.sd.service.styles.accordion.H3 -import com.sdds.plasma.sd.service.styles.accordion.H4 -import com.sdds.plasma.sd.service.styles.accordion.H5 -import com.sdds.plasma.sd.service.styles.accordion.L -import com.sdds.plasma.sd.service.styles.accordion.M -import com.sdds.plasma.sd.service.styles.accordion.S -import com.sdds.plasma.sd.service.styles.accordion.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionStart.Xs.style() }, - "S" to { AccordionSolidActionStart.S.style() }, - "M" to { AccordionSolidActionStart.M.style() }, - "L" to { AccordionSolidActionStart.L.style() }, - "H2" to { AccordionSolidActionStart.H2.style() }, - "H3" to { AccordionSolidActionStart.H3.style() }, - "H4" to { AccordionSolidActionStart.H4.style() }, - "H5" to { AccordionSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteNormalVariationsCompose.kt deleted file mode 100644 index cd9bd8a652..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.autocomplete.AutocompleteNormal -import com.sdds.plasma.sd.service.styles.autocomplete.L -import com.sdds.plasma.sd.service.styles.autocomplete.M -import com.sdds.plasma.sd.service.styles.autocomplete.S -import com.sdds.plasma.sd.service.styles.autocomplete.Xl -import com.sdds.plasma.sd.service.styles.autocomplete.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAutocompleteNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteNormal.Xl.style() }, - "L" to { AutocompleteNormal.L.style() }, - "M" to { AutocompleteNormal.M.style() }, - "S" to { AutocompleteNormal.S.style() }, - "Xs" to { AutocompleteNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteTightVariationsCompose.kt deleted file mode 100644 index 70c2fc2f16..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAutocompleteTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.autocomplete.AutocompleteTight -import com.sdds.plasma.sd.service.styles.autocomplete.L -import com.sdds.plasma.sd.service.styles.autocomplete.M -import com.sdds.plasma.sd.service.styles.autocomplete.S -import com.sdds.plasma.sd.service.styles.autocomplete.Xl -import com.sdds.plasma.sd.service.styles.autocomplete.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAutocompleteTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteTight.Xl.style() }, - "L" to { AutocompleteTight.L.style() }, - "M" to { AutocompleteTight.M.style() }, - "S" to { AutocompleteTight.S.style() }, - "Xs" to { AutocompleteTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarGroupVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarGroupVariationsCompose.kt deleted file mode 100644 index 03b8007d67..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.avatargroup.AvatarGroup -import com.sdds.plasma.sd.service.styles.avatargroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarVariationsCompose.kt deleted file mode 100644 index 83d43f22b7..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.avatar.Avatar -import com.sdds.plasma.sd.service.styles.avatar.L -import com.sdds.plasma.sd.service.styles.avatar.M -import com.sdds.plasma.sd.service.styles.avatar.S -import com.sdds.plasma.sd.service.styles.avatar.Xxl -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeClearVariationsCompose.kt deleted file mode 100644 index cf03534743..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.badge.Accent -import com.sdds.plasma.sd.service.styles.badge.BadgeClear -import com.sdds.plasma.sd.service.styles.badge.Dark -import com.sdds.plasma.sd.service.styles.badge.Default -import com.sdds.plasma.sd.service.styles.badge.L -import com.sdds.plasma.sd.service.styles.badge.Light -import com.sdds.plasma.sd.service.styles.badge.M -import com.sdds.plasma.sd.service.styles.badge.Negative -import com.sdds.plasma.sd.service.styles.badge.Pilled -import com.sdds.plasma.sd.service.styles.badge.Positive -import com.sdds.plasma.sd.service.styles.badge.S -import com.sdds.plasma.sd.service.styles.badge.Warning -import com.sdds.plasma.sd.service.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeSolidVariationsCompose.kt deleted file mode 100644 index 46887dae13..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.badge.Accent -import com.sdds.plasma.sd.service.styles.badge.BadgeSolid -import com.sdds.plasma.sd.service.styles.badge.Dark -import com.sdds.plasma.sd.service.styles.badge.Default -import com.sdds.plasma.sd.service.styles.badge.L -import com.sdds.plasma.sd.service.styles.badge.Light -import com.sdds.plasma.sd.service.styles.badge.M -import com.sdds.plasma.sd.service.styles.badge.Negative -import com.sdds.plasma.sd.service.styles.badge.Pilled -import com.sdds.plasma.sd.service.styles.badge.Positive -import com.sdds.plasma.sd.service.styles.badge.S -import com.sdds.plasma.sd.service.styles.badge.Warning -import com.sdds.plasma.sd.service.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeTransparentVariationsCompose.kt deleted file mode 100644 index ae84ab4243..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.badge.Accent -import com.sdds.plasma.sd.service.styles.badge.BadgeTransparent -import com.sdds.plasma.sd.service.styles.badge.Dark -import com.sdds.plasma.sd.service.styles.badge.Default -import com.sdds.plasma.sd.service.styles.badge.L -import com.sdds.plasma.sd.service.styles.badge.Light -import com.sdds.plasma.sd.service.styles.badge.M -import com.sdds.plasma.sd.service.styles.badge.Negative -import com.sdds.plasma.sd.service.styles.badge.Pilled -import com.sdds.plasma.sd.service.styles.badge.Positive -import com.sdds.plasma.sd.service.styles.badge.S -import com.sdds.plasma.sd.service.styles.badge.Warning -import com.sdds.plasma.sd.service.styles.badge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index ac41174bc1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.sd.service.styles.buttongroup.Default -import com.sdds.plasma.sd.service.styles.buttongroup.Dense -import com.sdds.plasma.sd.service.styles.buttongroup.L -import com.sdds.plasma.sd.service.styles.buttongroup.M -import com.sdds.plasma.sd.service.styles.buttongroup.NoGap -import com.sdds.plasma.sd.service.styles.buttongroup.S -import com.sdds.plasma.sd.service.styles.buttongroup.Segmented -import com.sdds.plasma.sd.service.styles.buttongroup.Wide -import com.sdds.plasma.sd.service.styles.buttongroup.Xs -import com.sdds.plasma.sd.service.styles.buttongroup.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xxs" to { BasicButtonGroup.Xxs.style() }, - "Xxs.Wide" to { BasicButtonGroup.Xxs.Wide.style() }, - "Xxs.Wide.Default" to { BasicButtonGroup.Xxs.Wide.Default.style() }, - "Xxs.Wide.Segmented" to { BasicButtonGroup.Xxs.Wide.Segmented.style() }, - "Xxs.Dense" to { BasicButtonGroup.Xxs.Dense.style() }, - "Xxs.Dense.Default" to { BasicButtonGroup.Xxs.Dense.Default.style() }, - "Xxs.Dense.Segmented" to { BasicButtonGroup.Xxs.Dense.Segmented.style() }, - "Xxs.NoGap" to { BasicButtonGroup.Xxs.NoGap.style() }, - "Xxs.NoGap.Default" to { BasicButtonGroup.Xxs.NoGap.Default.style() }, - "Xxs.NoGap.Segmented" to { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonVariationsCompose.kt deleted file mode 100644 index 5ae96a261b..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.basicbutton.Accent -import com.sdds.plasma.sd.service.styles.basicbutton.BasicButton -import com.sdds.plasma.sd.service.styles.basicbutton.Black -import com.sdds.plasma.sd.service.styles.basicbutton.Clear -import com.sdds.plasma.sd.service.styles.basicbutton.Dark -import com.sdds.plasma.sd.service.styles.basicbutton.Default -import com.sdds.plasma.sd.service.styles.basicbutton.L -import com.sdds.plasma.sd.service.styles.basicbutton.M -import com.sdds.plasma.sd.service.styles.basicbutton.Negative -import com.sdds.plasma.sd.service.styles.basicbutton.Positive -import com.sdds.plasma.sd.service.styles.basicbutton.S -import com.sdds.plasma.sd.service.styles.basicbutton.Secondary -import com.sdds.plasma.sd.service.styles.basicbutton.Warning -import com.sdds.plasma.sd.service.styles.basicbutton.White -import com.sdds.plasma.sd.service.styles.basicbutton.Xl -import com.sdds.plasma.sd.service.styles.basicbutton.Xs -import com.sdds.plasma.sd.service.styles.basicbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { BasicButton.Xl.Default.style() }, - "Xl.Secondary" to { BasicButton.Xl.Secondary.style() }, - "Xl.Accent" to { BasicButton.Xl.Accent.style() }, - "Xl.Positive" to { BasicButton.Xl.Positive.style() }, - "Xl.Negative" to { BasicButton.Xl.Negative.style() }, - "Xl.Warning" to { BasicButton.Xl.Warning.style() }, - "Xl.Clear" to { BasicButton.Xl.Clear.style() }, - "Xl.Dark" to { BasicButton.Xl.Dark.style() }, - "Xl.Black" to { BasicButton.Xl.Black.style() }, - "Xl.White" to { BasicButton.Xl.White.style() }, - "L.Default" to { BasicButton.L.Default.style() }, - "L.Secondary" to { BasicButton.L.Secondary.style() }, - "L.Accent" to { BasicButton.L.Accent.style() }, - "L.Positive" to { BasicButton.L.Positive.style() }, - "L.Negative" to { BasicButton.L.Negative.style() }, - "L.Warning" to { BasicButton.L.Warning.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "L.Dark" to { BasicButton.L.Dark.style() }, - "L.Black" to { BasicButton.L.Black.style() }, - "L.White" to { BasicButton.L.White.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Positive" to { BasicButton.M.Positive.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Black" to { BasicButton.M.Black.style() }, - "M.White" to { BasicButton.M.White.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Positive" to { BasicButton.S.Positive.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Black" to { BasicButton.S.Black.style() }, - "S.White" to { BasicButton.S.White.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Positive" to { BasicButton.Xs.Positive.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Black" to { BasicButton.Xs.Black.style() }, - "Xs.White" to { BasicButton.Xs.White.style() }, - "Xxs.Default" to { BasicButton.Xxs.Default.style() }, - "Xxs.Secondary" to { BasicButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { BasicButton.Xxs.Accent.style() }, - "Xxs.Positive" to { BasicButton.Xxs.Positive.style() }, - "Xxs.Negative" to { BasicButton.Xxs.Negative.style() }, - "Xxs.Warning" to { BasicButton.Xxs.Warning.style() }, - "Xxs.Clear" to { BasicButton.Xxs.Clear.style() }, - "Xxs.Dark" to { BasicButton.Xxs.Dark.style() }, - "Xxs.Black" to { BasicButton.Xxs.Black.style() }, - "Xxs.White" to { BasicButton.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardClearVariationsCompose.kt deleted file mode 100644 index f2abfe81f8..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardClearVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.card.CardClear -import com.sdds.plasma.sd.service.styles.card.L -import com.sdds.plasma.sd.service.styles.card.M -import com.sdds.plasma.sd.service.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCardClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardClear.L.style() }, - "M" to { CardClear.M.style() }, - "S" to { CardClear.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardSolidVariationsCompose.kt deleted file mode 100644 index 33b674633e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCardSolidVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.card.CardSolid -import com.sdds.plasma.sd.service.styles.card.L -import com.sdds.plasma.sd.service.styles.card.M -import com.sdds.plasma.sd.service.styles.card.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCardSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardSolid.L.style() }, - "M" to { CardSolid.M.style() }, - "S" to { CardSolid.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCarouselVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCarouselVariationsCompose.kt deleted file mode 100644 index 200313c4c9..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCarouselVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.carousel.ButtonsPlacementInner -import com.sdds.plasma.sd.service.styles.carousel.ButtonsPlacementOuter -import com.sdds.plasma.sd.service.styles.carousel.Carousel -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCarouselVariationsCompose : ComposeStyleProvider() { - override val variations: Map CarouselStyle> = - mapOf( - "ButtonsPlacementInner" to { Carousel.ButtonsPlacementInner.style() }, - "ButtonsPlacementOuter" to { Carousel.ButtonsPlacementOuter.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCellVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCellVariationsCompose.kt deleted file mode 100644 index a95eb56bc0..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.cell.Cell -import com.sdds.plasma.sd.service.styles.cell.L -import com.sdds.plasma.sd.service.styles.cell.M -import com.sdds.plasma.sd.service.styles.cell.S -import com.sdds.plasma.sd.service.styles.cell.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index 2d08207df4..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.checkboxgroup.CheckBoxGroup -import com.sdds.plasma.sd.service.styles.checkboxgroup.L -import com.sdds.plasma.sd.service.styles.checkboxgroup.M -import com.sdds.plasma.sd.service.styles.checkboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "L" to { CheckBoxGroup.L.style() }, - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxVariationsCompose.kt deleted file mode 100644 index a4726a8814..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.checkbox.CheckBox -import com.sdds.plasma.sd.service.styles.checkbox.Default -import com.sdds.plasma.sd.service.styles.checkbox.L -import com.sdds.plasma.sd.service.styles.checkbox.M -import com.sdds.plasma.sd.service.styles.checkbox.Negative -import com.sdds.plasma.sd.service.styles.checkbox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupDenseVariationsCompose.kt deleted file mode 100644 index fcd8ef3b14..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chipgroup.Accent -import com.sdds.plasma.sd.service.styles.chipgroup.ChipGroupDense -import com.sdds.plasma.sd.service.styles.chipgroup.Default -import com.sdds.plasma.sd.service.styles.chipgroup.L -import com.sdds.plasma.sd.service.styles.chipgroup.M -import com.sdds.plasma.sd.service.styles.chipgroup.Negative -import com.sdds.plasma.sd.service.styles.chipgroup.Pilled -import com.sdds.plasma.sd.service.styles.chipgroup.Positive -import com.sdds.plasma.sd.service.styles.chipgroup.S -import com.sdds.plasma.sd.service.styles.chipgroup.Secondary -import com.sdds.plasma.sd.service.styles.chipgroup.Warning -import com.sdds.plasma.sd.service.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Negative" to { ChipGroupDense.L.Negative.style() }, - "L.Positive" to { ChipGroupDense.L.Positive.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Warning" to { ChipGroupDense.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupDense.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupDense.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupDense.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Negative" to { ChipGroupDense.M.Negative.style() }, - "M.Positive" to { ChipGroupDense.M.Positive.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Warning" to { ChipGroupDense.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupDense.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupDense.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupDense.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Negative" to { ChipGroupDense.S.Negative.style() }, - "S.Positive" to { ChipGroupDense.S.Positive.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Warning" to { ChipGroupDense.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupDense.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupDense.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupDense.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupDense.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupDense.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupDense.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupDense.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupWideVariationsCompose.kt deleted file mode 100644 index 6b9525174a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chipgroup.Accent -import com.sdds.plasma.sd.service.styles.chipgroup.ChipGroupWide -import com.sdds.plasma.sd.service.styles.chipgroup.Default -import com.sdds.plasma.sd.service.styles.chipgroup.L -import com.sdds.plasma.sd.service.styles.chipgroup.M -import com.sdds.plasma.sd.service.styles.chipgroup.Negative -import com.sdds.plasma.sd.service.styles.chipgroup.Pilled -import com.sdds.plasma.sd.service.styles.chipgroup.Positive -import com.sdds.plasma.sd.service.styles.chipgroup.S -import com.sdds.plasma.sd.service.styles.chipgroup.Secondary -import com.sdds.plasma.sd.service.styles.chipgroup.Warning -import com.sdds.plasma.sd.service.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Negative" to { ChipGroupWide.L.Negative.style() }, - "L.Positive" to { ChipGroupWide.L.Positive.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Warning" to { ChipGroupWide.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupWide.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupWide.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupWide.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Negative" to { ChipGroupWide.M.Negative.style() }, - "M.Positive" to { ChipGroupWide.M.Positive.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Warning" to { ChipGroupWide.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupWide.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupWide.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupWide.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Negative" to { ChipGroupWide.S.Negative.style() }, - "S.Positive" to { ChipGroupWide.S.Positive.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Warning" to { ChipGroupWide.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupWide.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupWide.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupWide.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupWide.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupWide.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupWide.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupWide.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipVariationsCompose.kt deleted file mode 100644 index 3bc23d8dae..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cChipVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chip.Accent -import com.sdds.plasma.sd.service.styles.chip.Chip -import com.sdds.plasma.sd.service.styles.chip.Default -import com.sdds.plasma.sd.service.styles.chip.L -import com.sdds.plasma.sd.service.styles.chip.M -import com.sdds.plasma.sd.service.styles.chip.Negative -import com.sdds.plasma.sd.service.styles.chip.Pilled -import com.sdds.plasma.sd.service.styles.chip.Positive -import com.sdds.plasma.sd.service.styles.chip.S -import com.sdds.plasma.sd.service.styles.chip.Secondary -import com.sdds.plasma.sd.service.styles.chip.Warning -import com.sdds.plasma.sd.service.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Negative" to { Chip.L.Negative.style() }, - "L.Positive" to { Chip.L.Positive.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Warning" to { Chip.L.Warning.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { Chip.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { Chip.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { Chip.L.Pilled.Warning.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Negative" to { Chip.M.Negative.style() }, - "M.Positive" to { Chip.M.Positive.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Warning" to { Chip.M.Warning.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { Chip.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { Chip.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { Chip.M.Pilled.Warning.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Negative" to { Chip.S.Negative.style() }, - "S.Positive" to { Chip.S.Positive.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Warning" to { Chip.S.Warning.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { Chip.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { Chip.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { Chip.S.Pilled.Warning.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Negative" to { Chip.Xs.Negative.style() }, - "Xs.Positive" to { Chip.Xs.Positive.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Warning" to { Chip.Xs.Warning.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { Chip.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { Chip.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { Chip.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCircularProgressBarVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCircularProgressBarVariationsCompose.kt deleted file mode 100644 index 149a5204ba..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.circularprogressbar.Accent -import com.sdds.plasma.sd.service.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.sd.service.styles.circularprogressbar.Default -import com.sdds.plasma.sd.service.styles.circularprogressbar.Gradient -import com.sdds.plasma.sd.service.styles.circularprogressbar.Info -import com.sdds.plasma.sd.service.styles.circularprogressbar.L -import com.sdds.plasma.sd.service.styles.circularprogressbar.M -import com.sdds.plasma.sd.service.styles.circularprogressbar.Negative -import com.sdds.plasma.sd.service.styles.circularprogressbar.Positive -import com.sdds.plasma.sd.service.styles.circularprogressbar.S -import com.sdds.plasma.sd.service.styles.circularprogressbar.Secondary -import com.sdds.plasma.sd.service.styles.circularprogressbar.Warning -import com.sdds.plasma.sd.service.styles.circularprogressbar.Xl -import com.sdds.plasma.sd.service.styles.circularprogressbar.Xs -import com.sdds.plasma.sd.service.styles.circularprogressbar.Xxl -import com.sdds.plasma.sd.service.styles.circularprogressbar.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeFieldVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeFieldVariationsCompose.kt deleted file mode 100644 index 51625f4a7a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeFieldVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.codefield.CodeField -import com.sdds.plasma.sd.service.styles.codefield.L -import com.sdds.plasma.sd.service.styles.codefield.M -import com.sdds.plasma.sd.service.styles.codefield.Segmented -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCodeFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeFieldStyle> = - mapOf( - "L" to { CodeField.L.style() }, - "L.Segmented" to { CodeField.L.Segmented.style() }, - "M" to { CodeField.M.style() }, - "M.Segmented" to { CodeField.M.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeInputVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeInputVariationsCompose.kt deleted file mode 100644 index 3a38b7ccb3..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.codeinput.CodeInput -import com.sdds.plasma.sd.service.styles.codeinput.L -import com.sdds.plasma.sd.service.styles.codeinput.M -import com.sdds.plasma.sd.service.styles.codeinput.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCounterVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCounterVariationsCompose.kt deleted file mode 100644 index a98b7e18d8..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.counter.Accent -import com.sdds.plasma.sd.service.styles.counter.Black -import com.sdds.plasma.sd.service.styles.counter.Counter -import com.sdds.plasma.sd.service.styles.counter.Default -import com.sdds.plasma.sd.service.styles.counter.L -import com.sdds.plasma.sd.service.styles.counter.M -import com.sdds.plasma.sd.service.styles.counter.Negative -import com.sdds.plasma.sd.service.styles.counter.Positive -import com.sdds.plasma.sd.service.styles.counter.S -import com.sdds.plasma.sd.service.styles.counter.Warning -import com.sdds.plasma.sd.service.styles.counter.White -import com.sdds.plasma.sd.service.styles.counter.Xs -import com.sdds.plasma.sd.service.styles.counter.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDividerVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDividerVariationsCompose.kt deleted file mode 100644 index c111df4589..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.divider.Default -import com.sdds.plasma.sd.service.styles.divider.Divider -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseInnerVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseInnerVariationsCompose.kt deleted file mode 100644 index 6d2e7aff97..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseInnerVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseInner -import com.sdds.plasma.sd.service.styles.drawer.HasShadow -import com.sdds.plasma.sd.service.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseInner.M.style() }, - "M.HasShadow" to { DrawerCloseInner.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseNoneVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseNoneVariationsCompose.kt deleted file mode 100644 index ce212ea798..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseNoneVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseNone -import com.sdds.plasma.sd.service.styles.drawer.HasShadow -import com.sdds.plasma.sd.service.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseNone.M.style() }, - "M.HasShadow" to { DrawerCloseNone.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseOuterVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseOuterVariationsCompose.kt deleted file mode 100644 index 9ad359968a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDrawerCloseOuterVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseOuter -import com.sdds.plasma.sd.service.styles.drawer.HasShadow -import com.sdds.plasma.sd.service.styles.drawer.M -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseOuter.M.style() }, - "M.HasShadow" to { DrawerCloseOuter.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownEmptyStateVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownEmptyStateVariationsCompose.kt deleted file mode 100644 index c22b7a13aa..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownEmptyStateVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownEmptyStateStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.plasma.sd.service.styles.dropdownemptystate.HasButton -import com.sdds.plasma.sd.service.styles.dropdownemptystate.L -import com.sdds.plasma.sd.service.styles.dropdownemptystate.M -import com.sdds.plasma.sd.service.styles.dropdownemptystate.S -import com.sdds.plasma.sd.service.styles.dropdownemptystate.Xl -import com.sdds.plasma.sd.service.styles.dropdownemptystate.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownEmptyStateStyle> = - mapOf( - "Xs" to { DropdownEmptyState.Xs.style() }, - "Xs.HasButton" to { DropdownEmptyState.Xs.HasButton.style() }, - "S" to { DropdownEmptyState.S.style() }, - "S.HasButton" to { DropdownEmptyState.S.HasButton.style() }, - "M" to { DropdownEmptyState.M.style() }, - "M.HasButton" to { DropdownEmptyState.M.HasButton.style() }, - "L" to { DropdownEmptyState.L.style() }, - "L.HasButton" to { DropdownEmptyState.L.HasButton.style() }, - "Xl" to { DropdownEmptyState.Xl.style() }, - "Xl.HasButton" to { DropdownEmptyState.Xl.HasButton.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt deleted file mode 100644 index 648c78ddb4..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.listitem.Default -import com.sdds.plasma.sd.service.styles.listitem.DropdownMenuItemNormal -import com.sdds.plasma.sd.service.styles.listitem.L -import com.sdds.plasma.sd.service.styles.listitem.M -import com.sdds.plasma.sd.service.styles.listitem.Negative -import com.sdds.plasma.sd.service.styles.listitem.Positive -import com.sdds.plasma.sd.service.styles.listitem.S -import com.sdds.plasma.sd.service.styles.listitem.Xl -import com.sdds.plasma.sd.service.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemNormal.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemNormal.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemNormal.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemNormal.L.Default.style() }, - "L.Positive" to { DropdownMenuItemNormal.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemNormal.L.Negative.style() }, - "M.Default" to { DropdownMenuItemNormal.M.Default.style() }, - "M.Positive" to { DropdownMenuItemNormal.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemNormal.M.Negative.style() }, - "S.Default" to { DropdownMenuItemNormal.S.Default.style() }, - "S.Positive" to { DropdownMenuItemNormal.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemNormal.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemNormal.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemNormal.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemNormal.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt deleted file mode 100644 index 5f40738413..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.listitem.Default -import com.sdds.plasma.sd.service.styles.listitem.DropdownMenuItemTight -import com.sdds.plasma.sd.service.styles.listitem.L -import com.sdds.plasma.sd.service.styles.listitem.M -import com.sdds.plasma.sd.service.styles.listitem.Negative -import com.sdds.plasma.sd.service.styles.listitem.Positive -import com.sdds.plasma.sd.service.styles.listitem.S -import com.sdds.plasma.sd.service.styles.listitem.Xl -import com.sdds.plasma.sd.service.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemTight.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemTight.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemTight.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemTight.L.Default.style() }, - "L.Positive" to { DropdownMenuItemTight.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemTight.L.Negative.style() }, - "M.Default" to { DropdownMenuItemTight.M.Default.style() }, - "M.Positive" to { DropdownMenuItemTight.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemTight.M.Negative.style() }, - "S.Default" to { DropdownMenuItemTight.S.Default.style() }, - "S.Positive" to { DropdownMenuItemTight.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemTight.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemTight.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemTight.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemTight.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt deleted file mode 100644 index 14088899b1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.list.DropdownMenuListNormal -import com.sdds.plasma.sd.service.styles.list.L -import com.sdds.plasma.sd.service.styles.list.M -import com.sdds.plasma.sd.service.styles.list.S -import com.sdds.plasma.sd.service.styles.list.Xl -import com.sdds.plasma.sd.service.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListNormal.Xl.style() }, - "L" to { DropdownMenuListNormal.L.style() }, - "M" to { DropdownMenuListNormal.M.style() }, - "S" to { DropdownMenuListNormal.S.style() }, - "Xs" to { DropdownMenuListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListTightVariationsCompose.kt deleted file mode 100644 index ab3728c933..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.list.DropdownMenuListTight -import com.sdds.plasma.sd.service.styles.list.L -import com.sdds.plasma.sd.service.styles.list.M -import com.sdds.plasma.sd.service.styles.list.S -import com.sdds.plasma.sd.service.styles.list.Xl -import com.sdds.plasma.sd.service.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListTight.Xl.style() }, - "L" to { DropdownMenuListTight.L.style() }, - "M" to { DropdownMenuListTight.M.style() }, - "S" to { DropdownMenuListTight.S.style() }, - "Xs" to { DropdownMenuListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuNormalVariationsCompose.kt deleted file mode 100644 index 37ac189c59..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.plasma.sd.service.styles.dropdownmenu.L -import com.sdds.plasma.sd.service.styles.dropdownmenu.M -import com.sdds.plasma.sd.service.styles.dropdownmenu.S -import com.sdds.plasma.sd.service.styles.dropdownmenu.Xl -import com.sdds.plasma.sd.service.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuNormal.Xl.style() }, - "L" to { DropdownMenuNormal.L.style() }, - "M" to { DropdownMenuNormal.M.style() }, - "S" to { DropdownMenuNormal.S.style() }, - "Xs" to { DropdownMenuNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuTightVariationsCompose.kt deleted file mode 100644 index acc7e86ed2..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cDropdownMenuTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.dropdownmenu.DropdownMenuTight -import com.sdds.plasma.sd.service.styles.dropdownmenu.L -import com.sdds.plasma.sd.service.styles.dropdownmenu.M -import com.sdds.plasma.sd.service.styles.dropdownmenu.S -import com.sdds.plasma.sd.service.styles.dropdownmenu.Xl -import com.sdds.plasma.sd.service.styles.dropdownmenu.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cDropdownMenuTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuTight.Xl.style() }, - "L" to { DropdownMenuTight.L.style() }, - "M" to { DropdownMenuTight.M.style() }, - "S" to { DropdownMenuTight.S.style() }, - "Xs" to { DropdownMenuTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt deleted file mode 100644 index c65e0edcc9..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chipgroup.Accent -import com.sdds.plasma.sd.service.styles.chipgroup.Default -import com.sdds.plasma.sd.service.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.sd.service.styles.chipgroup.L -import com.sdds.plasma.sd.service.styles.chipgroup.M -import com.sdds.plasma.sd.service.styles.chipgroup.Negative -import com.sdds.plasma.sd.service.styles.chipgroup.Positive -import com.sdds.plasma.sd.service.styles.chipgroup.S -import com.sdds.plasma.sd.service.styles.chipgroup.Secondary -import com.sdds.plasma.sd.service.styles.chipgroup.Warning -import com.sdds.plasma.sd.service.styles.chipgroup.Xl -import com.sdds.plasma.sd.service.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupDense.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupDense.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupDense.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupDense.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupDense.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupDense.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupDense.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupDense.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupDense.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupDense.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupDense.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupDense.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupDense.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupDense.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupDense.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupDense.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupDense.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupDense.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupDense.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupDense.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupDense.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupDense.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupDense.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupDense.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupDense.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt deleted file mode 100644 index a3b0693dfd..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chipgroup.Accent -import com.sdds.plasma.sd.service.styles.chipgroup.Default -import com.sdds.plasma.sd.service.styles.chipgroup.EmbeddedChipGroupWide -import com.sdds.plasma.sd.service.styles.chipgroup.L -import com.sdds.plasma.sd.service.styles.chipgroup.M -import com.sdds.plasma.sd.service.styles.chipgroup.Negative -import com.sdds.plasma.sd.service.styles.chipgroup.Positive -import com.sdds.plasma.sd.service.styles.chipgroup.S -import com.sdds.plasma.sd.service.styles.chipgroup.Secondary -import com.sdds.plasma.sd.service.styles.chipgroup.Warning -import com.sdds.plasma.sd.service.styles.chipgroup.Xl -import com.sdds.plasma.sd.service.styles.chipgroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupWide.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupWide.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupWide.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupWide.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupWide.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupWide.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupWide.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupWide.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupWide.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupWide.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupWide.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupWide.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupWide.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupWide.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupWide.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupWide.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupWide.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupWide.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupWide.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupWide.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupWide.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupWide.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupWide.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupWide.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupWide.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipVariationsCompose.kt deleted file mode 100644 index ee4206ced0..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cEmbeddedChipVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.chip.Accent -import com.sdds.plasma.sd.service.styles.chip.Default -import com.sdds.plasma.sd.service.styles.chip.EmbeddedChip -import com.sdds.plasma.sd.service.styles.chip.L -import com.sdds.plasma.sd.service.styles.chip.M -import com.sdds.plasma.sd.service.styles.chip.Negative -import com.sdds.plasma.sd.service.styles.chip.Positive -import com.sdds.plasma.sd.service.styles.chip.S -import com.sdds.plasma.sd.service.styles.chip.Secondary -import com.sdds.plasma.sd.service.styles.chip.Warning -import com.sdds.plasma.sd.service.styles.chip.Xl -import com.sdds.plasma.sd.service.styles.chip.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cEmbeddedChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "Xl.Default" to { EmbeddedChip.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChip.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChip.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChip.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChip.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChip.Xl.Warning.style() }, - "L.Default" to { EmbeddedChip.L.Default.style() }, - "L.Accent" to { EmbeddedChip.L.Accent.style() }, - "L.Negative" to { EmbeddedChip.L.Negative.style() }, - "L.Positive" to { EmbeddedChip.L.Positive.style() }, - "L.Secondary" to { EmbeddedChip.L.Secondary.style() }, - "L.Warning" to { EmbeddedChip.L.Warning.style() }, - "M.Default" to { EmbeddedChip.M.Default.style() }, - "M.Accent" to { EmbeddedChip.M.Accent.style() }, - "M.Negative" to { EmbeddedChip.M.Negative.style() }, - "M.Positive" to { EmbeddedChip.M.Positive.style() }, - "M.Secondary" to { EmbeddedChip.M.Secondary.style() }, - "M.Warning" to { EmbeddedChip.M.Warning.style() }, - "S.Default" to { EmbeddedChip.S.Default.style() }, - "S.Accent" to { EmbeddedChip.S.Accent.style() }, - "S.Negative" to { EmbeddedChip.S.Negative.style() }, - "S.Positive" to { EmbeddedChip.S.Positive.style() }, - "S.Secondary" to { EmbeddedChip.S.Secondary.style() }, - "S.Warning" to { EmbeddedChip.S.Warning.style() }, - "Xs.Default" to { EmbeddedChip.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChip.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChip.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChip.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChip.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChip.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileCircularProgressVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileCircularProgressVariationsCompose.kt deleted file mode 100644 index e8c9063299..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileCircularProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.file.Default -import com.sdds.plasma.sd.service.styles.file.FileCircularProgress -import com.sdds.plasma.sd.service.styles.file.L -import com.sdds.plasma.sd.service.styles.file.M -import com.sdds.plasma.sd.service.styles.file.Negative -import com.sdds.plasma.sd.service.styles.file.S -import com.sdds.plasma.sd.service.styles.file.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cFileCircularProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileCircularProgress.Xs.Default.style() }, - "Xs.Negative" to { FileCircularProgress.Xs.Negative.style() }, - "S.Default" to { FileCircularProgress.S.Default.style() }, - "S.Negative" to { FileCircularProgress.S.Negative.style() }, - "M.Default" to { FileCircularProgress.M.Default.style() }, - "M.Negative" to { FileCircularProgress.M.Negative.style() }, - "L.Default" to { FileCircularProgress.L.Default.style() }, - "L.Negative" to { FileCircularProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileLinearProgressVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileLinearProgressVariationsCompose.kt deleted file mode 100644 index 45df8578d0..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cFileLinearProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.file.Default -import com.sdds.plasma.sd.service.styles.file.FileLinearProgress -import com.sdds.plasma.sd.service.styles.file.L -import com.sdds.plasma.sd.service.styles.file.M -import com.sdds.plasma.sd.service.styles.file.Negative -import com.sdds.plasma.sd.service.styles.file.S -import com.sdds.plasma.sd.service.styles.file.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cFileLinearProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileLinearProgress.Xs.Default.style() }, - "Xs.Negative" to { FileLinearProgress.Xs.Negative.style() }, - "S.Default" to { FileLinearProgress.S.Default.style() }, - "S.Negative" to { FileLinearProgress.S.Negative.style() }, - "M.Default" to { FileLinearProgress.M.Default.style() }, - "M.Negative" to { FileLinearProgress.M.Negative.style() }, - "L.Default" to { FileLinearProgress.L.Default.style() }, - "L.Negative" to { FileLinearProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeClearVariationsCompose.kt deleted file mode 100644 index 9a86320014..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.iconbadge.Accent -import com.sdds.plasma.sd.service.styles.iconbadge.Dark -import com.sdds.plasma.sd.service.styles.iconbadge.Default -import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeClear -import com.sdds.plasma.sd.service.styles.iconbadge.L -import com.sdds.plasma.sd.service.styles.iconbadge.Light -import com.sdds.plasma.sd.service.styles.iconbadge.M -import com.sdds.plasma.sd.service.styles.iconbadge.Negative -import com.sdds.plasma.sd.service.styles.iconbadge.Pilled -import com.sdds.plasma.sd.service.styles.iconbadge.Positive -import com.sdds.plasma.sd.service.styles.iconbadge.S -import com.sdds.plasma.sd.service.styles.iconbadge.Warning -import com.sdds.plasma.sd.service.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index b8bbcc8bab..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.iconbadge.Accent -import com.sdds.plasma.sd.service.styles.iconbadge.Dark -import com.sdds.plasma.sd.service.styles.iconbadge.Default -import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeSolid -import com.sdds.plasma.sd.service.styles.iconbadge.L -import com.sdds.plasma.sd.service.styles.iconbadge.Light -import com.sdds.plasma.sd.service.styles.iconbadge.M -import com.sdds.plasma.sd.service.styles.iconbadge.Negative -import com.sdds.plasma.sd.service.styles.iconbadge.Pilled -import com.sdds.plasma.sd.service.styles.iconbadge.Positive -import com.sdds.plasma.sd.service.styles.iconbadge.S -import com.sdds.plasma.sd.service.styles.iconbadge.Warning -import com.sdds.plasma.sd.service.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 5bce2bc3ed..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.iconbadge.Accent -import com.sdds.plasma.sd.service.styles.iconbadge.Dark -import com.sdds.plasma.sd.service.styles.iconbadge.Default -import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeTransparent -import com.sdds.plasma.sd.service.styles.iconbadge.L -import com.sdds.plasma.sd.service.styles.iconbadge.Light -import com.sdds.plasma.sd.service.styles.iconbadge.M -import com.sdds.plasma.sd.service.styles.iconbadge.Negative -import com.sdds.plasma.sd.service.styles.iconbadge.Pilled -import com.sdds.plasma.sd.service.styles.iconbadge.Positive -import com.sdds.plasma.sd.service.styles.iconbadge.S -import com.sdds.plasma.sd.service.styles.iconbadge.Warning -import com.sdds.plasma.sd.service.styles.iconbadge.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonGroupVariationsCompose.kt deleted file mode 100644 index 4c6040ea4a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.buttongroup.Default -import com.sdds.plasma.sd.service.styles.buttongroup.Dense -import com.sdds.plasma.sd.service.styles.buttongroup.IconButtonGroup -import com.sdds.plasma.sd.service.styles.buttongroup.L -import com.sdds.plasma.sd.service.styles.buttongroup.M -import com.sdds.plasma.sd.service.styles.buttongroup.NoGap -import com.sdds.plasma.sd.service.styles.buttongroup.Pilled -import com.sdds.plasma.sd.service.styles.buttongroup.S -import com.sdds.plasma.sd.service.styles.buttongroup.Segmented -import com.sdds.plasma.sd.service.styles.buttongroup.Wide -import com.sdds.plasma.sd.service.styles.buttongroup.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { IconButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { IconButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { IconButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { IconButtonGroup.S.Wide.Default.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { IconButtonGroup.S.Dense.Default.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { IconButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { IconButtonGroup.M.Wide.Default.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { IconButtonGroup.M.Dense.Default.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { IconButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { IconButtonGroup.L.Wide.Default.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { IconButtonGroup.L.Dense.Default.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { IconButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonVariationsCompose.kt deleted file mode 100644 index 73f7a7501d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIconButtonVariationsCompose.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.iconbutton.Accent -import com.sdds.plasma.sd.service.styles.iconbutton.Black -import com.sdds.plasma.sd.service.styles.iconbutton.Clear -import com.sdds.plasma.sd.service.styles.iconbutton.Dark -import com.sdds.plasma.sd.service.styles.iconbutton.Default -import com.sdds.plasma.sd.service.styles.iconbutton.IconButton -import com.sdds.plasma.sd.service.styles.iconbutton.L -import com.sdds.plasma.sd.service.styles.iconbutton.M -import com.sdds.plasma.sd.service.styles.iconbutton.Negative -import com.sdds.plasma.sd.service.styles.iconbutton.Pilled -import com.sdds.plasma.sd.service.styles.iconbutton.Positive -import com.sdds.plasma.sd.service.styles.iconbutton.S -import com.sdds.plasma.sd.service.styles.iconbutton.Secondary -import com.sdds.plasma.sd.service.styles.iconbutton.Warning -import com.sdds.plasma.sd.service.styles.iconbutton.White -import com.sdds.plasma.sd.service.styles.iconbutton.Xl -import com.sdds.plasma.sd.service.styles.iconbutton.Xs -import com.sdds.plasma.sd.service.styles.iconbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { IconButton.Xl.Default.style() }, - "Xl.Secondary" to { IconButton.Xl.Secondary.style() }, - "Xl.Accent" to { IconButton.Xl.Accent.style() }, - "Xl.Positive" to { IconButton.Xl.Positive.style() }, - "Xl.Negative" to { IconButton.Xl.Negative.style() }, - "Xl.Warning" to { IconButton.Xl.Warning.style() }, - "Xl.Clear" to { IconButton.Xl.Clear.style() }, - "Xl.Dark" to { IconButton.Xl.Dark.style() }, - "Xl.Black" to { IconButton.Xl.Black.style() }, - "Xl.White" to { IconButton.Xl.White.style() }, - "Xl.Pilled.Default" to { IconButton.Xl.Pilled.Default.style() }, - "Xl.Pilled.Secondary" to { IconButton.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { IconButton.Xl.Pilled.Accent.style() }, - "Xl.Pilled.Positive" to { IconButton.Xl.Pilled.Positive.style() }, - "Xl.Pilled.Negative" to { IconButton.Xl.Pilled.Negative.style() }, - "Xl.Pilled.Warning" to { IconButton.Xl.Pilled.Warning.style() }, - "Xl.Pilled.Clear" to { IconButton.Xl.Pilled.Clear.style() }, - "Xl.Pilled.Dark" to { IconButton.Xl.Pilled.Dark.style() }, - "Xl.Pilled.Black" to { IconButton.Xl.Pilled.Black.style() }, - "Xl.Pilled.White" to { IconButton.Xl.Pilled.White.style() }, - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Positive" to { IconButton.L.Positive.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Black" to { IconButton.L.Black.style() }, - "L.White" to { IconButton.L.White.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { IconButton.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { IconButton.L.Pilled.Accent.style() }, - "L.Pilled.Positive" to { IconButton.L.Pilled.Positive.style() }, - "L.Pilled.Negative" to { IconButton.L.Pilled.Negative.style() }, - "L.Pilled.Warning" to { IconButton.L.Pilled.Warning.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "L.Pilled.Dark" to { IconButton.L.Pilled.Dark.style() }, - "L.Pilled.Black" to { IconButton.L.Pilled.Black.style() }, - "L.Pilled.White" to { IconButton.L.Pilled.White.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Positive" to { IconButton.M.Positive.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Black" to { IconButton.M.Black.style() }, - "M.White" to { IconButton.M.White.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { IconButton.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { IconButton.M.Pilled.Accent.style() }, - "M.Pilled.Positive" to { IconButton.M.Pilled.Positive.style() }, - "M.Pilled.Negative" to { IconButton.M.Pilled.Negative.style() }, - "M.Pilled.Warning" to { IconButton.M.Pilled.Warning.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "M.Pilled.Dark" to { IconButton.M.Pilled.Dark.style() }, - "M.Pilled.Black" to { IconButton.M.Pilled.Black.style() }, - "M.Pilled.White" to { IconButton.M.Pilled.White.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Positive" to { IconButton.S.Positive.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Black" to { IconButton.S.Black.style() }, - "S.White" to { IconButton.S.White.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { IconButton.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { IconButton.S.Pilled.Accent.style() }, - "S.Pilled.Positive" to { IconButton.S.Pilled.Positive.style() }, - "S.Pilled.Negative" to { IconButton.S.Pilled.Negative.style() }, - "S.Pilled.Warning" to { IconButton.S.Pilled.Warning.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "S.Pilled.Dark" to { IconButton.S.Pilled.Dark.style() }, - "S.Pilled.Black" to { IconButton.S.Pilled.Black.style() }, - "S.Pilled.White" to { IconButton.S.Pilled.White.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Positive" to { IconButton.Xs.Positive.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Black" to { IconButton.Xs.Black.style() }, - "Xs.White" to { IconButton.Xs.White.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { IconButton.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { IconButton.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Positive" to { IconButton.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Negative" to { IconButton.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Warning" to { IconButton.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - "Xs.Pilled.Dark" to { IconButton.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Black" to { IconButton.Xs.Pilled.Black.style() }, - "Xs.Pilled.White" to { IconButton.Xs.Pilled.White.style() }, - "Xxs.Default" to { IconButton.Xxs.Default.style() }, - "Xxs.Secondary" to { IconButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { IconButton.Xxs.Accent.style() }, - "Xxs.Positive" to { IconButton.Xxs.Positive.style() }, - "Xxs.Negative" to { IconButton.Xxs.Negative.style() }, - "Xxs.Warning" to { IconButton.Xxs.Warning.style() }, - "Xxs.Clear" to { IconButton.Xxs.Clear.style() }, - "Xxs.Dark" to { IconButton.Xxs.Dark.style() }, - "Xxs.Black" to { IconButton.Xxs.Black.style() }, - "Xxs.White" to { IconButton.Xxs.White.style() }, - "Xxs.Pilled.Default" to { IconButton.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { IconButton.Xxs.Pilled.Secondary.style() }, - "Xxs.Pilled.Accent" to { IconButton.Xxs.Pilled.Accent.style() }, - "Xxs.Pilled.Positive" to { IconButton.Xxs.Pilled.Positive.style() }, - "Xxs.Pilled.Negative" to { IconButton.Xxs.Pilled.Negative.style() }, - "Xxs.Pilled.Warning" to { IconButton.Xxs.Pilled.Warning.style() }, - "Xxs.Pilled.Clear" to { IconButton.Xxs.Pilled.Clear.style() }, - "Xxs.Pilled.Dark" to { IconButton.Xxs.Pilled.Dark.style() }, - "Xxs.Pilled.Black" to { IconButton.Xxs.Pilled.Black.style() }, - "Xxs.Pilled.White" to { IconButton.Xxs.Pilled.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cImageVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cImageVariationsCompose.kt deleted file mode 100644 index 195f7718a6..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.image.Image -import com.sdds.plasma.sd.service.styles.image.Ratio16x9 -import com.sdds.plasma.sd.service.styles.image.Ratio1x1 -import com.sdds.plasma.sd.service.styles.image.Ratio1x2 -import com.sdds.plasma.sd.service.styles.image.Ratio2x1 -import com.sdds.plasma.sd.service.styles.image.Ratio3x4 -import com.sdds.plasma.sd.service.styles.image.Ratio4x3 -import com.sdds.plasma.sd.service.styles.image.Ratio9x16 -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIndicatorVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIndicatorVariationsCompose.kt deleted file mode 100644 index 90284978af..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cIndicatorVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.indicator.Accent -import com.sdds.plasma.sd.service.styles.indicator.Black -import com.sdds.plasma.sd.service.styles.indicator.Dark -import com.sdds.plasma.sd.service.styles.indicator.Default -import com.sdds.plasma.sd.service.styles.indicator.Inactive -import com.sdds.plasma.sd.service.styles.indicator.Indicator -import com.sdds.plasma.sd.service.styles.indicator.L -import com.sdds.plasma.sd.service.styles.indicator.M -import com.sdds.plasma.sd.service.styles.indicator.Negative -import com.sdds.plasma.sd.service.styles.indicator.Positive -import com.sdds.plasma.sd.service.styles.indicator.S -import com.sdds.plasma.sd.service.styles.indicator.Warning -import com.sdds.plasma.sd.service.styles.indicator.White -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Dark" to { Indicator.L.Dark.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Dark" to { Indicator.M.Dark.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Dark" to { Indicator.S.Dark.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLinkButtonVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLinkButtonVariationsCompose.kt deleted file mode 100644 index cf030994d6..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,61 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.linkbutton.Accent -import com.sdds.plasma.sd.service.styles.linkbutton.Default -import com.sdds.plasma.sd.service.styles.linkbutton.L -import com.sdds.plasma.sd.service.styles.linkbutton.LinkButton -import com.sdds.plasma.sd.service.styles.linkbutton.M -import com.sdds.plasma.sd.service.styles.linkbutton.Negative -import com.sdds.plasma.sd.service.styles.linkbutton.Positive -import com.sdds.plasma.sd.service.styles.linkbutton.S -import com.sdds.plasma.sd.service.styles.linkbutton.Secondary -import com.sdds.plasma.sd.service.styles.linkbutton.Warning -import com.sdds.plasma.sd.service.styles.linkbutton.Xl -import com.sdds.plasma.sd.service.styles.linkbutton.Xs -import com.sdds.plasma.sd.service.styles.linkbutton.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { LinkButton.Xl.Default.style() }, - "Xl.Secondary" to { LinkButton.Xl.Secondary.style() }, - "Xl.Accent" to { LinkButton.Xl.Accent.style() }, - "Xl.Positive" to { LinkButton.Xl.Positive.style() }, - "Xl.Negative" to { LinkButton.Xl.Negative.style() }, - "Xl.Warning" to { LinkButton.Xl.Warning.style() }, - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - "Xxs.Default" to { LinkButton.Xxs.Default.style() }, - "Xxs.Secondary" to { LinkButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.Positive" to { LinkButton.Xxs.Positive.style() }, - "Xxs.Negative" to { LinkButton.Xxs.Negative.style() }, - "Xxs.Warning" to { LinkButton.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemNormalVariationsCompose.kt deleted file mode 100644 index 207c8ab15e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.listitem.L -import com.sdds.plasma.sd.service.styles.listitem.ListItemNormal -import com.sdds.plasma.sd.service.styles.listitem.M -import com.sdds.plasma.sd.service.styles.listitem.S -import com.sdds.plasma.sd.service.styles.listitem.Xl -import com.sdds.plasma.sd.service.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cListItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemNormal.Xl.style() }, - "L" to { ListItemNormal.L.style() }, - "M" to { ListItemNormal.M.style() }, - "S" to { ListItemNormal.S.style() }, - "Xs" to { ListItemNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemTightVariationsCompose.kt deleted file mode 100644 index e19bb49671..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListItemTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.listitem.L -import com.sdds.plasma.sd.service.styles.listitem.ListItemTight -import com.sdds.plasma.sd.service.styles.listitem.M -import com.sdds.plasma.sd.service.styles.listitem.S -import com.sdds.plasma.sd.service.styles.listitem.Xl -import com.sdds.plasma.sd.service.styles.listitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cListItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemTight.Xl.style() }, - "L" to { ListItemTight.L.style() }, - "M" to { ListItemTight.M.style() }, - "S" to { ListItemTight.S.style() }, - "Xs" to { ListItemTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListNormalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListNormalVariationsCompose.kt deleted file mode 100644 index 37fbc4abde..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.list.L -import com.sdds.plasma.sd.service.styles.list.ListNormal -import com.sdds.plasma.sd.service.styles.list.M -import com.sdds.plasma.sd.service.styles.list.S -import com.sdds.plasma.sd.service.styles.list.Xl -import com.sdds.plasma.sd.service.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListNormal.Xl.style() }, - "L" to { ListNormal.L.style() }, - "M" to { ListNormal.M.style() }, - "S" to { ListNormal.S.style() }, - "Xs" to { ListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListTightVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListTightVariationsCompose.kt deleted file mode 100644 index 74dd3844b3..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.list.L -import com.sdds.plasma.sd.service.styles.list.ListTight -import com.sdds.plasma.sd.service.styles.list.M -import com.sdds.plasma.sd.service.styles.list.S -import com.sdds.plasma.sd.service.styles.list.Xl -import com.sdds.plasma.sd.service.styles.list.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListTight.Xl.style() }, - "L" to { ListTight.L.style() }, - "M" to { ListTight.M.style() }, - "S" to { ListTight.S.style() }, - "Xs" to { ListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLoaderVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLoaderVariationsCompose.kt deleted file mode 100644 index e5674c7347..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.loader.Default -import com.sdds.plasma.sd.service.styles.loader.Loader -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalBottomSheetVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 2593045264..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.bottomsheet.Default -import com.sdds.plasma.sd.service.styles.bottomsheet.ModalBottomSheet -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalVariationsCompose.kt deleted file mode 100644 index 70030b19b1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.modal.Default -import com.sdds.plasma.sd.service.styles.modal.Modal -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index 1c18c7bc4d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.navigationbar.HasBackground -import com.sdds.plasma.sd.service.styles.navigationbar.NavigationBarInternalPage -import com.sdds.plasma.sd.service.styles.navigationbar.NoBackground -import com.sdds.plasma.sd.service.styles.navigationbar.Rounded -import com.sdds.plasma.sd.service.styles.navigationbar.Shadow -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarInternalPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarInternalPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarInternalPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarInternalPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarInternalPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarInternalPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index dc04460995..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.navigationbar.HasBackground -import com.sdds.plasma.sd.service.styles.navigationbar.NavigationBarMainPage -import com.sdds.plasma.sd.service.styles.navigationbar.NoBackground -import com.sdds.plasma.sd.service.styles.navigationbar.Rounded -import com.sdds.plasma.sd.service.styles.navigationbar.Shadow -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarMainPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarMainPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarMainPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarMainPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarMainPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarMainPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationCompactVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationCompactVariationsCompose.kt deleted file mode 100644 index d32ba9b901..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.notification.L -import com.sdds.plasma.sd.service.styles.notification.M -import com.sdds.plasma.sd.service.styles.notification.NotificationCompact -import com.sdds.plasma.sd.service.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationContentVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationContentVariationsCompose.kt deleted file mode 100644 index cbd82fec56..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.notificationcontent.ButtonStretch -import com.sdds.plasma.sd.service.styles.notificationcontent.Default -import com.sdds.plasma.sd.service.styles.notificationcontent.IconStart -import com.sdds.plasma.sd.service.styles.notificationcontent.IconTop -import com.sdds.plasma.sd.service.styles.notificationcontent.Info -import com.sdds.plasma.sd.service.styles.notificationcontent.Negative -import com.sdds.plasma.sd.service.styles.notificationcontent.NoButtonStretch -import com.sdds.plasma.sd.service.styles.notificationcontent.NotificationContent -import com.sdds.plasma.sd.service.styles.notificationcontent.Positive -import com.sdds.plasma.sd.service.styles.notificationcontent.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationLooseVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationLooseVariationsCompose.kt deleted file mode 100644 index 85ea71d875..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.notification.L -import com.sdds.plasma.sd.service.styles.notification.M -import com.sdds.plasma.sd.service.styles.notification.NotificationLoose -import com.sdds.plasma.sd.service.styles.notification.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cOverlayVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cOverlayVariationsCompose.kt deleted file mode 100644 index d4bf373889..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.overlay.Default -import com.sdds.plasma.sd.service.styles.overlay.Overlay -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt deleted file mode 100644 index 9d470cd92f..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.paginationdots.ActiveTypeLine -import com.sdds.plasma.sd.service.styles.paginationdots.M -import com.sdds.plasma.sd.service.styles.paginationdots.PaginationDotsHorizontal -import com.sdds.plasma.sd.service.styles.paginationdots.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsHorizontal.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsHorizontal.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt deleted file mode 100644 index d7cd5b08dc..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.paginationdots.ActiveTypeLine -import com.sdds.plasma.sd.service.styles.paginationdots.M -import com.sdds.plasma.sd.service.styles.paginationdots.PaginationDotsVertical -import com.sdds.plasma.sd.service.styles.paginationdots.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsVertical.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsVertical.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsVertical.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsVertical.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPopoverVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPopoverVariationsCompose.kt deleted file mode 100644 index 2dfb4d915a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.popover.Accent -import com.sdds.plasma.sd.service.styles.popover.Default -import com.sdds.plasma.sd.service.styles.popover.M -import com.sdds.plasma.sd.service.styles.popover.Popover -import com.sdds.plasma.sd.service.styles.popover.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cProgressBarVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cProgressBarVariationsCompose.kt deleted file mode 100644 index 2e3bbdb7f1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cProgressBarVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.progressbar.Accent -import com.sdds.plasma.sd.service.styles.progressbar.Default -import com.sdds.plasma.sd.service.styles.progressbar.Gradient -import com.sdds.plasma.sd.service.styles.progressbar.Info -import com.sdds.plasma.sd.service.styles.progressbar.Negative -import com.sdds.plasma.sd.service.styles.progressbar.Positive -import com.sdds.plasma.sd.service.styles.progressbar.ProgressBar -import com.sdds.plasma.sd.service.styles.progressbar.Secondary -import com.sdds.plasma.sd.service.styles.progressbar.Warning -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Info" to { ProgressBar.Info.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index 61eb2489ca..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.radioboxgroup.M -import com.sdds.plasma.sd.service.styles.radioboxgroup.RadioBoxGroup -import com.sdds.plasma.sd.service.styles.radioboxgroup.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxVariationsCompose.kt deleted file mode 100644 index 0504c23f80..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.radiobox.L -import com.sdds.plasma.sd.service.styles.radiobox.M -import com.sdds.plasma.sd.service.styles.radiobox.RadioBox -import com.sdds.plasma.sd.service.styles.radiobox.S -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRectSkeletonVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRectSkeletonVariationsCompose.kt deleted file mode 100644 index aba904d2da..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.rectskeleton.Default -import com.sdds.plasma.sd.service.styles.rectskeleton.Lighter -import com.sdds.plasma.sd.service.styles.rectskeleton.RectSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Lighter" to { RectSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cScrollBarVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cScrollBarVariationsCompose.kt deleted file mode 100644 index 7dedefc896..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.scrollbar.M -import com.sdds.plasma.sd.service.styles.scrollbar.S -import com.sdds.plasma.sd.service.styles.scrollbar.ScrollBar -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentItemVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentItemVariationsCompose.kt deleted file mode 100644 index e17b6c925c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.segmentitem.Accent -import com.sdds.plasma.sd.service.styles.segmentitem.L -import com.sdds.plasma.sd.service.styles.segmentitem.M -import com.sdds.plasma.sd.service.styles.segmentitem.Pilled -import com.sdds.plasma.sd.service.styles.segmentitem.Primary -import com.sdds.plasma.sd.service.styles.segmentitem.S -import com.sdds.plasma.sd.service.styles.segmentitem.Secondary -import com.sdds.plasma.sd.service.styles.segmentitem.SegmentItem -import com.sdds.plasma.sd.service.styles.segmentitem.Xl -import com.sdds.plasma.sd.service.styles.segmentitem.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Xl.Primary" to { SegmentItem.Xl.Primary.style() }, - "Xl.Secondary" to { SegmentItem.Xl.Secondary.style() }, - "Xl.Accent" to { SegmentItem.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { SegmentItem.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { SegmentItem.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { SegmentItem.Xl.Pilled.Accent.style() }, - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Accent" to { SegmentItem.L.Accent.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { SegmentItem.L.Pilled.Accent.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Accent" to { SegmentItem.M.Accent.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { SegmentItem.M.Pilled.Accent.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Accent" to { SegmentItem.S.Accent.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { SegmentItem.S.Pilled.Accent.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Accent" to { SegmentItem.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { SegmentItem.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentVariationsCompose.kt deleted file mode 100644 index 1d75bae986..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSegmentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.segment.Accent -import com.sdds.plasma.sd.service.styles.segment.L -import com.sdds.plasma.sd.service.styles.segment.M -import com.sdds.plasma.sd.service.styles.segment.Pilled -import com.sdds.plasma.sd.service.styles.segment.Primary -import com.sdds.plasma.sd.service.styles.segment.S -import com.sdds.plasma.sd.service.styles.segment.Secondary -import com.sdds.plasma.sd.service.styles.segment.Segment -import com.sdds.plasma.sd.service.styles.segment.Xl -import com.sdds.plasma.sd.service.styles.segment.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Xl.Primary" to { Segment.Xl.Primary.style() }, - "Xl.Secondary" to { Segment.Xl.Secondary.style() }, - "Xl.Accent" to { Segment.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { Segment.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { Segment.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { Segment.Xl.Pilled.Accent.style() }, - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Accent" to { Segment.L.Accent.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { Segment.L.Pilled.Accent.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Accent" to { Segment.M.Accent.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { Segment.M.Pilled.Accent.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Accent" to { Segment.S.Accent.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { Segment.S.Pilled.Accent.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Accent" to { Segment.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { Segment.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSpinnerVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSpinnerVariationsCompose.kt deleted file mode 100644 index aba7cb210d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSpinnerVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.spinner.Accent -import com.sdds.plasma.sd.service.styles.spinner.Default -import com.sdds.plasma.sd.service.styles.spinner.Info -import com.sdds.plasma.sd.service.styles.spinner.L -import com.sdds.plasma.sd.service.styles.spinner.M -import com.sdds.plasma.sd.service.styles.spinner.Negative -import com.sdds.plasma.sd.service.styles.spinner.Positive -import com.sdds.plasma.sd.service.styles.spinner.S -import com.sdds.plasma.sd.service.styles.spinner.Scalable -import com.sdds.plasma.sd.service.styles.spinner.Secondary -import com.sdds.plasma.sd.service.styles.spinner.Spinner -import com.sdds.plasma.sd.service.styles.spinner.Warning -import com.sdds.plasma.sd.service.styles.spinner.Xl -import com.sdds.plasma.sd.service.styles.spinner.Xs -import com.sdds.plasma.sd.service.styles.spinner.Xxl -import com.sdds.plasma.sd.service.styles.spinner.Xxs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "Xxl.Default" to { Spinner.Xxl.Default.style() }, - "Xxl.Secondary" to { Spinner.Xxl.Secondary.style() }, - "Xxl.Accent" to { Spinner.Xxl.Accent.style() }, - "Xxl.Positive" to { Spinner.Xxl.Positive.style() }, - "Xxl.Negative" to { Spinner.Xxl.Negative.style() }, - "Xxl.Warning" to { Spinner.Xxl.Warning.style() }, - "Xxl.Info" to { Spinner.Xxl.Info.style() }, - "Xl.Default" to { Spinner.Xl.Default.style() }, - "Xl.Secondary" to { Spinner.Xl.Secondary.style() }, - "Xl.Accent" to { Spinner.Xl.Accent.style() }, - "Xl.Positive" to { Spinner.Xl.Positive.style() }, - "Xl.Negative" to { Spinner.Xl.Negative.style() }, - "Xl.Warning" to { Spinner.Xl.Warning.style() }, - "Xl.Info" to { Spinner.Xl.Info.style() }, - "L.Default" to { Spinner.L.Default.style() }, - "L.Secondary" to { Spinner.L.Secondary.style() }, - "L.Accent" to { Spinner.L.Accent.style() }, - "L.Positive" to { Spinner.L.Positive.style() }, - "L.Negative" to { Spinner.L.Negative.style() }, - "L.Warning" to { Spinner.L.Warning.style() }, - "L.Info" to { Spinner.L.Info.style() }, - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSwitchVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSwitchVariationsCompose.kt deleted file mode 100644 index 5a3abecf70..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.switcher.L -import com.sdds.plasma.sd.service.styles.switcher.M -import com.sdds.plasma.sd.service.styles.switcher.S -import com.sdds.plasma.sd.service.styles.switcher.Switch -import com.sdds.plasma.sd.service.styles.switcher.ToggleS -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarClearVariationsCompose.kt deleted file mode 100644 index 06f54c750e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.Divider -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Rounded -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarClear.M.Default.style() }, - "M.Secondary" to { TabBarClear.M.Secondary.style() }, - "M.Accent" to { TabBarClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarClear.L.Default.style() }, - "L.Secondary" to { TabBarClear.L.Secondary.style() }, - "L.Accent" to { TabBarClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt deleted file mode 100644 index b868484709..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.Divider -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Rounded -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt deleted file mode 100644 index 7fd337f5aa..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.Divider -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Rounded -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandClearVariationsCompose.kt deleted file mode 100644 index 432db03aab..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarIslandClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt deleted file mode 100644 index 6214188079..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandHasLabelClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt deleted file mode 100644 index 72b05ca726..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandHasLabelSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandSolidVariationsCompose.kt deleted file mode 100644 index fd297c6ada..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarIslandSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemClearVariationsCompose.kt deleted file mode 100644 index 78e67f7b61..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbaritem.Accent -import com.sdds.plasma.sd.service.styles.tabbaritem.Default -import com.sdds.plasma.sd.service.styles.tabbaritem.L -import com.sdds.plasma.sd.service.styles.tabbaritem.Label -import com.sdds.plasma.sd.service.styles.tabbaritem.M -import com.sdds.plasma.sd.service.styles.tabbaritem.Secondary -import com.sdds.plasma.sd.service.styles.tabbaritem.TabBarItemClear -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarItemClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemClear.M.Default.style() }, - "M.Accent" to { TabBarItemClear.M.Accent.style() }, - "M.Secondary" to { TabBarItemClear.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemClear.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemClear.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemClear.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemClear.L.Default.style() }, - "L.Accent" to { TabBarItemClear.L.Accent.style() }, - "L.Secondary" to { TabBarItemClear.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemClear.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemClear.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemClear.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemSolidVariationsCompose.kt deleted file mode 100644 index 996ba7ca08..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarItemSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbaritem.Accent -import com.sdds.plasma.sd.service.styles.tabbaritem.Default -import com.sdds.plasma.sd.service.styles.tabbaritem.L -import com.sdds.plasma.sd.service.styles.tabbaritem.Label -import com.sdds.plasma.sd.service.styles.tabbaritem.M -import com.sdds.plasma.sd.service.styles.tabbaritem.Secondary -import com.sdds.plasma.sd.service.styles.tabbaritem.TabBarItemSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarItemSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemSolid.M.Default.style() }, - "M.Accent" to { TabBarItemSolid.M.Accent.style() }, - "M.Secondary" to { TabBarItemSolid.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemSolid.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemSolid.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemSolid.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemSolid.L.Default.style() }, - "L.Accent" to { TabBarItemSolid.L.Accent.style() }, - "L.Secondary" to { TabBarItemSolid.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemSolid.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemSolid.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemSolid.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarSolidVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarSolidVariationsCompose.kt deleted file mode 100644 index 1ef4e1c83d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTabBarSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tabbar.Accent -import com.sdds.plasma.sd.service.styles.tabbar.Default -import com.sdds.plasma.sd.service.styles.tabbar.Divider -import com.sdds.plasma.sd.service.styles.tabbar.L -import com.sdds.plasma.sd.service.styles.tabbar.M -import com.sdds.plasma.sd.service.styles.tabbar.Rounded -import com.sdds.plasma.sd.service.styles.tabbar.Secondary -import com.sdds.plasma.sd.service.styles.tabbar.Shadow -import com.sdds.plasma.sd.service.styles.tabbar.TabBarSolid -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTabBarSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarSolid.M.Default.style() }, - "M.Secondary" to { TabBarSolid.M.Secondary.style() }, - "M.Accent" to { TabBarSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarSolid.L.Default.style() }, - "L.Secondary" to { TabBarSolid.L.Secondary.style() }, - "L.Accent" to { TabBarSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaClearVariationsCompose.kt deleted file mode 100644 index 5edd093973..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.textarea.Default -import com.sdds.plasma.sd.service.styles.textarea.Error -import com.sdds.plasma.sd.service.styles.textarea.InnerLabel -import com.sdds.plasma.sd.service.styles.textarea.L -import com.sdds.plasma.sd.service.styles.textarea.M -import com.sdds.plasma.sd.service.styles.textarea.OuterLabel -import com.sdds.plasma.sd.service.styles.textarea.RequiredEnd -import com.sdds.plasma.sd.service.styles.textarea.RequiredStart -import com.sdds.plasma.sd.service.styles.textarea.S -import com.sdds.plasma.sd.service.styles.textarea.TextAreaClear -import com.sdds.plasma.sd.service.styles.textarea.Warning -import com.sdds.plasma.sd.service.styles.textarea.Xl -import com.sdds.plasma.sd.service.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Warning" to { TextAreaClear.Xs.Warning.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextAreaClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextAreaClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextAreaClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextAreaClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextAreaClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextAreaClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextAreaClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Warning" to { TextAreaClear.S.Warning.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextAreaClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextAreaClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextAreaClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextAreaClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextAreaClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextAreaClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextAreaClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextAreaClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextAreaClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextAreaClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Warning" to { TextAreaClear.M.Warning.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextAreaClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextAreaClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextAreaClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextAreaClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextAreaClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextAreaClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextAreaClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextAreaClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextAreaClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextAreaClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Warning" to { TextAreaClear.L.Warning.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextAreaClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextAreaClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextAreaClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextAreaClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextAreaClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextAreaClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextAreaClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextAreaClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextAreaClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextAreaClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextAreaClear.Xl.Default.style() }, - "Xl.Warning" to { TextAreaClear.Xl.Warning.style() }, - "Xl.Error" to { TextAreaClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextAreaClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextAreaClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextAreaClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextAreaClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextAreaClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextAreaClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextAreaClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextAreaClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextAreaClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextAreaClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextAreaClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextAreaClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaVariationsCompose.kt deleted file mode 100644 index 38c61cc06d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextAreaVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.textarea.Default -import com.sdds.plasma.sd.service.styles.textarea.Error -import com.sdds.plasma.sd.service.styles.textarea.InnerLabel -import com.sdds.plasma.sd.service.styles.textarea.L -import com.sdds.plasma.sd.service.styles.textarea.M -import com.sdds.plasma.sd.service.styles.textarea.OuterLabel -import com.sdds.plasma.sd.service.styles.textarea.RequiredEnd -import com.sdds.plasma.sd.service.styles.textarea.RequiredStart -import com.sdds.plasma.sd.service.styles.textarea.S -import com.sdds.plasma.sd.service.styles.textarea.TextArea -import com.sdds.plasma.sd.service.styles.textarea.Warning -import com.sdds.plasma.sd.service.styles.textarea.Xl -import com.sdds.plasma.sd.service.styles.textarea.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Warning" to { TextArea.Xs.Warning.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextArea.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextArea.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextArea.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextArea.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextArea.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextArea.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextArea.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Warning" to { TextArea.S.Warning.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.RequiredStart.Default" to { TextArea.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextArea.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextArea.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextArea.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextArea.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextArea.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextArea.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextArea.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextArea.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextArea.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextArea.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextArea.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Warning" to { TextArea.M.Warning.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.RequiredStart.Default" to { TextArea.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextArea.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextArea.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextArea.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextArea.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextArea.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextArea.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextArea.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextArea.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextArea.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextArea.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextArea.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextArea.L.Default.style() }, - "L.Warning" to { TextArea.L.Warning.style() }, - "L.Error" to { TextArea.L.Error.style() }, - "L.RequiredStart.Default" to { TextArea.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextArea.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextArea.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextArea.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextArea.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextArea.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextArea.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextArea.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextArea.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextArea.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextArea.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextArea.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextArea.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextArea.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextArea.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextArea.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextArea.Xl.Default.style() }, - "Xl.Warning" to { TextArea.Xl.Warning.style() }, - "Xl.Error" to { TextArea.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextArea.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextArea.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextArea.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextArea.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextArea.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextArea.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextArea.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextArea.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextArea.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextArea.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextArea.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextArea.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldClearVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldClearVariationsCompose.kt deleted file mode 100644 index b552cd744c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.textfield.Default -import com.sdds.plasma.sd.service.styles.textfield.Error -import com.sdds.plasma.sd.service.styles.textfield.InnerLabel -import com.sdds.plasma.sd.service.styles.textfield.L -import com.sdds.plasma.sd.service.styles.textfield.M -import com.sdds.plasma.sd.service.styles.textfield.OuterLabel -import com.sdds.plasma.sd.service.styles.textfield.RequiredEnd -import com.sdds.plasma.sd.service.styles.textfield.RequiredStart -import com.sdds.plasma.sd.service.styles.textfield.S -import com.sdds.plasma.sd.service.styles.textfield.Success -import com.sdds.plasma.sd.service.styles.textfield.TextFieldClear -import com.sdds.plasma.sd.service.styles.textfield.Warning -import com.sdds.plasma.sd.service.styles.textfield.Xl -import com.sdds.plasma.sd.service.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Success" to { TextFieldClear.Xs.Success.style() }, - "Xs.Warning" to { TextFieldClear.Xs.Warning.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextFieldClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextFieldClear.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextFieldClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextFieldClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextFieldClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextFieldClear.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextFieldClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextFieldClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextFieldClear.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextFieldClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Success" to { TextFieldClear.S.Success.style() }, - "S.Warning" to { TextFieldClear.S.Warning.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextFieldClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextFieldClear.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextFieldClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextFieldClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextFieldClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextFieldClear.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextFieldClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextFieldClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextFieldClear.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextFieldClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextFieldClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextFieldClear.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextFieldClear.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextFieldClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextFieldClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextFieldClear.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Success" to { TextFieldClear.M.Success.style() }, - "M.Warning" to { TextFieldClear.M.Warning.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextFieldClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextFieldClear.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextFieldClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextFieldClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextFieldClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextFieldClear.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextFieldClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextFieldClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextFieldClear.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextFieldClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextFieldClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextFieldClear.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextFieldClear.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextFieldClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextFieldClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextFieldClear.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Success" to { TextFieldClear.L.Success.style() }, - "L.Warning" to { TextFieldClear.L.Warning.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextFieldClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextFieldClear.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextFieldClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextFieldClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextFieldClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextFieldClear.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextFieldClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextFieldClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextFieldClear.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextFieldClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextFieldClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextFieldClear.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextFieldClear.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextFieldClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextFieldClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextFieldClear.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextFieldClear.Xl.Default.style() }, - "Xl.Success" to { TextFieldClear.Xl.Success.style() }, - "Xl.Warning" to { TextFieldClear.Xl.Warning.style() }, - "Xl.Error" to { TextFieldClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextFieldClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextFieldClear.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextFieldClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextFieldClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextFieldClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextFieldClear.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextFieldClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextFieldClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextFieldClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextFieldClear.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextFieldClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextFieldClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextFieldClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextFieldClear.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextFieldClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextFieldClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldVariationsCompose.kt deleted file mode 100644 index 97a9e4bb27..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextFieldVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.textfield.Default -import com.sdds.plasma.sd.service.styles.textfield.Error -import com.sdds.plasma.sd.service.styles.textfield.InnerLabel -import com.sdds.plasma.sd.service.styles.textfield.L -import com.sdds.plasma.sd.service.styles.textfield.M -import com.sdds.plasma.sd.service.styles.textfield.OuterLabel -import com.sdds.plasma.sd.service.styles.textfield.RequiredEnd -import com.sdds.plasma.sd.service.styles.textfield.RequiredStart -import com.sdds.plasma.sd.service.styles.textfield.S -import com.sdds.plasma.sd.service.styles.textfield.Success -import com.sdds.plasma.sd.service.styles.textfield.TextField -import com.sdds.plasma.sd.service.styles.textfield.Warning -import com.sdds.plasma.sd.service.styles.textfield.Xl -import com.sdds.plasma.sd.service.styles.textfield.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Success" to { TextField.Xs.Success.style() }, - "Xs.Warning" to { TextField.Xs.Warning.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextField.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextField.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextField.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextField.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextField.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextField.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextField.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextField.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextField.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextField.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextField.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextField.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextField.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Success" to { TextField.S.Success.style() }, - "S.Warning" to { TextField.S.Warning.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextField.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextField.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextField.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextField.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextField.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextField.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextField.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextField.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextField.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextField.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextField.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextField.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextField.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextField.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextField.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextField.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextField.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextField.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Success" to { TextField.M.Success.style() }, - "M.Warning" to { TextField.M.Warning.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextField.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextField.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextField.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextField.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextField.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextField.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextField.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextField.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextField.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextField.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextField.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextField.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextField.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextField.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextField.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextField.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextField.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextField.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Success" to { TextField.L.Success.style() }, - "L.Warning" to { TextField.L.Warning.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextField.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextField.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextField.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextField.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextField.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextField.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextField.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextField.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextField.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextField.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextField.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextField.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextField.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextField.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextField.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextField.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextField.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextField.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextField.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextField.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextField.Xl.Default.style() }, - "Xl.Success" to { TextField.Xl.Success.style() }, - "Xl.Warning" to { TextField.Xl.Warning.style() }, - "Xl.Error" to { TextField.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextField.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextField.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextField.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextField.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextField.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextField.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextField.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextField.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextField.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextField.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextField.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextField.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextField.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextField.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextField.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextField.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextField.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextField.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextField.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextField.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextField.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextField.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextSkeletonVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextSkeletonVariationsCompose.kt deleted file mode 100644 index b48b65409b..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.textskeleton.Default -import com.sdds.plasma.sd.service.styles.textskeleton.Lighter -import com.sdds.plasma.sd.service.styles.textskeleton.TextSkeleton -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - "Lighter" to { TextSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToastVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToastVariationsCompose.kt deleted file mode 100644 index faac82d4d8..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToastVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.toast.Default -import com.sdds.plasma.sd.service.styles.toast.Negative -import com.sdds.plasma.sd.service.styles.toast.Pilled -import com.sdds.plasma.sd.service.styles.toast.Positive -import com.sdds.plasma.sd.service.styles.toast.Rounded -import com.sdds.plasma.sd.service.styles.toast.Toast -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Rounded.Default" to { Toast.Rounded.Default.style() }, - "Rounded.Positive" to { Toast.Rounded.Positive.style() }, - "Rounded.Negative" to { Toast.Rounded.Negative.style() }, - "Pilled.Default" to { Toast.Pilled.Default.style() }, - "Pilled.Positive" to { Toast.Pilled.Positive.style() }, - "Pilled.Negative" to { Toast.Pilled.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarHorizontalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarHorizontalVariationsCompose.kt deleted file mode 100644 index 3dcbcfb54a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarHorizontalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.toolbar.HasShadow -import com.sdds.plasma.sd.service.styles.toolbar.L -import com.sdds.plasma.sd.service.styles.toolbar.M -import com.sdds.plasma.sd.service.styles.toolbar.S -import com.sdds.plasma.sd.service.styles.toolbar.ToolBarHorizontal -import com.sdds.plasma.sd.service.styles.toolbar.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cToolBarHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarHorizontal.L.style() }, - "L.HasShadow" to { ToolBarHorizontal.L.HasShadow.style() }, - "M" to { ToolBarHorizontal.M.style() }, - "M.HasShadow" to { ToolBarHorizontal.M.HasShadow.style() }, - "S" to { ToolBarHorizontal.S.style() }, - "S.HasShadow" to { ToolBarHorizontal.S.HasShadow.style() }, - "Xs" to { ToolBarHorizontal.Xs.style() }, - "Xs.HasShadow" to { ToolBarHorizontal.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarVerticalVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarVerticalVariationsCompose.kt deleted file mode 100644 index d490cdbae5..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cToolBarVerticalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.toolbar.HasShadow -import com.sdds.plasma.sd.service.styles.toolbar.L -import com.sdds.plasma.sd.service.styles.toolbar.M -import com.sdds.plasma.sd.service.styles.toolbar.S -import com.sdds.plasma.sd.service.styles.toolbar.ToolBarVertical -import com.sdds.plasma.sd.service.styles.toolbar.Xs -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cToolBarVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarVertical.L.style() }, - "L.HasShadow" to { ToolBarVertical.L.HasShadow.style() }, - "M" to { ToolBarVertical.M.style() }, - "M.HasShadow" to { ToolBarVertical.M.HasShadow.style() }, - "S" to { ToolBarVertical.S.style() }, - "S.HasShadow" to { ToolBarVertical.S.HasShadow.style() }, - "Xs" to { ToolBarVertical.Xs.style() }, - "Xs.HasShadow" to { ToolBarVertical.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTooltipVariationsCompose.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTooltipVariationsCompose.kt deleted file mode 100644 index 8b0937cc53..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.sd.service.styles.tooltip.M -import com.sdds.plasma.sd.service.styles.tooltip.S -import com.sdds.plasma.sd.service.styles.tooltip.Tooltip -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider - -internal object PlasmaB2cTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionEndVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionEndVariationsView.kt deleted file mode 100644 index c0e271822d..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionStartVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionStartVariationsView.kt deleted file mode 100644 index fc6dff5498..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionEndVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionEndVariationsView.kt deleted file mode 100644 index 2c1846e4d7..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionItemClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionStartVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionStartVariationsView.kt deleted file mode 100644 index 5ddb0a2a35..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionItemClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt deleted file mode 100644 index aed44b1c6b..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionItemSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt deleted file mode 100644 index d38150de1e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionItemSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionEndVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionEndVariationsView.kt deleted file mode 100644 index a755b77543..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionStartVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionStartVariationsView.kt deleted file mode 100644 index ecc3ad0c20..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAccordionSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAccordionSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartXs, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartL, - "H2" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH2, - "H3" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH3, - "H4" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH4, - "H5" to DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH5, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteNormalVariationsView.kt deleted file mode 100644 index 5f5ad5cba4..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAutocompleteNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteTightVariationsView.kt deleted file mode 100644 index db6d438ea3..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAutocompleteTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAutocompleteTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarGroupVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarGroupVariationsView.kt deleted file mode 100644 index 1d67cbbeca..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarGroupVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAvatarGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AvatarGroupS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarVariationsView.kt deleted file mode 100644 index 24659d16af..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cAvatarVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cAvatarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Plasma_SdService_ComponentOverlays_AvatarXxl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_AvatarL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_AvatarM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_AvatarS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeClearVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeClearVariationsView.kt deleted file mode 100644 index 236699d225..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeSolidVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeSolidVariationsView.kt deleted file mode 100644 index 88dba89eff..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeTransparentVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeTransparentVariationsView.kt deleted file mode 100644 index 4726d004b1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonGroupVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonGroupVariationsView.kt deleted file mode 100644 index d0b0baf7c1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonGroupVariationsView.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cBasicButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxs, - "Xxs.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWide, - "Xxs.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWideDefault, - "Xxs.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWideSegmented, - "Xxs.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDense, - "Xxs.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDenseDefault, - "Xxs.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDenseSegmented, - "Xxs.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGap, - "Xxs.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGapDefault, - "Xxs.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGapSegmented, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXs, - "Xs.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWideDefault, - "Xs.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDenseDefault, - "Xs.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGapDefault, - "Xs.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGapSegmented, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupS, - "S.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWide, - "S.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWideDefault, - "S.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDense, - "S.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDenseDefault, - "S.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGapDefault, - "S.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGapSegmented, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupM, - "M.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWide, - "M.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWideDefault, - "M.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDense, - "M.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDenseDefault, - "M.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGapDefault, - "M.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGapSegmented, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupL, - "L.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWide, - "L.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWideDefault, - "L.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDense, - "L.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDenseDefault, - "L.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGapDefault, - "L.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonVariationsView.kt deleted file mode 100644 index 715c814dae..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cBasicButtonVariationsView.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cBasicButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlDefault, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlAccent, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlNegative, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlWarning, - "Xl.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlClear, - "Xl.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlDark, - "Xl.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlBlack, - "Xl.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlWhite, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLDefault, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLAccent, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLNegative, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLWarning, - "L.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLClear, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLDark, - "L.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLBlack, - "L.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLWhite, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMDefault, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMAccent, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMNegative, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMWarning, - "M.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMClear, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMDark, - "M.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMBlack, - "M.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMWhite, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSDefault, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSAccent, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSNegative, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSWarning, - "S.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSClear, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSDark, - "S.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSBlack, - "S.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSWhite, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsDefault, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsAccent, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsNegative, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsWarning, - "Xs.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsClear, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsDark, - "Xs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsBlack, - "Xs.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsWhite, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsAccent, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsPositive, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsNegative, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsWarning, - "Xxs.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsClear, - "Xxs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsDark, - "Xxs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsBlack, - "Xxs.White" to DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsWhite, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardClearVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardClearVariationsView.kt deleted file mode 100644 index 197a3f7dcc..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardClearVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCardClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CardClearL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CardClearM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CardClearS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardSolidVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardSolidVariationsView.kt deleted file mode 100644 index a0fe2334a8..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCardSolidVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCardSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CardSolidL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CardSolidM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CardSolidS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCarouselVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCarouselVariationsView.kt deleted file mode 100644 index f8180c7402..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCarouselVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCarouselVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonsPlacementInner" to DsR.style.Plasma_SdService_ComponentOverlays_CarouselButtonsPlacementInner, - "ButtonsPlacementOuter" to DsR.style.Plasma_SdService_ComponentOverlays_CarouselButtonsPlacementOuter, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCellVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCellVariationsView.kt deleted file mode 100644 index bc7cbb426f..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCellVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCellVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CellL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CellM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CellS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_CellXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxGroupVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxGroupVariationsView.kt deleted file mode 100644 index ca63d2a433..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxGroupVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCheckBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxVariationsView.kt deleted file mode 100644 index 4de648c528..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCheckBoxVariationsView.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCheckBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxLDefault, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxLNegative, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxMDefault, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxMNegative, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxSDefault, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxSNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupDenseVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupDenseVariationsView.kt deleted file mode 100644 index 9f9a8da142..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLWarning, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMWarning, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSWarning, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsWarning, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupWideVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupWideVariationsView.kt deleted file mode 100644 index 0b1cb74b05..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipGroupWideVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLWarning, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMWarning, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSWarning, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsWarning, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipVariationsView.kt deleted file mode 100644 index dc8066047f..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cChipVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ChipL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLWarning, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ChipM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMWarning, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ChipS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSWarning, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsWarning, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCircularProgressBarVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCircularProgressBarVariationsView.kt deleted file mode 100644 index 7a21721663..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCircularProgressBarVariationsView.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCircularProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxl, - "Xxl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlDefault, - "Xxl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlSecondary, - "Xxl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlAccent, - "Xxl.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlGradient, - "Xxl.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlInfo, - "Xxl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlNegative, - "Xxl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlPositive, - "Xxl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlWarning, - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlDefault, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlAccent, - "Xl.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlGradient, - "Xl.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlInfo, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlNegative, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlPositive, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlWarning, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLDefault, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLAccent, - "L.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLGradient, - "L.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLInfo, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMDefault, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMAccent, - "M.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMGradient, - "M.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMInfo, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSDefault, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSAccent, - "S.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSGradient, - "S.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSInfo, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsDefault, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsAccent, - "Xs.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsGradient, - "Xs.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsInfo, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsWarning, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsDefault, - "Xxs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsSecondary, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsAccent, - "Xxs.Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsGradient, - "Xxs.Info" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsInfo, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsNegative, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsPositive, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeFieldVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeFieldVariationsView.kt deleted file mode 100644 index baf09fb9cc..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeFieldVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCodeFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldL, - "L.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldLSegmented, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldM, - "M.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldMSegmented, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeInputVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeInputVariationsView.kt deleted file mode 100644 index f1cfc42b34..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCodeInputVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCodeInputVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CodeInputS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CodeInputM, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CodeInputL, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCounterVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCounterVariationsView.kt deleted file mode 100644 index db0d4fb4f1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cCounterVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cCounterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_CounterL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLAccent, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLWarning, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLNegative, - "L.Black" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLBlack, - "L.White" to DsR.style.Plasma_SdService_ComponentOverlays_CounterLWhite, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_CounterM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMAccent, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMWarning, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMNegative, - "M.Black" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMBlack, - "M.White" to DsR.style.Plasma_SdService_ComponentOverlays_CounterMWhite, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_CounterS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSAccent, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSWarning, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSNegative, - "S.Black" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSBlack, - "S.White" to DsR.style.Plasma_SdService_ComponentOverlays_CounterSWhite, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsAccent, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsWarning, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsNegative, - "Xs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsBlack, - "Xs.White" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXsWhite, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsDefault, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsAccent, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsPositive, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsWarning, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsNegative, - "Xxs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsBlack, - "Xxs.White" to DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsWhite, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDividerVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDividerVariationsView.kt deleted file mode 100644 index cf93f66b41..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDividerVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDividerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Plasma_SdService_ComponentOverlays_Divider, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseInnerVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseInnerVariationsView.kt deleted file mode 100644 index 7ae394af8e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseInnerVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDrawerCloseInnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseInnerM, - "M.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseInnerMHasShadow, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseNoneVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseNoneVariationsView.kt deleted file mode 100644 index c4539eabfa..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseNoneVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDrawerCloseNoneVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseNoneM, - "M.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseNoneMHasShadow, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseOuterVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseOuterVariationsView.kt deleted file mode 100644 index f3ea8ee6fc..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDrawerCloseOuterVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDrawerCloseOuterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseOuterM, - "M.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseOuterMHasShadow, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownEmptyStateVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownEmptyStateVariationsView.kt deleted file mode 100644 index 78f686c8ca..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownEmptyStateVariationsView.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownEmptyStateVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXs, - "Xs.HasButton" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXsHasButton, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateS, - "S.HasButton" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateSHasButton, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateM, - "M.HasButton" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateMHasButton, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateL, - "L.HasButton" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateLHasButton, - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXl, - "Xl.HasButton" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXlHasButton, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemNormalVariationsView.kt deleted file mode 100644 index 43ba8fe9c2..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemNormalVariationsView.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlDefault, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlNegative, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLDefault, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLNegative, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMDefault, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMNegative, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSDefault, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSNegative, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsDefault, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemTightVariationsView.kt deleted file mode 100644 index 9b63af60f8..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuItemTightVariationsView.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlDefault, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlNegative, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLDefault, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLNegative, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMDefault, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMNegative, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSDefault, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSNegative, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsDefault, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListNormalVariationsView.kt deleted file mode 100644 index 647c8343a3..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListTightVariationsView.kt deleted file mode 100644 index ff9a0acaf3..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuListTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuNormalVariationsView.kt deleted file mode 100644 index 8a7adcd2de..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuTightVariationsView.kt deleted file mode 100644 index ee4895cea2..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cDropdownMenuTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cDropdownMenuTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt deleted file mode 100644 index 09992c822c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cEmbeddedChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt deleted file mode 100644 index fbecc0f508..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cEmbeddedChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipVariationsView.kt deleted file mode 100644 index d649a67281..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cEmbeddedChipVariationsView.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cEmbeddedChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLPositive, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLSecondary, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMPositive, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMSecondary, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSPositive, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSSecondary, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsPositive, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsSecondary, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileCircularProgressVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileCircularProgressVariationsView.kt deleted file mode 100644 index beafaf5083..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileCircularProgressVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cFileCircularProgressVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXsDefault, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXsNegative, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressSDefault, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressSNegative, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressMDefault, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressMNegative, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressLDefault, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressLNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileLinearProgressVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileLinearProgressVariationsView.kt deleted file mode 100644 index 02af5f9a59..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cFileLinearProgressVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cFileLinearProgressVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXsDefault, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXsNegative, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressSDefault, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressSNegative, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressMDefault, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressMNegative, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressLDefault, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressLNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeClearVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeClearVariationsView.kt deleted file mode 100644 index b4fd955c8c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIconBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeSolidVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeSolidVariationsView.kt deleted file mode 100644 index c9e8fdafdf..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIconBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeTransparentVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeTransparentVariationsView.kt deleted file mode 100644 index 954bbb3f8c..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIconBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLAccent, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLNegative, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLWarning, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLDark, - "L.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLLight, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledLight, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMAccent, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMNegative, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMWarning, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMDark, - "M.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMLight, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledLight, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSAccent, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSNegative, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSWarning, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSDark, - "S.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSLight, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledLight, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsDark, - "Xs.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonGroupVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonGroupVariationsView.kt deleted file mode 100644 index 8701f0e432..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonGroupVariationsView.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIconButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXs, - "Xs.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWideDefault, - "Xs.Wide.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWidePilled, - "Xs.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDenseDefault, - "Xs.Dense.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDensePilled, - "Xs.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapDefault, - "Xs.NoGap.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapPilled, - "Xs.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapSegmented, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupS, - "S.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWide, - "S.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWideDefault, - "S.Wide.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWidePilled, - "S.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDense, - "S.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDenseDefault, - "S.Dense.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDensePilled, - "S.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapDefault, - "S.NoGap.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapPilled, - "S.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapSegmented, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupM, - "M.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWide, - "M.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWideDefault, - "M.Wide.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWidePilled, - "M.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDense, - "M.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDenseDefault, - "M.Dense.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDensePilled, - "M.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapDefault, - "M.NoGap.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapPilled, - "M.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapSegmented, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupL, - "L.Wide" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWide, - "L.Wide.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWideDefault, - "L.Wide.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWidePilled, - "L.Wide.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDense, - "L.Dense.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDenseDefault, - "L.Dense.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDensePilled, - "L.Dense.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapDefault, - "L.NoGap.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapPilled, - "L.NoGap.Segmented" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonVariationsView.kt deleted file mode 100644 index 4a06e51402..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIconButtonVariationsView.kt +++ /dev/null @@ -1,142 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIconButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlDefault, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlAccent, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlNegative, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlWarning, - "Xl.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlClear, - "Xl.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlDark, - "Xl.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlBlack, - "Xl.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlWhite, - "Xl.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilled, - "Xl.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledDefault, - "Xl.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledSecondary, - "Xl.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledAccent, - "Xl.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledPositive, - "Xl.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledNegative, - "Xl.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledWarning, - "Xl.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledClear, - "Xl.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledDark, - "Xl.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledBlack, - "Xl.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledWhite, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLDefault, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLAccent, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLNegative, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLWarning, - "L.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLClear, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLDark, - "L.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLBlack, - "L.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLWhite, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilled, - "L.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledDefault, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledSecondary, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledAccent, - "L.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledPositive, - "L.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledNegative, - "L.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledWarning, - "L.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledClear, - "L.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledDark, - "L.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledBlack, - "L.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledWhite, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMDefault, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMAccent, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMNegative, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMWarning, - "M.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMClear, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMDark, - "M.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMBlack, - "M.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMWhite, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilled, - "M.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledDefault, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledSecondary, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledAccent, - "M.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledPositive, - "M.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledNegative, - "M.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledWarning, - "M.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledClear, - "M.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledDark, - "M.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledBlack, - "M.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledWhite, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSDefault, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSAccent, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSNegative, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSWarning, - "S.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSClear, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSDark, - "S.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSBlack, - "S.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSWhite, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilled, - "S.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledDefault, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledSecondary, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledAccent, - "S.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledPositive, - "S.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledNegative, - "S.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledWarning, - "S.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledClear, - "S.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledDark, - "S.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledBlack, - "S.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledWhite, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsDefault, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsAccent, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsNegative, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsWarning, - "Xs.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsClear, - "Xs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsDark, - "Xs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsBlack, - "Xs.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsWhite, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilled, - "Xs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledDefault, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledSecondary, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledAccent, - "Xs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledPositive, - "Xs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledNegative, - "Xs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledWarning, - "Xs.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledClear, - "Xs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledDark, - "Xs.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledBlack, - "Xs.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledWhite, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsAccent, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPositive, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsNegative, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsWarning, - "Xxs.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsClear, - "Xxs.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsDark, - "Xxs.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsBlack, - "Xxs.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsWhite, - "Xxs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilled, - "Xxs.Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledDefault, - "Xxs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledSecondary, - "Xxs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledAccent, - "Xxs.Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledPositive, - "Xxs.Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledNegative, - "Xxs.Pilled.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledWarning, - "Xxs.Pilled.Clear" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledClear, - "Xxs.Pilled.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledDark, - "Xxs.Pilled.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledBlack, - "Xxs.Pilled.White" to DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledWhite, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cImageViewVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cImageViewVariationsView.kt deleted file mode 100644 index 6af776d84b..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cImageViewVariationsView.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cImageViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Ratio12" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_1_2, - "Ratio916" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_9_16, - "Ratio34" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_3_4, - "Ratio21" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_2_1, - "Ratio169" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_16_9, - "Ratio43" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_4_3, - "Ratio11" to DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_1_1, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIndicatorVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIndicatorVariationsView.kt deleted file mode 100644 index 757f07ba85..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cIndicatorVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cIndicatorVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLDefault, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLAccent, - "L.Inactive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLInactive, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLPositive, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLWarning, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLNegative, - "L.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLDark, - "L.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLBlack, - "L.White" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLWhite, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMAccent, - "M.Inactive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMInactive, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMPositive, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMWarning, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMNegative, - "M.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMDark, - "M.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMBlack, - "M.White" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMWhite, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSAccent, - "S.Inactive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSInactive, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSPositive, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSWarning, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSNegative, - "S.Dark" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSDark, - "S.Black" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSBlack, - "S.White" to DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSWhite, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLinkButtonVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLinkButtonVariationsView.kt deleted file mode 100644 index 467467ce3e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLinkButtonVariationsView.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cLinkButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlDefault, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlAccent, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlNegative, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlWarning, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLDefault, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLAccent, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLNegative, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLWarning, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMDefault, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMAccent, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMNegative, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMWarning, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSDefault, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSAccent, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSNegative, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSWarning, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsDefault, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsAccent, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsNegative, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsWarning, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsAccent, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsPositive, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsNegative, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemNormalVariationsView.kt deleted file mode 100644 index e8c30e0f2a..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cListItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemTightVariationsView.kt deleted file mode 100644 index ffa2da22b6..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListItemTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cListItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListNormalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListNormalVariationsView.kt deleted file mode 100644 index 9ac2189a67..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_ListNormalXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ListNormalL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ListNormalM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ListNormalS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ListNormalXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListTightVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListTightVariationsView.kt deleted file mode 100644 index 7a9e8f66b9..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cListTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_ListTightXl, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ListTightL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ListTightM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ListTightS, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ListTightXs, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLoaderVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLoaderVariationsView.kt deleted file mode 100644 index 6b741b33c1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cLoaderVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cLoaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Plasma_SdService_ComponentOverlays_Loader, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cModalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cModalVariationsView.kt deleted file mode 100644 index 0d31a47b36..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cModalVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cModalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Plasma_SdService_ComponentOverlays_Modal, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarInternalPageVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarInternalPageVariationsView.kt deleted file mode 100644 index 92565082fd..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarInternalPageVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cNavigationBarInternalPageVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "NoBackground" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageNoBackground, - "NoBackground.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageNoBackgroundRounded, - "HasBackground" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackground, - "HasBackground.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundRounded, - "HasBackground.Shadow" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadow, - "HasBackground.Shadow.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadowRounded, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarMainPageVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarMainPageVariationsView.kt deleted file mode 100644 index 2a8a3a04ee..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNavigationBarMainPageVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cNavigationBarMainPageVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "NoBackground" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageNoBackground, - "NoBackground.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageNoBackgroundRounded, - "HasBackground" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackground, - "HasBackground.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundRounded, - "HasBackground.Shadow" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundShadow, - "HasBackground.Shadow.Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundShadowRounded, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationCompactVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationCompactVariationsView.kt deleted file mode 100644 index d172ea0d93..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationCompactVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cNotificationCompactVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationContentVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationContentVariationsView.kt deleted file mode 100644 index 9552e0acbd..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationContentVariationsView.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cNotificationContentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonStretch" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretch, - "ButtonStretch.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchDefault, - "ButtonStretch.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchPositive, - "ButtonStretch.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchNegative, - "ButtonStretch.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchWarning, - "ButtonStretch.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchInfo, - "ButtonStretch.IconTop" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTop, - "ButtonStretch.IconTop.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopDefault, - "ButtonStretch.IconTop.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopPositive, - "ButtonStretch.IconTop.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopNegative, - "ButtonStretch.IconTop.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopWarning, - "ButtonStretch.IconTop.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopInfo, - "ButtonStretch.IconStart" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStart, - "ButtonStretch.IconStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartDefault, - "ButtonStretch.IconStart.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartPositive, - "ButtonStretch.IconStart.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartNegative, - "ButtonStretch.IconStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartWarning, - "ButtonStretch.IconStart.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartInfo, - "NoButtonStretch" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretch, - "NoButtonStretch.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchDefault, - "NoButtonStretch.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchPositive, - "NoButtonStretch.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchNegative, - "NoButtonStretch.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchWarning, - "NoButtonStretch.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchInfo, - "NoButtonStretch.IconTop" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTop, - "NoButtonStretch.IconTop.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopDefault, - "NoButtonStretch.IconTop.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopPositive, - "NoButtonStretch.IconTop.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopNegative, - "NoButtonStretch.IconTop.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopWarning, - "NoButtonStretch.IconTop.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopInfo, - "NoButtonStretch.IconStart" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStart, - "NoButtonStretch.IconStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartDefault, - "NoButtonStretch.IconStart.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartPositive, - "NoButtonStretch.IconStart.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartNegative, - "NoButtonStretch.IconStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartWarning, - "NoButtonStretch.IconStart.Info" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartInfo, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationLooseVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationLooseVariationsView.kt deleted file mode 100644 index 18b752b1d5..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cNotificationLooseVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cNotificationLooseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cOverlayViewVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cOverlayViewVariationsView.kt deleted file mode 100644 index cc199f6516..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cOverlayViewVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cOverlayViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Plasma_SdService_ComponentOverlays_OverlayView, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsHorizontalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsHorizontalVariationsView.kt deleted file mode 100644 index 92b1152f5e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsHorizontalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cPaginationDotsHorizontalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalM, - "M.ActiveTypeLine" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalMActiveTypeLine, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalS, - "S.ActiveTypeLine" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsVerticalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsVerticalVariationsView.kt deleted file mode 100644 index c53940dc12..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPaginationDotsVerticalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cPaginationDotsVerticalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalM, - "M.ActiveTypeLine" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalMActiveTypeLine, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalS, - "S.ActiveTypeLine" to DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPopoverVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPopoverVariationsView.kt deleted file mode 100644 index b25e279e25..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cPopoverVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cPopoverVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverMDefault, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverMAccent, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverSDefault, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_PopoverSAccent, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cProgressBarVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cProgressBarVariationsView.kt deleted file mode 100644 index 8854955dd6..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cProgressBarVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarDefault, - ".Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarSecondary, - ".Accent" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarAccent, - ".Gradient" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarGradient, - ".Info" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarInfo, - ".Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarNegative, - ".Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarPositive, - ".Warning" to DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarWarning, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxGroupVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxGroupVariationsView.kt deleted file mode 100644 index d303909556..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxGroupVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cRadioBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxGroupM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxGroupS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxVariationsView.kt deleted file mode 100644 index ad70fae2f0..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRadioBoxVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cRadioBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxL, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRectSkeletonVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRectSkeletonVariationsView.kt deleted file mode 100644 index ba298f50a7..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cRectSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cRectSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Plasma_SdService_ComponentOverlays_RectSkeletonDefault, - ".Lighter" to DsR.style.Plasma_SdService_ComponentOverlays_RectSkeletonLighter, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cScrollBarVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cScrollBarVariationsView.kt deleted file mode 100644 index eaf8be9834..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cScrollBarVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cScrollBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ScrollBarS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ScrollBarM, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentItemVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentItemVariationsView.kt deleted file mode 100644 index 58bc1717b1..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentItemVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cSegmentItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXl, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlAccent, - "Xl.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPrimary, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlSecondary, - "Xl.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilled, - "Xl.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledAccent, - "Xl.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledSecondary, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemL, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLAccent, - "L.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPrimary, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLSecondary, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilled, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledAccent, - "L.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledSecondary, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemM, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMAccent, - "M.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPrimary, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMSecondary, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilled, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledAccent, - "M.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledSecondary, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemS, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSAccent, - "S.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPrimary, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSSecondary, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilled, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledAccent, - "S.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledSecondary, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXs, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsAccent, - "Xs.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPrimary, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsSecondary, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilled, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledAccent, - "Xs.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledSecondary, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentVariationsView.kt deleted file mode 100644 index 582d67ff90..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSegmentVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cSegmentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXl, - "Xl.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPrimary, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlAccent, - "Xl.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilled, - "Xl.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledSecondary, - "Xl.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledAccent, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentL, - "L.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPrimary, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLAccent, - "L.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilled, - "L.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledSecondary, - "L.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledAccent, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentM, - "M.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPrimary, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMAccent, - "M.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilled, - "M.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledSecondary, - "M.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledAccent, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentS, - "S.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPrimary, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSAccent, - "S.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilled, - "S.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledSecondary, - "S.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledAccent, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXs, - "Xs.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPrimary, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsAccent, - "Xs.Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilled, - "Xs.Pilled.Primary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledSecondary, - "Xs.Pilled.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledAccent, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSpinnerVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSpinnerVariationsView.kt deleted file mode 100644 index 64b68b9d10..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSpinnerVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cSpinnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxl, - "Xxl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlDefault, - "Xxl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlSecondary, - "Xxl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlAccent, - "Xxl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlPositive, - "Xxl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlNegative, - "Xxl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlWarning, - "Xxl.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlInfo, - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlDefault, - "Xl.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlSecondary, - "Xl.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlAccent, - "Xl.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlPositive, - "Xl.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlNegative, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlWarning, - "Xl.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlInfo, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLDefault, - "L.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLSecondary, - "L.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLAccent, - "L.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLPositive, - "L.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLNegative, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLWarning, - "L.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLInfo, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMDefault, - "M.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMSecondary, - "M.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMAccent, - "M.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMPositive, - "M.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMNegative, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMWarning, - "M.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMInfo, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSDefault, - "S.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSSecondary, - "S.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSAccent, - "S.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSPositive, - "S.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSNegative, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSWarning, - "S.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSInfo, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsDefault, - "Xs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsSecondary, - "Xs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsAccent, - "Xs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsPositive, - "Xs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsNegative, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsWarning, - "Xs.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsInfo, - "Xxs" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxs, - "Xxs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsDefault, - "Xxs.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsSecondary, - "Xxs.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsAccent, - "Xxs.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsPositive, - "Xxs.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsNegative, - "Xxs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsWarning, - "Xxs.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsInfo, - "Scalable" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalable, - "Scalable.Default" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableDefault, - "Scalable.Secondary" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableSecondary, - "Scalable.Accent" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableAccent, - "Scalable.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalablePositive, - "Scalable.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableNegative, - "Scalable.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableWarning, - "Scalable.Info" to DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableInfo, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSwitchVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSwitchVariationsView.kt deleted file mode 100644 index 05f91eddb2..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cSwitchVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cSwitchVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchL, - "L.ToggleS" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchLToggleS, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchM, - "M.ToggleS" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchMToggleS, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchS, - "S.ToggleS" to DsR.style.Plasma_SdService_ComponentOverlays_SwitchSToggleS, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextAreaVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextAreaVariationsView.kt deleted file mode 100644 index 8525df8cb9..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextAreaVariationsView.kt +++ /dev/null @@ -1,178 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cTextAreaVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsDefault, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsWarning, - "Xs.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsError, - "Xs.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartDefault, - "Xs.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndDefault, - "Xs.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelDefault, - "Xs.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndError, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSDefault, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSWarning, - "S.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSError, - "S.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartDefault, - "S.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartError, - "S.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndDefault, - "S.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndError, - "S.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelDefault, - "S.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelDefault, - "S.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndError, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMDefault, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMWarning, - "M.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMError, - "M.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartDefault, - "M.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartError, - "M.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndDefault, - "M.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndError, - "M.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelDefault, - "M.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelDefault, - "M.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndError, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLDefault, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLWarning, - "L.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLError, - "L.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartDefault, - "L.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartError, - "L.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndDefault, - "L.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndError, - "L.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelDefault, - "L.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelDefault, - "L.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndError, - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlDefault, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlWarning, - "Xl.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlError, - "Xl.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStart, - "Xl.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartDefault, - "Xl.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartWarning, - "Xl.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartError, - "Xl.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEnd, - "Xl.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndDefault, - "Xl.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndWarning, - "Xl.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndError, - "Xl.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabel, - "Xl.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelDefault, - "Xl.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelWarning, - "Xl.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelError, - "Xl.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStart, - "Xl.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartDefault, - "Xl.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartWarning, - "Xl.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartError, - "Xl.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEnd, - "Xl.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndDefault, - "Xl.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndWarning, - "Xl.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndError, - "Xl.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabel, - "Xl.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelDefault, - "Xl.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelWarning, - "Xl.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelError, - "Xl.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStart, - "Xl.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartDefault, - "Xl.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartWarning, - "Xl.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartError, - "Xl.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEnd, - "Xl.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndDefault, - "Xl.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndWarning, - "Xl.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextFieldVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextFieldVariationsView.kt deleted file mode 100644 index 96633ff55f..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextFieldVariationsView.kt +++ /dev/null @@ -1,220 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cTextFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXs, - "Xs.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsDefault, - "Xs.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsSuccess, - "Xs.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsWarning, - "Xs.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsError, - "Xs.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartDefault, - "Xs.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartSuccess, - "Xs.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndDefault, - "Xs.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndSuccess, - "Xs.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelDefault, - "Xs.OuterLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelSuccess, - "Xs.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartSuccess, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndSuccess, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndError, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldS, - "S.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSDefault, - "S.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSSuccess, - "S.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSWarning, - "S.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSError, - "S.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartDefault, - "S.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartSuccess, - "S.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartError, - "S.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndDefault, - "S.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndSuccess, - "S.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndError, - "S.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelDefault, - "S.OuterLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelSuccess, - "S.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartSuccess, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndSuccess, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelDefault, - "S.InnerLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelSuccess, - "S.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartSuccess, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndSuccess, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndError, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldM, - "M.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMDefault, - "M.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMSuccess, - "M.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMWarning, - "M.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMError, - "M.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartDefault, - "M.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartSuccess, - "M.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartError, - "M.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndDefault, - "M.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndSuccess, - "M.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndError, - "M.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelDefault, - "M.OuterLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelSuccess, - "M.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartSuccess, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndSuccess, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelDefault, - "M.InnerLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelSuccess, - "M.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartSuccess, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndSuccess, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndError, - "L" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldL, - "L.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLDefault, - "L.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLSuccess, - "L.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLWarning, - "L.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLError, - "L.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartDefault, - "L.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartSuccess, - "L.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartError, - "L.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndDefault, - "L.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndSuccess, - "L.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndError, - "L.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelDefault, - "L.OuterLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelSuccess, - "L.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartSuccess, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndSuccess, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelDefault, - "L.InnerLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelSuccess, - "L.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartSuccess, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndSuccess, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndError, - "Xl" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXl, - "Xl.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlDefault, - "Xl.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlSuccess, - "Xl.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlWarning, - "Xl.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlError, - "Xl.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStart, - "Xl.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartDefault, - "Xl.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartSuccess, - "Xl.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartWarning, - "Xl.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartError, - "Xl.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEnd, - "Xl.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndDefault, - "Xl.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndSuccess, - "Xl.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndWarning, - "Xl.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndError, - "Xl.OuterLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabel, - "Xl.OuterLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelDefault, - "Xl.OuterLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelSuccess, - "Xl.OuterLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelWarning, - "Xl.OuterLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelError, - "Xl.OuterLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStart, - "Xl.OuterLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartDefault, - "Xl.OuterLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartSuccess, - "Xl.OuterLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartWarning, - "Xl.OuterLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartError, - "Xl.OuterLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEnd, - "Xl.OuterLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndDefault, - "Xl.OuterLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndSuccess, - "Xl.OuterLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndWarning, - "Xl.OuterLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndError, - "Xl.InnerLabel" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabel, - "Xl.InnerLabel.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelDefault, - "Xl.InnerLabel.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelSuccess, - "Xl.InnerLabel.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelWarning, - "Xl.InnerLabel.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelError, - "Xl.InnerLabel.RequiredStart" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStart, - "Xl.InnerLabel.RequiredStart.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartDefault, - "Xl.InnerLabel.RequiredStart.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartSuccess, - "Xl.InnerLabel.RequiredStart.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartWarning, - "Xl.InnerLabel.RequiredStart.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartError, - "Xl.InnerLabel.RequiredEnd" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEnd, - "Xl.InnerLabel.RequiredEnd.Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndDefault, - "Xl.InnerLabel.RequiredEnd.Success" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndSuccess, - "Xl.InnerLabel.RequiredEnd.Warning" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndWarning, - "Xl.InnerLabel.RequiredEnd.Error" to DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextSkeletonVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextSkeletonVariationsView.kt deleted file mode 100644 index 042fd29fa7..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTextSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cTextSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Plasma_SdService_ComponentOverlays_TextSkeletonDefault, - ".Lighter" to DsR.style.Plasma_SdService_ComponentOverlays_TextSkeletonLighter, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToastVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToastVariationsView.kt deleted file mode 100644 index a3c255ae7e..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToastVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cToastVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Rounded" to DsR.style.Plasma_SdService_ComponentOverlays_ToastRounded, - "Rounded.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedDefault, - "Rounded.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedPositive, - "Rounded.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedNegative, - "Pilled" to DsR.style.Plasma_SdService_ComponentOverlays_ToastPilled, - "Pilled.Default" to DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledDefault, - "Pilled.Positive" to DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledPositive, - "Pilled.Negative" to DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledNegative, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarHorizontalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarHorizontalVariationsView.kt deleted file mode 100644 index 4323ed8088..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarHorizontalVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cToolBarHorizontalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalL, - "L.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalLHasShadow, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalM, - "M.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalMHasShadow, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalS, - "S.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalSHasShadow, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalXs, - "Xs.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalXsHasShadow, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarVerticalVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarVerticalVariationsView.kt deleted file mode 100644 index 03af68db94..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cToolBarVerticalVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cToolBarVerticalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalL, - "L.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalLHasShadow, - "M" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalM, - "M.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalMHasShadow, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalS, - "S.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalSHasShadow, - "Xs" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalXs, - "Xs.HasShadow" to DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalXsHasShadow, - ) -} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTooltipVariationsView.kt b/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTooltipVariationsView.kt deleted file mode 100644 index a716cfdb14..0000000000 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cTooltipVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.plasma.sd.service.R as DsR - -internal object PlasmaB2cTooltipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Plasma_SdService_ComponentOverlays_TooltipM, - "S" to DsR.style.Plasma_SdService_ComponentOverlays_TooltipS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/build.gradle.kts b/playground/sandbox-plasma-stards-integration/build.gradle.kts deleted file mode 100644 index ca210e4d03..0000000000 --- a/playground/sandbox-plasma-stards-integration/build.gradle.kts +++ /dev/null @@ -1,24 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") - id("convention.integration-view") -} - -android { - namespace = "com.sdds.playground.sandbox.plasma.stards.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:plasma-stards-compose") - implementation("tokens:plasma-stards-view") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-plasma-stards-integration/gradle.properties b/playground/sandbox-plasma-stards-integration/gradle.properties deleted file mode 100644 index 00aae4b337..0000000000 --- a/playground/sandbox-plasma-stards-integration/gradle.properties +++ /dev/null @@ -1,5 +0,0 @@ -integration.compose.config-path=../tokens/plasma-stards-compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.plasma.stards.integration.compose - -integration.view.config-path=../tokens/plasma-stards-view/config-info-view-system.json -integration.view.package-name=com.sdds.playground.sandbox.plasma.stards.integration.view \ No newline at end of file diff --git a/playground/sandbox-plasma-stards-integration/src/main/AndroidManifest.xml b/playground/sandbox-plasma-stards-integration/src/main/AndroidManifest.xml deleted file mode 100644 index 7277dc362a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/AndroidManifest.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/StarDsThemeWrapper.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/StarDsThemeWrapper.kt deleted file mode 100644 index 262055f417..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/StarDsThemeWrapper.kt +++ /dev/null @@ -1,35 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalOverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdkit.star.designsystem.styles.list.List -import com.sdkit.star.designsystem.styles.list.M -import com.sdkit.star.designsystem.styles.overlay.Default -import com.sdkit.star.designsystem.styles.overlay.Overlay -import com.sdkit.star.designsystem.theme.StarDsTheme -import com.sdkit.star.designsystem.theme.darkStarDsColors -import com.sdkit.star.designsystem.theme.darkStarDsGradients - -private val Colors = darkStarDsColors() -private val Gradients = darkStarDsGradients() - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun StarDsThemeWrapper(content: @Composable () -> Unit) { - StarDsTheme( - colors = Colors, - gradients = Gradients, - ) { - CompositionLocalProvider( - LocalOverlayStyle provides Overlay.Default.style(), - LocalListStyle provides List.M.style(), - ) { - content() - } - } -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarGroupVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarGroupVariationsCompose.kt deleted file mode 100644 index 1080b1d868..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.avatargroup.AvatarGroup -import com.sdkit.star.designsystem.styles.avatargroup.S - -internal object PlasmaStardsAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarVariationsCompose.kt deleted file mode 100644 index ed5bbc56ee..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.avatar.Avatar -import com.sdkit.star.designsystem.styles.avatar.L -import com.sdkit.star.designsystem.styles.avatar.M -import com.sdkit.star.designsystem.styles.avatar.S -import com.sdkit.star.designsystem.styles.avatar.Xxl - -internal object PlasmaStardsAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeSolidVariationsCompose.kt deleted file mode 100644 index 7c1d915cba..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.badge.Accent -import com.sdkit.star.designsystem.styles.badge.BadgeSolid -import com.sdkit.star.designsystem.styles.badge.Dark -import com.sdkit.star.designsystem.styles.badge.Default -import com.sdkit.star.designsystem.styles.badge.L -import com.sdkit.star.designsystem.styles.badge.Light -import com.sdkit.star.designsystem.styles.badge.M -import com.sdkit.star.designsystem.styles.badge.Negative -import com.sdkit.star.designsystem.styles.badge.Pilled -import com.sdkit.star.designsystem.styles.badge.Positive -import com.sdkit.star.designsystem.styles.badge.S -import com.sdkit.star.designsystem.styles.badge.Warning -import com.sdkit.star.designsystem.styles.badge.Xs - -internal object PlasmaStardsBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 8dfa26d570..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.badge.Accent -import com.sdkit.star.designsystem.styles.badge.BadgeTransparent -import com.sdkit.star.designsystem.styles.badge.Dark -import com.sdkit.star.designsystem.styles.badge.Default -import com.sdkit.star.designsystem.styles.badge.L -import com.sdkit.star.designsystem.styles.badge.Light -import com.sdkit.star.designsystem.styles.badge.M -import com.sdkit.star.designsystem.styles.badge.Negative -import com.sdkit.star.designsystem.styles.badge.Pilled -import com.sdkit.star.designsystem.styles.badge.Positive -import com.sdkit.star.designsystem.styles.badge.S -import com.sdkit.star.designsystem.styles.badge.Warning -import com.sdkit.star.designsystem.styles.badge.Xs - -internal object PlasmaStardsBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonGroupVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index bd36bafab1..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.buttongroup.BasicButtonGroup -import com.sdkit.star.designsystem.styles.buttongroup.Default -import com.sdkit.star.designsystem.styles.buttongroup.Dense -import com.sdkit.star.designsystem.styles.buttongroup.L -import com.sdkit.star.designsystem.styles.buttongroup.M -import com.sdkit.star.designsystem.styles.buttongroup.NoGap -import com.sdkit.star.designsystem.styles.buttongroup.S -import com.sdkit.star.designsystem.styles.buttongroup.Segmented -import com.sdkit.star.designsystem.styles.buttongroup.Wide -import com.sdkit.star.designsystem.styles.buttongroup.Xs - -internal object PlasmaStardsBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonVariationsCompose.kt deleted file mode 100644 index e4e4ab46cb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.basicbutton.BasicButton -import com.sdkit.star.designsystem.styles.basicbutton.Clear -import com.sdkit.star.designsystem.styles.basicbutton.Default -import com.sdkit.star.designsystem.styles.basicbutton.L -import com.sdkit.star.designsystem.styles.basicbutton.M -import com.sdkit.star.designsystem.styles.basicbutton.S -import com.sdkit.star.designsystem.styles.basicbutton.Xs - -internal object PlasmaStardsBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { BasicButton.L.Default.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCellVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCellVariationsCompose.kt deleted file mode 100644 index 8c0c1d1a84..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.cell.Cell -import com.sdkit.star.designsystem.styles.cell.L -import com.sdkit.star.designsystem.styles.cell.M -import com.sdkit.star.designsystem.styles.cell.S -import com.sdkit.star.designsystem.styles.cell.Xs - -internal object PlasmaStardsCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCheckBoxVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCheckBoxVariationsCompose.kt deleted file mode 100644 index a81c62b8e7..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.checkbox.CheckBox -import com.sdkit.star.designsystem.styles.checkbox.Default -import com.sdkit.star.designsystem.styles.checkbox.L -import com.sdkit.star.designsystem.styles.checkbox.M -import com.sdkit.star.designsystem.styles.checkbox.Negative -import com.sdkit.star.designsystem.styles.checkbox.S - -internal object PlasmaStardsCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupDenseVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 623779aebb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.chipgroup.Accent -import com.sdkit.star.designsystem.styles.chipgroup.ChipGroupDense -import com.sdkit.star.designsystem.styles.chipgroup.Default -import com.sdkit.star.designsystem.styles.chipgroup.L -import com.sdkit.star.designsystem.styles.chipgroup.M -import com.sdkit.star.designsystem.styles.chipgroup.Negative -import com.sdkit.star.designsystem.styles.chipgroup.Pilled -import com.sdkit.star.designsystem.styles.chipgroup.Positive -import com.sdkit.star.designsystem.styles.chipgroup.S -import com.sdkit.star.designsystem.styles.chipgroup.Secondary -import com.sdkit.star.designsystem.styles.chipgroup.Warning -import com.sdkit.star.designsystem.styles.chipgroup.Xs - -internal object PlasmaStardsChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Negative" to { ChipGroupDense.L.Negative.style() }, - "L.Positive" to { ChipGroupDense.L.Positive.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Warning" to { ChipGroupDense.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupDense.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupDense.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupDense.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Negative" to { ChipGroupDense.M.Negative.style() }, - "M.Positive" to { ChipGroupDense.M.Positive.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Warning" to { ChipGroupDense.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupDense.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupDense.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupDense.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Negative" to { ChipGroupDense.S.Negative.style() }, - "S.Positive" to { ChipGroupDense.S.Positive.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Warning" to { ChipGroupDense.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupDense.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupDense.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupDense.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupDense.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupDense.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupDense.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupDense.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupWideVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupWideVariationsCompose.kt deleted file mode 100644 index a27c1b43c8..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.chipgroup.Accent -import com.sdkit.star.designsystem.styles.chipgroup.ChipGroupWide -import com.sdkit.star.designsystem.styles.chipgroup.Default -import com.sdkit.star.designsystem.styles.chipgroup.L -import com.sdkit.star.designsystem.styles.chipgroup.M -import com.sdkit.star.designsystem.styles.chipgroup.Negative -import com.sdkit.star.designsystem.styles.chipgroup.Pilled -import com.sdkit.star.designsystem.styles.chipgroup.Positive -import com.sdkit.star.designsystem.styles.chipgroup.S -import com.sdkit.star.designsystem.styles.chipgroup.Secondary -import com.sdkit.star.designsystem.styles.chipgroup.Warning -import com.sdkit.star.designsystem.styles.chipgroup.Xs - -internal object PlasmaStardsChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Negative" to { ChipGroupWide.L.Negative.style() }, - "L.Positive" to { ChipGroupWide.L.Positive.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Warning" to { ChipGroupWide.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupWide.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupWide.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupWide.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Negative" to { ChipGroupWide.M.Negative.style() }, - "M.Positive" to { ChipGroupWide.M.Positive.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Warning" to { ChipGroupWide.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupWide.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupWide.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupWide.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Negative" to { ChipGroupWide.S.Negative.style() }, - "S.Positive" to { ChipGroupWide.S.Positive.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Warning" to { ChipGroupWide.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupWide.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupWide.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupWide.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupWide.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupWide.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupWide.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupWide.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipVariationsCompose.kt deleted file mode 100644 index e89deb451f..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsChipVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.chip.Accent -import com.sdkit.star.designsystem.styles.chip.Chip -import com.sdkit.star.designsystem.styles.chip.Default -import com.sdkit.star.designsystem.styles.chip.L -import com.sdkit.star.designsystem.styles.chip.M -import com.sdkit.star.designsystem.styles.chip.Negative -import com.sdkit.star.designsystem.styles.chip.Pilled -import com.sdkit.star.designsystem.styles.chip.Positive -import com.sdkit.star.designsystem.styles.chip.S -import com.sdkit.star.designsystem.styles.chip.Secondary -import com.sdkit.star.designsystem.styles.chip.Warning -import com.sdkit.star.designsystem.styles.chip.Xs - -internal object PlasmaStardsChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Negative" to { Chip.L.Negative.style() }, - "L.Positive" to { Chip.L.Positive.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Warning" to { Chip.L.Warning.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { Chip.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { Chip.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { Chip.L.Pilled.Warning.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Negative" to { Chip.M.Negative.style() }, - "M.Positive" to { Chip.M.Positive.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Warning" to { Chip.M.Warning.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { Chip.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { Chip.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { Chip.M.Pilled.Warning.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Negative" to { Chip.S.Negative.style() }, - "S.Positive" to { Chip.S.Positive.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Warning" to { Chip.S.Warning.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { Chip.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { Chip.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { Chip.S.Pilled.Warning.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Negative" to { Chip.Xs.Negative.style() }, - "Xs.Positive" to { Chip.Xs.Positive.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Warning" to { Chip.Xs.Warning.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { Chip.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { Chip.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { Chip.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCircularProgressBarVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCircularProgressBarVariationsCompose.kt deleted file mode 100644 index ba36ae401e..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.circularprogressbar.Accent -import com.sdkit.star.designsystem.styles.circularprogressbar.CircularProgressBar -import com.sdkit.star.designsystem.styles.circularprogressbar.Default -import com.sdkit.star.designsystem.styles.circularprogressbar.Gradient -import com.sdkit.star.designsystem.styles.circularprogressbar.Info -import com.sdkit.star.designsystem.styles.circularprogressbar.L -import com.sdkit.star.designsystem.styles.circularprogressbar.M -import com.sdkit.star.designsystem.styles.circularprogressbar.Negative -import com.sdkit.star.designsystem.styles.circularprogressbar.Positive -import com.sdkit.star.designsystem.styles.circularprogressbar.S -import com.sdkit.star.designsystem.styles.circularprogressbar.Secondary -import com.sdkit.star.designsystem.styles.circularprogressbar.Warning -import com.sdkit.star.designsystem.styles.circularprogressbar.Xl -import com.sdkit.star.designsystem.styles.circularprogressbar.Xs -import com.sdkit.star.designsystem.styles.circularprogressbar.Xxl -import com.sdkit.star.designsystem.styles.circularprogressbar.Xxs - -internal object PlasmaStardsCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCodeInputVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCodeInputVariationsCompose.kt deleted file mode 100644 index 0892f473cb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.codeinput.CodeInput -import com.sdkit.star.designsystem.styles.codeinput.L -import com.sdkit.star.designsystem.styles.codeinput.M -import com.sdkit.star.designsystem.styles.codeinput.S - -internal object PlasmaStardsCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCounterVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCounterVariationsCompose.kt deleted file mode 100644 index 54fd47d28c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.counter.Accent -import com.sdkit.star.designsystem.styles.counter.Black -import com.sdkit.star.designsystem.styles.counter.Counter -import com.sdkit.star.designsystem.styles.counter.Default -import com.sdkit.star.designsystem.styles.counter.L -import com.sdkit.star.designsystem.styles.counter.M -import com.sdkit.star.designsystem.styles.counter.Negative -import com.sdkit.star.designsystem.styles.counter.Positive -import com.sdkit.star.designsystem.styles.counter.S -import com.sdkit.star.designsystem.styles.counter.Warning -import com.sdkit.star.designsystem.styles.counter.White -import com.sdkit.star.designsystem.styles.counter.Xs -import com.sdkit.star.designsystem.styles.counter.Xxs - -internal object PlasmaStardsCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDividerVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDividerVariationsCompose.kt deleted file mode 100644 index 9897d339f2..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.divider.Default -import com.sdkit.star.designsystem.styles.divider.Divider - -internal object PlasmaStardsDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDrawerVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDrawerVariationsCompose.kt deleted file mode 100644 index d46822237a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDrawerVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.drawer.Drawer -import com.sdkit.star.designsystem.styles.drawer.HasBackground -import com.sdkit.star.designsystem.styles.drawer.NoBackground - -internal object PlasmaStardsDrawerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "HasBackground" to { Drawer.HasBackground.style() }, - "NoBackground" to { Drawer.NoBackground.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuItemVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuItemVariationsCompose.kt deleted file mode 100644 index ebd01fff0c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuItemVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.listitem.Default -import com.sdkit.star.designsystem.styles.listitem.DropdownMenuItem -import com.sdkit.star.designsystem.styles.listitem.L -import com.sdkit.star.designsystem.styles.listitem.M -import com.sdkit.star.designsystem.styles.listitem.Negative -import com.sdkit.star.designsystem.styles.listitem.Positive -import com.sdkit.star.designsystem.styles.listitem.S -import com.sdkit.star.designsystem.styles.listitem.Xl -import com.sdkit.star.designsystem.styles.listitem.Xs - -internal object PlasmaStardsDropdownMenuItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItem.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItem.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItem.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItem.L.Default.style() }, - "L.Positive" to { DropdownMenuItem.L.Positive.style() }, - "L.Negative" to { DropdownMenuItem.L.Negative.style() }, - "M.Default" to { DropdownMenuItem.M.Default.style() }, - "M.Positive" to { DropdownMenuItem.M.Positive.style() }, - "M.Negative" to { DropdownMenuItem.M.Negative.style() }, - "S.Default" to { DropdownMenuItem.S.Default.style() }, - "S.Positive" to { DropdownMenuItem.S.Positive.style() }, - "S.Negative" to { DropdownMenuItem.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItem.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItem.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItem.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuListVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuListVariationsCompose.kt deleted file mode 100644 index 5e5aa920de..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuListVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.list.DropdownMenuList -import com.sdkit.star.designsystem.styles.list.L -import com.sdkit.star.designsystem.styles.list.M -import com.sdkit.star.designsystem.styles.list.S -import com.sdkit.star.designsystem.styles.list.Xl -import com.sdkit.star.designsystem.styles.list.Xs - -internal object PlasmaStardsDropdownMenuListVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuList.Xl.style() }, - "L" to { DropdownMenuList.L.style() }, - "M" to { DropdownMenuList.M.style() }, - "S" to { DropdownMenuList.S.style() }, - "Xs" to { DropdownMenuList.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuVariationsCompose.kt deleted file mode 100644 index 8b8277ec95..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsDropdownMenuVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.dropdownmenu.DropdownMenu -import com.sdkit.star.designsystem.styles.dropdownmenu.L -import com.sdkit.star.designsystem.styles.dropdownmenu.M -import com.sdkit.star.designsystem.styles.dropdownmenu.S -import com.sdkit.star.designsystem.styles.dropdownmenu.Xl -import com.sdkit.star.designsystem.styles.dropdownmenu.Xs - -internal object PlasmaStardsDropdownMenuVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenu.Xl.style() }, - "L" to { DropdownMenu.L.style() }, - "M" to { DropdownMenu.M.style() }, - "S" to { DropdownMenu.S.style() }, - "Xs" to { DropdownMenu.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeSolidVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index 94bc27e20e..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.iconbadge.Accent -import com.sdkit.star.designsystem.styles.iconbadge.Dark -import com.sdkit.star.designsystem.styles.iconbadge.Default -import com.sdkit.star.designsystem.styles.iconbadge.IconBadgeSolid -import com.sdkit.star.designsystem.styles.iconbadge.L -import com.sdkit.star.designsystem.styles.iconbadge.Light -import com.sdkit.star.designsystem.styles.iconbadge.M -import com.sdkit.star.designsystem.styles.iconbadge.Negative -import com.sdkit.star.designsystem.styles.iconbadge.Pilled -import com.sdkit.star.designsystem.styles.iconbadge.Positive -import com.sdkit.star.designsystem.styles.iconbadge.S -import com.sdkit.star.designsystem.styles.iconbadge.Warning -import com.sdkit.star.designsystem.styles.iconbadge.Xs - -internal object PlasmaStardsIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index d91fb03811..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.iconbadge.Accent -import com.sdkit.star.designsystem.styles.iconbadge.Dark -import com.sdkit.star.designsystem.styles.iconbadge.Default -import com.sdkit.star.designsystem.styles.iconbadge.IconBadgeTransparent -import com.sdkit.star.designsystem.styles.iconbadge.L -import com.sdkit.star.designsystem.styles.iconbadge.Light -import com.sdkit.star.designsystem.styles.iconbadge.M -import com.sdkit.star.designsystem.styles.iconbadge.Negative -import com.sdkit.star.designsystem.styles.iconbadge.Pilled -import com.sdkit.star.designsystem.styles.iconbadge.Positive -import com.sdkit.star.designsystem.styles.iconbadge.S -import com.sdkit.star.designsystem.styles.iconbadge.Warning -import com.sdkit.star.designsystem.styles.iconbadge.Xs - -internal object PlasmaStardsIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconButtonVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconButtonVariationsCompose.kt deleted file mode 100644 index 6083676e4b..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIconButtonVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.iconbutton.Clear -import com.sdkit.star.designsystem.styles.iconbutton.Default -import com.sdkit.star.designsystem.styles.iconbutton.IconButton -import com.sdkit.star.designsystem.styles.iconbutton.L -import com.sdkit.star.designsystem.styles.iconbutton.M -import com.sdkit.star.designsystem.styles.iconbutton.Pilled -import com.sdkit.star.designsystem.styles.iconbutton.S -import com.sdkit.star.designsystem.styles.iconbutton.Xs - -internal object PlasmaStardsIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { IconButton.L.Default.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsImageVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsImageVariationsCompose.kt deleted file mode 100644 index 2be5fd4327..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.image.Image -import com.sdkit.star.designsystem.styles.image.Ratio16x9 -import com.sdkit.star.designsystem.styles.image.Ratio1x1 -import com.sdkit.star.designsystem.styles.image.Ratio1x2 -import com.sdkit.star.designsystem.styles.image.Ratio2x1 -import com.sdkit.star.designsystem.styles.image.Ratio3x4 -import com.sdkit.star.designsystem.styles.image.Ratio4x3 -import com.sdkit.star.designsystem.styles.image.Ratio9x16 - -internal object PlasmaStardsImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIndicatorVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIndicatorVariationsCompose.kt deleted file mode 100644 index cc5d198bce..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsIndicatorVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.indicator.Accent -import com.sdkit.star.designsystem.styles.indicator.Black -import com.sdkit.star.designsystem.styles.indicator.Dark -import com.sdkit.star.designsystem.styles.indicator.Default -import com.sdkit.star.designsystem.styles.indicator.Inactive -import com.sdkit.star.designsystem.styles.indicator.Indicator -import com.sdkit.star.designsystem.styles.indicator.L -import com.sdkit.star.designsystem.styles.indicator.M -import com.sdkit.star.designsystem.styles.indicator.Negative -import com.sdkit.star.designsystem.styles.indicator.Positive -import com.sdkit.star.designsystem.styles.indicator.S -import com.sdkit.star.designsystem.styles.indicator.Warning -import com.sdkit.star.designsystem.styles.indicator.White - -internal object PlasmaStardsIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Dark" to { Indicator.L.Dark.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Dark" to { Indicator.M.Dark.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Dark" to { Indicator.S.Dark.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListItemVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListItemVariationsCompose.kt deleted file mode 100644 index b3c04b28ae..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListItemVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.listitem.L -import com.sdkit.star.designsystem.styles.listitem.ListItem -import com.sdkit.star.designsystem.styles.listitem.M -import com.sdkit.star.designsystem.styles.listitem.S -import com.sdkit.star.designsystem.styles.listitem.Xs - -internal object PlasmaStardsListItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "L" to { ListItem.L.style() }, - "M" to { ListItem.M.style() }, - "S" to { ListItem.S.style() }, - "Xs" to { ListItem.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListVariationsCompose.kt deleted file mode 100644 index 8e19efd9d3..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsListVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.list.L -import com.sdkit.star.designsystem.styles.list.List -import com.sdkit.star.designsystem.styles.list.M -import com.sdkit.star.designsystem.styles.list.S -import com.sdkit.star.designsystem.styles.list.Xs - -internal object PlasmaStardsListVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "L" to { List.L.style() }, - "M" to { List.M.style() }, - "S" to { List.S.style() }, - "Xs" to { List.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsLoaderVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsLoaderVariationsCompose.kt deleted file mode 100644 index 06eadddb15..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.loader.Default -import com.sdkit.star.designsystem.styles.loader.Loader - -internal object PlasmaStardsLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsModalVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsModalVariationsCompose.kt deleted file mode 100644 index f7d44334f0..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.modal.Default -import com.sdkit.star.designsystem.styles.modal.Modal - -internal object PlasmaStardsModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationCompactVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationCompactVariationsCompose.kt deleted file mode 100644 index bfeafa69a3..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.notification.L -import com.sdkit.star.designsystem.styles.notification.M -import com.sdkit.star.designsystem.styles.notification.NotificationCompact -import com.sdkit.star.designsystem.styles.notification.S - -internal object PlasmaStardsNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationContentVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationContentVariationsCompose.kt deleted file mode 100644 index 62c20a54d2..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.notificationcontent.ButtonStretch -import com.sdkit.star.designsystem.styles.notificationcontent.Default -import com.sdkit.star.designsystem.styles.notificationcontent.IconStart -import com.sdkit.star.designsystem.styles.notificationcontent.IconTop -import com.sdkit.star.designsystem.styles.notificationcontent.Info -import com.sdkit.star.designsystem.styles.notificationcontent.Negative -import com.sdkit.star.designsystem.styles.notificationcontent.NoButtonStretch -import com.sdkit.star.designsystem.styles.notificationcontent.NotificationContent -import com.sdkit.star.designsystem.styles.notificationcontent.Positive -import com.sdkit.star.designsystem.styles.notificationcontent.Warning - -internal object PlasmaStardsNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationLooseVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationLooseVariationsCompose.kt deleted file mode 100644 index e2f6008a0f..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.notification.L -import com.sdkit.star.designsystem.styles.notification.M -import com.sdkit.star.designsystem.styles.notification.NotificationLoose -import com.sdkit.star.designsystem.styles.notification.S - -internal object PlasmaStardsNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsOverlayVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsOverlayVariationsCompose.kt deleted file mode 100644 index a7f0b79aea..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.overlay.Default -import com.sdkit.star.designsystem.styles.overlay.Overlay - -internal object PlasmaStardsOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt deleted file mode 100644 index 3091096c3a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.paginationdots.ActiveTypeLine -import com.sdkit.star.designsystem.styles.paginationdots.M -import com.sdkit.star.designsystem.styles.paginationdots.PaginationDotsHorizontal -import com.sdkit.star.designsystem.styles.paginationdots.S - -internal object PlasmaStardsPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsHorizontal.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsHorizontal.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt deleted file mode 100644 index 51784d9d75..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.paginationdots.ActiveTypeLine -import com.sdkit.star.designsystem.styles.paginationdots.M -import com.sdkit.star.designsystem.styles.paginationdots.PaginationDotsVertical -import com.sdkit.star.designsystem.styles.paginationdots.S - -internal object PlasmaStardsPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsVertical.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsVertical.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsVertical.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsVertical.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPopoverVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPopoverVariationsCompose.kt deleted file mode 100644 index 33f591e3c4..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.popover.Accent -import com.sdkit.star.designsystem.styles.popover.Default -import com.sdkit.star.designsystem.styles.popover.M -import com.sdkit.star.designsystem.styles.popover.Popover -import com.sdkit.star.designsystem.styles.popover.S - -internal object PlasmaStardsPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsProgressBarVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsProgressBarVariationsCompose.kt deleted file mode 100644 index e2cca90a96..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsProgressBarVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.progressbar.Accent -import com.sdkit.star.designsystem.styles.progressbar.Default -import com.sdkit.star.designsystem.styles.progressbar.Gradient -import com.sdkit.star.designsystem.styles.progressbar.Info -import com.sdkit.star.designsystem.styles.progressbar.Negative -import com.sdkit.star.designsystem.styles.progressbar.Positive -import com.sdkit.star.designsystem.styles.progressbar.ProgressBar -import com.sdkit.star.designsystem.styles.progressbar.Secondary -import com.sdkit.star.designsystem.styles.progressbar.Warning - -internal object PlasmaStardsProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Info" to { ProgressBar.Info.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxGroupVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index 04b7a00d9d..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.radioboxgroup.M -import com.sdkit.star.designsystem.styles.radioboxgroup.RadioBoxGroup -import com.sdkit.star.designsystem.styles.radioboxgroup.S - -internal object PlasmaStardsRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxVariationsCompose.kt deleted file mode 100644 index f6225b84ac..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.radiobox.L -import com.sdkit.star.designsystem.styles.radiobox.M -import com.sdkit.star.designsystem.styles.radiobox.RadioBox -import com.sdkit.star.designsystem.styles.radiobox.S - -internal object PlasmaStardsRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRectSkeletonVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRectSkeletonVariationsCompose.kt deleted file mode 100644 index d0a573f0c0..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.rectskeleton.Default -import com.sdkit.star.designsystem.styles.rectskeleton.RectSkeleton - -internal object PlasmaStardsRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsScrollBarVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsScrollBarVariationsCompose.kt deleted file mode 100644 index 8f4e4d34ae..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.scrollbar.M -import com.sdkit.star.designsystem.styles.scrollbar.S -import com.sdkit.star.designsystem.styles.scrollbar.ScrollBar - -internal object PlasmaStardsScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentItemVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentItemVariationsCompose.kt deleted file mode 100644 index ae9bd1ac48..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.segmentitem.L -import com.sdkit.star.designsystem.styles.segmentitem.M -import com.sdkit.star.designsystem.styles.segmentitem.Pilled -import com.sdkit.star.designsystem.styles.segmentitem.Primary -import com.sdkit.star.designsystem.styles.segmentitem.S -import com.sdkit.star.designsystem.styles.segmentitem.Secondary -import com.sdkit.star.designsystem.styles.segmentitem.SegmentItem -import com.sdkit.star.designsystem.styles.segmentitem.Xl -import com.sdkit.star.designsystem.styles.segmentitem.Xs - -internal object PlasmaStardsSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Xl.Primary" to { SegmentItem.Xl.Primary.style() }, - "Xl.Secondary" to { SegmentItem.Xl.Secondary.style() }, - "Xl.Pilled.Primary" to { SegmentItem.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { SegmentItem.Xl.Pilled.Secondary.style() }, - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentVariationsCompose.kt deleted file mode 100644 index 72a1b3ce45..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSegmentVariationsCompose.kt +++ /dev/null @@ -1,41 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.segment.L -import com.sdkit.star.designsystem.styles.segment.M -import com.sdkit.star.designsystem.styles.segment.Pilled -import com.sdkit.star.designsystem.styles.segment.Primary -import com.sdkit.star.designsystem.styles.segment.S -import com.sdkit.star.designsystem.styles.segment.Secondary -import com.sdkit.star.designsystem.styles.segment.Segment -import com.sdkit.star.designsystem.styles.segment.Xl -import com.sdkit.star.designsystem.styles.segment.Xs - -internal object PlasmaStardsSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Xl.Primary" to { Segment.Xl.Primary.style() }, - "Xl.Secondary" to { Segment.Xl.Secondary.style() }, - "Xl.Pilled.Primary" to { Segment.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { Segment.Xl.Pilled.Secondary.style() }, - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSpinnerVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSpinnerVariationsCompose.kt deleted file mode 100644 index 8e47ac3a60..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSpinnerVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.spinner.Accent -import com.sdkit.star.designsystem.styles.spinner.Default -import com.sdkit.star.designsystem.styles.spinner.Info -import com.sdkit.star.designsystem.styles.spinner.L -import com.sdkit.star.designsystem.styles.spinner.M -import com.sdkit.star.designsystem.styles.spinner.Negative -import com.sdkit.star.designsystem.styles.spinner.Positive -import com.sdkit.star.designsystem.styles.spinner.S -import com.sdkit.star.designsystem.styles.spinner.Scalable -import com.sdkit.star.designsystem.styles.spinner.Secondary -import com.sdkit.star.designsystem.styles.spinner.Spinner -import com.sdkit.star.designsystem.styles.spinner.Warning -import com.sdkit.star.designsystem.styles.spinner.Xl -import com.sdkit.star.designsystem.styles.spinner.Xs -import com.sdkit.star.designsystem.styles.spinner.Xxl -import com.sdkit.star.designsystem.styles.spinner.Xxs - -internal object PlasmaStardsSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "Xxl.Default" to { Spinner.Xxl.Default.style() }, - "Xxl.Secondary" to { Spinner.Xxl.Secondary.style() }, - "Xxl.Accent" to { Spinner.Xxl.Accent.style() }, - "Xxl.Positive" to { Spinner.Xxl.Positive.style() }, - "Xxl.Negative" to { Spinner.Xxl.Negative.style() }, - "Xxl.Warning" to { Spinner.Xxl.Warning.style() }, - "Xxl.Info" to { Spinner.Xxl.Info.style() }, - "Xl.Default" to { Spinner.Xl.Default.style() }, - "Xl.Secondary" to { Spinner.Xl.Secondary.style() }, - "Xl.Accent" to { Spinner.Xl.Accent.style() }, - "Xl.Positive" to { Spinner.Xl.Positive.style() }, - "Xl.Negative" to { Spinner.Xl.Negative.style() }, - "Xl.Warning" to { Spinner.Xl.Warning.style() }, - "Xl.Info" to { Spinner.Xl.Info.style() }, - "L.Default" to { Spinner.L.Default.style() }, - "L.Secondary" to { Spinner.L.Secondary.style() }, - "L.Accent" to { Spinner.L.Accent.style() }, - "L.Positive" to { Spinner.L.Positive.style() }, - "L.Negative" to { Spinner.L.Negative.style() }, - "L.Warning" to { Spinner.L.Warning.style() }, - "L.Info" to { Spinner.L.Info.style() }, - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSwitchVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSwitchVariationsCompose.kt deleted file mode 100644 index d45699e508..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.switcher.HasBackground -import com.sdkit.star.designsystem.styles.switcher.L -import com.sdkit.star.designsystem.styles.switcher.M -import com.sdkit.star.designsystem.styles.switcher.S -import com.sdkit.star.designsystem.styles.switcher.Switch - -internal object PlasmaStardsSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.HasBackground" to { Switch.L.HasBackground.style() }, - "M" to { Switch.M.style() }, - "M.HasBackground" to { Switch.M.HasBackground.style() }, - "S" to { Switch.S.style() }, - "S.HasBackground" to { Switch.S.HasBackground.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaClearVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaClearVariationsCompose.kt deleted file mode 100644 index c76c33fc12..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,43 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textarea.Default -import com.sdkit.star.designsystem.styles.textarea.Error -import com.sdkit.star.designsystem.styles.textarea.InnerLabel -import com.sdkit.star.designsystem.styles.textarea.L -import com.sdkit.star.designsystem.styles.textarea.M -import com.sdkit.star.designsystem.styles.textarea.OuterLabel -import com.sdkit.star.designsystem.styles.textarea.S -import com.sdkit.star.designsystem.styles.textarea.TextAreaClear -import com.sdkit.star.designsystem.styles.textarea.Xs - -internal object PlasmaStardsTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaVariationsCompose.kt deleted file mode 100644 index 40214e1bed..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextAreaVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textarea.Default -import com.sdkit.star.designsystem.styles.textarea.Error -import com.sdkit.star.designsystem.styles.textarea.InnerLabel -import com.sdkit.star.designsystem.styles.textarea.M -import com.sdkit.star.designsystem.styles.textarea.OuterLabel -import com.sdkit.star.designsystem.styles.textarea.S -import com.sdkit.star.designsystem.styles.textarea.TextArea -import com.sdkit.star.designsystem.styles.textarea.Xs - -internal object PlasmaStardsTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldClearVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldClearVariationsCompose.kt deleted file mode 100644 index 1e1afb78a2..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,43 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textfield.Default -import com.sdkit.star.designsystem.styles.textfield.Error -import com.sdkit.star.designsystem.styles.textfield.InnerLabel -import com.sdkit.star.designsystem.styles.textfield.L -import com.sdkit.star.designsystem.styles.textfield.M -import com.sdkit.star.designsystem.styles.textfield.OuterLabel -import com.sdkit.star.designsystem.styles.textfield.S -import com.sdkit.star.designsystem.styles.textfield.TextFieldClear -import com.sdkit.star.designsystem.styles.textfield.Xs - -internal object PlasmaStardsTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldVariationsCompose.kt deleted file mode 100644 index cb173c5e0e..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextFieldVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textfield.Default -import com.sdkit.star.designsystem.styles.textfield.Error -import com.sdkit.star.designsystem.styles.textfield.InnerLabel -import com.sdkit.star.designsystem.styles.textfield.M -import com.sdkit.star.designsystem.styles.textfield.OuterLabel -import com.sdkit.star.designsystem.styles.textfield.S -import com.sdkit.star.designsystem.styles.textfield.TextField -import com.sdkit.star.designsystem.styles.textfield.Xs - -internal object PlasmaStardsTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonBodyVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonBodyVariationsCompose.kt deleted file mode 100644 index deecfa4626..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonBodyVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textskeleton.L -import com.sdkit.star.designsystem.styles.textskeleton.M -import com.sdkit.star.designsystem.styles.textskeleton.S -import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonBody -import com.sdkit.star.designsystem.styles.textskeleton.Xs -import com.sdkit.star.designsystem.styles.textskeleton.Xxs - -internal object PlasmaStardsTextSkeletonBodyVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonBody.L.style() }, - "M" to { TextSkeletonBody.M.style() }, - "S" to { TextSkeletonBody.S.style() }, - "Xs" to { TextSkeletonBody.Xs.style() }, - "Xxs" to { TextSkeletonBody.Xxs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt deleted file mode 100644 index 68447b0c74..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textskeleton.L -import com.sdkit.star.designsystem.styles.textskeleton.M -import com.sdkit.star.designsystem.styles.textskeleton.S -import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonDisplay - -internal object PlasmaStardsTextSkeletonDisplayVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonDisplay.L.style() }, - "M" to { TextSkeletonDisplay.M.style() }, - "S" to { TextSkeletonDisplay.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt deleted file mode 100644 index b5d4b7cea1..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textskeleton.H1 -import com.sdkit.star.designsystem.styles.textskeleton.H2 -import com.sdkit.star.designsystem.styles.textskeleton.H3 -import com.sdkit.star.designsystem.styles.textskeleton.H4 -import com.sdkit.star.designsystem.styles.textskeleton.H5 -import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonHeader - -internal object PlasmaStardsTextSkeletonHeaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "H1" to { TextSkeletonHeader.H1.style() }, - "H2" to { TextSkeletonHeader.H2.style() }, - "H3" to { TextSkeletonHeader.H3.style() }, - "H4" to { TextSkeletonHeader.H4.style() }, - "H5" to { TextSkeletonHeader.H5.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonTextVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonTextVariationsCompose.kt deleted file mode 100644 index 9b806259a6..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonTextVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textskeleton.L -import com.sdkit.star.designsystem.styles.textskeleton.M -import com.sdkit.star.designsystem.styles.textskeleton.S -import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonText -import com.sdkit.star.designsystem.styles.textskeleton.Xs - -internal object PlasmaStardsTextSkeletonTextVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "L" to { TextSkeletonText.L.style() }, - "M" to { TextSkeletonText.M.style() }, - "S" to { TextSkeletonText.S.style() }, - "Xs" to { TextSkeletonText.Xs.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonVariationsCompose.kt deleted file mode 100644 index 8dcc102177..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.textskeleton.Default -import com.sdkit.star.designsystem.styles.textskeleton.TextSkeleton - -internal object PlasmaStardsTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTooltipVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTooltipVariationsCompose.kt deleted file mode 100644 index 479999eb55..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.tooltip.M -import com.sdkit.star.designsystem.styles.tooltip.S -import com.sdkit.star.designsystem.styles.tooltip.Tooltip - -internal object PlasmaStardsTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsWheelVariationsCompose.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsWheelVariationsCompose.kt deleted file mode 100644 index 67f0166037..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsWheelVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.WheelStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdkit.star.designsystem.styles.wheel.CenterAlign -import com.sdkit.star.designsystem.styles.wheel.H1 -import com.sdkit.star.designsystem.styles.wheel.LeftAlign -import com.sdkit.star.designsystem.styles.wheel.MixedAlign -import com.sdkit.star.designsystem.styles.wheel.RightAlign -import com.sdkit.star.designsystem.styles.wheel.Wheel - -internal object PlasmaStardsWheelVariationsCompose : ComposeStyleProvider() { - override val variations: Map WheelStyle> = - mapOf( - "H1" to { Wheel.H1.style() }, - "H1.RightAlign" to { Wheel.H1.RightAlign.style() }, - "H1.CenterAlign" to { Wheel.H1.CenterAlign.style() }, - "H1.LeftAlign" to { Wheel.H1.LeftAlign.style() }, - "H1.MixedAlign" to { Wheel.H1.MixedAlign.style() }, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarGroupVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarGroupVariationsView.kt deleted file mode 100644 index be29e51a30..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarGroupVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsAvatarGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_AvatarGroupS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarVariationsView.kt deleted file mode 100644 index 62505c2d3a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsAvatarVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsAvatarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Sdkit_StarDs_ComponentOverlays_AvatarXxl, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_AvatarL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_AvatarM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_AvatarS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeSolidVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeSolidVariationsView.kt deleted file mode 100644 index d0466819cb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLWarning, - "L.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLDark, - "L.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLLight, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidLPilledLight, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMWarning, - "M.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMDark, - "M.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMLight, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidMPilledLight, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSWarning, - "S.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSDark, - "S.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSLight, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidSPilledLight, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsDark, - "Xs.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeTransparentVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeTransparentVariationsView.kt deleted file mode 100644 index 9de841fa0f..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLWarning, - "L.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLDark, - "L.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLLight, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentLPilledLight, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMWarning, - "M.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMDark, - "M.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMLight, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentMPilledLight, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSWarning, - "S.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSDark, - "S.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSLight, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentSPilledLight, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsDark, - "Xs.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_BadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonGroupVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonGroupVariationsView.kt deleted file mode 100644 index fc4dc77b23..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonGroupVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsBasicButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXs, - "Xs.Wide" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsWideDefault, - "Xs.Wide.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsDenseDefault, - "Xs.Dense.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsNoGapDefault, - "Xs.NoGap.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupXsNoGapSegmented, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupS, - "S.Wide" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSWide, - "S.Wide.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSWideDefault, - "S.Wide.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSDense, - "S.Dense.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSDenseDefault, - "S.Dense.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSNoGapDefault, - "S.NoGap.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupSNoGapSegmented, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupM, - "M.Wide" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMWide, - "M.Wide.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMWideDefault, - "M.Wide.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMDense, - "M.Dense.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMDenseDefault, - "M.Dense.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMNoGapDefault, - "M.NoGap.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupMNoGapSegmented, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupL, - "L.Wide" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLWide, - "L.Wide.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLWideDefault, - "L.Wide.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLDense, - "L.Dense.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLDenseDefault, - "L.Dense.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLNoGapDefault, - "L.NoGap.Segmented" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonVariationsView.kt deleted file mode 100644 index e95cbfe3fb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsBasicButtonVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsBasicButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonLDefault, - "L.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonLClear, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonMDefault, - "M.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonMClear, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonSDefault, - "S.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonSClear, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonXsDefault, - "Xs.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_BasicButtonXsClear, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCardVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCardVariationsView.kt deleted file mode 100644 index 592c553679..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCardVariationsView.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCardVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Horizontal" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardHorizontal, - "Horizontal.S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardHorizontalS, - "Horizontal.Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardHorizontalXs, - "Vertical" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardVertical, - "Vertical.M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardVerticalM, - "Vertical.S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardVerticalS, - "Square" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardSquare, - "Square.L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardSquareL, - "Square.Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CardSquareXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCellVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCellVariationsView.kt deleted file mode 100644 index 3c76ee92fc..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCellVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCellVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CellL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CellM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CellS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CellXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCheckBoxVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCheckBoxVariationsView.kt deleted file mode 100644 index f2721ac787..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCheckBoxVariationsView.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCheckBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxLDefault, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxLNegative, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxMDefault, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxMNegative, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxSDefault, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CheckBoxSNegative, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupDenseVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupDenseVariationsView.kt deleted file mode 100644 index 93b75028b1..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPositive, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLSecondary, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLWarning, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseLPilledWarning, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPositive, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMSecondary, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMWarning, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseMPilledWarning, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPositive, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSSecondary, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSWarning, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseSPilledWarning, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPositive, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsSecondary, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsWarning, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupDenseXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupWideVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupWideVariationsView.kt deleted file mode 100644 index a9345d99a9..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipGroupWideVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPositive, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLSecondary, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLWarning, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideLPilledWarning, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPositive, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMSecondary, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMWarning, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideMPilledWarning, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPositive, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSSecondary, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSWarning, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideSPilledWarning, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPositive, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsSecondary, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsWarning, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipGroupWideXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipVariationsView.kt deleted file mode 100644 index 32bf39e82e..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsChipVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPositive, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLSecondary, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLWarning, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipLPilledWarning, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPositive, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMSecondary, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMWarning, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipMPilledWarning, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPositive, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSSecondary, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSWarning, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipSPilledWarning, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPositive, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsSecondary, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsWarning, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ChipXsPilledWarning, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCircularProgressBarVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCircularProgressBarVariationsView.kt deleted file mode 100644 index 43111147d6..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCircularProgressBarVariationsView.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCircularProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxl, - "Xxl.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlDefault, - "Xxl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlSecondary, - "Xxl.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlAccent, - "Xxl.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlGradient, - "Xxl.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlInfo, - "Xxl.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlNegative, - "Xxl.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlPositive, - "Xxl.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxlWarning, - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXl, - "Xl.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlDefault, - "Xl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlSecondary, - "Xl.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlAccent, - "Xl.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlGradient, - "Xl.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlInfo, - "Xl.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlNegative, - "Xl.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlPositive, - "Xl.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXlWarning, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLDefault, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLSecondary, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLAccent, - "L.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLGradient, - "L.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLInfo, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarLWarning, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMDefault, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMSecondary, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMAccent, - "M.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMGradient, - "M.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMInfo, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarMWarning, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSDefault, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSSecondary, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSAccent, - "S.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSGradient, - "S.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSInfo, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarSWarning, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsDefault, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsSecondary, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsAccent, - "Xs.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsGradient, - "Xs.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsInfo, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXsWarning, - "Xxs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxs, - "Xxs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsDefault, - "Xxs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsSecondary, - "Xxs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsAccent, - "Xxs.Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsGradient, - "Xxs.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsInfo, - "Xxs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsNegative, - "Xxs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsPositive, - "Xxs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CircularProgressBarXxsWarning, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCodeInputVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCodeInputVariationsView.kt deleted file mode 100644 index 4753b5697b..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCodeInputVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCodeInputVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CodeInputS, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CodeInputM, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CodeInputL, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCounterVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCounterVariationsView.kt deleted file mode 100644 index 5c4e64dcc0..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsCounterVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsCounterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLAccent, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLWarning, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLNegative, - "L.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLBlack, - "L.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterLWhite, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMAccent, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMWarning, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMNegative, - "M.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMBlack, - "M.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterMWhite, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSAccent, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSWarning, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSNegative, - "S.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSBlack, - "S.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterSWhite, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsAccent, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsWarning, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsNegative, - "Xs.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsBlack, - "Xs.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXsWhite, - "Xxs" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxs, - "Xxs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsDefault, - "Xxs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsAccent, - "Xxs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsPositive, - "Xxs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsWarning, - "Xxs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsNegative, - "Xxs.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsBlack, - "Xxs.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_CounterXxsWhite, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDividerVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDividerVariationsView.kt deleted file mode 100644 index b156cba041..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDividerVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsDividerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_Divider, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDrawerVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDrawerVariationsView.kt deleted file mode 100644 index e70cb612da..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDrawerVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsDrawerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "HasBackground" to DsR.style.Sdkit_StarDs_ComponentOverlays_DrawerHasBackground, - "NoBackground" to DsR.style.Sdkit_StarDs_ComponentOverlays_DrawerNoBackground, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuItemVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuItemVariationsView.kt deleted file mode 100644 index 49974e2831..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuItemVariationsView.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsDropdownMenuItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXl, - "Xl.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXlDefault, - "Xl.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXlPositive, - "Xl.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXlNegative, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemLDefault, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemLPositive, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemLNegative, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemMDefault, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemMPositive, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemMNegative, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemSDefault, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemSPositive, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemSNegative, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXsDefault, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXsPositive, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuItemXsNegative, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuListVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuListVariationsView.kt deleted file mode 100644 index 09c31b828c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuListVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsDropdownMenuListVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuListXl, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuListL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuListM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuListS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuListXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuVariationsView.kt deleted file mode 100644 index a8e72a8635..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsDropdownMenuVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsDropdownMenuVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuXl, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_DropdownMenuXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeSolidVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeSolidVariationsView.kt deleted file mode 100644 index 8361f1bf9c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsIconBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLWarning, - "L.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLDark, - "L.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLLight, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidLPilledLight, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMWarning, - "M.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMDark, - "M.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMLight, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidMPilledLight, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSWarning, - "S.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSDark, - "S.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSLight, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidSPilledLight, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsDark, - "Xs.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeTransparentVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeTransparentVariationsView.kt deleted file mode 100644 index aa30761b0b..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsIconBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLAccent, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLNegative, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLWarning, - "L.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLDark, - "L.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLLight, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentLPilledLight, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMAccent, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMNegative, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMWarning, - "M.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMDark, - "M.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMLight, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentMPilledLight, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSAccent, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSNegative, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSWarning, - "S.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSDark, - "S.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSLight, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentSPilledLight, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsDark, - "Xs.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconBadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconButtonVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconButtonVariationsView.kt deleted file mode 100644 index e7a3f16d73..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIconButtonVariationsView.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsIconButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonLDefault, - "L.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonLClear, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonLPilled, - "L.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonLPilledDefault, - "L.Pilled.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonLPilledClear, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonMDefault, - "M.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonMClear, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonMPilled, - "M.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonMPilledDefault, - "M.Pilled.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonMPilledClear, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonSDefault, - "S.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonSClear, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonSPilled, - "S.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonSPilledDefault, - "S.Pilled.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonSPilledClear, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXsDefault, - "Xs.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXsClear, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXsPilled, - "Xs.Pilled.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXsPilledDefault, - "Xs.Pilled.Clear" to DsR.style.Sdkit_StarDs_ComponentOverlays_IconButtonXsPilledClear, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsImageViewVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsImageViewVariationsView.kt deleted file mode 100644 index 9a3a840228..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsImageViewVariationsView.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsImageViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Ratio12" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_1_2, - "Ratio916" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_9_16, - "Ratio34" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_3_4, - "Ratio21" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_2_1, - "Ratio169" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_16_9, - "Ratio43" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_4_3, - "Ratio11" to DsR.style.Sdkit_StarDs_ComponentOverlays_ImageViewRatio_1_1, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIndicatorVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIndicatorVariationsView.kt deleted file mode 100644 index ac8931b06d..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsIndicatorVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsIndicatorVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLDefault, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLAccent, - "L.Inactive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLInactive, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLPositive, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLWarning, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLNegative, - "L.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLDark, - "L.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLBlack, - "L.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorLWhite, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMAccent, - "M.Inactive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMInactive, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMPositive, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMWarning, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMNegative, - "M.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMDark, - "M.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMBlack, - "M.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorMWhite, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSAccent, - "S.Inactive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSInactive, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSPositive, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSWarning, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSNegative, - "S.Dark" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSDark, - "S.Black" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSBlack, - "S.White" to DsR.style.Sdkit_StarDs_ComponentOverlays_IndicatorSWhite, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListItemVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListItemVariationsView.kt deleted file mode 100644 index c823aeda71..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListItemVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsListItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListItemL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListItemM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListItemS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListItemXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListVariationsView.kt deleted file mode 100644 index fe0701c2ac..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsListVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsListVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_ListXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsLoaderVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsLoaderVariationsView.kt deleted file mode 100644 index e5147eb922..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsLoaderVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsLoaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_Loader, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsModalVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsModalVariationsView.kt deleted file mode 100644 index 2d0d4518b0..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsModalVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsModalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_Modal, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationCompactVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationCompactVariationsView.kt deleted file mode 100644 index 6251099d28..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationCompactVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsNotificationCompactVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationCompactL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationCompactM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationCompactS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationContentVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationContentVariationsView.kt deleted file mode 100644 index 7e45e5bf15..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationContentVariationsView.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsNotificationContentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonStretch" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretch, - "ButtonStretch.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchDefault, - "ButtonStretch.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchPositive, - "ButtonStretch.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchNegative, - "ButtonStretch.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchWarning, - "ButtonStretch.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchInfo, - "ButtonStretch.IconTop" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTop, - "ButtonStretch.IconTop.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTopDefault, - "ButtonStretch.IconTop.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTopPositive, - "ButtonStretch.IconTop.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTopNegative, - "ButtonStretch.IconTop.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTopWarning, - "ButtonStretch.IconTop.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconTopInfo, - "ButtonStretch.IconStart" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStart, - "ButtonStretch.IconStart.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStartDefault, - "ButtonStretch.IconStart.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStartPositive, - "ButtonStretch.IconStart.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStartNegative, - "ButtonStretch.IconStart.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStartWarning, - "ButtonStretch.IconStart.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentButtonStretchIconStartInfo, - "NoButtonStretch" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretch, - "NoButtonStretch.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchDefault, - "NoButtonStretch.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchPositive, - "NoButtonStretch.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchNegative, - "NoButtonStretch.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchWarning, - "NoButtonStretch.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchInfo, - "NoButtonStretch.IconTop" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTop, - "NoButtonStretch.IconTop.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTopDefault, - "NoButtonStretch.IconTop.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTopPositive, - "NoButtonStretch.IconTop.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTopNegative, - "NoButtonStretch.IconTop.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTopWarning, - "NoButtonStretch.IconTop.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconTopInfo, - "NoButtonStretch.IconStart" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStart, - "NoButtonStretch.IconStart.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStartDefault, - "NoButtonStretch.IconStart.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStartPositive, - "NoButtonStretch.IconStart.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStartNegative, - "NoButtonStretch.IconStart.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStartWarning, - "NoButtonStretch.IconStart.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationContentNoButtonStretchIconStartInfo, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationLooseVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationLooseVariationsView.kt deleted file mode 100644 index 5e546a4eac..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsNotificationLooseVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsNotificationLooseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationLooseL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationLooseM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_NotificationLooseS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsOverlayViewVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsOverlayViewVariationsView.kt deleted file mode 100644 index c122f7f436..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsOverlayViewVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsOverlayViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_OverlayView, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsHorizontalVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsHorizontalVariationsView.kt deleted file mode 100644 index 0fa84360a2..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsHorizontalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsPaginationDotsHorizontalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsHorizontalM, - "M.ActiveTypeLine" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsHorizontalMActiveTypeLine, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsHorizontalS, - "S.ActiveTypeLine" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsHorizontalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsVerticalVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsVerticalVariationsView.kt deleted file mode 100644 index f97fe833c3..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPaginationDotsVerticalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsPaginationDotsVerticalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsVerticalM, - "M.ActiveTypeLine" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsVerticalMActiveTypeLine, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsVerticalS, - "S.ActiveTypeLine" to DsR.style.Sdkit_StarDs_ComponentOverlays_PaginationDotsVerticalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPopoverVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPopoverVariationsView.kt deleted file mode 100644 index f144dbc539..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsPopoverVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsPopoverVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverMDefault, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverMAccent, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverSDefault, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_PopoverSAccent, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsProgressBarVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsProgressBarVariationsView.kt deleted file mode 100644 index 12aa8cf5b6..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsProgressBarVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarDefault, - ".Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarSecondary, - ".Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarAccent, - ".Gradient" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarGradient, - ".Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarInfo, - ".Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarNegative, - ".Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarPositive, - ".Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_ProgressBarWarning, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxGroupVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxGroupVariationsView.kt deleted file mode 100644 index f45a3d538d..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxGroupVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsRadioBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_RadioBoxGroupM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_RadioBoxGroupS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxVariationsView.kt deleted file mode 100644 index e6b29069a1..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRadioBoxVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsRadioBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_RadioBoxL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_RadioBoxM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_RadioBoxS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRectSkeletonVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRectSkeletonVariationsView.kt deleted file mode 100644 index 03a8a2ff49..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsRectSkeletonVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsRectSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_RectSkeleton, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsScrollBarVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsScrollBarVariationsView.kt deleted file mode 100644 index e4a568976a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsScrollBarVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsScrollBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_ScrollBarS, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_ScrollBarM, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentItemVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentItemVariationsView.kt deleted file mode 100644 index 81b2da6c4d..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentItemVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSegmentItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXl, - "Xl.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXlPrimary, - "Xl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXlSecondary, - "Xl.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXlPilled, - "Xl.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXlPilledSecondary, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemL, - "L.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemLPrimary, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemLSecondary, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemLPilled, - "L.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemLPilledSecondary, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemM, - "M.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemMPrimary, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemMSecondary, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemMPilled, - "M.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemMPilledSecondary, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemS, - "S.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemSPrimary, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemSSecondary, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemSPilled, - "S.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemSPilledSecondary, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXs, - "Xs.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXsPrimary, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXsSecondary, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXsPilled, - "Xs.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentItemXsPilledSecondary, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentVariationsView.kt deleted file mode 100644 index 6274f37f33..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSegmentVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSegmentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXl, - "Xl.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXlPrimary, - "Xl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXlSecondary, - "Xl.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXlPilled, - "Xl.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXlPilledSecondary, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentL, - "L.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentLPrimary, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentLSecondary, - "L.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentLPilled, - "L.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentLPilledSecondary, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentM, - "M.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentMPrimary, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentMSecondary, - "M.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentMPilled, - "M.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentMPilledSecondary, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentS, - "S.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentSPrimary, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentSSecondary, - "S.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentSPilled, - "S.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentSPilledSecondary, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXs, - "Xs.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXsPrimary, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXsSecondary, - "Xs.Pilled" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXsPilled, - "Xs.Pilled.Primary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SegmentXsPilledSecondary, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectItemVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectItemVariationsView.kt deleted file mode 100644 index 842839a738..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectItemVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSelectItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectItemL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectItemM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectItemS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectItemXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectVariationsView.kt deleted file mode 100644 index c633444727..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSelectVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSelectVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SelectXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSpinnerVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSpinnerVariationsView.kt deleted file mode 100644 index f8e8862bfd..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSpinnerVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSpinnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxl, - "Xxl.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlDefault, - "Xxl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlSecondary, - "Xxl.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlAccent, - "Xxl.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlPositive, - "Xxl.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlNegative, - "Xxl.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlWarning, - "Xxl.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxlInfo, - "Xl" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXl, - "Xl.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlDefault, - "Xl.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlSecondary, - "Xl.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlAccent, - "Xl.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlPositive, - "Xl.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlNegative, - "Xl.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlWarning, - "Xl.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXlInfo, - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerL, - "L.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLDefault, - "L.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLSecondary, - "L.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLAccent, - "L.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLPositive, - "L.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLNegative, - "L.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLWarning, - "L.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerLInfo, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMDefault, - "M.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMSecondary, - "M.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMAccent, - "M.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMPositive, - "M.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMNegative, - "M.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMWarning, - "M.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerMInfo, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSDefault, - "S.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSSecondary, - "S.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSAccent, - "S.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSPositive, - "S.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSNegative, - "S.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSWarning, - "S.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerSInfo, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsDefault, - "Xs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsSecondary, - "Xs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsAccent, - "Xs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsPositive, - "Xs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsNegative, - "Xs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsWarning, - "Xs.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXsInfo, - "Xxs" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxs, - "Xxs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsDefault, - "Xxs.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsSecondary, - "Xxs.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsAccent, - "Xxs.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsPositive, - "Xxs.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsNegative, - "Xxs.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsWarning, - "Xxs.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerXxsInfo, - "Scalable" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalable, - "Scalable.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableDefault, - "Scalable.Secondary" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableSecondary, - "Scalable.Accent" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableAccent, - "Scalable.Positive" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalablePositive, - "Scalable.Negative" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableNegative, - "Scalable.Warning" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableWarning, - "Scalable.Info" to DsR.style.Sdkit_StarDs_ComponentOverlays_SpinnerScalableInfo, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSwitchVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSwitchVariationsView.kt deleted file mode 100644 index 2f63b8e56c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsSwitchVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsSwitchVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchL, - "L.HasBackground" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchLHasBackground, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchM, - "M.HasBackground" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchMHasBackground, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchS, - "S.HasBackground" to DsR.style.Sdkit_StarDs_ComponentOverlays_SwitchSHasBackground, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextAreaVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextAreaVariationsView.kt deleted file mode 100644 index 8ba5739878..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextAreaVariationsView.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextAreaVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXsDefault, - "Xs.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXsError, - "Xs.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXsOuterLabelDefault, - "Xs.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaXsOuterLabelError, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSDefault, - "S.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSError, - "S.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSOuterLabelDefault, - "S.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSOuterLabelError, - "S.InnerLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSInnerLabelDefault, - "S.InnerLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaSInnerLabelError, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMDefault, - "M.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMError, - "M.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMOuterLabelDefault, - "M.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMOuterLabelError, - "M.InnerLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMInnerLabelDefault, - "M.InnerLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextAreaMInnerLabelError, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextFieldVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextFieldVariationsView.kt deleted file mode 100644 index aaa0e2c900..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextFieldVariationsView.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXs, - "Xs.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXsDefault, - "Xs.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXsError, - "Xs.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXsOuterLabelDefault, - "Xs.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldXsOuterLabelError, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldS, - "S.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSDefault, - "S.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSError, - "S.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSOuterLabelDefault, - "S.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSOuterLabelError, - "S.InnerLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSInnerLabelDefault, - "S.InnerLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldSInnerLabelError, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldM, - "M.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMDefault, - "M.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMError, - "M.OuterLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMOuterLabelDefault, - "M.OuterLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMOuterLabelError, - "M.InnerLabel" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMInnerLabelDefault, - "M.InnerLabel.Error" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextFieldMInnerLabelError, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonBodyVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonBodyVariationsView.kt deleted file mode 100644 index e5a535d83a..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonBodyVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextSkeletonBodyVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonBodyL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonBodyM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonBodyS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonBodyXs, - "Xxs" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonBodyXxs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonDisplayVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonDisplayVariationsView.kt deleted file mode 100644 index a373c3b948..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonDisplayVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextSkeletonDisplayVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonDisplayL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonDisplayM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonDisplayS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonHeaderVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonHeaderVariationsView.kt deleted file mode 100644 index 23e7cf5a5d..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonHeaderVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextSkeletonHeaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "H1" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonHeaderH1, - "H2" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonHeaderH2, - "H3" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonHeaderH3, - "H4" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonHeaderH4, - "H5" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonHeaderH5, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonTextVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonTextVariationsView.kt deleted file mode 100644 index 5569fc7a7c..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonTextVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextSkeletonTextVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonTextL, - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonTextM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonTextS, - "Xs" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeletonTextXs, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonVariationsView.kt deleted file mode 100644 index f31b2692b1..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTextSkeletonVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTextSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Sdkit_StarDs_ComponentOverlays_TextSkeleton, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTooltipVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTooltipVariationsView.kt deleted file mode 100644 index c270381a97..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsTooltipVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsTooltipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Sdkit_StarDs_ComponentOverlays_TooltipM, - "S" to DsR.style.Sdkit_StarDs_ComponentOverlays_TooltipS, - ) -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsViewComponents.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsViewComponents.kt deleted file mode 100644 index 1cb09f1a22..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsViewComponents.kt +++ /dev/null @@ -1,295 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView -import com.sdds.playground.sandbox.core.integration.component.ViewComponent - -/** - * Компоненты - */ -object PlasmaStardsViewComponents : ComponentsProviderView() { - - override val generated: Map> = - listOf( - ViewComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to PlasmaStardsAvatarVariationsView, - ), - ), - ViewComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to PlasmaStardsAvatarGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Badge, - mapOf( - "BadgeSolid" to PlasmaStardsBadgeSolidVariationsView, - "BadgeTransparent" to PlasmaStardsBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeSolid" to PlasmaStardsIconBadgeSolidVariationsView, - "IconBadgeTransparent" to PlasmaStardsIconBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to PlasmaStardsBasicButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to PlasmaStardsIconButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.Card, - mapOf( - "Card" to PlasmaStardsCardVariationsView, - ), - ), - ViewComponent( - ComponentKey.Cell, - mapOf( - "Cell" to PlasmaStardsCellVariationsView, - ), - ), - ViewComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to PlasmaStardsCheckBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.Chip, - mapOf( - "Chip" to PlasmaStardsChipVariationsView, - ), - ), - ViewComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to PlasmaStardsChipGroupDenseVariationsView, - "ChipGroupWide" to PlasmaStardsChipGroupWideVariationsView, - ), - ), - ViewComponent( - ComponentKey.Counter, - mapOf( - "Counter" to PlasmaStardsCounterVariationsView, - ), - ), - ViewComponent( - ComponentKey.Divider, - mapOf( - "Divider" to PlasmaStardsDividerVariationsView, - ), - ), - ViewComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to PlasmaStardsIndicatorVariationsView, - ), - ), - ViewComponent( - ComponentKey.Overlay, - mapOf( - "OverlayView" to PlasmaStardsOverlayViewVariationsView, - ), - ), - ViewComponent( - ComponentKey.Select, - mapOf( - "Select" to PlasmaStardsSelectVariationsView, - ), - ), - ViewComponent( - ComponentKey.SelectItem, - mapOf( - "SelectItem" to PlasmaStardsSelectItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.ProgressBar, - mapOf( - "ProgressBar" to PlasmaStardsProgressBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.CircularProgressBar, - mapOf( - "CircularProgressBar" to PlasmaStardsCircularProgressBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.Popover, - mapOf( - "Popover" to PlasmaStardsPopoverVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to PlasmaStardsRadioBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to PlasmaStardsRadioBoxGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Segment, - mapOf( - "Segment" to PlasmaStardsSegmentVariationsView, - ), - ), - ViewComponent( - ComponentKey.SegmentItem, - mapOf( - "SegmentItem" to PlasmaStardsSegmentItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.Switch, - mapOf( - "Switch" to PlasmaStardsSwitchVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextField, - mapOf( - "TextField" to PlasmaStardsTextFieldVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextArea, - mapOf( - "TextArea" to PlasmaStardsTextAreaVariationsView, - ), - ), - ViewComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to PlasmaStardsTooltipVariationsView, - ), - ), - ViewComponent( - ComponentKey.Notification, - mapOf( - "NotificationCompact" to PlasmaStardsNotificationCompactVariationsView, - "NotificationLoose" to PlasmaStardsNotificationLooseVariationsView, - ), - ), - ViewComponent( - ComponentKey.NotificationContent, - mapOf( - "NotificationContent" to PlasmaStardsNotificationContentVariationsView, - ), - ), - ViewComponent( - ComponentKey.List, - mapOf( - "List" to PlasmaStardsListVariationsView, - "DropdownMenuList" to PlasmaStardsDropdownMenuListVariationsView, - ), - ), - ViewComponent( - ComponentKey.ListItem, - mapOf( - "ListItem" to PlasmaStardsListItemVariationsView, - "DropdownMenuItem" to PlasmaStardsDropdownMenuItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.Spinner, - mapOf( - "Spinner" to PlasmaStardsSpinnerVariationsView, - ), - ), - ViewComponent( - ComponentKey.Loader, - mapOf( - "Loader" to PlasmaStardsLoaderVariationsView, - ), - ), - ViewComponent( - ComponentKey.DropdownMenu, - mapOf( - "DropdownMenu" to PlasmaStardsDropdownMenuVariationsView, - ), - ), - ViewComponent( - ComponentKey.ScrollBar, - mapOf( - "ScrollBar" to PlasmaStardsScrollBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.Wheel, - mapOf( - "Wheel" to PlasmaStardsWheelVariationsView, - ), - ), - ViewComponent( - ComponentKey.Image, - mapOf( - "ImageView" to PlasmaStardsImageViewVariationsView, - ), - ), - ViewComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to PlasmaStardsBasicButtonGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.CodeInput, - mapOf( - "CodeInput" to PlasmaStardsCodeInputVariationsView, - ), - ), - ViewComponent( - ComponentKey.Drawer, - mapOf( - "Drawer" to PlasmaStardsDrawerVariationsView, - ), - ), - ViewComponent( - ComponentKey.PaginationDots, - mapOf( - "PaginationDotsHorizontal" to PlasmaStardsPaginationDotsHorizontalVariationsView, - "PaginationDotsVertical" to PlasmaStardsPaginationDotsVerticalVariationsView, - ), - ), - ViewComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to PlasmaStardsRectSkeletonVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeletonBody" to PlasmaStardsTextSkeletonBodyVariationsView, - "TextSkeletonDisplay" to PlasmaStardsTextSkeletonDisplayVariationsView, - "TextSkeletonHeader" to PlasmaStardsTextSkeletonHeaderVariationsView, - "TextSkeletonText" to PlasmaStardsTextSkeletonTextVariationsView, - ), - ), - ViewComponent( - ComponentKey.Modal, - mapOf( - "Modal" to PlasmaStardsModalVariationsView, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsWheelVariationsView.kt b/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsWheelVariationsView.kt deleted file mode 100644 index 8fc7ebdeeb..0000000000 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/view/PlasmaStardsWheelVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdkit.star.designsystem.R as DsR - -internal object PlasmaStardsWheelVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "H1" to DsR.style.Sdkit_StarDs_ComponentOverlays_WheelH1, - "H1.RightAlign" to DsR.style.Sdkit_StarDs_ComponentOverlays_WheelH1RightAlign, - "H1.CenterAlign" to DsR.style.Sdkit_StarDs_ComponentOverlays_WheelH1CenterAlign, - "H1.LeftAlign" to DsR.style.Sdkit_StarDs_ComponentOverlays_WheelH1LeftAlign, - "H1.MixedAlign" to DsR.style.Sdkit_StarDs_ComponentOverlays_WheelH1MixedAlign, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/build.gradle.kts b/playground/sandbox-sdds-sbcom-integration/build.gradle.kts deleted file mode 100644 index 72907ab8ee..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/build.gradle.kts +++ /dev/null @@ -1,20 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") -} - -android { - namespace = "com.sdds.playground.sandbox.sdds.sbcom.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:sdds-sbcom-compose") - implementation(libs.sdds.uikit.compose) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/playground/sandbox-sdds-sbcom-integration/gradle.properties b/playground/sandbox-sdds-sbcom-integration/gradle.properties deleted file mode 100644 index 9c15ec1e4a..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/gradle.properties +++ /dev/null @@ -1,2 +0,0 @@ -integration.compose.config-path=../tokens/sdds-sbcom-compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.sdds.sbcom.integration.compose \ No newline at end of file diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/AndroidManifest.xml b/playground/sandbox-sdds-sbcom-integration/src/main/AndroidManifest.xml deleted file mode 100644 index a5918e68ab..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/SddsSbComThemeWrapper.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/SddsSbComThemeWrapper.kt deleted file mode 100644 index 7bc23e0583..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/SddsSbComThemeWrapper.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.sbcom.theme.SddsSbComTheme -import com.sdds.sbcom.theme.darkSddsSbComColors -import com.sdds.sbcom.theme.darkSddsSbComGradients -import com.sdds.sbcom.theme.lightSddsSbComColors -import com.sdds.sbcom.theme.lightSddsSbComGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun SddsSbComThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - SddsSbComTheme( - colors = if (isDark) darkSddsSbComColors() else lightSddsSbComColors(), - gradients = if (isDark) darkSddsSbComGradients() else lightSddsSbComGradients(), - ) { - content() - } -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomAvatarVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomAvatarVariationsCompose.kt deleted file mode 100644 index 73ce8c0c7c..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomAvatarVariationsCompose.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.avatar.Avatar -import com.sdds.sbcom.styles.avatar.Size180 -import com.sdds.sbcom.styles.avatar.Size20 -import com.sdds.sbcom.styles.avatar.Size24 -import com.sdds.sbcom.styles.avatar.Size26 -import com.sdds.sbcom.styles.avatar.Size32 -import com.sdds.sbcom.styles.avatar.Size36 -import com.sdds.sbcom.styles.avatar.Size40 -import com.sdds.sbcom.styles.avatar.Size44 -import com.sdds.sbcom.styles.avatar.Size48 -import com.sdds.sbcom.styles.avatar.Size56 -import com.sdds.sbcom.styles.avatar.Size64 -import com.sdds.sbcom.styles.avatar.Size72 - -internal object SddsSbcomAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Size180" to { Avatar.Size180.style() }, - "Size72" to { Avatar.Size72.style() }, - "Size64" to { Avatar.Size64.style() }, - "Size56" to { Avatar.Size56.style() }, - "Size48" to { Avatar.Size48.style() }, - "Size44" to { Avatar.Size44.style() }, - "Size40" to { Avatar.Size40.style() }, - "Size36" to { Avatar.Size36.style() }, - "Size32" to { Avatar.Size32.style() }, - "Size26" to { Avatar.Size26.style() }, - "Size24" to { Avatar.Size24.style() }, - "Size20" to { Avatar.Size20.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonGroupVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index 6872b81823..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.buttongroup.BasicButtonGroup -import com.sdds.sbcom.styles.buttongroup.Default - -internal object SddsSbcomBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Default" to { BasicButtonGroup.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonVariationsCompose.kt deleted file mode 100644 index 3b044a66ac..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.basicbutton.AccentFilled -import com.sdds.sbcom.styles.basicbutton.AccentGrey -import com.sdds.sbcom.styles.basicbutton.AccentWhite -import com.sdds.sbcom.styles.basicbutton.BasicButton -import com.sdds.sbcom.styles.basicbutton.DangerTint -import com.sdds.sbcom.styles.basicbutton.M -import com.sdds.sbcom.styles.basicbutton.Primary -import com.sdds.sbcom.styles.basicbutton.S -import com.sdds.sbcom.styles.basicbutton.Xs -import com.sdds.sbcom.styles.basicbutton.Xxs - -internal object SddsSbcomBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "M.Primary" to { BasicButton.M.Primary.style() }, - "M.AccentFilled" to { BasicButton.M.AccentFilled.style() }, - "M.AccentWhite" to { BasicButton.M.AccentWhite.style() }, - "M.AccentGrey" to { BasicButton.M.AccentGrey.style() }, - "M.DangerTint" to { BasicButton.M.DangerTint.style() }, - "S.Primary" to { BasicButton.S.Primary.style() }, - "S.AccentFilled" to { BasicButton.S.AccentFilled.style() }, - "S.AccentWhite" to { BasicButton.S.AccentWhite.style() }, - "S.AccentGrey" to { BasicButton.S.AccentGrey.style() }, - "S.DangerTint" to { BasicButton.S.DangerTint.style() }, - "Xs.Primary" to { BasicButton.Xs.Primary.style() }, - "Xs.AccentFilled" to { BasicButton.Xs.AccentFilled.style() }, - "Xs.AccentWhite" to { BasicButton.Xs.AccentWhite.style() }, - "Xs.AccentGrey" to { BasicButton.Xs.AccentGrey.style() }, - "Xs.DangerTint" to { BasicButton.Xs.DangerTint.style() }, - "Xxs.Primary" to { BasicButton.Xxs.Primary.style() }, - "Xxs.AccentFilled" to { BasicButton.Xxs.AccentFilled.style() }, - "Xxs.AccentWhite" to { BasicButton.Xxs.AccentWhite.style() }, - "Xxs.AccentGrey" to { BasicButton.Xxs.AccentGrey.style() }, - "Xxs.DangerTint" to { BasicButton.Xxs.DangerTint.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCheckBoxVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCheckBoxVariationsCompose.kt deleted file mode 100644 index 8246f173c1..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.checkbox.CheckBox -import com.sdds.sbcom.styles.checkbox.Default - -internal object SddsSbcomCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "Default" to { CheckBox.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipGroupVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipGroupVariationsCompose.kt deleted file mode 100644 index 44cd3db1c4..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.chipgroup.ChipGroup -import com.sdds.sbcom.styles.chipgroup.Default -import com.sdds.sbcom.styles.chipgroup.HasContentStart - -internal object SddsSbcomChipGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Default" to { ChipGroup.Default.style() }, - "HasContentStart" to { ChipGroup.HasContentStart.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipVariationsCompose.kt deleted file mode 100644 index 0432010a0c..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomChipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.chip.Chip -import com.sdds.sbcom.styles.chip.Default -import com.sdds.sbcom.styles.chip.HasContentStart - -internal object SddsSbcomChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "Default" to { Chip.Default.style() }, - "HasContentStart" to { Chip.HasContentStart.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCircularProgressBarVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCircularProgressBarVariationsCompose.kt deleted file mode 100644 index 7f37838e8e..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,48 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.circularprogressbar.Accent -import com.sdds.sbcom.styles.circularprogressbar.CircularProgressBar -import com.sdds.sbcom.styles.circularprogressbar.Danger -import com.sdds.sbcom.styles.circularprogressbar.GlobalWhite -import com.sdds.sbcom.styles.circularprogressbar.M -import com.sdds.sbcom.styles.circularprogressbar.Primary -import com.sdds.sbcom.styles.circularprogressbar.S -import com.sdds.sbcom.styles.circularprogressbar.Secondary -import com.sdds.sbcom.styles.circularprogressbar.Xs -import com.sdds.sbcom.styles.circularprogressbar.Xxl -import com.sdds.sbcom.styles.circularprogressbar.Xxs - -internal object SddsSbcomCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Primary" to { CircularProgressBar.Xxl.Primary.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.GlobalWhite" to { CircularProgressBar.Xxl.GlobalWhite.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Danger" to { CircularProgressBar.Xxl.Danger.style() }, - "M.Primary" to { CircularProgressBar.M.Primary.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.GlobalWhite" to { CircularProgressBar.M.GlobalWhite.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Danger" to { CircularProgressBar.M.Danger.style() }, - "S.Primary" to { CircularProgressBar.S.Primary.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.GlobalWhite" to { CircularProgressBar.S.GlobalWhite.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Danger" to { CircularProgressBar.S.Danger.style() }, - "Xs.Primary" to { CircularProgressBar.Xs.Primary.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.GlobalWhite" to { CircularProgressBar.Xs.GlobalWhite.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Danger" to { CircularProgressBar.Xs.Danger.style() }, - "Xxs.Primary" to { CircularProgressBar.Xxs.Primary.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.GlobalWhite" to { CircularProgressBar.Xxs.GlobalWhite.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Danger" to { CircularProgressBar.Xxs.Danger.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index 1c82f7a236..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.collapsingnavigationbar.CollapsingNavigationBarInternalPage -import com.sdds.sbcom.styles.collapsingnavigationbar.Default - -internal object SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map CollapsingNavigationBarStyle> = - mapOf( - "Default" to { CollapsingNavigationBarInternalPage.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index da3b605da5..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CollapsingNavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.collapsingnavigationbar.CollapsingNavigationBarMainPage -import com.sdds.sbcom.styles.collapsingnavigationbar.Default - -internal object SddsSbcomCollapsingNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map CollapsingNavigationBarStyle> = - mapOf( - "Default" to { CollapsingNavigationBarMainPage.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCounterVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCounterVariationsCompose.kt deleted file mode 100644 index 8425fdbba9..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomCounterVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.counter.Accent -import com.sdds.sbcom.styles.counter.Counter -import com.sdds.sbcom.styles.counter.Danger -import com.sdds.sbcom.styles.counter.Primary -import com.sdds.sbcom.styles.counter.Secondary - -internal object SddsSbcomCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "Primary" to { Counter.Primary.style() }, - "Secondary" to { Counter.Secondary.style() }, - "Accent" to { Counter.Accent.style() }, - "Danger" to { Counter.Danger.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDividerVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDividerVariationsCompose.kt deleted file mode 100644 index 8bde6f5102..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.divider.Default -import com.sdds.sbcom.styles.divider.Divider - -internal object SddsSbcomDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuItemVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuItemVariationsCompose.kt deleted file mode 100644 index 55a75eaded..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuItemVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.listitem.Default -import com.sdds.sbcom.styles.listitem.DropdownMenuItem - -internal object SddsSbcomDropdownMenuItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Default" to { DropdownMenuItem.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuListVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuListVariationsCompose.kt deleted file mode 100644 index e8fc6b6c2b..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuListVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.list.Default -import com.sdds.sbcom.styles.list.DropdownMenuList - -internal object SddsSbcomDropdownMenuListVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Default" to { DropdownMenuList.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuVariationsCompose.kt deleted file mode 100644 index da072c3c4e..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomDropdownMenuVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.dropdownmenu.Default -import com.sdds.sbcom.styles.dropdownmenu.DropdownMenu - -internal object SddsSbcomDropdownMenuVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Default" to { DropdownMenu.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonClearVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonClearVariationsCompose.kt deleted file mode 100644 index cc161614b2..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonClearVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.iconbutton.Accent -import com.sdds.sbcom.styles.iconbutton.DangerTint -import com.sdds.sbcom.styles.iconbutton.IconButtonClear -import com.sdds.sbcom.styles.iconbutton.M -import com.sdds.sbcom.styles.iconbutton.S -import com.sdds.sbcom.styles.iconbutton.Xs - -internal object SddsSbcomIconButtonClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "M.Accent" to { IconButtonClear.M.Accent.style() }, - "M.DangerTint" to { IconButtonClear.M.DangerTint.style() }, - "S.Accent" to { IconButtonClear.S.Accent.style() }, - "S.DangerTint" to { IconButtonClear.S.DangerTint.style() }, - "Xs.Accent" to { IconButtonClear.Xs.Accent.style() }, - "Xs.DangerTint" to { IconButtonClear.Xs.DangerTint.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonGroupVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonGroupVariationsCompose.kt deleted file mode 100644 index 8999784c07..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.buttongroup.Default -import com.sdds.sbcom.styles.buttongroup.IconButtonGroup - -internal object SddsSbcomIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Default" to { IconButtonGroup.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonVariationsCompose.kt deleted file mode 100644 index 326973181a..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIconButtonVariationsCompose.kt +++ /dev/null @@ -1,28 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.iconbutton.AccentFilled -import com.sdds.sbcom.styles.iconbutton.AccentGrey -import com.sdds.sbcom.styles.iconbutton.DangerTint -import com.sdds.sbcom.styles.iconbutton.IconButton -import com.sdds.sbcom.styles.iconbutton.M -import com.sdds.sbcom.styles.iconbutton.S -import com.sdds.sbcom.styles.iconbutton.Xs - -internal object SddsSbcomIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "M.AccentFilled" to { IconButton.M.AccentFilled.style() }, - "M.AccentGrey" to { IconButton.M.AccentGrey.style() }, - "M.DangerTint" to { IconButton.M.DangerTint.style() }, - "S.AccentFilled" to { IconButton.S.AccentFilled.style() }, - "S.AccentGrey" to { IconButton.S.AccentGrey.style() }, - "S.DangerTint" to { IconButton.S.DangerTint.style() }, - "Xs.AccentFilled" to { IconButton.Xs.AccentFilled.style() }, - "Xs.AccentGrey" to { IconButton.Xs.AccentGrey.style() }, - "Xs.DangerTint" to { IconButton.Xs.DangerTint.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIndicatorVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIndicatorVariationsCompose.kt deleted file mode 100644 index b3748bb7e9..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomIndicatorVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.indicator.Danger -import com.sdds.sbcom.styles.indicator.GlobalWhite -import com.sdds.sbcom.styles.indicator.Indicator -import com.sdds.sbcom.styles.indicator.Mute -import com.sdds.sbcom.styles.indicator.Success -import com.sdds.sbcom.styles.indicator.Warning - -internal object SddsSbcomIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "Success" to { Indicator.Success.style() }, - "GlobalWhite" to { Indicator.GlobalWhite.style() }, - "Mute" to { Indicator.Mute.style() }, - "Danger" to { Indicator.Danger.style() }, - "Warning" to { Indicator.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLinkButtonVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLinkButtonVariationsCompose.kt deleted file mode 100644 index f86c48bc7d..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.linkbutton.Accent -import com.sdds.sbcom.styles.linkbutton.DangerTint -import com.sdds.sbcom.styles.linkbutton.LinkButton -import com.sdds.sbcom.styles.linkbutton.M -import com.sdds.sbcom.styles.linkbutton.S -import com.sdds.sbcom.styles.linkbutton.Xs -import com.sdds.sbcom.styles.linkbutton.Xxs - -internal object SddsSbcomLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.DangerTint" to { LinkButton.M.DangerTint.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.DangerTint" to { LinkButton.S.DangerTint.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.DangerTint" to { LinkButton.Xs.DangerTint.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.DangerTint" to { LinkButton.Xxs.DangerTint.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLoaderVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLoaderVariationsCompose.kt deleted file mode 100644 index dd1daa84cc..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.loader.Default -import com.sdds.sbcom.styles.loader.Loader - -internal object SddsSbcomLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalBottomSheetVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 652c53191f..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.bottomsheet.Default -import com.sdds.sbcom.styles.bottomsheet.ModalBottomSheet - -internal object SddsSbcomModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalVariationsCompose.kt deleted file mode 100644 index 15c040fc9d..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.modal.Default -import com.sdds.sbcom.styles.modal.Modal - -internal object SddsSbcomModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomOverlayVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomOverlayVariationsCompose.kt deleted file mode 100644 index 45fd05ebe1..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.overlay.Default -import com.sdds.sbcom.styles.overlay.Overlay - -internal object SddsSbcomOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomPopoverVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomPopoverVariationsCompose.kt deleted file mode 100644 index b4004c64fa..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.popover.Accent -import com.sdds.sbcom.styles.popover.Default -import com.sdds.sbcom.styles.popover.M -import com.sdds.sbcom.styles.popover.Popover -import com.sdds.sbcom.styles.popover.S - -internal object SddsSbcomPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRadioBoxVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRadioBoxVariationsCompose.kt deleted file mode 100644 index b45c5d35a2..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.radiobox.Default -import com.sdds.sbcom.styles.radiobox.RadioBox - -internal object SddsSbcomRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "Default" to { RadioBox.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRectSkeletonVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRectSkeletonVariationsCompose.kt deleted file mode 100644 index 1dc9dd13f3..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.rectskeleton.Default -import com.sdds.sbcom.styles.rectskeleton.Pulse -import com.sdds.sbcom.styles.rectskeleton.RectSkeleton - -internal object SddsSbcomRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Pulse" to { RectSkeleton.Pulse.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomScrollBarVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomScrollBarVariationsCompose.kt deleted file mode 100644 index e74b5299c8..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomScrollBarVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.scrollbar.Default -import com.sdds.sbcom.styles.scrollbar.ScrollBar - -internal object SddsSbcomScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "Default" to { ScrollBar.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentItemVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentItemVariationsCompose.kt deleted file mode 100644 index 177e7ae9f8..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.segmentitem.Default -import com.sdds.sbcom.styles.segmentitem.SegmentItem - -internal object SddsSbcomSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Default" to { SegmentItem.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentVariationsCompose.kt deleted file mode 100644 index e4a4b88ec4..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSegmentVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.segment.Default -import com.sdds.sbcom.styles.segment.Segment - -internal object SddsSbcomSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Default" to { Segment.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSpinnerVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSpinnerVariationsCompose.kt deleted file mode 100644 index 8b36e06405..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSpinnerVariationsCompose.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.spinner.Accent -import com.sdds.sbcom.styles.spinner.Danger -import com.sdds.sbcom.styles.spinner.GlobalWhite -import com.sdds.sbcom.styles.spinner.M -import com.sdds.sbcom.styles.spinner.Primary -import com.sdds.sbcom.styles.spinner.S -import com.sdds.sbcom.styles.spinner.Secondary -import com.sdds.sbcom.styles.spinner.Spinner -import com.sdds.sbcom.styles.spinner.Xs -import com.sdds.sbcom.styles.spinner.Xxs - -internal object SddsSbcomSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "M.Primary" to { Spinner.M.Primary.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.GlobalWhite" to { Spinner.M.GlobalWhite.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Danger" to { Spinner.M.Danger.style() }, - "S.Primary" to { Spinner.S.Primary.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.GlobalWhite" to { Spinner.S.GlobalWhite.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Danger" to { Spinner.S.Danger.style() }, - "Xs.Primary" to { Spinner.Xs.Primary.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.GlobalWhite" to { Spinner.Xs.GlobalWhite.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Danger" to { Spinner.Xs.Danger.style() }, - "Xxs.Primary" to { Spinner.Xxs.Primary.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.GlobalWhite" to { Spinner.Xxs.GlobalWhite.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Danger" to { Spinner.Xxs.Danger.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSwitchVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSwitchVariationsCompose.kt deleted file mode 100644 index bd880c334b..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomSwitchVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.switcher.Default -import com.sdds.sbcom.styles.switcher.Switch - -internal object SddsSbcomSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "Default" to { Switch.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarItemVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarItemVariationsCompose.kt deleted file mode 100644 index bed0d547fc..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarItemVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.tabbaritem.Default -import com.sdds.sbcom.styles.tabbaritem.TabBarItem - -internal object SddsSbcomTabBarItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "Default" to { TabBarItem.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarVariationsCompose.kt deleted file mode 100644 index eed904ecc5..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabBarVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.tabbar.Default -import com.sdds.sbcom.styles.tabbar.TabBar - -internal object SddsSbcomTabBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "Default" to { TabBar.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabItemFolderVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabItemFolderVariationsCompose.kt deleted file mode 100644 index b5cb9ebc29..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabItemFolderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.tabitem.Default -import com.sdds.sbcom.styles.tabitem.TabItemFolder - -internal object SddsSbcomTabItemFolderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabItemStyle> = - mapOf( - "Default" to { TabItemFolder.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabsFolderVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabsFolderVariationsCompose.kt deleted file mode 100644 index 19bf93203c..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTabsFolderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.tabs.Default -import com.sdds.sbcom.styles.tabs.TabsFolder - -internal object SddsSbcomTabsFolderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabsStyle> = - mapOf( - "Default" to { TabsFolder.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTextFieldVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTextFieldVariationsCompose.kt deleted file mode 100644 index 65ea8e6137..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTextFieldVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.textfield.Default -import com.sdds.sbcom.styles.textfield.Error -import com.sdds.sbcom.styles.textfield.TextField - -internal object SddsSbcomTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Default" to { TextField.Default.style() }, - "Error" to { TextField.Error.style() }, - ) -} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTooltipVariationsCompose.kt b/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTooltipVariationsCompose.kt deleted file mode 100644 index 8b283fe8cc..0000000000 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomTooltipVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.sbcom.styles.tooltip.Default -import com.sdds.sbcom.styles.tooltip.Tooltip - -internal object SddsSbcomTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "Default" to { Tooltip.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/build.gradle.kts b/playground/sandbox-sdds-serv-integration/build.gradle.kts deleted file mode 100644 index 14b73ae4d2..0000000000 --- a/playground/sandbox-sdds-serv-integration/build.gradle.kts +++ /dev/null @@ -1,27 +0,0 @@ -import tasks.integration.ComponentsTarget -import tasks.integration.GenerateComponentsDictionary - -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") - id("convention.integration-view") -} - -android { - namespace = "com.sdds.playground.sandbox.sdds.serv.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:sdds.serv.compose") - implementation("tokens:sdds.serv.view") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-sdds-serv-integration/gradle.properties b/playground/sandbox-sdds-serv-integration/gradle.properties deleted file mode 100644 index f7cc25c493..0000000000 --- a/playground/sandbox-sdds-serv-integration/gradle.properties +++ /dev/null @@ -1,5 +0,0 @@ -integration.compose.config-path=../tokens/sdds.serv.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.sdds.serv.integration.compose - -integration.view.config-path=../tokens/sdds.serv.view/config-info-view-system.json -integration.view.package-name=com.sdds.playground.sandbox.sdds.serv.integration.view \ No newline at end of file diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/SddsServThemeWrapper.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/SddsServThemeWrapper.kt deleted file mode 100644 index ed6e8b4310..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/SddsServThemeWrapper.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalOverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.serv.styles.list.ListNormal -import com.sdds.serv.styles.list.M -import com.sdds.serv.styles.overlay.Default -import com.sdds.serv.styles.overlay.Overlay -import com.sdds.serv.theme.SddsServTheme -import com.sdds.serv.theme.darkSddsServColors -import com.sdds.serv.theme.darkSddsServGradients -import com.sdds.serv.theme.lightSddsServColors -import com.sdds.serv.theme.lightSddsServGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun SddsServThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - SddsServTheme( - colors = if (isDark) darkSddsServColors() else lightSddsServColors(), - gradients = if (isDark) darkSddsServGradients() else lightSddsServGradients(), - ) { - CompositionLocalProvider( - LocalOverlayStyle provides Overlay.Default.style(), - LocalListStyle provides ListNormal.M.style(), - ) { - content() - } - } -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionEndVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionEndVariationsCompose.kt deleted file mode 100644 index be7eae4a30..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordion.AccordionClearActionEnd -import com.sdds.serv.styles.accordion.H2 -import com.sdds.serv.styles.accordion.H3 -import com.sdds.serv.styles.accordion.H4 -import com.sdds.serv.styles.accordion.H5 -import com.sdds.serv.styles.accordion.L -import com.sdds.serv.styles.accordion.M -import com.sdds.serv.styles.accordion.S -import com.sdds.serv.styles.accordion.Xs - -internal object SddsServAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionEnd.Xs.style() }, - "S" to { AccordionClearActionEnd.S.style() }, - "M" to { AccordionClearActionEnd.M.style() }, - "L" to { AccordionClearActionEnd.L.style() }, - "H2" to { AccordionClearActionEnd.H2.style() }, - "H3" to { AccordionClearActionEnd.H3.style() }, - "H4" to { AccordionClearActionEnd.H4.style() }, - "H5" to { AccordionClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionStartVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionStartVariationsCompose.kt deleted file mode 100644 index 5eb72549be..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordion.AccordionClearActionStart -import com.sdds.serv.styles.accordion.H2 -import com.sdds.serv.styles.accordion.H3 -import com.sdds.serv.styles.accordion.H4 -import com.sdds.serv.styles.accordion.H5 -import com.sdds.serv.styles.accordion.L -import com.sdds.serv.styles.accordion.M -import com.sdds.serv.styles.accordion.S -import com.sdds.serv.styles.accordion.Xs - -internal object SddsServAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionStart.Xs.style() }, - "S" to { AccordionClearActionStart.S.style() }, - "M" to { AccordionClearActionStart.M.style() }, - "L" to { AccordionClearActionStart.L.style() }, - "H2" to { AccordionClearActionStart.H2.style() }, - "H3" to { AccordionClearActionStart.H3.style() }, - "H4" to { AccordionClearActionStart.H4.style() }, - "H5" to { AccordionClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionEndVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionEndVariationsCompose.kt deleted file mode 100644 index 8ea5ebc8d2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.serv.styles.accordionitem.H2 -import com.sdds.serv.styles.accordionitem.H3 -import com.sdds.serv.styles.accordionitem.H4 -import com.sdds.serv.styles.accordionitem.H5 -import com.sdds.serv.styles.accordionitem.L -import com.sdds.serv.styles.accordionitem.M -import com.sdds.serv.styles.accordionitem.S -import com.sdds.serv.styles.accordionitem.Xs - -internal object SddsServAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionEnd.Xs.style() }, - "S" to { AccordionItemClearActionEnd.S.style() }, - "M" to { AccordionItemClearActionEnd.M.style() }, - "L" to { AccordionItemClearActionEnd.L.style() }, - "H2" to { AccordionItemClearActionEnd.H2.style() }, - "H3" to { AccordionItemClearActionEnd.H3.style() }, - "H4" to { AccordionItemClearActionEnd.H4.style() }, - "H5" to { AccordionItemClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionStartVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionStartVariationsCompose.kt deleted file mode 100644 index 13e78de620..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.serv.styles.accordionitem.H2 -import com.sdds.serv.styles.accordionitem.H3 -import com.sdds.serv.styles.accordionitem.H4 -import com.sdds.serv.styles.accordionitem.H5 -import com.sdds.serv.styles.accordionitem.L -import com.sdds.serv.styles.accordionitem.M -import com.sdds.serv.styles.accordionitem.S -import com.sdds.serv.styles.accordionitem.Xs - -internal object SddsServAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionStart.Xs.style() }, - "S" to { AccordionItemClearActionStart.S.style() }, - "M" to { AccordionItemClearActionStart.M.style() }, - "L" to { AccordionItemClearActionStart.L.style() }, - "H2" to { AccordionItemClearActionStart.H2.style() }, - "H3" to { AccordionItemClearActionStart.H3.style() }, - "H4" to { AccordionItemClearActionStart.H4.style() }, - "H5" to { AccordionItemClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionEndVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionEndVariationsCompose.kt deleted file mode 100644 index 0da4b9fbea..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.serv.styles.accordionitem.H2 -import com.sdds.serv.styles.accordionitem.H3 -import com.sdds.serv.styles.accordionitem.H4 -import com.sdds.serv.styles.accordionitem.H5 -import com.sdds.serv.styles.accordionitem.L -import com.sdds.serv.styles.accordionitem.M -import com.sdds.serv.styles.accordionitem.S -import com.sdds.serv.styles.accordionitem.Xs - -internal object SddsServAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionEnd.Xs.style() }, - "S" to { AccordionItemSolidActionEnd.S.style() }, - "M" to { AccordionItemSolidActionEnd.M.style() }, - "L" to { AccordionItemSolidActionEnd.L.style() }, - "H2" to { AccordionItemSolidActionEnd.H2.style() }, - "H3" to { AccordionItemSolidActionEnd.H3.style() }, - "H4" to { AccordionItemSolidActionEnd.H4.style() }, - "H5" to { AccordionItemSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionStartVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionStartVariationsCompose.kt deleted file mode 100644 index 3db81ddda6..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionItemSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.serv.styles.accordionitem.H2 -import com.sdds.serv.styles.accordionitem.H3 -import com.sdds.serv.styles.accordionitem.H4 -import com.sdds.serv.styles.accordionitem.H5 -import com.sdds.serv.styles.accordionitem.L -import com.sdds.serv.styles.accordionitem.M -import com.sdds.serv.styles.accordionitem.S -import com.sdds.serv.styles.accordionitem.Xs - -internal object SddsServAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionStart.Xs.style() }, - "S" to { AccordionItemSolidActionStart.S.style() }, - "M" to { AccordionItemSolidActionStart.M.style() }, - "L" to { AccordionItemSolidActionStart.L.style() }, - "H2" to { AccordionItemSolidActionStart.H2.style() }, - "H3" to { AccordionItemSolidActionStart.H3.style() }, - "H4" to { AccordionItemSolidActionStart.H4.style() }, - "H5" to { AccordionItemSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionEndVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionEndVariationsCompose.kt deleted file mode 100644 index 8f6973ede7..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordion.AccordionSolidActionEnd -import com.sdds.serv.styles.accordion.H2 -import com.sdds.serv.styles.accordion.H3 -import com.sdds.serv.styles.accordion.H4 -import com.sdds.serv.styles.accordion.H5 -import com.sdds.serv.styles.accordion.L -import com.sdds.serv.styles.accordion.M -import com.sdds.serv.styles.accordion.S -import com.sdds.serv.styles.accordion.Xs - -internal object SddsServAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionEnd.Xs.style() }, - "S" to { AccordionSolidActionEnd.S.style() }, - "M" to { AccordionSolidActionEnd.M.style() }, - "L" to { AccordionSolidActionEnd.L.style() }, - "H2" to { AccordionSolidActionEnd.H2.style() }, - "H3" to { AccordionSolidActionEnd.H3.style() }, - "H4" to { AccordionSolidActionEnd.H4.style() }, - "H5" to { AccordionSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionStartVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionStartVariationsCompose.kt deleted file mode 100644 index 1d9d318dfe..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAccordionSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.accordion.AccordionSolidActionStart -import com.sdds.serv.styles.accordion.H2 -import com.sdds.serv.styles.accordion.H3 -import com.sdds.serv.styles.accordion.H4 -import com.sdds.serv.styles.accordion.H5 -import com.sdds.serv.styles.accordion.L -import com.sdds.serv.styles.accordion.M -import com.sdds.serv.styles.accordion.S -import com.sdds.serv.styles.accordion.Xs - -internal object SddsServAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionStart.Xs.style() }, - "S" to { AccordionSolidActionStart.S.style() }, - "M" to { AccordionSolidActionStart.M.style() }, - "L" to { AccordionSolidActionStart.L.style() }, - "H2" to { AccordionSolidActionStart.H2.style() }, - "H3" to { AccordionSolidActionStart.H3.style() }, - "H4" to { AccordionSolidActionStart.H4.style() }, - "H5" to { AccordionSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteNormalVariationsCompose.kt deleted file mode 100644 index 7ffa3553ea..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.autocomplete.AutocompleteNormal -import com.sdds.serv.styles.autocomplete.L -import com.sdds.serv.styles.autocomplete.M -import com.sdds.serv.styles.autocomplete.S -import com.sdds.serv.styles.autocomplete.Xl -import com.sdds.serv.styles.autocomplete.Xs - -internal object SddsServAutocompleteNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteNormal.Xl.style() }, - "L" to { AutocompleteNormal.L.style() }, - "M" to { AutocompleteNormal.M.style() }, - "S" to { AutocompleteNormal.S.style() }, - "Xs" to { AutocompleteNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteTightVariationsCompose.kt deleted file mode 100644 index c998cf2269..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAutocompleteTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.autocomplete.AutocompleteTight -import com.sdds.serv.styles.autocomplete.L -import com.sdds.serv.styles.autocomplete.M -import com.sdds.serv.styles.autocomplete.S -import com.sdds.serv.styles.autocomplete.Xl -import com.sdds.serv.styles.autocomplete.Xs - -internal object SddsServAutocompleteTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map AutocompleteStyle> = - mapOf( - "Xl" to { AutocompleteTight.Xl.style() }, - "L" to { AutocompleteTight.L.style() }, - "M" to { AutocompleteTight.M.style() }, - "S" to { AutocompleteTight.S.style() }, - "Xs" to { AutocompleteTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarGroupVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarGroupVariationsCompose.kt deleted file mode 100644 index e1f9e24c89..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.avatargroup.AvatarGroup -import com.sdds.serv.styles.avatargroup.S - -internal object SddsServAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarVariationsCompose.kt deleted file mode 100644 index b872303dab..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.avatar.Avatar -import com.sdds.serv.styles.avatar.L -import com.sdds.serv.styles.avatar.M -import com.sdds.serv.styles.avatar.S -import com.sdds.serv.styles.avatar.Xxl - -internal object SddsServAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeClearVariationsCompose.kt deleted file mode 100644 index 45837e7b69..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.badge.Accent -import com.sdds.serv.styles.badge.BadgeClear -import com.sdds.serv.styles.badge.Dark -import com.sdds.serv.styles.badge.Default -import com.sdds.serv.styles.badge.L -import com.sdds.serv.styles.badge.Light -import com.sdds.serv.styles.badge.M -import com.sdds.serv.styles.badge.Negative -import com.sdds.serv.styles.badge.Pilled -import com.sdds.serv.styles.badge.Positive -import com.sdds.serv.styles.badge.S -import com.sdds.serv.styles.badge.Warning -import com.sdds.serv.styles.badge.Xs - -internal object SddsServBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeSolidVariationsCompose.kt deleted file mode 100644 index fa7fe7e67b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.badge.Accent -import com.sdds.serv.styles.badge.BadgeSolid -import com.sdds.serv.styles.badge.Dark -import com.sdds.serv.styles.badge.Default -import com.sdds.serv.styles.badge.L -import com.sdds.serv.styles.badge.Light -import com.sdds.serv.styles.badge.M -import com.sdds.serv.styles.badge.Negative -import com.sdds.serv.styles.badge.Pilled -import com.sdds.serv.styles.badge.Positive -import com.sdds.serv.styles.badge.S -import com.sdds.serv.styles.badge.Warning -import com.sdds.serv.styles.badge.Xs - -internal object SddsServBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeTransparentVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 755fd9da7e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.badge.Accent -import com.sdds.serv.styles.badge.BadgeTransparent -import com.sdds.serv.styles.badge.Dark -import com.sdds.serv.styles.badge.Default -import com.sdds.serv.styles.badge.L -import com.sdds.serv.styles.badge.Light -import com.sdds.serv.styles.badge.M -import com.sdds.serv.styles.badge.Negative -import com.sdds.serv.styles.badge.Pilled -import com.sdds.serv.styles.badge.Positive -import com.sdds.serv.styles.badge.S -import com.sdds.serv.styles.badge.Warning -import com.sdds.serv.styles.badge.Xs - -internal object SddsServBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonGroupVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index d811e450f6..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.buttongroup.BasicButtonGroup -import com.sdds.serv.styles.buttongroup.Default -import com.sdds.serv.styles.buttongroup.Dense -import com.sdds.serv.styles.buttongroup.L -import com.sdds.serv.styles.buttongroup.M -import com.sdds.serv.styles.buttongroup.NoGap -import com.sdds.serv.styles.buttongroup.S -import com.sdds.serv.styles.buttongroup.Segmented -import com.sdds.serv.styles.buttongroup.Wide -import com.sdds.serv.styles.buttongroup.Xs -import com.sdds.serv.styles.buttongroup.Xxs - -internal object SddsServBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xxs" to { BasicButtonGroup.Xxs.style() }, - "Xxs.Wide" to { BasicButtonGroup.Xxs.Wide.style() }, - "Xxs.Wide.Default" to { BasicButtonGroup.Xxs.Wide.Default.style() }, - "Xxs.Wide.Segmented" to { BasicButtonGroup.Xxs.Wide.Segmented.style() }, - "Xxs.Dense" to { BasicButtonGroup.Xxs.Dense.style() }, - "Xxs.Dense.Default" to { BasicButtonGroup.Xxs.Dense.Default.style() }, - "Xxs.Dense.Segmented" to { BasicButtonGroup.Xxs.Dense.Segmented.style() }, - "Xxs.NoGap" to { BasicButtonGroup.Xxs.NoGap.style() }, - "Xxs.NoGap.Default" to { BasicButtonGroup.Xxs.NoGap.Default.style() }, - "Xxs.NoGap.Segmented" to { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonVariationsCompose.kt deleted file mode 100644 index 386ef82af0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.basicbutton.Accent -import com.sdds.serv.styles.basicbutton.BasicButton -import com.sdds.serv.styles.basicbutton.Black -import com.sdds.serv.styles.basicbutton.Clear -import com.sdds.serv.styles.basicbutton.Dark -import com.sdds.serv.styles.basicbutton.Default -import com.sdds.serv.styles.basicbutton.L -import com.sdds.serv.styles.basicbutton.M -import com.sdds.serv.styles.basicbutton.Negative -import com.sdds.serv.styles.basicbutton.Positive -import com.sdds.serv.styles.basicbutton.S -import com.sdds.serv.styles.basicbutton.Secondary -import com.sdds.serv.styles.basicbutton.Warning -import com.sdds.serv.styles.basicbutton.White -import com.sdds.serv.styles.basicbutton.Xl -import com.sdds.serv.styles.basicbutton.Xs -import com.sdds.serv.styles.basicbutton.Xxs - -internal object SddsServBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { BasicButton.Xl.Default.style() }, - "Xl.Secondary" to { BasicButton.Xl.Secondary.style() }, - "Xl.Accent" to { BasicButton.Xl.Accent.style() }, - "Xl.Positive" to { BasicButton.Xl.Positive.style() }, - "Xl.Negative" to { BasicButton.Xl.Negative.style() }, - "Xl.Warning" to { BasicButton.Xl.Warning.style() }, - "Xl.Clear" to { BasicButton.Xl.Clear.style() }, - "Xl.Dark" to { BasicButton.Xl.Dark.style() }, - "Xl.Black" to { BasicButton.Xl.Black.style() }, - "Xl.White" to { BasicButton.Xl.White.style() }, - "L.Default" to { BasicButton.L.Default.style() }, - "L.Secondary" to { BasicButton.L.Secondary.style() }, - "L.Accent" to { BasicButton.L.Accent.style() }, - "L.Positive" to { BasicButton.L.Positive.style() }, - "L.Negative" to { BasicButton.L.Negative.style() }, - "L.Warning" to { BasicButton.L.Warning.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "L.Dark" to { BasicButton.L.Dark.style() }, - "L.Black" to { BasicButton.L.Black.style() }, - "L.White" to { BasicButton.L.White.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Positive" to { BasicButton.M.Positive.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Black" to { BasicButton.M.Black.style() }, - "M.White" to { BasicButton.M.White.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Positive" to { BasicButton.S.Positive.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Black" to { BasicButton.S.Black.style() }, - "S.White" to { BasicButton.S.White.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Positive" to { BasicButton.Xs.Positive.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Black" to { BasicButton.Xs.Black.style() }, - "Xs.White" to { BasicButton.Xs.White.style() }, - "Xxs.Default" to { BasicButton.Xxs.Default.style() }, - "Xxs.Secondary" to { BasicButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { BasicButton.Xxs.Accent.style() }, - "Xxs.Positive" to { BasicButton.Xxs.Positive.style() }, - "Xxs.Negative" to { BasicButton.Xxs.Negative.style() }, - "Xxs.Warning" to { BasicButton.Xxs.Warning.style() }, - "Xxs.Clear" to { BasicButton.Xxs.Clear.style() }, - "Xxs.Dark" to { BasicButton.Xxs.Dark.style() }, - "Xxs.Black" to { BasicButton.Xxs.Black.style() }, - "Xxs.White" to { BasicButton.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardClearVariationsCompose.kt deleted file mode 100644 index a3fc5dbbd2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardClearVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.card.CardClear -import com.sdds.serv.styles.card.L -import com.sdds.serv.styles.card.M -import com.sdds.serv.styles.card.S - -internal object SddsServCardClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardClear.L.style() }, - "M" to { CardClear.M.style() }, - "S" to { CardClear.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardSolidVariationsCompose.kt deleted file mode 100644 index b6f4b08f29..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCardSolidVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.card.CardSolid -import com.sdds.serv.styles.card.L -import com.sdds.serv.styles.card.M -import com.sdds.serv.styles.card.S - -internal object SddsServCardSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map CardStyle> = - mapOf( - "L" to { CardSolid.L.style() }, - "M" to { CardSolid.M.style() }, - "S" to { CardSolid.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCarouselVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCarouselVariationsCompose.kt deleted file mode 100644 index aeb00b1af1..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCarouselVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CarouselStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.carousel.ButtonsPlacementInner -import com.sdds.serv.styles.carousel.ButtonsPlacementOuter -import com.sdds.serv.styles.carousel.Carousel - -internal object SddsServCarouselVariationsCompose : ComposeStyleProvider() { - override val variations: Map CarouselStyle> = - mapOf( - "ButtonsPlacementInner" to { Carousel.ButtonsPlacementInner.style() }, - "ButtonsPlacementOuter" to { Carousel.ButtonsPlacementOuter.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCellVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCellVariationsCompose.kt deleted file mode 100644 index cb37340124..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.cell.Cell -import com.sdds.serv.styles.cell.L -import com.sdds.serv.styles.cell.M -import com.sdds.serv.styles.cell.S -import com.sdds.serv.styles.cell.Xs - -internal object SddsServCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxGroupVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index 4a080ad23d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.checkboxgroup.CheckBoxGroup -import com.sdds.serv.styles.checkboxgroup.L -import com.sdds.serv.styles.checkboxgroup.M -import com.sdds.serv.styles.checkboxgroup.S - -internal object SddsServCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "L" to { CheckBoxGroup.L.style() }, - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxVariationsCompose.kt deleted file mode 100644 index afc20309b6..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.checkbox.CheckBox -import com.sdds.serv.styles.checkbox.Default -import com.sdds.serv.styles.checkbox.L -import com.sdds.serv.styles.checkbox.M -import com.sdds.serv.styles.checkbox.Negative -import com.sdds.serv.styles.checkbox.S - -internal object SddsServCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "L.Default" to { CheckBox.L.Default.style() }, - "L.Negative" to { CheckBox.L.Negative.style() }, - "M.Default" to { CheckBox.M.Default.style() }, - "M.Negative" to { CheckBox.M.Negative.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - "S.Negative" to { CheckBox.S.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupDenseVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 616ba3f0b4..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chipgroup.Accent -import com.sdds.serv.styles.chipgroup.ChipGroupDense -import com.sdds.serv.styles.chipgroup.Default -import com.sdds.serv.styles.chipgroup.L -import com.sdds.serv.styles.chipgroup.M -import com.sdds.serv.styles.chipgroup.Negative -import com.sdds.serv.styles.chipgroup.Pilled -import com.sdds.serv.styles.chipgroup.Positive -import com.sdds.serv.styles.chipgroup.S -import com.sdds.serv.styles.chipgroup.Secondary -import com.sdds.serv.styles.chipgroup.Warning -import com.sdds.serv.styles.chipgroup.Xs - -internal object SddsServChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Negative" to { ChipGroupDense.L.Negative.style() }, - "L.Positive" to { ChipGroupDense.L.Positive.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Warning" to { ChipGroupDense.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupDense.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupDense.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupDense.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Negative" to { ChipGroupDense.M.Negative.style() }, - "M.Positive" to { ChipGroupDense.M.Positive.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Warning" to { ChipGroupDense.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupDense.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupDense.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupDense.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Negative" to { ChipGroupDense.S.Negative.style() }, - "S.Positive" to { ChipGroupDense.S.Positive.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Warning" to { ChipGroupDense.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupDense.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupDense.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupDense.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupDense.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupDense.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupDense.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupDense.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupWideVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupWideVariationsCompose.kt deleted file mode 100644 index b304c5ad5b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chipgroup.Accent -import com.sdds.serv.styles.chipgroup.ChipGroupWide -import com.sdds.serv.styles.chipgroup.Default -import com.sdds.serv.styles.chipgroup.L -import com.sdds.serv.styles.chipgroup.M -import com.sdds.serv.styles.chipgroup.Negative -import com.sdds.serv.styles.chipgroup.Pilled -import com.sdds.serv.styles.chipgroup.Positive -import com.sdds.serv.styles.chipgroup.S -import com.sdds.serv.styles.chipgroup.Secondary -import com.sdds.serv.styles.chipgroup.Warning -import com.sdds.serv.styles.chipgroup.Xs - -internal object SddsServChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Negative" to { ChipGroupWide.L.Negative.style() }, - "L.Positive" to { ChipGroupWide.L.Positive.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Warning" to { ChipGroupWide.L.Warning.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { ChipGroupWide.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { ChipGroupWide.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { ChipGroupWide.L.Pilled.Warning.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Negative" to { ChipGroupWide.M.Negative.style() }, - "M.Positive" to { ChipGroupWide.M.Positive.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Warning" to { ChipGroupWide.M.Warning.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { ChipGroupWide.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { ChipGroupWide.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { ChipGroupWide.M.Pilled.Warning.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Negative" to { ChipGroupWide.S.Negative.style() }, - "S.Positive" to { ChipGroupWide.S.Positive.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Warning" to { ChipGroupWide.S.Warning.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { ChipGroupWide.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { ChipGroupWide.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { ChipGroupWide.S.Pilled.Warning.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { ChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { ChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { ChipGroupWide.Xs.Warning.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { ChipGroupWide.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { ChipGroupWide.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { ChipGroupWide.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipVariationsCompose.kt deleted file mode 100644 index 742c35ffa8..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServChipVariationsCompose.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chip.Accent -import com.sdds.serv.styles.chip.Chip -import com.sdds.serv.styles.chip.Default -import com.sdds.serv.styles.chip.L -import com.sdds.serv.styles.chip.M -import com.sdds.serv.styles.chip.Negative -import com.sdds.serv.styles.chip.Pilled -import com.sdds.serv.styles.chip.Positive -import com.sdds.serv.styles.chip.S -import com.sdds.serv.styles.chip.Secondary -import com.sdds.serv.styles.chip.Warning -import com.sdds.serv.styles.chip.Xs - -internal object SddsServChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Negative" to { Chip.L.Negative.style() }, - "L.Positive" to { Chip.L.Positive.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Warning" to { Chip.L.Warning.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { Chip.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { Chip.L.Pilled.Positive.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "L.Pilled.Warning" to { Chip.L.Pilled.Warning.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Negative" to { Chip.M.Negative.style() }, - "M.Positive" to { Chip.M.Positive.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Warning" to { Chip.M.Warning.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { Chip.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { Chip.M.Pilled.Positive.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "M.Pilled.Warning" to { Chip.M.Pilled.Warning.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Negative" to { Chip.S.Negative.style() }, - "S.Positive" to { Chip.S.Positive.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Warning" to { Chip.S.Warning.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { Chip.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { Chip.S.Pilled.Positive.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "S.Pilled.Warning" to { Chip.S.Pilled.Warning.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Negative" to { Chip.Xs.Negative.style() }, - "Xs.Positive" to { Chip.Xs.Positive.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Warning" to { Chip.Xs.Warning.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { Chip.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { Chip.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Warning" to { Chip.Xs.Pilled.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCircularProgressBarVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCircularProgressBarVariationsCompose.kt deleted file mode 100644 index fd4ed014af..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCircularProgressBarVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.circularprogressbar.Accent -import com.sdds.serv.styles.circularprogressbar.CircularProgressBar -import com.sdds.serv.styles.circularprogressbar.Default -import com.sdds.serv.styles.circularprogressbar.Gradient -import com.sdds.serv.styles.circularprogressbar.Info -import com.sdds.serv.styles.circularprogressbar.L -import com.sdds.serv.styles.circularprogressbar.M -import com.sdds.serv.styles.circularprogressbar.Negative -import com.sdds.serv.styles.circularprogressbar.Positive -import com.sdds.serv.styles.circularprogressbar.S -import com.sdds.serv.styles.circularprogressbar.Secondary -import com.sdds.serv.styles.circularprogressbar.Warning -import com.sdds.serv.styles.circularprogressbar.Xl -import com.sdds.serv.styles.circularprogressbar.Xs -import com.sdds.serv.styles.circularprogressbar.Xxl -import com.sdds.serv.styles.circularprogressbar.Xxs - -internal object SddsServCircularProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map CircularProgressBarStyle> = - mapOf( - "Xxl.Default" to { CircularProgressBar.Xxl.Default.style() }, - "Xxl.Secondary" to { CircularProgressBar.Xxl.Secondary.style() }, - "Xxl.Accent" to { CircularProgressBar.Xxl.Accent.style() }, - "Xxl.Gradient" to { CircularProgressBar.Xxl.Gradient.style() }, - "Xxl.Info" to { CircularProgressBar.Xxl.Info.style() }, - "Xxl.Negative" to { CircularProgressBar.Xxl.Negative.style() }, - "Xxl.Positive" to { CircularProgressBar.Xxl.Positive.style() }, - "Xxl.Warning" to { CircularProgressBar.Xxl.Warning.style() }, - "Xl.Default" to { CircularProgressBar.Xl.Default.style() }, - "Xl.Secondary" to { CircularProgressBar.Xl.Secondary.style() }, - "Xl.Accent" to { CircularProgressBar.Xl.Accent.style() }, - "Xl.Gradient" to { CircularProgressBar.Xl.Gradient.style() }, - "Xl.Info" to { CircularProgressBar.Xl.Info.style() }, - "Xl.Negative" to { CircularProgressBar.Xl.Negative.style() }, - "Xl.Positive" to { CircularProgressBar.Xl.Positive.style() }, - "Xl.Warning" to { CircularProgressBar.Xl.Warning.style() }, - "L.Default" to { CircularProgressBar.L.Default.style() }, - "L.Secondary" to { CircularProgressBar.L.Secondary.style() }, - "L.Accent" to { CircularProgressBar.L.Accent.style() }, - "L.Gradient" to { CircularProgressBar.L.Gradient.style() }, - "L.Info" to { CircularProgressBar.L.Info.style() }, - "L.Negative" to { CircularProgressBar.L.Negative.style() }, - "L.Positive" to { CircularProgressBar.L.Positive.style() }, - "L.Warning" to { CircularProgressBar.L.Warning.style() }, - "M.Default" to { CircularProgressBar.M.Default.style() }, - "M.Secondary" to { CircularProgressBar.M.Secondary.style() }, - "M.Accent" to { CircularProgressBar.M.Accent.style() }, - "M.Gradient" to { CircularProgressBar.M.Gradient.style() }, - "M.Info" to { CircularProgressBar.M.Info.style() }, - "M.Negative" to { CircularProgressBar.M.Negative.style() }, - "M.Positive" to { CircularProgressBar.M.Positive.style() }, - "M.Warning" to { CircularProgressBar.M.Warning.style() }, - "S.Default" to { CircularProgressBar.S.Default.style() }, - "S.Secondary" to { CircularProgressBar.S.Secondary.style() }, - "S.Accent" to { CircularProgressBar.S.Accent.style() }, - "S.Gradient" to { CircularProgressBar.S.Gradient.style() }, - "S.Info" to { CircularProgressBar.S.Info.style() }, - "S.Negative" to { CircularProgressBar.S.Negative.style() }, - "S.Positive" to { CircularProgressBar.S.Positive.style() }, - "S.Warning" to { CircularProgressBar.S.Warning.style() }, - "Xs.Default" to { CircularProgressBar.Xs.Default.style() }, - "Xs.Secondary" to { CircularProgressBar.Xs.Secondary.style() }, - "Xs.Accent" to { CircularProgressBar.Xs.Accent.style() }, - "Xs.Gradient" to { CircularProgressBar.Xs.Gradient.style() }, - "Xs.Info" to { CircularProgressBar.Xs.Info.style() }, - "Xs.Negative" to { CircularProgressBar.Xs.Negative.style() }, - "Xs.Positive" to { CircularProgressBar.Xs.Positive.style() }, - "Xs.Warning" to { CircularProgressBar.Xs.Warning.style() }, - "Xxs.Default" to { CircularProgressBar.Xxs.Default.style() }, - "Xxs.Secondary" to { CircularProgressBar.Xxs.Secondary.style() }, - "Xxs.Accent" to { CircularProgressBar.Xxs.Accent.style() }, - "Xxs.Gradient" to { CircularProgressBar.Xxs.Gradient.style() }, - "Xxs.Info" to { CircularProgressBar.Xxs.Info.style() }, - "Xxs.Negative" to { CircularProgressBar.Xxs.Negative.style() }, - "Xxs.Positive" to { CircularProgressBar.Xxs.Positive.style() }, - "Xxs.Warning" to { CircularProgressBar.Xxs.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeFieldVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeFieldVariationsCompose.kt deleted file mode 100644 index e3c8e5519d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeFieldVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.codefield.CodeField -import com.sdds.serv.styles.codefield.L -import com.sdds.serv.styles.codefield.M -import com.sdds.serv.styles.codefield.Segmented - -internal object SddsServCodeFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeFieldStyle> = - mapOf( - "L" to { CodeField.L.style() }, - "L.Segmented" to { CodeField.L.Segmented.style() }, - "M" to { CodeField.M.style() }, - "M.Segmented" to { CodeField.M.Segmented.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeInputVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeInputVariationsCompose.kt deleted file mode 100644 index da9a21daae..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.codeinput.CodeInput -import com.sdds.serv.styles.codeinput.L -import com.sdds.serv.styles.codeinput.M -import com.sdds.serv.styles.codeinput.S - -internal object SddsServCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCounterVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCounterVariationsCompose.kt deleted file mode 100644 index a7d7ed2166..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.counter.Accent -import com.sdds.serv.styles.counter.Black -import com.sdds.serv.styles.counter.Counter -import com.sdds.serv.styles.counter.Default -import com.sdds.serv.styles.counter.L -import com.sdds.serv.styles.counter.M -import com.sdds.serv.styles.counter.Negative -import com.sdds.serv.styles.counter.Positive -import com.sdds.serv.styles.counter.S -import com.sdds.serv.styles.counter.Warning -import com.sdds.serv.styles.counter.White -import com.sdds.serv.styles.counter.Xs -import com.sdds.serv.styles.counter.Xxs - -internal object SddsServCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDividerVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDividerVariationsCompose.kt deleted file mode 100644 index 41d12e689e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.divider.Default -import com.sdds.serv.styles.divider.Divider - -internal object SddsServDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseInnerVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseInnerVariationsCompose.kt deleted file mode 100644 index 302aa0e99a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseInnerVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.drawer.DrawerCloseInner -import com.sdds.serv.styles.drawer.HasShadow -import com.sdds.serv.styles.drawer.M - -internal object SddsServDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseInner.M.style() }, - "M.HasShadow" to { DrawerCloseInner.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseNoneVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseNoneVariationsCompose.kt deleted file mode 100644 index 1355b15ddd..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseNoneVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.drawer.DrawerCloseNone -import com.sdds.serv.styles.drawer.HasShadow -import com.sdds.serv.styles.drawer.M - -internal object SddsServDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseNone.M.style() }, - "M.HasShadow" to { DrawerCloseNone.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseOuterVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseOuterVariationsCompose.kt deleted file mode 100644 index 55693a1e32..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDrawerCloseOuterVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.drawer.DrawerCloseOuter -import com.sdds.serv.styles.drawer.HasShadow -import com.sdds.serv.styles.drawer.M - -internal object SddsServDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map DrawerStyle> = - mapOf( - "M" to { DrawerCloseOuter.M.style() }, - "M.HasShadow" to { DrawerCloseOuter.M.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownEmptyStateVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownEmptyStateVariationsCompose.kt deleted file mode 100644 index 2a7678975f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownEmptyStateVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownEmptyStateStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.serv.styles.dropdownemptystate.HasButton -import com.sdds.serv.styles.dropdownemptystate.L -import com.sdds.serv.styles.dropdownemptystate.M -import com.sdds.serv.styles.dropdownemptystate.S -import com.sdds.serv.styles.dropdownemptystate.Xl -import com.sdds.serv.styles.dropdownemptystate.Xs - -internal object SddsServDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownEmptyStateStyle> = - mapOf( - "Xs" to { DropdownEmptyState.Xs.style() }, - "Xs.HasButton" to { DropdownEmptyState.Xs.HasButton.style() }, - "S" to { DropdownEmptyState.S.style() }, - "S.HasButton" to { DropdownEmptyState.S.HasButton.style() }, - "M" to { DropdownEmptyState.M.style() }, - "M.HasButton" to { DropdownEmptyState.M.HasButton.style() }, - "L" to { DropdownEmptyState.L.style() }, - "L.HasButton" to { DropdownEmptyState.L.HasButton.style() }, - "Xl" to { DropdownEmptyState.Xl.style() }, - "Xl.HasButton" to { DropdownEmptyState.Xl.HasButton.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemNormalVariationsCompose.kt deleted file mode 100644 index 9c5439e728..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemNormalVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.listitem.Default -import com.sdds.serv.styles.listitem.DropdownMenuItemNormal -import com.sdds.serv.styles.listitem.L -import com.sdds.serv.styles.listitem.M -import com.sdds.serv.styles.listitem.Negative -import com.sdds.serv.styles.listitem.Positive -import com.sdds.serv.styles.listitem.S -import com.sdds.serv.styles.listitem.Xl -import com.sdds.serv.styles.listitem.Xs - -internal object SddsServDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemNormal.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemNormal.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemNormal.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemNormal.L.Default.style() }, - "L.Positive" to { DropdownMenuItemNormal.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemNormal.L.Negative.style() }, - "M.Default" to { DropdownMenuItemNormal.M.Default.style() }, - "M.Positive" to { DropdownMenuItemNormal.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemNormal.M.Negative.style() }, - "S.Default" to { DropdownMenuItemNormal.S.Default.style() }, - "S.Positive" to { DropdownMenuItemNormal.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemNormal.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemNormal.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemNormal.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemNormal.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemTightVariationsCompose.kt deleted file mode 100644 index 19eb4fec14..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuItemTightVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.listitem.Default -import com.sdds.serv.styles.listitem.DropdownMenuItemTight -import com.sdds.serv.styles.listitem.L -import com.sdds.serv.styles.listitem.M -import com.sdds.serv.styles.listitem.Negative -import com.sdds.serv.styles.listitem.Positive -import com.sdds.serv.styles.listitem.S -import com.sdds.serv.styles.listitem.Xl -import com.sdds.serv.styles.listitem.Xs - -internal object SddsServDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl.Default" to { DropdownMenuItemTight.Xl.Default.style() }, - "Xl.Positive" to { DropdownMenuItemTight.Xl.Positive.style() }, - "Xl.Negative" to { DropdownMenuItemTight.Xl.Negative.style() }, - "L.Default" to { DropdownMenuItemTight.L.Default.style() }, - "L.Positive" to { DropdownMenuItemTight.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemTight.L.Negative.style() }, - "M.Default" to { DropdownMenuItemTight.M.Default.style() }, - "M.Positive" to { DropdownMenuItemTight.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemTight.M.Negative.style() }, - "S.Default" to { DropdownMenuItemTight.S.Default.style() }, - "S.Positive" to { DropdownMenuItemTight.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemTight.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemTight.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemTight.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemTight.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListNormalVariationsCompose.kt deleted file mode 100644 index 1b86ed28f0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.list.DropdownMenuListNormal -import com.sdds.serv.styles.list.L -import com.sdds.serv.styles.list.M -import com.sdds.serv.styles.list.S -import com.sdds.serv.styles.list.Xl -import com.sdds.serv.styles.list.Xs - -internal object SddsServDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListNormal.Xl.style() }, - "L" to { DropdownMenuListNormal.L.style() }, - "M" to { DropdownMenuListNormal.M.style() }, - "S" to { DropdownMenuListNormal.S.style() }, - "Xs" to { DropdownMenuListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListTightVariationsCompose.kt deleted file mode 100644 index 67c93d78a0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.list.DropdownMenuListTight -import com.sdds.serv.styles.list.L -import com.sdds.serv.styles.list.M -import com.sdds.serv.styles.list.S -import com.sdds.serv.styles.list.Xl -import com.sdds.serv.styles.list.Xs - -internal object SddsServDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { DropdownMenuListTight.Xl.style() }, - "L" to { DropdownMenuListTight.L.style() }, - "M" to { DropdownMenuListTight.M.style() }, - "S" to { DropdownMenuListTight.S.style() }, - "Xs" to { DropdownMenuListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuNormalVariationsCompose.kt deleted file mode 100644 index dd5c64765f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.serv.styles.dropdownmenu.L -import com.sdds.serv.styles.dropdownmenu.M -import com.sdds.serv.styles.dropdownmenu.S -import com.sdds.serv.styles.dropdownmenu.Xl -import com.sdds.serv.styles.dropdownmenu.Xs - -internal object SddsServDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuNormal.Xl.style() }, - "L" to { DropdownMenuNormal.L.style() }, - "M" to { DropdownMenuNormal.M.style() }, - "S" to { DropdownMenuNormal.S.style() }, - "Xs" to { DropdownMenuNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuTightVariationsCompose.kt deleted file mode 100644 index 8e5c646db3..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServDropdownMenuTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.dropdownmenu.DropdownMenuTight -import com.sdds.serv.styles.dropdownmenu.L -import com.sdds.serv.styles.dropdownmenu.M -import com.sdds.serv.styles.dropdownmenu.S -import com.sdds.serv.styles.dropdownmenu.Xl -import com.sdds.serv.styles.dropdownmenu.Xs - -internal object SddsServDropdownMenuTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "Xl" to { DropdownMenuTight.Xl.style() }, - "L" to { DropdownMenuTight.L.style() }, - "M" to { DropdownMenuTight.M.style() }, - "S" to { DropdownMenuTight.S.style() }, - "Xs" to { DropdownMenuTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEditableVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEditableVariationsCompose.kt deleted file mode 100644 index ca09738d25..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEditableVariationsCompose.kt +++ /dev/null @@ -1,33 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.EditableStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.editable.BodyL -import com.sdds.serv.styles.editable.BodyM -import com.sdds.serv.styles.editable.BodyS -import com.sdds.serv.styles.editable.BodyXs -import com.sdds.serv.styles.editable.BodyXxs -import com.sdds.serv.styles.editable.Editable -import com.sdds.serv.styles.editable.H1 -import com.sdds.serv.styles.editable.H2 -import com.sdds.serv.styles.editable.H3 -import com.sdds.serv.styles.editable.H4 -import com.sdds.serv.styles.editable.H5 - -internal object SddsServEditableVariationsCompose : ComposeStyleProvider() { - override val variations: Map EditableStyle> = - mapOf( - "H1" to { Editable.H1.style() }, - "H2" to { Editable.H2.style() }, - "H3" to { Editable.H3.style() }, - "H4" to { Editable.H4.style() }, - "H5" to { Editable.H5.style() }, - "BodyL" to { Editable.BodyL.style() }, - "BodyM" to { Editable.BodyM.style() }, - "BodyS" to { Editable.BodyS.style() }, - "BodyXs" to { Editable.BodyXs.style() }, - "BodyXxs" to { Editable.BodyXxs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupDenseVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupDenseVariationsCompose.kt deleted file mode 100644 index a901e8f019..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chipgroup.Accent -import com.sdds.serv.styles.chipgroup.Default -import com.sdds.serv.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.serv.styles.chipgroup.L -import com.sdds.serv.styles.chipgroup.M -import com.sdds.serv.styles.chipgroup.Negative -import com.sdds.serv.styles.chipgroup.Positive -import com.sdds.serv.styles.chipgroup.S -import com.sdds.serv.styles.chipgroup.Secondary -import com.sdds.serv.styles.chipgroup.Warning -import com.sdds.serv.styles.chipgroup.Xl -import com.sdds.serv.styles.chipgroup.Xs - -internal object SddsServEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupDense.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupDense.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupDense.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupDense.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupDense.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupDense.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupDense.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupDense.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupDense.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupDense.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupDense.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupDense.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupDense.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupDense.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupDense.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupDense.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupDense.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupDense.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupDense.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupDense.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupDense.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupDense.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupDense.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupDense.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupDense.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupDense.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupDense.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupDense.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupDense.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupWideVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupWideVariationsCompose.kt deleted file mode 100644 index f7c40c8ec2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chipgroup.Accent -import com.sdds.serv.styles.chipgroup.Default -import com.sdds.serv.styles.chipgroup.EmbeddedChipGroupWide -import com.sdds.serv.styles.chipgroup.L -import com.sdds.serv.styles.chipgroup.M -import com.sdds.serv.styles.chipgroup.Negative -import com.sdds.serv.styles.chipgroup.Positive -import com.sdds.serv.styles.chipgroup.S -import com.sdds.serv.styles.chipgroup.Secondary -import com.sdds.serv.styles.chipgroup.Warning -import com.sdds.serv.styles.chipgroup.Xl -import com.sdds.serv.styles.chipgroup.Xs - -internal object SddsServEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "Xl.Default" to { EmbeddedChipGroupWide.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChipGroupWide.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChipGroupWide.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChipGroupWide.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChipGroupWide.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChipGroupWide.Xl.Warning.style() }, - "L.Default" to { EmbeddedChipGroupWide.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupWide.L.Accent.style() }, - "L.Negative" to { EmbeddedChipGroupWide.L.Negative.style() }, - "L.Positive" to { EmbeddedChipGroupWide.L.Positive.style() }, - "L.Secondary" to { EmbeddedChipGroupWide.L.Secondary.style() }, - "L.Warning" to { EmbeddedChipGroupWide.L.Warning.style() }, - "M.Default" to { EmbeddedChipGroupWide.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupWide.M.Accent.style() }, - "M.Negative" to { EmbeddedChipGroupWide.M.Negative.style() }, - "M.Positive" to { EmbeddedChipGroupWide.M.Positive.style() }, - "M.Secondary" to { EmbeddedChipGroupWide.M.Secondary.style() }, - "M.Warning" to { EmbeddedChipGroupWide.M.Warning.style() }, - "S.Default" to { EmbeddedChipGroupWide.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupWide.S.Accent.style() }, - "S.Negative" to { EmbeddedChipGroupWide.S.Negative.style() }, - "S.Positive" to { EmbeddedChipGroupWide.S.Positive.style() }, - "S.Secondary" to { EmbeddedChipGroupWide.S.Secondary.style() }, - "S.Warning" to { EmbeddedChipGroupWide.S.Warning.style() }, - "Xs.Default" to { EmbeddedChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupWide.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChipGroupWide.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChipGroupWide.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChipGroupWide.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChipGroupWide.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipVariationsCompose.kt deleted file mode 100644 index a05fa8620f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServEmbeddedChipVariationsCompose.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.chip.Accent -import com.sdds.serv.styles.chip.Default -import com.sdds.serv.styles.chip.EmbeddedChip -import com.sdds.serv.styles.chip.L -import com.sdds.serv.styles.chip.M -import com.sdds.serv.styles.chip.Negative -import com.sdds.serv.styles.chip.Positive -import com.sdds.serv.styles.chip.S -import com.sdds.serv.styles.chip.Secondary -import com.sdds.serv.styles.chip.Warning -import com.sdds.serv.styles.chip.Xl -import com.sdds.serv.styles.chip.Xs - -internal object SddsServEmbeddedChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "Xl.Default" to { EmbeddedChip.Xl.Default.style() }, - "Xl.Accent" to { EmbeddedChip.Xl.Accent.style() }, - "Xl.Negative" to { EmbeddedChip.Xl.Negative.style() }, - "Xl.Positive" to { EmbeddedChip.Xl.Positive.style() }, - "Xl.Secondary" to { EmbeddedChip.Xl.Secondary.style() }, - "Xl.Warning" to { EmbeddedChip.Xl.Warning.style() }, - "L.Default" to { EmbeddedChip.L.Default.style() }, - "L.Accent" to { EmbeddedChip.L.Accent.style() }, - "L.Negative" to { EmbeddedChip.L.Negative.style() }, - "L.Positive" to { EmbeddedChip.L.Positive.style() }, - "L.Secondary" to { EmbeddedChip.L.Secondary.style() }, - "L.Warning" to { EmbeddedChip.L.Warning.style() }, - "M.Default" to { EmbeddedChip.M.Default.style() }, - "M.Accent" to { EmbeddedChip.M.Accent.style() }, - "M.Negative" to { EmbeddedChip.M.Negative.style() }, - "M.Positive" to { EmbeddedChip.M.Positive.style() }, - "M.Secondary" to { EmbeddedChip.M.Secondary.style() }, - "M.Warning" to { EmbeddedChip.M.Warning.style() }, - "S.Default" to { EmbeddedChip.S.Default.style() }, - "S.Accent" to { EmbeddedChip.S.Accent.style() }, - "S.Negative" to { EmbeddedChip.S.Negative.style() }, - "S.Positive" to { EmbeddedChip.S.Positive.style() }, - "S.Secondary" to { EmbeddedChip.S.Secondary.style() }, - "S.Warning" to { EmbeddedChip.S.Warning.style() }, - "Xs.Default" to { EmbeddedChip.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChip.Xs.Accent.style() }, - "Xs.Negative" to { EmbeddedChip.Xs.Negative.style() }, - "Xs.Positive" to { EmbeddedChip.Xs.Positive.style() }, - "Xs.Secondary" to { EmbeddedChip.Xs.Secondary.style() }, - "Xs.Warning" to { EmbeddedChip.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileCircularProgressVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileCircularProgressVariationsCompose.kt deleted file mode 100644 index 57c9bd3595..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileCircularProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.file.Default -import com.sdds.serv.styles.file.FileCircularProgress -import com.sdds.serv.styles.file.L -import com.sdds.serv.styles.file.M -import com.sdds.serv.styles.file.Negative -import com.sdds.serv.styles.file.S -import com.sdds.serv.styles.file.Xs - -internal object SddsServFileCircularProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileCircularProgress.Xs.Default.style() }, - "Xs.Negative" to { FileCircularProgress.Xs.Negative.style() }, - "S.Default" to { FileCircularProgress.S.Default.style() }, - "S.Negative" to { FileCircularProgress.S.Negative.style() }, - "M.Default" to { FileCircularProgress.M.Default.style() }, - "M.Negative" to { FileCircularProgress.M.Negative.style() }, - "L.Default" to { FileCircularProgress.L.Default.style() }, - "L.Negative" to { FileCircularProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileLinearProgressVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileLinearProgressVariationsCompose.kt deleted file mode 100644 index 8c528a57fb..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFileLinearProgressVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.file.Default -import com.sdds.serv.styles.file.FileLinearProgress -import com.sdds.serv.styles.file.L -import com.sdds.serv.styles.file.M -import com.sdds.serv.styles.file.Negative -import com.sdds.serv.styles.file.S -import com.sdds.serv.styles.file.Xs - -internal object SddsServFileLinearProgressVariationsCompose : ComposeStyleProvider() { - override val variations: Map FileStyle> = - mapOf( - "Xs.Default" to { FileLinearProgress.Xs.Default.style() }, - "Xs.Negative" to { FileLinearProgress.Xs.Negative.style() }, - "S.Default" to { FileLinearProgress.S.Default.style() }, - "S.Negative" to { FileLinearProgress.S.Negative.style() }, - "M.Default" to { FileLinearProgress.M.Default.style() }, - "M.Negative" to { FileLinearProgress.M.Negative.style() }, - "L.Default" to { FileLinearProgress.L.Default.style() }, - "L.Negative" to { FileLinearProgress.L.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFormItemVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFormItemVariationsCompose.kt deleted file mode 100644 index aa82059b79..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServFormItemVariationsCompose.kt +++ /dev/null @@ -1,169 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.FormItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.formitem.Default -import com.sdds.serv.styles.formitem.FormItem -import com.sdds.serv.styles.formitem.L -import com.sdds.serv.styles.formitem.M -import com.sdds.serv.styles.formitem.Negative -import com.sdds.serv.styles.formitem.Positive -import com.sdds.serv.styles.formitem.RequiredEnd -import com.sdds.serv.styles.formitem.RequiredStart -import com.sdds.serv.styles.formitem.S -import com.sdds.serv.styles.formitem.TitleStart -import com.sdds.serv.styles.formitem.TitleTop -import com.sdds.serv.styles.formitem.Warning -import com.sdds.serv.styles.formitem.Xs - -internal object SddsServFormItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map FormItemStyle> = - mapOf( - "Xs.Default" to { FormItem.Xs.Default.style() }, - "Xs.Positive" to { FormItem.Xs.Positive.style() }, - "Xs.Negative" to { FormItem.Xs.Negative.style() }, - "Xs.Warning" to { FormItem.Xs.Warning.style() }, - "Xs.RequiredStart.Default" to { FormItem.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Positive" to { FormItem.Xs.RequiredStart.Positive.style() }, - "Xs.RequiredStart.Negative" to { FormItem.Xs.RequiredStart.Negative.style() }, - "Xs.RequiredStart.Warning" to { FormItem.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredEnd.Default" to { FormItem.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Positive" to { FormItem.Xs.RequiredEnd.Positive.style() }, - "Xs.RequiredEnd.Negative" to { FormItem.Xs.RequiredEnd.Negative.style() }, - "Xs.RequiredEnd.Warning" to { FormItem.Xs.RequiredEnd.Warning.style() }, - "Xs.TitleTop.Default" to { FormItem.Xs.TitleTop.Default.style() }, - "Xs.TitleTop.Positive" to { FormItem.Xs.TitleTop.Positive.style() }, - "Xs.TitleTop.Negative" to { FormItem.Xs.TitleTop.Negative.style() }, - "Xs.TitleTop.Warning" to { FormItem.Xs.TitleTop.Warning.style() }, - "Xs.TitleTop.RequiredStart.Default" to { FormItem.Xs.TitleTop.RequiredStart.Default.style() }, - "Xs.TitleTop.RequiredStart.Positive" to { FormItem.Xs.TitleTop.RequiredStart.Positive.style() }, - "Xs.TitleTop.RequiredStart.Negative" to { FormItem.Xs.TitleTop.RequiredStart.Negative.style() }, - "Xs.TitleTop.RequiredStart.Warning" to { FormItem.Xs.TitleTop.RequiredStart.Warning.style() }, - "Xs.TitleTop.RequiredEnd.Default" to { FormItem.Xs.TitleTop.RequiredEnd.Default.style() }, - "Xs.TitleTop.RequiredEnd.Positive" to { FormItem.Xs.TitleTop.RequiredEnd.Positive.style() }, - "Xs.TitleTop.RequiredEnd.Negative" to { FormItem.Xs.TitleTop.RequiredEnd.Negative.style() }, - "Xs.TitleTop.RequiredEnd.Warning" to { FormItem.Xs.TitleTop.RequiredEnd.Warning.style() }, - "Xs.TitleStart.Default" to { FormItem.Xs.TitleStart.Default.style() }, - "Xs.TitleStart.Positive" to { FormItem.Xs.TitleStart.Positive.style() }, - "Xs.TitleStart.Negative" to { FormItem.Xs.TitleStart.Negative.style() }, - "Xs.TitleStart.Warning" to { FormItem.Xs.TitleStart.Warning.style() }, - "Xs.TitleStart.RequiredStart.Default" to { FormItem.Xs.TitleStart.RequiredStart.Default.style() }, - "Xs.TitleStart.RequiredStart.Positive" to { FormItem.Xs.TitleStart.RequiredStart.Positive.style() }, - "Xs.TitleStart.RequiredStart.Negative" to { FormItem.Xs.TitleStart.RequiredStart.Negative.style() }, - "Xs.TitleStart.RequiredStart.Warning" to { FormItem.Xs.TitleStart.RequiredStart.Warning.style() }, - "Xs.TitleStart.RequiredEnd.Default" to { FormItem.Xs.TitleStart.RequiredEnd.Default.style() }, - "Xs.TitleStart.RequiredEnd.Positive" to { FormItem.Xs.TitleStart.RequiredEnd.Positive.style() }, - "Xs.TitleStart.RequiredEnd.Negative" to { FormItem.Xs.TitleStart.RequiredEnd.Negative.style() }, - "Xs.TitleStart.RequiredEnd.Warning" to { FormItem.Xs.TitleStart.RequiredEnd.Warning.style() }, - "S.Default" to { FormItem.S.Default.style() }, - "S.Positive" to { FormItem.S.Positive.style() }, - "S.Negative" to { FormItem.S.Negative.style() }, - "S.Warning" to { FormItem.S.Warning.style() }, - "S.RequiredStart.Default" to { FormItem.S.RequiredStart.Default.style() }, - "S.RequiredStart.Positive" to { FormItem.S.RequiredStart.Positive.style() }, - "S.RequiredStart.Negative" to { FormItem.S.RequiredStart.Negative.style() }, - "S.RequiredStart.Warning" to { FormItem.S.RequiredStart.Warning.style() }, - "S.RequiredEnd.Default" to { FormItem.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Positive" to { FormItem.S.RequiredEnd.Positive.style() }, - "S.RequiredEnd.Negative" to { FormItem.S.RequiredEnd.Negative.style() }, - "S.RequiredEnd.Warning" to { FormItem.S.RequiredEnd.Warning.style() }, - "S.TitleTop.Default" to { FormItem.S.TitleTop.Default.style() }, - "S.TitleTop.Positive" to { FormItem.S.TitleTop.Positive.style() }, - "S.TitleTop.Negative" to { FormItem.S.TitleTop.Negative.style() }, - "S.TitleTop.Warning" to { FormItem.S.TitleTop.Warning.style() }, - "S.TitleTop.RequiredStart.Default" to { FormItem.S.TitleTop.RequiredStart.Default.style() }, - "S.TitleTop.RequiredStart.Positive" to { FormItem.S.TitleTop.RequiredStart.Positive.style() }, - "S.TitleTop.RequiredStart.Negative" to { FormItem.S.TitleTop.RequiredStart.Negative.style() }, - "S.TitleTop.RequiredStart.Warning" to { FormItem.S.TitleTop.RequiredStart.Warning.style() }, - "S.TitleTop.RequiredEnd.Default" to { FormItem.S.TitleTop.RequiredEnd.Default.style() }, - "S.TitleTop.RequiredEnd.Positive" to { FormItem.S.TitleTop.RequiredEnd.Positive.style() }, - "S.TitleTop.RequiredEnd.Negative" to { FormItem.S.TitleTop.RequiredEnd.Negative.style() }, - "S.TitleTop.RequiredEnd.Warning" to { FormItem.S.TitleTop.RequiredEnd.Warning.style() }, - "S.TitleStart.Default" to { FormItem.S.TitleStart.Default.style() }, - "S.TitleStart.Positive" to { FormItem.S.TitleStart.Positive.style() }, - "S.TitleStart.Negative" to { FormItem.S.TitleStart.Negative.style() }, - "S.TitleStart.Warning" to { FormItem.S.TitleStart.Warning.style() }, - "S.TitleStart.RequiredStart.Default" to { FormItem.S.TitleStart.RequiredStart.Default.style() }, - "S.TitleStart.RequiredStart.Positive" to { FormItem.S.TitleStart.RequiredStart.Positive.style() }, - "S.TitleStart.RequiredStart.Negative" to { FormItem.S.TitleStart.RequiredStart.Negative.style() }, - "S.TitleStart.RequiredStart.Warning" to { FormItem.S.TitleStart.RequiredStart.Warning.style() }, - "S.TitleStart.RequiredEnd.Default" to { FormItem.S.TitleStart.RequiredEnd.Default.style() }, - "S.TitleStart.RequiredEnd.Positive" to { FormItem.S.TitleStart.RequiredEnd.Positive.style() }, - "S.TitleStart.RequiredEnd.Negative" to { FormItem.S.TitleStart.RequiredEnd.Negative.style() }, - "S.TitleStart.RequiredEnd.Warning" to { FormItem.S.TitleStart.RequiredEnd.Warning.style() }, - "M.Default" to { FormItem.M.Default.style() }, - "M.Positive" to { FormItem.M.Positive.style() }, - "M.Negative" to { FormItem.M.Negative.style() }, - "M.Warning" to { FormItem.M.Warning.style() }, - "M.RequiredStart.Default" to { FormItem.M.RequiredStart.Default.style() }, - "M.RequiredStart.Positive" to { FormItem.M.RequiredStart.Positive.style() }, - "M.RequiredStart.Negative" to { FormItem.M.RequiredStart.Negative.style() }, - "M.RequiredStart.Warning" to { FormItem.M.RequiredStart.Warning.style() }, - "M.RequiredEnd.Default" to { FormItem.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Positive" to { FormItem.M.RequiredEnd.Positive.style() }, - "M.RequiredEnd.Negative" to { FormItem.M.RequiredEnd.Negative.style() }, - "M.RequiredEnd.Warning" to { FormItem.M.RequiredEnd.Warning.style() }, - "M.TitleTop.Default" to { FormItem.M.TitleTop.Default.style() }, - "M.TitleTop.Positive" to { FormItem.M.TitleTop.Positive.style() }, - "M.TitleTop.Negative" to { FormItem.M.TitleTop.Negative.style() }, - "M.TitleTop.Warning" to { FormItem.M.TitleTop.Warning.style() }, - "M.TitleTop.RequiredStart.Default" to { FormItem.M.TitleTop.RequiredStart.Default.style() }, - "M.TitleTop.RequiredStart.Positive" to { FormItem.M.TitleTop.RequiredStart.Positive.style() }, - "M.TitleTop.RequiredStart.Negative" to { FormItem.M.TitleTop.RequiredStart.Negative.style() }, - "M.TitleTop.RequiredStart.Warning" to { FormItem.M.TitleTop.RequiredStart.Warning.style() }, - "M.TitleTop.RequiredEnd.Default" to { FormItem.M.TitleTop.RequiredEnd.Default.style() }, - "M.TitleTop.RequiredEnd.Positive" to { FormItem.M.TitleTop.RequiredEnd.Positive.style() }, - "M.TitleTop.RequiredEnd.Negative" to { FormItem.M.TitleTop.RequiredEnd.Negative.style() }, - "M.TitleTop.RequiredEnd.Warning" to { FormItem.M.TitleTop.RequiredEnd.Warning.style() }, - "M.TitleStart.Default" to { FormItem.M.TitleStart.Default.style() }, - "M.TitleStart.Positive" to { FormItem.M.TitleStart.Positive.style() }, - "M.TitleStart.Negative" to { FormItem.M.TitleStart.Negative.style() }, - "M.TitleStart.Warning" to { FormItem.M.TitleStart.Warning.style() }, - "M.TitleStart.RequiredStart.Default" to { FormItem.M.TitleStart.RequiredStart.Default.style() }, - "M.TitleStart.RequiredStart.Positive" to { FormItem.M.TitleStart.RequiredStart.Positive.style() }, - "M.TitleStart.RequiredStart.Negative" to { FormItem.M.TitleStart.RequiredStart.Negative.style() }, - "M.TitleStart.RequiredStart.Warning" to { FormItem.M.TitleStart.RequiredStart.Warning.style() }, - "M.TitleStart.RequiredEnd.Default" to { FormItem.M.TitleStart.RequiredEnd.Default.style() }, - "M.TitleStart.RequiredEnd.Positive" to { FormItem.M.TitleStart.RequiredEnd.Positive.style() }, - "M.TitleStart.RequiredEnd.Negative" to { FormItem.M.TitleStart.RequiredEnd.Negative.style() }, - "M.TitleStart.RequiredEnd.Warning" to { FormItem.M.TitleStart.RequiredEnd.Warning.style() }, - "L.Default" to { FormItem.L.Default.style() }, - "L.Positive" to { FormItem.L.Positive.style() }, - "L.Negative" to { FormItem.L.Negative.style() }, - "L.Warning" to { FormItem.L.Warning.style() }, - "L.RequiredStart.Default" to { FormItem.L.RequiredStart.Default.style() }, - "L.RequiredStart.Positive" to { FormItem.L.RequiredStart.Positive.style() }, - "L.RequiredStart.Negative" to { FormItem.L.RequiredStart.Negative.style() }, - "L.RequiredStart.Warning" to { FormItem.L.RequiredStart.Warning.style() }, - "L.RequiredEnd.Default" to { FormItem.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Positive" to { FormItem.L.RequiredEnd.Positive.style() }, - "L.RequiredEnd.Negative" to { FormItem.L.RequiredEnd.Negative.style() }, - "L.RequiredEnd.Warning" to { FormItem.L.RequiredEnd.Warning.style() }, - "L.TitleTop.Default" to { FormItem.L.TitleTop.Default.style() }, - "L.TitleTop.Positive" to { FormItem.L.TitleTop.Positive.style() }, - "L.TitleTop.Negative" to { FormItem.L.TitleTop.Negative.style() }, - "L.TitleTop.Warning" to { FormItem.L.TitleTop.Warning.style() }, - "L.TitleTop.RequiredStart.Default" to { FormItem.L.TitleTop.RequiredStart.Default.style() }, - "L.TitleTop.RequiredStart.Positive" to { FormItem.L.TitleTop.RequiredStart.Positive.style() }, - "L.TitleTop.RequiredStart.Negative" to { FormItem.L.TitleTop.RequiredStart.Negative.style() }, - "L.TitleTop.RequiredStart.Warning" to { FormItem.L.TitleTop.RequiredStart.Warning.style() }, - "L.TitleTop.RequiredEnd.Default" to { FormItem.L.TitleTop.RequiredEnd.Default.style() }, - "L.TitleTop.RequiredEnd.Positive" to { FormItem.L.TitleTop.RequiredEnd.Positive.style() }, - "L.TitleTop.RequiredEnd.Negative" to { FormItem.L.TitleTop.RequiredEnd.Negative.style() }, - "L.TitleTop.RequiredEnd.Warning" to { FormItem.L.TitleTop.RequiredEnd.Warning.style() }, - "L.TitleStart.Default" to { FormItem.L.TitleStart.Default.style() }, - "L.TitleStart.Positive" to { FormItem.L.TitleStart.Positive.style() }, - "L.TitleStart.Negative" to { FormItem.L.TitleStart.Negative.style() }, - "L.TitleStart.Warning" to { FormItem.L.TitleStart.Warning.style() }, - "L.TitleStart.RequiredStart.Default" to { FormItem.L.TitleStart.RequiredStart.Default.style() }, - "L.TitleStart.RequiredStart.Positive" to { FormItem.L.TitleStart.RequiredStart.Positive.style() }, - "L.TitleStart.RequiredStart.Negative" to { FormItem.L.TitleStart.RequiredStart.Negative.style() }, - "L.TitleStart.RequiredStart.Warning" to { FormItem.L.TitleStart.RequiredStart.Warning.style() }, - "L.TitleStart.RequiredEnd.Default" to { FormItem.L.TitleStart.RequiredEnd.Default.style() }, - "L.TitleStart.RequiredEnd.Positive" to { FormItem.L.TitleStart.RequiredEnd.Positive.style() }, - "L.TitleStart.RequiredEnd.Negative" to { FormItem.L.TitleStart.RequiredEnd.Negative.style() }, - "L.TitleStart.RequiredEnd.Warning" to { FormItem.L.TitleStart.RequiredEnd.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeClearVariationsCompose.kt deleted file mode 100644 index ab86b77e63..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.iconbadge.Accent -import com.sdds.serv.styles.iconbadge.Dark -import com.sdds.serv.styles.iconbadge.Default -import com.sdds.serv.styles.iconbadge.IconBadgeClear -import com.sdds.serv.styles.iconbadge.L -import com.sdds.serv.styles.iconbadge.Light -import com.sdds.serv.styles.iconbadge.M -import com.sdds.serv.styles.iconbadge.Negative -import com.sdds.serv.styles.iconbadge.Pilled -import com.sdds.serv.styles.iconbadge.Positive -import com.sdds.serv.styles.iconbadge.S -import com.sdds.serv.styles.iconbadge.Warning -import com.sdds.serv.styles.iconbadge.Xs - -internal object SddsServIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index bedf688280..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.iconbadge.Accent -import com.sdds.serv.styles.iconbadge.Dark -import com.sdds.serv.styles.iconbadge.Default -import com.sdds.serv.styles.iconbadge.IconBadgeSolid -import com.sdds.serv.styles.iconbadge.L -import com.sdds.serv.styles.iconbadge.Light -import com.sdds.serv.styles.iconbadge.M -import com.sdds.serv.styles.iconbadge.Negative -import com.sdds.serv.styles.iconbadge.Pilled -import com.sdds.serv.styles.iconbadge.Positive -import com.sdds.serv.styles.iconbadge.S -import com.sdds.serv.styles.iconbadge.Warning -import com.sdds.serv.styles.iconbadge.Xs - -internal object SddsServIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index fe2a1e921e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.iconbadge.Accent -import com.sdds.serv.styles.iconbadge.Dark -import com.sdds.serv.styles.iconbadge.Default -import com.sdds.serv.styles.iconbadge.IconBadgeTransparent -import com.sdds.serv.styles.iconbadge.L -import com.sdds.serv.styles.iconbadge.Light -import com.sdds.serv.styles.iconbadge.M -import com.sdds.serv.styles.iconbadge.Negative -import com.sdds.serv.styles.iconbadge.Pilled -import com.sdds.serv.styles.iconbadge.Positive -import com.sdds.serv.styles.iconbadge.S -import com.sdds.serv.styles.iconbadge.Warning -import com.sdds.serv.styles.iconbadge.Xs - -internal object SddsServIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonGroupVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonGroupVariationsCompose.kt deleted file mode 100644 index f5d934a9e5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.buttongroup.Default -import com.sdds.serv.styles.buttongroup.Dense -import com.sdds.serv.styles.buttongroup.IconButtonGroup -import com.sdds.serv.styles.buttongroup.L -import com.sdds.serv.styles.buttongroup.M -import com.sdds.serv.styles.buttongroup.NoGap -import com.sdds.serv.styles.buttongroup.Pilled -import com.sdds.serv.styles.buttongroup.S -import com.sdds.serv.styles.buttongroup.Segmented -import com.sdds.serv.styles.buttongroup.Wide -import com.sdds.serv.styles.buttongroup.Xs - -internal object SddsServIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { IconButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { IconButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { IconButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { IconButtonGroup.S.Wide.Default.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { IconButtonGroup.S.Dense.Default.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { IconButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { IconButtonGroup.M.Wide.Default.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { IconButtonGroup.M.Dense.Default.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { IconButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { IconButtonGroup.L.Wide.Default.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { IconButtonGroup.L.Dense.Default.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { IconButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonVariationsCompose.kt deleted file mode 100644 index c4320f51db..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconButtonVariationsCompose.kt +++ /dev/null @@ -1,150 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.iconbutton.Accent -import com.sdds.serv.styles.iconbutton.Black -import com.sdds.serv.styles.iconbutton.Clear -import com.sdds.serv.styles.iconbutton.Dark -import com.sdds.serv.styles.iconbutton.Default -import com.sdds.serv.styles.iconbutton.IconButton -import com.sdds.serv.styles.iconbutton.L -import com.sdds.serv.styles.iconbutton.M -import com.sdds.serv.styles.iconbutton.Negative -import com.sdds.serv.styles.iconbutton.Pilled -import com.sdds.serv.styles.iconbutton.Positive -import com.sdds.serv.styles.iconbutton.S -import com.sdds.serv.styles.iconbutton.Secondary -import com.sdds.serv.styles.iconbutton.Warning -import com.sdds.serv.styles.iconbutton.White -import com.sdds.serv.styles.iconbutton.Xl -import com.sdds.serv.styles.iconbutton.Xs -import com.sdds.serv.styles.iconbutton.Xxs - -internal object SddsServIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { IconButton.Xl.Default.style() }, - "Xl.Secondary" to { IconButton.Xl.Secondary.style() }, - "Xl.Accent" to { IconButton.Xl.Accent.style() }, - "Xl.Positive" to { IconButton.Xl.Positive.style() }, - "Xl.Negative" to { IconButton.Xl.Negative.style() }, - "Xl.Warning" to { IconButton.Xl.Warning.style() }, - "Xl.Clear" to { IconButton.Xl.Clear.style() }, - "Xl.Dark" to { IconButton.Xl.Dark.style() }, - "Xl.Black" to { IconButton.Xl.Black.style() }, - "Xl.White" to { IconButton.Xl.White.style() }, - "Xl.Pilled.Default" to { IconButton.Xl.Pilled.Default.style() }, - "Xl.Pilled.Secondary" to { IconButton.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { IconButton.Xl.Pilled.Accent.style() }, - "Xl.Pilled.Positive" to { IconButton.Xl.Pilled.Positive.style() }, - "Xl.Pilled.Negative" to { IconButton.Xl.Pilled.Negative.style() }, - "Xl.Pilled.Warning" to { IconButton.Xl.Pilled.Warning.style() }, - "Xl.Pilled.Clear" to { IconButton.Xl.Pilled.Clear.style() }, - "Xl.Pilled.Dark" to { IconButton.Xl.Pilled.Dark.style() }, - "Xl.Pilled.Black" to { IconButton.Xl.Pilled.Black.style() }, - "Xl.Pilled.White" to { IconButton.Xl.Pilled.White.style() }, - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Positive" to { IconButton.L.Positive.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Black" to { IconButton.L.Black.style() }, - "L.White" to { IconButton.L.White.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { IconButton.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { IconButton.L.Pilled.Accent.style() }, - "L.Pilled.Positive" to { IconButton.L.Pilled.Positive.style() }, - "L.Pilled.Negative" to { IconButton.L.Pilled.Negative.style() }, - "L.Pilled.Warning" to { IconButton.L.Pilled.Warning.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "L.Pilled.Dark" to { IconButton.L.Pilled.Dark.style() }, - "L.Pilled.Black" to { IconButton.L.Pilled.Black.style() }, - "L.Pilled.White" to { IconButton.L.Pilled.White.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Positive" to { IconButton.M.Positive.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Black" to { IconButton.M.Black.style() }, - "M.White" to { IconButton.M.White.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { IconButton.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { IconButton.M.Pilled.Accent.style() }, - "M.Pilled.Positive" to { IconButton.M.Pilled.Positive.style() }, - "M.Pilled.Negative" to { IconButton.M.Pilled.Negative.style() }, - "M.Pilled.Warning" to { IconButton.M.Pilled.Warning.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "M.Pilled.Dark" to { IconButton.M.Pilled.Dark.style() }, - "M.Pilled.Black" to { IconButton.M.Pilled.Black.style() }, - "M.Pilled.White" to { IconButton.M.Pilled.White.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Positive" to { IconButton.S.Positive.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Black" to { IconButton.S.Black.style() }, - "S.White" to { IconButton.S.White.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { IconButton.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { IconButton.S.Pilled.Accent.style() }, - "S.Pilled.Positive" to { IconButton.S.Pilled.Positive.style() }, - "S.Pilled.Negative" to { IconButton.S.Pilled.Negative.style() }, - "S.Pilled.Warning" to { IconButton.S.Pilled.Warning.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "S.Pilled.Dark" to { IconButton.S.Pilled.Dark.style() }, - "S.Pilled.Black" to { IconButton.S.Pilled.Black.style() }, - "S.Pilled.White" to { IconButton.S.Pilled.White.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Positive" to { IconButton.Xs.Positive.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Black" to { IconButton.Xs.Black.style() }, - "Xs.White" to { IconButton.Xs.White.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { IconButton.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { IconButton.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Positive" to { IconButton.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Negative" to { IconButton.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Warning" to { IconButton.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - "Xs.Pilled.Dark" to { IconButton.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Black" to { IconButton.Xs.Pilled.Black.style() }, - "Xs.Pilled.White" to { IconButton.Xs.Pilled.White.style() }, - "Xxs.Default" to { IconButton.Xxs.Default.style() }, - "Xxs.Secondary" to { IconButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { IconButton.Xxs.Accent.style() }, - "Xxs.Positive" to { IconButton.Xxs.Positive.style() }, - "Xxs.Negative" to { IconButton.Xxs.Negative.style() }, - "Xxs.Warning" to { IconButton.Xxs.Warning.style() }, - "Xxs.Clear" to { IconButton.Xxs.Clear.style() }, - "Xxs.Dark" to { IconButton.Xxs.Dark.style() }, - "Xxs.Black" to { IconButton.Xxs.Black.style() }, - "Xxs.White" to { IconButton.Xxs.White.style() }, - "Xxs.Pilled.Default" to { IconButton.Xxs.Pilled.Default.style() }, - "Xxs.Pilled.Secondary" to { IconButton.Xxs.Pilled.Secondary.style() }, - "Xxs.Pilled.Accent" to { IconButton.Xxs.Pilled.Accent.style() }, - "Xxs.Pilled.Positive" to { IconButton.Xxs.Pilled.Positive.style() }, - "Xxs.Pilled.Negative" to { IconButton.Xxs.Pilled.Negative.style() }, - "Xxs.Pilled.Warning" to { IconButton.Xxs.Pilled.Warning.style() }, - "Xxs.Pilled.Clear" to { IconButton.Xxs.Pilled.Clear.style() }, - "Xxs.Pilled.Dark" to { IconButton.Xxs.Pilled.Dark.style() }, - "Xxs.Pilled.Black" to { IconButton.Xxs.Pilled.Black.style() }, - "Xxs.Pilled.White" to { IconButton.Xxs.Pilled.White.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabItemVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabItemVariationsCompose.kt deleted file mode 100644 index f616a5e842..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabItemVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.icontabitem.IconTabItem -import com.sdds.serv.styles.icontabitem.L -import com.sdds.serv.styles.icontabitem.M -import com.sdds.serv.styles.icontabitem.S -import com.sdds.serv.styles.icontabitem.Xs - -internal object SddsServIconTabItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabItemStyle> = - mapOf( - "L" to { IconTabItem.L.style() }, - "M" to { IconTabItem.M.style() }, - "S" to { IconTabItem.S.style() }, - "Xs" to { IconTabItem.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabsVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabsVariationsCompose.kt deleted file mode 100644 index d035eac8d0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIconTabsVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabs.Horizontal -import com.sdds.serv.styles.tabs.IconTabs -import com.sdds.serv.styles.tabs.L -import com.sdds.serv.styles.tabs.M -import com.sdds.serv.styles.tabs.S -import com.sdds.serv.styles.tabs.Vertical -import com.sdds.serv.styles.tabs.Xs - -internal object SddsServIconTabsVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabsStyle> = - mapOf( - "L" to { IconTabs.L.style() }, - "L.Vertical" to { IconTabs.L.Vertical.style() }, - "L.Horizontal" to { IconTabs.L.Horizontal.style() }, - "M" to { IconTabs.M.style() }, - "M.Vertical" to { IconTabs.M.Vertical.style() }, - "M.Horizontal" to { IconTabs.M.Horizontal.style() }, - "S" to { IconTabs.S.style() }, - "S.Vertical" to { IconTabs.S.Vertical.style() }, - "S.Horizontal" to { IconTabs.S.Horizontal.style() }, - "Xs" to { IconTabs.Xs.style() }, - "Xs.Vertical" to { IconTabs.Xs.Vertical.style() }, - "Xs.Horizontal" to { IconTabs.Xs.Horizontal.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServImageVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServImageVariationsCompose.kt deleted file mode 100644 index 67390d3435..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServImageVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.image.Image -import com.sdds.serv.styles.image.Ratio16x9 -import com.sdds.serv.styles.image.Ratio1x1 -import com.sdds.serv.styles.image.Ratio1x2 -import com.sdds.serv.styles.image.Ratio2x1 -import com.sdds.serv.styles.image.Ratio3x4 -import com.sdds.serv.styles.image.Ratio4x3 -import com.sdds.serv.styles.image.Ratio9x16 - -internal object SddsServImageVariationsCompose : ComposeStyleProvider() { - override val variations: Map ImageStyle> = - mapOf( - "Ratio12" to { Image.Ratio1x2.style() }, - "Ratio916" to { Image.Ratio9x16.style() }, - "Ratio34" to { Image.Ratio3x4.style() }, - "Ratio21" to { Image.Ratio2x1.style() }, - "Ratio169" to { Image.Ratio16x9.style() }, - "Ratio43" to { Image.Ratio4x3.style() }, - "Ratio11" to { Image.Ratio1x1.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIndicatorVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIndicatorVariationsCompose.kt deleted file mode 100644 index 1436b3a53c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServIndicatorVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.indicator.Accent -import com.sdds.serv.styles.indicator.Black -import com.sdds.serv.styles.indicator.Dark -import com.sdds.serv.styles.indicator.Default -import com.sdds.serv.styles.indicator.Inactive -import com.sdds.serv.styles.indicator.Indicator -import com.sdds.serv.styles.indicator.L -import com.sdds.serv.styles.indicator.M -import com.sdds.serv.styles.indicator.Negative -import com.sdds.serv.styles.indicator.Positive -import com.sdds.serv.styles.indicator.S -import com.sdds.serv.styles.indicator.Warning -import com.sdds.serv.styles.indicator.White - -internal object SddsServIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Dark" to { Indicator.L.Dark.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Dark" to { Indicator.M.Dark.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Dark" to { Indicator.S.Dark.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLinkButtonVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLinkButtonVariationsCompose.kt deleted file mode 100644 index 2b4a50c19b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.linkbutton.Accent -import com.sdds.serv.styles.linkbutton.Default -import com.sdds.serv.styles.linkbutton.Info -import com.sdds.serv.styles.linkbutton.L -import com.sdds.serv.styles.linkbutton.LinkButton -import com.sdds.serv.styles.linkbutton.M -import com.sdds.serv.styles.linkbutton.Negative -import com.sdds.serv.styles.linkbutton.Positive -import com.sdds.serv.styles.linkbutton.S -import com.sdds.serv.styles.linkbutton.Secondary -import com.sdds.serv.styles.linkbutton.Warning -import com.sdds.serv.styles.linkbutton.Xl -import com.sdds.serv.styles.linkbutton.Xs -import com.sdds.serv.styles.linkbutton.Xxs - -internal object SddsServLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "Xl.Default" to { LinkButton.Xl.Default.style() }, - "Xl.Secondary" to { LinkButton.Xl.Secondary.style() }, - "Xl.Accent" to { LinkButton.Xl.Accent.style() }, - "Xl.Positive" to { LinkButton.Xl.Positive.style() }, - "Xl.Negative" to { LinkButton.Xl.Negative.style() }, - "Xl.Warning" to { LinkButton.Xl.Warning.style() }, - "Xl.Info" to { LinkButton.Xl.Info.style() }, - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "L.Info" to { LinkButton.L.Info.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "M.Info" to { LinkButton.M.Info.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "S.Info" to { LinkButton.S.Info.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - "Xs.Info" to { LinkButton.Xs.Info.style() }, - "Xxs.Default" to { LinkButton.Xxs.Default.style() }, - "Xxs.Secondary" to { LinkButton.Xxs.Secondary.style() }, - "Xxs.Accent" to { LinkButton.Xxs.Accent.style() }, - "Xxs.Positive" to { LinkButton.Xxs.Positive.style() }, - "Xxs.Negative" to { LinkButton.Xxs.Negative.style() }, - "Xxs.Warning" to { LinkButton.Xxs.Warning.style() }, - "Xxs.Info" to { LinkButton.Xxs.Info.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemNormalVariationsCompose.kt deleted file mode 100644 index 3078b2be76..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.listitem.L -import com.sdds.serv.styles.listitem.ListItemNormal -import com.sdds.serv.styles.listitem.M -import com.sdds.serv.styles.listitem.S -import com.sdds.serv.styles.listitem.Xl -import com.sdds.serv.styles.listitem.Xs - -internal object SddsServListItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemNormal.Xl.style() }, - "L" to { ListItemNormal.L.style() }, - "M" to { ListItemNormal.M.style() }, - "S" to { ListItemNormal.S.style() }, - "Xs" to { ListItemNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemTightVariationsCompose.kt deleted file mode 100644 index 8094b3f997..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListItemTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.listitem.L -import com.sdds.serv.styles.listitem.ListItemTight -import com.sdds.serv.styles.listitem.M -import com.sdds.serv.styles.listitem.S -import com.sdds.serv.styles.listitem.Xl -import com.sdds.serv.styles.listitem.Xs - -internal object SddsServListItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemTight.Xl.style() }, - "L" to { ListItemTight.L.style() }, - "M" to { ListItemTight.M.style() }, - "S" to { ListItemTight.S.style() }, - "Xs" to { ListItemTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListNormalVariationsCompose.kt deleted file mode 100644 index 427944100f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.list.L -import com.sdds.serv.styles.list.ListNormal -import com.sdds.serv.styles.list.M -import com.sdds.serv.styles.list.S -import com.sdds.serv.styles.list.Xl -import com.sdds.serv.styles.list.Xs - -internal object SddsServListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListNormal.Xl.style() }, - "L" to { ListNormal.L.style() }, - "M" to { ListNormal.M.style() }, - "S" to { ListNormal.S.style() }, - "Xs" to { ListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListTightVariationsCompose.kt deleted file mode 100644 index 598d034f9e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.list.L -import com.sdds.serv.styles.list.ListTight -import com.sdds.serv.styles.list.M -import com.sdds.serv.styles.list.S -import com.sdds.serv.styles.list.Xl -import com.sdds.serv.styles.list.Xs - -internal object SddsServListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListTight.Xl.style() }, - "L" to { ListTight.L.style() }, - "M" to { ListTight.M.style() }, - "S" to { ListTight.S.style() }, - "Xs" to { ListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLoaderVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLoaderVariationsCompose.kt deleted file mode 100644 index 0f38b4fcc2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServLoaderVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.loader.Default -import com.sdds.serv.styles.loader.Loader - -internal object SddsServLoaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map LoaderStyle> = - mapOf( - "Default" to { Loader.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalBottomSheetVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalBottomSheetVariationsCompose.kt deleted file mode 100644 index d3627375af..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.bottomsheet.Default -import com.sdds.serv.styles.bottomsheet.ModalBottomSheet - -internal object SddsServModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalVariationsCompose.kt deleted file mode 100644 index f62fa2bde5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.modal.Default -import com.sdds.serv.styles.modal.Modal - -internal object SddsServModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarInternalPageVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarInternalPageVariationsCompose.kt deleted file mode 100644 index ce885f7ddb..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarInternalPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.navigationbar.HasBackground -import com.sdds.serv.styles.navigationbar.NavigationBarInternalPage -import com.sdds.serv.styles.navigationbar.NoBackground -import com.sdds.serv.styles.navigationbar.Rounded -import com.sdds.serv.styles.navigationbar.Shadow - -internal object SddsServNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarInternalPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarInternalPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarInternalPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarInternalPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarInternalPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarInternalPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarMainPageVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarMainPageVariationsCompose.kt deleted file mode 100644 index f1bb38196d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNavigationBarMainPageVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.navigationbar.HasBackground -import com.sdds.serv.styles.navigationbar.NavigationBarMainPage -import com.sdds.serv.styles.navigationbar.NoBackground -import com.sdds.serv.styles.navigationbar.Rounded -import com.sdds.serv.styles.navigationbar.Shadow - -internal object SddsServNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { - override val variations: Map NavigationBarStyle> = - mapOf( - "NoBackground" to { NavigationBarMainPage.NoBackground.style() }, - "NoBackground.Rounded" to { NavigationBarMainPage.NoBackground.Rounded.style() }, - "HasBackground" to { NavigationBarMainPage.HasBackground.style() }, - "HasBackground.Rounded" to { NavigationBarMainPage.HasBackground.Rounded.style() }, - "HasBackground.Shadow" to { NavigationBarMainPage.HasBackground.Shadow.style() }, - "HasBackground.Shadow.Rounded" to { NavigationBarMainPage.HasBackground.Shadow.Rounded.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteCompactVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteCompactVariationsCompose.kt deleted file mode 100644 index d0d7467a3d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteCompactVariationsCompose.kt +++ /dev/null @@ -1,105 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NoteCompactStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.notecompact.ContentScalable -import com.sdds.serv.styles.notecompact.Default -import com.sdds.serv.styles.notecompact.HasClose -import com.sdds.serv.styles.notecompact.HasCloseContentScalable -import com.sdds.serv.styles.notecompact.Info -import com.sdds.serv.styles.notecompact.L -import com.sdds.serv.styles.notecompact.M -import com.sdds.serv.styles.notecompact.Negative -import com.sdds.serv.styles.notecompact.NoteCompact -import com.sdds.serv.styles.notecompact.Positive -import com.sdds.serv.styles.notecompact.S -import com.sdds.serv.styles.notecompact.Warning -import com.sdds.serv.styles.notecompact.Xs - -internal object SddsServNoteCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NoteCompactStyle> = - mapOf( - "L.Default" to { NoteCompact.L.Default.style() }, - "L.Positive" to { NoteCompact.L.Positive.style() }, - "L.Negative" to { NoteCompact.L.Negative.style() }, - "L.Warning" to { NoteCompact.L.Warning.style() }, - "L.Info" to { NoteCompact.L.Info.style() }, - "L.HasClose.Default" to { NoteCompact.L.HasClose.Default.style() }, - "L.HasClose.Positive" to { NoteCompact.L.HasClose.Positive.style() }, - "L.HasClose.Negative" to { NoteCompact.L.HasClose.Negative.style() }, - "L.HasClose.Warning" to { NoteCompact.L.HasClose.Warning.style() }, - "L.HasClose.Info" to { NoteCompact.L.HasClose.Info.style() }, - "L.ContentScalable.Default" to { NoteCompact.L.ContentScalable.Default.style() }, - "L.ContentScalable.Positive" to { NoteCompact.L.ContentScalable.Positive.style() }, - "L.ContentScalable.Negative" to { NoteCompact.L.ContentScalable.Negative.style() }, - "L.ContentScalable.Warning" to { NoteCompact.L.ContentScalable.Warning.style() }, - "L.ContentScalable.Info" to { NoteCompact.L.ContentScalable.Info.style() }, - "L.HasCloseContentScalable.Default" to { NoteCompact.L.HasCloseContentScalable.Default.style() }, - "L.HasCloseContentScalable.Positive" to { NoteCompact.L.HasCloseContentScalable.Positive.style() }, - "L.HasCloseContentScalable.Negative" to { NoteCompact.L.HasCloseContentScalable.Negative.style() }, - "L.HasCloseContentScalable.Warning" to { NoteCompact.L.HasCloseContentScalable.Warning.style() }, - "L.HasCloseContentScalable.Info" to { NoteCompact.L.HasCloseContentScalable.Info.style() }, - "M.Default" to { NoteCompact.M.Default.style() }, - "M.Positive" to { NoteCompact.M.Positive.style() }, - "M.Negative" to { NoteCompact.M.Negative.style() }, - "M.Warning" to { NoteCompact.M.Warning.style() }, - "M.Info" to { NoteCompact.M.Info.style() }, - "M.HasClose.Default" to { NoteCompact.M.HasClose.Default.style() }, - "M.HasClose.Positive" to { NoteCompact.M.HasClose.Positive.style() }, - "M.HasClose.Negative" to { NoteCompact.M.HasClose.Negative.style() }, - "M.HasClose.Warning" to { NoteCompact.M.HasClose.Warning.style() }, - "M.HasClose.Info" to { NoteCompact.M.HasClose.Info.style() }, - "M.ContentScalable.Default" to { NoteCompact.M.ContentScalable.Default.style() }, - "M.ContentScalable.Positive" to { NoteCompact.M.ContentScalable.Positive.style() }, - "M.ContentScalable.Negative" to { NoteCompact.M.ContentScalable.Negative.style() }, - "M.ContentScalable.Warning" to { NoteCompact.M.ContentScalable.Warning.style() }, - "M.ContentScalable.Info" to { NoteCompact.M.ContentScalable.Info.style() }, - "M.HasCloseContentScalable.Default" to { NoteCompact.M.HasCloseContentScalable.Default.style() }, - "M.HasCloseContentScalable.Positive" to { NoteCompact.M.HasCloseContentScalable.Positive.style() }, - "M.HasCloseContentScalable.Negative" to { NoteCompact.M.HasCloseContentScalable.Negative.style() }, - "M.HasCloseContentScalable.Warning" to { NoteCompact.M.HasCloseContentScalable.Warning.style() }, - "M.HasCloseContentScalable.Info" to { NoteCompact.M.HasCloseContentScalable.Info.style() }, - "S.Default" to { NoteCompact.S.Default.style() }, - "S.Positive" to { NoteCompact.S.Positive.style() }, - "S.Negative" to { NoteCompact.S.Negative.style() }, - "S.Warning" to { NoteCompact.S.Warning.style() }, - "S.Info" to { NoteCompact.S.Info.style() }, - "S.HasClose.Default" to { NoteCompact.S.HasClose.Default.style() }, - "S.HasClose.Positive" to { NoteCompact.S.HasClose.Positive.style() }, - "S.HasClose.Negative" to { NoteCompact.S.HasClose.Negative.style() }, - "S.HasClose.Warning" to { NoteCompact.S.HasClose.Warning.style() }, - "S.HasClose.Info" to { NoteCompact.S.HasClose.Info.style() }, - "S.ContentScalable.Default" to { NoteCompact.S.ContentScalable.Default.style() }, - "S.ContentScalable.Positive" to { NoteCompact.S.ContentScalable.Positive.style() }, - "S.ContentScalable.Negative" to { NoteCompact.S.ContentScalable.Negative.style() }, - "S.ContentScalable.Warning" to { NoteCompact.S.ContentScalable.Warning.style() }, - "S.ContentScalable.Info" to { NoteCompact.S.ContentScalable.Info.style() }, - "S.HasCloseContentScalable.Default" to { NoteCompact.S.HasCloseContentScalable.Default.style() }, - "S.HasCloseContentScalable.Positive" to { NoteCompact.S.HasCloseContentScalable.Positive.style() }, - "S.HasCloseContentScalable.Negative" to { NoteCompact.S.HasCloseContentScalable.Negative.style() }, - "S.HasCloseContentScalable.Warning" to { NoteCompact.S.HasCloseContentScalable.Warning.style() }, - "S.HasCloseContentScalable.Info" to { NoteCompact.S.HasCloseContentScalable.Info.style() }, - "Xs.Default" to { NoteCompact.Xs.Default.style() }, - "Xs.Positive" to { NoteCompact.Xs.Positive.style() }, - "Xs.Negative" to { NoteCompact.Xs.Negative.style() }, - "Xs.Warning" to { NoteCompact.Xs.Warning.style() }, - "Xs.Info" to { NoteCompact.Xs.Info.style() }, - "Xs.HasClose.Default" to { NoteCompact.Xs.HasClose.Default.style() }, - "Xs.HasClose.Positive" to { NoteCompact.Xs.HasClose.Positive.style() }, - "Xs.HasClose.Negative" to { NoteCompact.Xs.HasClose.Negative.style() }, - "Xs.HasClose.Warning" to { NoteCompact.Xs.HasClose.Warning.style() }, - "Xs.HasClose.Info" to { NoteCompact.Xs.HasClose.Info.style() }, - "Xs.ContentScalable.Default" to { NoteCompact.Xs.ContentScalable.Default.style() }, - "Xs.ContentScalable.Positive" to { NoteCompact.Xs.ContentScalable.Positive.style() }, - "Xs.ContentScalable.Negative" to { NoteCompact.Xs.ContentScalable.Negative.style() }, - "Xs.ContentScalable.Warning" to { NoteCompact.Xs.ContentScalable.Warning.style() }, - "Xs.ContentScalable.Info" to { NoteCompact.Xs.ContentScalable.Info.style() }, - "Xs.HasCloseContentScalable.Default" to { NoteCompact.Xs.HasCloseContentScalable.Default.style() }, - "Xs.HasCloseContentScalable.Positive" to { NoteCompact.Xs.HasCloseContentScalable.Positive.style() }, - "Xs.HasCloseContentScalable.Negative" to { NoteCompact.Xs.HasCloseContentScalable.Negative.style() }, - "Xs.HasCloseContentScalable.Warning" to { NoteCompact.Xs.HasCloseContentScalable.Warning.style() }, - "Xs.HasCloseContentScalable.Info" to { NoteCompact.Xs.HasCloseContentScalable.Info.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteVariationsCompose.kt deleted file mode 100644 index d937ccb496..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNoteVariationsCompose.kt +++ /dev/null @@ -1,105 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NoteStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.note.ContentScalable -import com.sdds.serv.styles.note.Default -import com.sdds.serv.styles.note.HasClose -import com.sdds.serv.styles.note.HasCloseContentScalable -import com.sdds.serv.styles.note.Info -import com.sdds.serv.styles.note.L -import com.sdds.serv.styles.note.M -import com.sdds.serv.styles.note.Negative -import com.sdds.serv.styles.note.Note -import com.sdds.serv.styles.note.Positive -import com.sdds.serv.styles.note.S -import com.sdds.serv.styles.note.Warning -import com.sdds.serv.styles.note.Xs - -internal object SddsServNoteVariationsCompose : ComposeStyleProvider() { - override val variations: Map NoteStyle> = - mapOf( - "L.Default" to { Note.L.Default.style() }, - "L.Positive" to { Note.L.Positive.style() }, - "L.Negative" to { Note.L.Negative.style() }, - "L.Warning" to { Note.L.Warning.style() }, - "L.Info" to { Note.L.Info.style() }, - "L.HasClose.Default" to { Note.L.HasClose.Default.style() }, - "L.HasClose.Positive" to { Note.L.HasClose.Positive.style() }, - "L.HasClose.Negative" to { Note.L.HasClose.Negative.style() }, - "L.HasClose.Warning" to { Note.L.HasClose.Warning.style() }, - "L.HasClose.Info" to { Note.L.HasClose.Info.style() }, - "L.ContentScalable.Default" to { Note.L.ContentScalable.Default.style() }, - "L.ContentScalable.Positive" to { Note.L.ContentScalable.Positive.style() }, - "L.ContentScalable.Negative" to { Note.L.ContentScalable.Negative.style() }, - "L.ContentScalable.Warning" to { Note.L.ContentScalable.Warning.style() }, - "L.ContentScalable.Info" to { Note.L.ContentScalable.Info.style() }, - "L.HasCloseContentScalable.Default" to { Note.L.HasCloseContentScalable.Default.style() }, - "L.HasCloseContentScalable.Positive" to { Note.L.HasCloseContentScalable.Positive.style() }, - "L.HasCloseContentScalable.Negative" to { Note.L.HasCloseContentScalable.Negative.style() }, - "L.HasCloseContentScalable.Warning" to { Note.L.HasCloseContentScalable.Warning.style() }, - "L.HasCloseContentScalable.Info" to { Note.L.HasCloseContentScalable.Info.style() }, - "M.Default" to { Note.M.Default.style() }, - "M.Positive" to { Note.M.Positive.style() }, - "M.Negative" to { Note.M.Negative.style() }, - "M.Warning" to { Note.M.Warning.style() }, - "M.Info" to { Note.M.Info.style() }, - "M.HasClose.Default" to { Note.M.HasClose.Default.style() }, - "M.HasClose.Positive" to { Note.M.HasClose.Positive.style() }, - "M.HasClose.Negative" to { Note.M.HasClose.Negative.style() }, - "M.HasClose.Warning" to { Note.M.HasClose.Warning.style() }, - "M.HasClose.Info" to { Note.M.HasClose.Info.style() }, - "M.ContentScalable.Default" to { Note.M.ContentScalable.Default.style() }, - "M.ContentScalable.Positive" to { Note.M.ContentScalable.Positive.style() }, - "M.ContentScalable.Negative" to { Note.M.ContentScalable.Negative.style() }, - "M.ContentScalable.Warning" to { Note.M.ContentScalable.Warning.style() }, - "M.ContentScalable.Info" to { Note.M.ContentScalable.Info.style() }, - "M.HasCloseContentScalable.Default" to { Note.M.HasCloseContentScalable.Default.style() }, - "M.HasCloseContentScalable.Positive" to { Note.M.HasCloseContentScalable.Positive.style() }, - "M.HasCloseContentScalable.Negative" to { Note.M.HasCloseContentScalable.Negative.style() }, - "M.HasCloseContentScalable.Warning" to { Note.M.HasCloseContentScalable.Warning.style() }, - "M.HasCloseContentScalable.Info" to { Note.M.HasCloseContentScalable.Info.style() }, - "S.Default" to { Note.S.Default.style() }, - "S.Positive" to { Note.S.Positive.style() }, - "S.Negative" to { Note.S.Negative.style() }, - "S.Warning" to { Note.S.Warning.style() }, - "S.Info" to { Note.S.Info.style() }, - "S.HasClose.Default" to { Note.S.HasClose.Default.style() }, - "S.HasClose.Positive" to { Note.S.HasClose.Positive.style() }, - "S.HasClose.Negative" to { Note.S.HasClose.Negative.style() }, - "S.HasClose.Warning" to { Note.S.HasClose.Warning.style() }, - "S.HasClose.Info" to { Note.S.HasClose.Info.style() }, - "S.ContentScalable.Default" to { Note.S.ContentScalable.Default.style() }, - "S.ContentScalable.Positive" to { Note.S.ContentScalable.Positive.style() }, - "S.ContentScalable.Negative" to { Note.S.ContentScalable.Negative.style() }, - "S.ContentScalable.Warning" to { Note.S.ContentScalable.Warning.style() }, - "S.ContentScalable.Info" to { Note.S.ContentScalable.Info.style() }, - "S.HasCloseContentScalable.Default" to { Note.S.HasCloseContentScalable.Default.style() }, - "S.HasCloseContentScalable.Positive" to { Note.S.HasCloseContentScalable.Positive.style() }, - "S.HasCloseContentScalable.Negative" to { Note.S.HasCloseContentScalable.Negative.style() }, - "S.HasCloseContentScalable.Warning" to { Note.S.HasCloseContentScalable.Warning.style() }, - "S.HasCloseContentScalable.Info" to { Note.S.HasCloseContentScalable.Info.style() }, - "Xs.Default" to { Note.Xs.Default.style() }, - "Xs.Positive" to { Note.Xs.Positive.style() }, - "Xs.Negative" to { Note.Xs.Negative.style() }, - "Xs.Warning" to { Note.Xs.Warning.style() }, - "Xs.Info" to { Note.Xs.Info.style() }, - "Xs.HasClose.Default" to { Note.Xs.HasClose.Default.style() }, - "Xs.HasClose.Positive" to { Note.Xs.HasClose.Positive.style() }, - "Xs.HasClose.Negative" to { Note.Xs.HasClose.Negative.style() }, - "Xs.HasClose.Warning" to { Note.Xs.HasClose.Warning.style() }, - "Xs.HasClose.Info" to { Note.Xs.HasClose.Info.style() }, - "Xs.ContentScalable.Default" to { Note.Xs.ContentScalable.Default.style() }, - "Xs.ContentScalable.Positive" to { Note.Xs.ContentScalable.Positive.style() }, - "Xs.ContentScalable.Negative" to { Note.Xs.ContentScalable.Negative.style() }, - "Xs.ContentScalable.Warning" to { Note.Xs.ContentScalable.Warning.style() }, - "Xs.ContentScalable.Info" to { Note.Xs.ContentScalable.Info.style() }, - "Xs.HasCloseContentScalable.Default" to { Note.Xs.HasCloseContentScalable.Default.style() }, - "Xs.HasCloseContentScalable.Positive" to { Note.Xs.HasCloseContentScalable.Positive.style() }, - "Xs.HasCloseContentScalable.Negative" to { Note.Xs.HasCloseContentScalable.Negative.style() }, - "Xs.HasCloseContentScalable.Warning" to { Note.Xs.HasCloseContentScalable.Warning.style() }, - "Xs.HasCloseContentScalable.Info" to { Note.Xs.HasCloseContentScalable.Info.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationCompactVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationCompactVariationsCompose.kt deleted file mode 100644 index 25ee23d6b9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.notification.L -import com.sdds.serv.styles.notification.M -import com.sdds.serv.styles.notification.NotificationCompact -import com.sdds.serv.styles.notification.S - -internal object SddsServNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationContentVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationContentVariationsCompose.kt deleted file mode 100644 index 938a1df613..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.notificationcontent.ButtonStretch -import com.sdds.serv.styles.notificationcontent.Default -import com.sdds.serv.styles.notificationcontent.IconStart -import com.sdds.serv.styles.notificationcontent.IconTop -import com.sdds.serv.styles.notificationcontent.Info -import com.sdds.serv.styles.notificationcontent.Negative -import com.sdds.serv.styles.notificationcontent.NoButtonStretch -import com.sdds.serv.styles.notificationcontent.NotificationContent -import com.sdds.serv.styles.notificationcontent.Positive -import com.sdds.serv.styles.notificationcontent.Warning - -internal object SddsServNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationLooseVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationLooseVariationsCompose.kt deleted file mode 100644 index e9db90e65d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.notification.L -import com.sdds.serv.styles.notification.M -import com.sdds.serv.styles.notification.NotificationLoose -import com.sdds.serv.styles.notification.S - -internal object SddsServNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServOverlayVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServOverlayVariationsCompose.kt deleted file mode 100644 index b4df479f94..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServOverlayVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.overlay.Default -import com.sdds.serv.styles.overlay.Overlay - -internal object SddsServOverlayVariationsCompose : ComposeStyleProvider() { - override val variations: Map OverlayStyle> = - mapOf( - "Default" to { Overlay.Default.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsHorizontalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsHorizontalVariationsCompose.kt deleted file mode 100644 index e644488bf2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsHorizontalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.paginationdots.ActiveTypeLine -import com.sdds.serv.styles.paginationdots.M -import com.sdds.serv.styles.paginationdots.PaginationDotsHorizontal -import com.sdds.serv.styles.paginationdots.S - -internal object SddsServPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsHorizontal.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsHorizontal.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsVerticalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsVerticalVariationsCompose.kt deleted file mode 100644 index 24acfcebb9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPaginationDotsVerticalVariationsCompose.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PaginationDotsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.paginationdots.ActiveTypeLine -import com.sdds.serv.styles.paginationdots.M -import com.sdds.serv.styles.paginationdots.PaginationDotsVertical -import com.sdds.serv.styles.paginationdots.S - -internal object SddsServPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map PaginationDotsStyle> = - mapOf( - "M" to { PaginationDotsVertical.M.style() }, - "M.ActiveTypeLine" to { PaginationDotsVertical.M.ActiveTypeLine.style() }, - "S" to { PaginationDotsVertical.S.style() }, - "S.ActiveTypeLine" to { PaginationDotsVertical.S.ActiveTypeLine.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPopoverVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPopoverVariationsCompose.kt deleted file mode 100644 index ea7971d20a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServPopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.popover.Accent -import com.sdds.serv.styles.popover.Default -import com.sdds.serv.styles.popover.M -import com.sdds.serv.styles.popover.Popover -import com.sdds.serv.styles.popover.S - -internal object SddsServPopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServProgressBarVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServProgressBarVariationsCompose.kt deleted file mode 100644 index b6d0b8714d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServProgressBarVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.progressbar.Accent -import com.sdds.serv.styles.progressbar.Default -import com.sdds.serv.styles.progressbar.Gradient -import com.sdds.serv.styles.progressbar.Info -import com.sdds.serv.styles.progressbar.Negative -import com.sdds.serv.styles.progressbar.Positive -import com.sdds.serv.styles.progressbar.ProgressBar -import com.sdds.serv.styles.progressbar.Secondary -import com.sdds.serv.styles.progressbar.Warning - -internal object SddsServProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Info" to { ProgressBar.Info.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxGroupVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index e5f8177486..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.radioboxgroup.M -import com.sdds.serv.styles.radioboxgroup.RadioBoxGroup -import com.sdds.serv.styles.radioboxgroup.S - -internal object SddsServRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxVariationsCompose.kt deleted file mode 100644 index 367daf919c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.radiobox.L -import com.sdds.serv.styles.radiobox.M -import com.sdds.serv.styles.radiobox.RadioBox -import com.sdds.serv.styles.radiobox.S - -internal object SddsServRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "L" to { RadioBox.L.style() }, - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRectSkeletonVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRectSkeletonVariationsCompose.kt deleted file mode 100644 index bc64dba52c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.rectskeleton.Default -import com.sdds.serv.styles.rectskeleton.Lighter -import com.sdds.serv.styles.rectskeleton.RectSkeleton - -internal object SddsServRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Lighter" to { RectSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServScrollBarVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServScrollBarVariationsCompose.kt deleted file mode 100644 index 3e458b846f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.scrollbar.M -import com.sdds.serv.styles.scrollbar.S -import com.sdds.serv.styles.scrollbar.ScrollBar - -internal object SddsServScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentItemVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentItemVariationsCompose.kt deleted file mode 100644 index f82371808a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.segmentitem.Accent -import com.sdds.serv.styles.segmentitem.L -import com.sdds.serv.styles.segmentitem.M -import com.sdds.serv.styles.segmentitem.Pilled -import com.sdds.serv.styles.segmentitem.Primary -import com.sdds.serv.styles.segmentitem.S -import com.sdds.serv.styles.segmentitem.Secondary -import com.sdds.serv.styles.segmentitem.SegmentItem -import com.sdds.serv.styles.segmentitem.Xl -import com.sdds.serv.styles.segmentitem.Xs - -internal object SddsServSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "Xl.Primary" to { SegmentItem.Xl.Primary.style() }, - "Xl.Secondary" to { SegmentItem.Xl.Secondary.style() }, - "Xl.Accent" to { SegmentItem.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { SegmentItem.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { SegmentItem.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { SegmentItem.Xl.Pilled.Accent.style() }, - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Accent" to { SegmentItem.L.Accent.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { SegmentItem.L.Pilled.Accent.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Accent" to { SegmentItem.M.Accent.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { SegmentItem.M.Pilled.Accent.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Accent" to { SegmentItem.S.Accent.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { SegmentItem.S.Pilled.Accent.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Accent" to { SegmentItem.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { SegmentItem.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentVariationsCompose.kt deleted file mode 100644 index a841ef4851..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSegmentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.segment.Accent -import com.sdds.serv.styles.segment.L -import com.sdds.serv.styles.segment.M -import com.sdds.serv.styles.segment.Pilled -import com.sdds.serv.styles.segment.Primary -import com.sdds.serv.styles.segment.S -import com.sdds.serv.styles.segment.Secondary -import com.sdds.serv.styles.segment.Segment -import com.sdds.serv.styles.segment.Xl -import com.sdds.serv.styles.segment.Xs - -internal object SddsServSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "Xl.Primary" to { Segment.Xl.Primary.style() }, - "Xl.Secondary" to { Segment.Xl.Secondary.style() }, - "Xl.Accent" to { Segment.Xl.Accent.style() }, - "Xl.Pilled.Primary" to { Segment.Xl.Pilled.Primary.style() }, - "Xl.Pilled.Secondary" to { Segment.Xl.Pilled.Secondary.style() }, - "Xl.Pilled.Accent" to { Segment.Xl.Pilled.Accent.style() }, - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Accent" to { Segment.L.Accent.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { Segment.L.Pilled.Accent.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Accent" to { Segment.M.Accent.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { Segment.M.Pilled.Accent.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Accent" to { Segment.S.Accent.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { Segment.S.Pilled.Accent.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Accent" to { Segment.Xs.Accent.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { Segment.Xs.Pilled.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleNormalVariationsCompose.kt deleted file mode 100644 index ccce5fd1a9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemMultipleNormal -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemMultipleNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemMultipleNormal.Xl.style() }, - "L" to { SelectItemMultipleNormal.L.style() }, - "M" to { SelectItemMultipleNormal.M.style() }, - "S" to { SelectItemMultipleNormal.S.style() }, - "Xs" to { SelectItemMultipleNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleTightVariationsCompose.kt deleted file mode 100644 index 8f113b374d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemMultipleTight -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemMultipleTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemMultipleTight.Xl.style() }, - "L" to { SelectItemMultipleTight.L.style() }, - "M" to { SelectItemMultipleTight.M.style() }, - "S" to { SelectItemMultipleTight.S.style() }, - "Xs" to { SelectItemMultipleTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleVariationsCompose.kt deleted file mode 100644 index 3316bb86b4..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemMultipleVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemMultiple -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemMultipleVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemMultiple.Xl.style() }, - "L" to { SelectItemMultiple.L.style() }, - "M" to { SelectItemMultiple.M.style() }, - "S" to { SelectItemMultiple.S.style() }, - "Xs" to { SelectItemMultiple.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleNormalVariationsCompose.kt deleted file mode 100644 index 030a0d9777..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemSingleNormal -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemSingleNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemSingleNormal.Xl.style() }, - "L" to { SelectItemSingleNormal.L.style() }, - "M" to { SelectItemSingleNormal.M.style() }, - "S" to { SelectItemSingleNormal.S.style() }, - "Xs" to { SelectItemSingleNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleTightVariationsCompose.kt deleted file mode 100644 index fcc75ed9bc..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemSingleTight -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemSingleTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemSingleTight.Xl.style() }, - "L" to { SelectItemSingleTight.L.style() }, - "M" to { SelectItemSingleTight.M.style() }, - "S" to { SelectItemSingleTight.S.style() }, - "Xs" to { SelectItemSingleTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleVariationsCompose.kt deleted file mode 100644 index 7308fa11c3..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectItemSingleVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.selectitem.L -import com.sdds.serv.styles.selectitem.M -import com.sdds.serv.styles.selectitem.S -import com.sdds.serv.styles.selectitem.SelectItemSingle -import com.sdds.serv.styles.selectitem.Xl -import com.sdds.serv.styles.selectitem.Xs - -internal object SddsServSelectItemSingleVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectItemStyle> = - mapOf( - "Xl" to { SelectItemSingle.Xl.style() }, - "L" to { SelectItemSingle.L.style() }, - "M" to { SelectItemSingle.M.style() }, - "S" to { SelectItemSingle.S.style() }, - "Xs" to { SelectItemSingle.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleNormalVariationsCompose.kt deleted file mode 100644 index 8ea04c188c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.select.L -import com.sdds.serv.styles.select.M -import com.sdds.serv.styles.select.S -import com.sdds.serv.styles.select.SelectMultipleNormal -import com.sdds.serv.styles.select.Xl -import com.sdds.serv.styles.select.Xs - -internal object SddsServSelectMultipleNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectStyle> = - mapOf( - "Xl" to { SelectMultipleNormal.Xl.style() }, - "L" to { SelectMultipleNormal.L.style() }, - "M" to { SelectMultipleNormal.M.style() }, - "S" to { SelectMultipleNormal.S.style() }, - "Xs" to { SelectMultipleNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleTightVariationsCompose.kt deleted file mode 100644 index d360a912f4..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectMultipleTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.select.L -import com.sdds.serv.styles.select.M -import com.sdds.serv.styles.select.S -import com.sdds.serv.styles.select.SelectMultipleTight -import com.sdds.serv.styles.select.Xl -import com.sdds.serv.styles.select.Xs - -internal object SddsServSelectMultipleTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectStyle> = - mapOf( - "Xl" to { SelectMultipleTight.Xl.style() }, - "L" to { SelectMultipleTight.L.style() }, - "M" to { SelectMultipleTight.M.style() }, - "S" to { SelectMultipleTight.S.style() }, - "Xs" to { SelectMultipleTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleNormalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleNormalVariationsCompose.kt deleted file mode 100644 index 48eb3fb6e1..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.select.L -import com.sdds.serv.styles.select.M -import com.sdds.serv.styles.select.S -import com.sdds.serv.styles.select.SelectSingleNormal -import com.sdds.serv.styles.select.Xl -import com.sdds.serv.styles.select.Xs - -internal object SddsServSelectSingleNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectStyle> = - mapOf( - "Xl" to { SelectSingleNormal.Xl.style() }, - "L" to { SelectSingleNormal.L.style() }, - "M" to { SelectSingleNormal.M.style() }, - "S" to { SelectSingleNormal.S.style() }, - "Xs" to { SelectSingleNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleTightVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleTightVariationsCompose.kt deleted file mode 100644 index 7b32b03459..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSelectSingleTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SelectStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.select.L -import com.sdds.serv.styles.select.M -import com.sdds.serv.styles.select.S -import com.sdds.serv.styles.select.SelectSingleTight -import com.sdds.serv.styles.select.Xl -import com.sdds.serv.styles.select.Xs - -internal object SddsServSelectSingleTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map SelectStyle> = - mapOf( - "Xl" to { SelectSingleTight.Xl.style() }, - "L" to { SelectSingleTight.L.style() }, - "M" to { SelectSingleTight.M.style() }, - "S" to { SelectSingleTight.S.style() }, - "Xs" to { SelectSingleTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelInnerVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelInnerVariationsCompose.kt deleted file mode 100644 index 489587f595..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelInnerVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SliderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.slider.Accent -import com.sdds.serv.styles.slider.Default -import com.sdds.serv.styles.slider.Gradient -import com.sdds.serv.styles.slider.L -import com.sdds.serv.styles.slider.LimitLabelCenter -import com.sdds.serv.styles.slider.M -import com.sdds.serv.styles.slider.S -import com.sdds.serv.styles.slider.SliderHorizontalLabelInner -import com.sdds.serv.styles.slider.ThumbS - -internal object SddsServSliderHorizontalLabelInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SliderStyle> = - mapOf( - "L.Default" to { SliderHorizontalLabelInner.L.Default.style() }, - "L.Accent" to { SliderHorizontalLabelInner.L.Accent.style() }, - "L.Gradient" to { SliderHorizontalLabelInner.L.Gradient.style() }, - "L.LimitLabelCenter.Default" to { SliderHorizontalLabelInner.L.LimitLabelCenter.Default.style() }, - "L.LimitLabelCenter.Accent" to { SliderHorizontalLabelInner.L.LimitLabelCenter.Accent.style() }, - "L.LimitLabelCenter.Gradient" to { SliderHorizontalLabelInner.L.LimitLabelCenter.Gradient.style() }, - "L.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Default.style() }, - "L.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Accent.style() }, - "L.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Gradient.style() }, - "L.ThumbS.Default" to { SliderHorizontalLabelInner.L.ThumbS.Default.style() }, - "L.ThumbS.Accent" to { SliderHorizontalLabelInner.L.ThumbS.Accent.style() }, - "L.ThumbS.Gradient" to { SliderHorizontalLabelInner.L.ThumbS.Gradient.style() }, - "M.Default" to { SliderHorizontalLabelInner.M.Default.style() }, - "M.Accent" to { SliderHorizontalLabelInner.M.Accent.style() }, - "M.Gradient" to { SliderHorizontalLabelInner.M.Gradient.style() }, - "M.LimitLabelCenter.Default" to { SliderHorizontalLabelInner.M.LimitLabelCenter.Default.style() }, - "M.LimitLabelCenter.Accent" to { SliderHorizontalLabelInner.M.LimitLabelCenter.Accent.style() }, - "M.LimitLabelCenter.Gradient" to { SliderHorizontalLabelInner.M.LimitLabelCenter.Gradient.style() }, - "M.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Default.style() }, - "M.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Accent.style() }, - "M.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Gradient.style() }, - "M.ThumbS.Default" to { SliderHorizontalLabelInner.M.ThumbS.Default.style() }, - "M.ThumbS.Accent" to { SliderHorizontalLabelInner.M.ThumbS.Accent.style() }, - "M.ThumbS.Gradient" to { SliderHorizontalLabelInner.M.ThumbS.Gradient.style() }, - "S.Default" to { SliderHorizontalLabelInner.S.Default.style() }, - "S.Accent" to { SliderHorizontalLabelInner.S.Accent.style() }, - "S.Gradient" to { SliderHorizontalLabelInner.S.Gradient.style() }, - "S.LimitLabelCenter.Default" to { SliderHorizontalLabelInner.S.LimitLabelCenter.Default.style() }, - "S.LimitLabelCenter.Accent" to { SliderHorizontalLabelInner.S.LimitLabelCenter.Accent.style() }, - "S.LimitLabelCenter.Gradient" to { SliderHorizontalLabelInner.S.LimitLabelCenter.Gradient.style() }, - "S.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Default.style() }, - "S.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Accent.style() }, - "S.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Gradient.style() }, - "S.ThumbS.Default" to { SliderHorizontalLabelInner.S.ThumbS.Default.style() }, - "S.ThumbS.Accent" to { SliderHorizontalLabelInner.S.ThumbS.Accent.style() }, - "S.ThumbS.Gradient" to { SliderHorizontalLabelInner.S.ThumbS.Gradient.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelOuterVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelOuterVariationsCompose.kt deleted file mode 100644 index 6525154f23..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderHorizontalLabelOuterVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SliderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.slider.Accent -import com.sdds.serv.styles.slider.Default -import com.sdds.serv.styles.slider.Gradient -import com.sdds.serv.styles.slider.L -import com.sdds.serv.styles.slider.LimitLabelCenter -import com.sdds.serv.styles.slider.M -import com.sdds.serv.styles.slider.S -import com.sdds.serv.styles.slider.SliderHorizontalLabelOuter -import com.sdds.serv.styles.slider.ThumbS - -internal object SddsServSliderHorizontalLabelOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map SliderStyle> = - mapOf( - "L.Default" to { SliderHorizontalLabelOuter.L.Default.style() }, - "L.Accent" to { SliderHorizontalLabelOuter.L.Accent.style() }, - "L.Gradient" to { SliderHorizontalLabelOuter.L.Gradient.style() }, - "L.LimitLabelCenter.Default" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.Default.style() }, - "L.LimitLabelCenter.Accent" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.Accent.style() }, - "L.LimitLabelCenter.Gradient" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.Gradient.style() }, - "L.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Default.style() }, - "L.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Accent.style() }, - "L.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Gradient.style() }, - "L.ThumbS.Default" to { SliderHorizontalLabelOuter.L.ThumbS.Default.style() }, - "L.ThumbS.Accent" to { SliderHorizontalLabelOuter.L.ThumbS.Accent.style() }, - "L.ThumbS.Gradient" to { SliderHorizontalLabelOuter.L.ThumbS.Gradient.style() }, - "M.Default" to { SliderHorizontalLabelOuter.M.Default.style() }, - "M.Accent" to { SliderHorizontalLabelOuter.M.Accent.style() }, - "M.Gradient" to { SliderHorizontalLabelOuter.M.Gradient.style() }, - "M.LimitLabelCenter.Default" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.Default.style() }, - "M.LimitLabelCenter.Accent" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.Accent.style() }, - "M.LimitLabelCenter.Gradient" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.Gradient.style() }, - "M.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Default.style() }, - "M.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Accent.style() }, - "M.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Gradient.style() }, - "M.ThumbS.Default" to { SliderHorizontalLabelOuter.M.ThumbS.Default.style() }, - "M.ThumbS.Accent" to { SliderHorizontalLabelOuter.M.ThumbS.Accent.style() }, - "M.ThumbS.Gradient" to { SliderHorizontalLabelOuter.M.ThumbS.Gradient.style() }, - "S.Default" to { SliderHorizontalLabelOuter.S.Default.style() }, - "S.Accent" to { SliderHorizontalLabelOuter.S.Accent.style() }, - "S.Gradient" to { SliderHorizontalLabelOuter.S.Gradient.style() }, - "S.LimitLabelCenter.Default" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.Default.style() }, - "S.LimitLabelCenter.Accent" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.Accent.style() }, - "S.LimitLabelCenter.Gradient" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.Gradient.style() }, - "S.LimitLabelCenter.ThumbS.Default" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Default.style() }, - "S.LimitLabelCenter.ThumbS.Accent" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Accent.style() }, - "S.LimitLabelCenter.ThumbS.Gradient" to { SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Gradient.style() }, - "S.ThumbS.Default" to { SliderHorizontalLabelOuter.S.ThumbS.Default.style() }, - "S.ThumbS.Accent" to { SliderHorizontalLabelOuter.S.ThumbS.Accent.style() }, - "S.ThumbS.Gradient" to { SliderHorizontalLabelOuter.S.ThumbS.Gradient.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelInnerVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelInnerVariationsCompose.kt deleted file mode 100644 index 5114793319..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelInnerVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SliderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.slider.Accent -import com.sdds.serv.styles.slider.Default -import com.sdds.serv.styles.slider.Gradient -import com.sdds.serv.styles.slider.L -import com.sdds.serv.styles.slider.LabelEnd -import com.sdds.serv.styles.slider.M -import com.sdds.serv.styles.slider.S -import com.sdds.serv.styles.slider.SliderVerticalLabelInner -import com.sdds.serv.styles.slider.ThumbS - -internal object SddsServSliderVerticalLabelInnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SliderStyle> = - mapOf( - "L.Default" to { SliderVerticalLabelInner.L.Default.style() }, - "L.Accent" to { SliderVerticalLabelInner.L.Accent.style() }, - "L.Gradient" to { SliderVerticalLabelInner.L.Gradient.style() }, - "L.LabelEnd.Default" to { SliderVerticalLabelInner.L.LabelEnd.Default.style() }, - "L.LabelEnd.Accent" to { SliderVerticalLabelInner.L.LabelEnd.Accent.style() }, - "L.LabelEnd.Gradient" to { SliderVerticalLabelInner.L.LabelEnd.Gradient.style() }, - "L.LabelEnd.ThumbS.Default" to { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Default.style() }, - "L.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Accent.style() }, - "L.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Gradient.style() }, - "L.ThumbS.Default" to { SliderVerticalLabelInner.L.ThumbS.Default.style() }, - "L.ThumbS.Accent" to { SliderVerticalLabelInner.L.ThumbS.Accent.style() }, - "L.ThumbS.Gradient" to { SliderVerticalLabelInner.L.ThumbS.Gradient.style() }, - "M.Default" to { SliderVerticalLabelInner.M.Default.style() }, - "M.Accent" to { SliderVerticalLabelInner.M.Accent.style() }, - "M.Gradient" to { SliderVerticalLabelInner.M.Gradient.style() }, - "M.LabelEnd.Default" to { SliderVerticalLabelInner.M.LabelEnd.Default.style() }, - "M.LabelEnd.Accent" to { SliderVerticalLabelInner.M.LabelEnd.Accent.style() }, - "M.LabelEnd.Gradient" to { SliderVerticalLabelInner.M.LabelEnd.Gradient.style() }, - "M.LabelEnd.ThumbS.Default" to { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Default.style() }, - "M.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Accent.style() }, - "M.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Gradient.style() }, - "M.ThumbS.Default" to { SliderVerticalLabelInner.M.ThumbS.Default.style() }, - "M.ThumbS.Accent" to { SliderVerticalLabelInner.M.ThumbS.Accent.style() }, - "M.ThumbS.Gradient" to { SliderVerticalLabelInner.M.ThumbS.Gradient.style() }, - "S.Default" to { SliderVerticalLabelInner.S.Default.style() }, - "S.Accent" to { SliderVerticalLabelInner.S.Accent.style() }, - "S.Gradient" to { SliderVerticalLabelInner.S.Gradient.style() }, - "S.LabelEnd.Default" to { SliderVerticalLabelInner.S.LabelEnd.Default.style() }, - "S.LabelEnd.Accent" to { SliderVerticalLabelInner.S.LabelEnd.Accent.style() }, - "S.LabelEnd.Gradient" to { SliderVerticalLabelInner.S.LabelEnd.Gradient.style() }, - "S.LabelEnd.ThumbS.Default" to { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Default.style() }, - "S.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Accent.style() }, - "S.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Gradient.style() }, - "S.ThumbS.Default" to { SliderVerticalLabelInner.S.ThumbS.Default.style() }, - "S.ThumbS.Accent" to { SliderVerticalLabelInner.S.ThumbS.Accent.style() }, - "S.ThumbS.Gradient" to { SliderVerticalLabelInner.S.ThumbS.Gradient.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelOuterVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelOuterVariationsCompose.kt deleted file mode 100644 index 759a9417ff..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSliderVerticalLabelOuterVariationsCompose.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SliderStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.slider.Accent -import com.sdds.serv.styles.slider.AlignmentEnd -import com.sdds.serv.styles.slider.Default -import com.sdds.serv.styles.slider.Gradient -import com.sdds.serv.styles.slider.L -import com.sdds.serv.styles.slider.LabelEnd -import com.sdds.serv.styles.slider.M -import com.sdds.serv.styles.slider.S -import com.sdds.serv.styles.slider.SliderVerticalLabelOuter -import com.sdds.serv.styles.slider.ThumbS - -internal object SddsServSliderVerticalLabelOuterVariationsCompose : ComposeStyleProvider() { - override val variations: Map SliderStyle> = - mapOf( - "L.Default" to { SliderVerticalLabelOuter.L.Default.style() }, - "L.Accent" to { SliderVerticalLabelOuter.L.Accent.style() }, - "L.Gradient" to { SliderVerticalLabelOuter.L.Gradient.style() }, - "L.AlignmentEnd.Default" to { SliderVerticalLabelOuter.L.AlignmentEnd.Default.style() }, - "L.AlignmentEnd.Accent" to { SliderVerticalLabelOuter.L.AlignmentEnd.Accent.style() }, - "L.AlignmentEnd.Gradient" to { SliderVerticalLabelOuter.L.AlignmentEnd.Gradient.style() }, - "L.AlignmentEnd.LabelEnd.Default" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Default.style() }, - "L.AlignmentEnd.LabelEnd.Accent" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Accent.style() }, - "L.AlignmentEnd.LabelEnd.Gradient" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Gradient.style() }, - "L.AlignmentEnd.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Default.style() }, - "L.AlignmentEnd.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Accent.style() }, - "L.AlignmentEnd.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() }, - "L.AlignmentEnd.ThumbS.Default" to { SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Default.style() }, - "L.AlignmentEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Accent.style() }, - "L.AlignmentEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Gradient.style() }, - "L.LabelEnd.Default" to { SliderVerticalLabelOuter.L.LabelEnd.Default.style() }, - "L.LabelEnd.Accent" to { SliderVerticalLabelOuter.L.LabelEnd.Accent.style() }, - "L.LabelEnd.Gradient" to { SliderVerticalLabelOuter.L.LabelEnd.Gradient.style() }, - "L.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Default.style() }, - "L.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Accent.style() }, - "L.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Gradient.style() }, - "L.ThumbS.Default" to { SliderVerticalLabelOuter.L.ThumbS.Default.style() }, - "L.ThumbS.Accent" to { SliderVerticalLabelOuter.L.ThumbS.Accent.style() }, - "L.ThumbS.Gradient" to { SliderVerticalLabelOuter.L.ThumbS.Gradient.style() }, - "M.Default" to { SliderVerticalLabelOuter.M.Default.style() }, - "M.Accent" to { SliderVerticalLabelOuter.M.Accent.style() }, - "M.Gradient" to { SliderVerticalLabelOuter.M.Gradient.style() }, - "M.AlignmentEnd.Default" to { SliderVerticalLabelOuter.M.AlignmentEnd.Default.style() }, - "M.AlignmentEnd.Accent" to { SliderVerticalLabelOuter.M.AlignmentEnd.Accent.style() }, - "M.AlignmentEnd.Gradient" to { SliderVerticalLabelOuter.M.AlignmentEnd.Gradient.style() }, - "M.AlignmentEnd.LabelEnd.Default" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Default.style() }, - "M.AlignmentEnd.LabelEnd.Accent" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Accent.style() }, - "M.AlignmentEnd.LabelEnd.Gradient" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Gradient.style() }, - "M.AlignmentEnd.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Default.style() }, - "M.AlignmentEnd.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Accent.style() }, - "M.AlignmentEnd.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() }, - "M.AlignmentEnd.ThumbS.Default" to { SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Default.style() }, - "M.AlignmentEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Accent.style() }, - "M.AlignmentEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Gradient.style() }, - "M.LabelEnd.Default" to { SliderVerticalLabelOuter.M.LabelEnd.Default.style() }, - "M.LabelEnd.Accent" to { SliderVerticalLabelOuter.M.LabelEnd.Accent.style() }, - "M.LabelEnd.Gradient" to { SliderVerticalLabelOuter.M.LabelEnd.Gradient.style() }, - "M.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Default.style() }, - "M.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Accent.style() }, - "M.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Gradient.style() }, - "M.ThumbS.Default" to { SliderVerticalLabelOuter.M.ThumbS.Default.style() }, - "M.ThumbS.Accent" to { SliderVerticalLabelOuter.M.ThumbS.Accent.style() }, - "M.ThumbS.Gradient" to { SliderVerticalLabelOuter.M.ThumbS.Gradient.style() }, - "S.Default" to { SliderVerticalLabelOuter.S.Default.style() }, - "S.Accent" to { SliderVerticalLabelOuter.S.Accent.style() }, - "S.Gradient" to { SliderVerticalLabelOuter.S.Gradient.style() }, - "S.AlignmentEnd.Default" to { SliderVerticalLabelOuter.S.AlignmentEnd.Default.style() }, - "S.AlignmentEnd.Accent" to { SliderVerticalLabelOuter.S.AlignmentEnd.Accent.style() }, - "S.AlignmentEnd.Gradient" to { SliderVerticalLabelOuter.S.AlignmentEnd.Gradient.style() }, - "S.AlignmentEnd.LabelEnd.Default" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Default.style() }, - "S.AlignmentEnd.LabelEnd.Accent" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Accent.style() }, - "S.AlignmentEnd.LabelEnd.Gradient" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Gradient.style() }, - "S.AlignmentEnd.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Default.style() }, - "S.AlignmentEnd.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Accent.style() }, - "S.AlignmentEnd.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() }, - "S.AlignmentEnd.ThumbS.Default" to { SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Default.style() }, - "S.AlignmentEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Accent.style() }, - "S.AlignmentEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Gradient.style() }, - "S.LabelEnd.Default" to { SliderVerticalLabelOuter.S.LabelEnd.Default.style() }, - "S.LabelEnd.Accent" to { SliderVerticalLabelOuter.S.LabelEnd.Accent.style() }, - "S.LabelEnd.Gradient" to { SliderVerticalLabelOuter.S.LabelEnd.Gradient.style() }, - "S.LabelEnd.ThumbS.Default" to { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Default.style() }, - "S.LabelEnd.ThumbS.Accent" to { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Accent.style() }, - "S.LabelEnd.ThumbS.Gradient" to { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Gradient.style() }, - "S.ThumbS.Default" to { SliderVerticalLabelOuter.S.ThumbS.Default.style() }, - "S.ThumbS.Accent" to { SliderVerticalLabelOuter.S.ThumbS.Accent.style() }, - "S.ThumbS.Gradient" to { SliderVerticalLabelOuter.S.ThumbS.Gradient.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSpinnerVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSpinnerVariationsCompose.kt deleted file mode 100644 index 83df68582a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSpinnerVariationsCompose.kt +++ /dev/null @@ -1,84 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.spinner.Accent -import com.sdds.serv.styles.spinner.Default -import com.sdds.serv.styles.spinner.Info -import com.sdds.serv.styles.spinner.L -import com.sdds.serv.styles.spinner.M -import com.sdds.serv.styles.spinner.Negative -import com.sdds.serv.styles.spinner.Positive -import com.sdds.serv.styles.spinner.S -import com.sdds.serv.styles.spinner.Scalable -import com.sdds.serv.styles.spinner.Secondary -import com.sdds.serv.styles.spinner.Spinner -import com.sdds.serv.styles.spinner.Warning -import com.sdds.serv.styles.spinner.Xl -import com.sdds.serv.styles.spinner.Xs -import com.sdds.serv.styles.spinner.Xxl -import com.sdds.serv.styles.spinner.Xxs - -internal object SddsServSpinnerVariationsCompose : ComposeStyleProvider() { - override val variations: Map SpinnerStyle> = - mapOf( - "Xxl.Default" to { Spinner.Xxl.Default.style() }, - "Xxl.Secondary" to { Spinner.Xxl.Secondary.style() }, - "Xxl.Accent" to { Spinner.Xxl.Accent.style() }, - "Xxl.Positive" to { Spinner.Xxl.Positive.style() }, - "Xxl.Negative" to { Spinner.Xxl.Negative.style() }, - "Xxl.Warning" to { Spinner.Xxl.Warning.style() }, - "Xxl.Info" to { Spinner.Xxl.Info.style() }, - "Xl.Default" to { Spinner.Xl.Default.style() }, - "Xl.Secondary" to { Spinner.Xl.Secondary.style() }, - "Xl.Accent" to { Spinner.Xl.Accent.style() }, - "Xl.Positive" to { Spinner.Xl.Positive.style() }, - "Xl.Negative" to { Spinner.Xl.Negative.style() }, - "Xl.Warning" to { Spinner.Xl.Warning.style() }, - "Xl.Info" to { Spinner.Xl.Info.style() }, - "L.Default" to { Spinner.L.Default.style() }, - "L.Secondary" to { Spinner.L.Secondary.style() }, - "L.Accent" to { Spinner.L.Accent.style() }, - "L.Positive" to { Spinner.L.Positive.style() }, - "L.Negative" to { Spinner.L.Negative.style() }, - "L.Warning" to { Spinner.L.Warning.style() }, - "L.Info" to { Spinner.L.Info.style() }, - "M.Default" to { Spinner.M.Default.style() }, - "M.Secondary" to { Spinner.M.Secondary.style() }, - "M.Accent" to { Spinner.M.Accent.style() }, - "M.Positive" to { Spinner.M.Positive.style() }, - "M.Negative" to { Spinner.M.Negative.style() }, - "M.Warning" to { Spinner.M.Warning.style() }, - "M.Info" to { Spinner.M.Info.style() }, - "S.Default" to { Spinner.S.Default.style() }, - "S.Secondary" to { Spinner.S.Secondary.style() }, - "S.Accent" to { Spinner.S.Accent.style() }, - "S.Positive" to { Spinner.S.Positive.style() }, - "S.Negative" to { Spinner.S.Negative.style() }, - "S.Warning" to { Spinner.S.Warning.style() }, - "S.Info" to { Spinner.S.Info.style() }, - "Xs.Default" to { Spinner.Xs.Default.style() }, - "Xs.Secondary" to { Spinner.Xs.Secondary.style() }, - "Xs.Accent" to { Spinner.Xs.Accent.style() }, - "Xs.Positive" to { Spinner.Xs.Positive.style() }, - "Xs.Negative" to { Spinner.Xs.Negative.style() }, - "Xs.Warning" to { Spinner.Xs.Warning.style() }, - "Xs.Info" to { Spinner.Xs.Info.style() }, - "Xxs.Default" to { Spinner.Xxs.Default.style() }, - "Xxs.Secondary" to { Spinner.Xxs.Secondary.style() }, - "Xxs.Accent" to { Spinner.Xxs.Accent.style() }, - "Xxs.Positive" to { Spinner.Xxs.Positive.style() }, - "Xxs.Negative" to { Spinner.Xxs.Negative.style() }, - "Xxs.Warning" to { Spinner.Xxs.Warning.style() }, - "Xxs.Info" to { Spinner.Xxs.Info.style() }, - "Scalable.Default" to { Spinner.Scalable.Default.style() }, - "Scalable.Secondary" to { Spinner.Scalable.Secondary.style() }, - "Scalable.Accent" to { Spinner.Scalable.Accent.style() }, - "Scalable.Positive" to { Spinner.Scalable.Positive.style() }, - "Scalable.Negative" to { Spinner.Scalable.Negative.style() }, - "Scalable.Warning" to { Spinner.Scalable.Warning.style() }, - "Scalable.Info" to { Spinner.Scalable.Info.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSwitchVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSwitchVariationsCompose.kt deleted file mode 100644 index 1e3359e076..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.switcher.L -import com.sdds.serv.styles.switcher.M -import com.sdds.serv.styles.switcher.S -import com.sdds.serv.styles.switcher.Switch -import com.sdds.serv.styles.switcher.ToggleS - -internal object SddsServSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarClearVariationsCompose.kt deleted file mode 100644 index 84b98bc7b4..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.Divider -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Rounded -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarClear - -internal object SddsServTabBarClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarClear.M.Default.style() }, - "M.Secondary" to { TabBarClear.M.Secondary.style() }, - "M.Accent" to { TabBarClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarClear.L.Default.style() }, - "L.Secondary" to { TabBarClear.L.Secondary.style() }, - "L.Accent" to { TabBarClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelClearVariationsCompose.kt deleted file mode 100644 index 8fc74d3596..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.Divider -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Rounded -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarHasLabelClear - -internal object SddsServTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelClear.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelClear.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelClear.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelClear.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelClear.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelClear.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelClear.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelClear.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelClear.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelClear.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelClear.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelClear.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelClear.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelClear.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelClear.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelClear.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelSolidVariationsCompose.kt deleted file mode 100644 index ae4a299de9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.Divider -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Rounded -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarHasLabelSolid - -internal object SddsServTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarHasLabelSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarHasLabelSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarHasLabelSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarHasLabelSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarHasLabelSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarHasLabelSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarHasLabelSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarHasLabelSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarHasLabelSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarHasLabelSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarHasLabelSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarHasLabelSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarHasLabelSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarHasLabelSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandClearVariationsCompose.kt deleted file mode 100644 index d084e0b4d7..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarIslandClear - -internal object SddsServTabBarIslandClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelClearVariationsCompose.kt deleted file mode 100644 index 2083d3d745..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarIslandHasLabelClear - -internal object SddsServTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelClear.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelClear.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelClear.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelClear.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelClear.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelClear.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt deleted file mode 100644 index d027f4a33f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarIslandHasLabelSolid - -internal object SddsServTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandHasLabelSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandHasLabelSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandHasLabelSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandHasLabelSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandHasLabelSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandHasLabelSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandSolidVariationsCompose.kt deleted file mode 100644 index 82e8ef224a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarIslandSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarIslandSolid - -internal object SddsServTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarIslandSolid.M.Default.style() }, - "M.Secondary" to { TabBarIslandSolid.M.Secondary.style() }, - "M.Accent" to { TabBarIslandSolid.M.Accent.style() }, - "M.Shadow.Default" to { TabBarIslandSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarIslandSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarIslandSolid.M.Shadow.Accent.style() }, - "L.Default" to { TabBarIslandSolid.L.Default.style() }, - "L.Secondary" to { TabBarIslandSolid.L.Secondary.style() }, - "L.Accent" to { TabBarIslandSolid.L.Accent.style() }, - "L.Shadow.Default" to { TabBarIslandSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarIslandSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarIslandSolid.L.Shadow.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemClearVariationsCompose.kt deleted file mode 100644 index d408227e53..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemClearVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbaritem.Accent -import com.sdds.serv.styles.tabbaritem.Default -import com.sdds.serv.styles.tabbaritem.L -import com.sdds.serv.styles.tabbaritem.Label -import com.sdds.serv.styles.tabbaritem.M -import com.sdds.serv.styles.tabbaritem.Secondary -import com.sdds.serv.styles.tabbaritem.TabBarItemClear - -internal object SddsServTabBarItemClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemClear.M.Default.style() }, - "M.Accent" to { TabBarItemClear.M.Accent.style() }, - "M.Secondary" to { TabBarItemClear.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemClear.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemClear.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemClear.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemClear.L.Default.style() }, - "L.Accent" to { TabBarItemClear.L.Accent.style() }, - "L.Secondary" to { TabBarItemClear.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemClear.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemClear.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemClear.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemSolidVariationsCompose.kt deleted file mode 100644 index 68d5e41c21..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarItemSolidVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbaritem.Accent -import com.sdds.serv.styles.tabbaritem.Default -import com.sdds.serv.styles.tabbaritem.L -import com.sdds.serv.styles.tabbaritem.Label -import com.sdds.serv.styles.tabbaritem.M -import com.sdds.serv.styles.tabbaritem.Secondary -import com.sdds.serv.styles.tabbaritem.TabBarItemSolid - -internal object SddsServTabBarItemSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarItemStyle> = - mapOf( - "M.Default" to { TabBarItemSolid.M.Default.style() }, - "M.Accent" to { TabBarItemSolid.M.Accent.style() }, - "M.Secondary" to { TabBarItemSolid.M.Secondary.style() }, - "M.Label.Default" to { TabBarItemSolid.M.Label.Default.style() }, - "M.Label.Accent" to { TabBarItemSolid.M.Label.Accent.style() }, - "M.Label.Secondary" to { TabBarItemSolid.M.Label.Secondary.style() }, - "L.Default" to { TabBarItemSolid.L.Default.style() }, - "L.Accent" to { TabBarItemSolid.L.Accent.style() }, - "L.Secondary" to { TabBarItemSolid.L.Secondary.style() }, - "L.Label.Default" to { TabBarItemSolid.L.Label.Default.style() }, - "L.Label.Accent" to { TabBarItemSolid.L.Label.Accent.style() }, - "L.Label.Secondary" to { TabBarItemSolid.L.Label.Secondary.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarSolidVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarSolidVariationsCompose.kt deleted file mode 100644 index 8a072c77e1..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabBarSolidVariationsCompose.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabbar.Accent -import com.sdds.serv.styles.tabbar.Default -import com.sdds.serv.styles.tabbar.Divider -import com.sdds.serv.styles.tabbar.L -import com.sdds.serv.styles.tabbar.M -import com.sdds.serv.styles.tabbar.Rounded -import com.sdds.serv.styles.tabbar.Secondary -import com.sdds.serv.styles.tabbar.Shadow -import com.sdds.serv.styles.tabbar.TabBarSolid - -internal object SddsServTabBarSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabBarStyle> = - mapOf( - "M.Default" to { TabBarSolid.M.Default.style() }, - "M.Secondary" to { TabBarSolid.M.Secondary.style() }, - "M.Accent" to { TabBarSolid.M.Accent.style() }, - "M.Rounded.Default" to { TabBarSolid.M.Rounded.Default.style() }, - "M.Rounded.Secondary" to { TabBarSolid.M.Rounded.Secondary.style() }, - "M.Rounded.Accent" to { TabBarSolid.M.Rounded.Accent.style() }, - "M.Shadow.Default" to { TabBarSolid.M.Shadow.Default.style() }, - "M.Shadow.Secondary" to { TabBarSolid.M.Shadow.Secondary.style() }, - "M.Shadow.Accent" to { TabBarSolid.M.Shadow.Accent.style() }, - "M.Shadow.Rounded.Default" to { TabBarSolid.M.Shadow.Rounded.Default.style() }, - "M.Shadow.Rounded.Secondary" to { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, - "M.Shadow.Rounded.Accent" to { TabBarSolid.M.Shadow.Rounded.Accent.style() }, - "M.Divider.Default" to { TabBarSolid.M.Divider.Default.style() }, - "M.Divider.Secondary" to { TabBarSolid.M.Divider.Secondary.style() }, - "M.Divider.Accent" to { TabBarSolid.M.Divider.Accent.style() }, - "M.Divider.Rounded.Default" to { TabBarSolid.M.Divider.Rounded.Default.style() }, - "M.Divider.Rounded.Secondary" to { TabBarSolid.M.Divider.Rounded.Secondary.style() }, - "M.Divider.Rounded.Accent" to { TabBarSolid.M.Divider.Rounded.Accent.style() }, - "L.Default" to { TabBarSolid.L.Default.style() }, - "L.Secondary" to { TabBarSolid.L.Secondary.style() }, - "L.Accent" to { TabBarSolid.L.Accent.style() }, - "L.Rounded.Default" to { TabBarSolid.L.Rounded.Default.style() }, - "L.Rounded.Secondary" to { TabBarSolid.L.Rounded.Secondary.style() }, - "L.Rounded.Accent" to { TabBarSolid.L.Rounded.Accent.style() }, - "L.Shadow.Default" to { TabBarSolid.L.Shadow.Default.style() }, - "L.Shadow.Secondary" to { TabBarSolid.L.Shadow.Secondary.style() }, - "L.Shadow.Accent" to { TabBarSolid.L.Shadow.Accent.style() }, - "L.Shadow.Rounded.Default" to { TabBarSolid.L.Shadow.Rounded.Default.style() }, - "L.Shadow.Rounded.Secondary" to { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, - "L.Shadow.Rounded.Accent" to { TabBarSolid.L.Shadow.Rounded.Accent.style() }, - "L.Divider.Default" to { TabBarSolid.L.Divider.Default.style() }, - "L.Divider.Secondary" to { TabBarSolid.L.Divider.Secondary.style() }, - "L.Divider.Accent" to { TabBarSolid.L.Divider.Accent.style() }, - "L.Divider.Rounded.Default" to { TabBarSolid.L.Divider.Rounded.Default.style() }, - "L.Divider.Rounded.Secondary" to { TabBarSolid.L.Divider.Rounded.Secondary.style() }, - "L.Divider.Rounded.Accent" to { TabBarSolid.L.Divider.Rounded.Accent.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemDefaultVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemDefaultVariationsCompose.kt deleted file mode 100644 index 6d9f7730d1..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemDefaultVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabitem.Horizontal -import com.sdds.serv.styles.tabitem.L -import com.sdds.serv.styles.tabitem.M -import com.sdds.serv.styles.tabitem.S -import com.sdds.serv.styles.tabitem.TabItemDefault -import com.sdds.serv.styles.tabitem.Vertical -import com.sdds.serv.styles.tabitem.Xs - -internal object SddsServTabItemDefaultVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabItemStyle> = - mapOf( - "L" to { TabItemDefault.L.style() }, - "L.Horizontal" to { TabItemDefault.L.Horizontal.style() }, - "L.Vertical" to { TabItemDefault.L.Vertical.style() }, - "M" to { TabItemDefault.M.style() }, - "M.Horizontal" to { TabItemDefault.M.Horizontal.style() }, - "M.Vertical" to { TabItemDefault.M.Vertical.style() }, - "S" to { TabItemDefault.S.style() }, - "S.Horizontal" to { TabItemDefault.S.Horizontal.style() }, - "S.Vertical" to { TabItemDefault.S.Vertical.style() }, - "Xs" to { TabItemDefault.Xs.style() }, - "Xs.Horizontal" to { TabItemDefault.Xs.Horizontal.style() }, - "Xs.Vertical" to { TabItemDefault.Xs.Vertical.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemHeaderVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemHeaderVariationsCompose.kt deleted file mode 100644 index 811abff547..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabItemHeaderVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabitem.H1 -import com.sdds.serv.styles.tabitem.H2 -import com.sdds.serv.styles.tabitem.H3 -import com.sdds.serv.styles.tabitem.H4 -import com.sdds.serv.styles.tabitem.H5 -import com.sdds.serv.styles.tabitem.TabItemHeader - -internal object SddsServTabItemHeaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabItemStyle> = - mapOf( - "H1" to { TabItemHeader.H1.style() }, - "H2" to { TabItemHeader.H2.style() }, - "H3" to { TabItemHeader.H3.style() }, - "H4" to { TabItemHeader.H4.style() }, - "H5" to { TabItemHeader.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsDefaultVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsDefaultVariationsCompose.kt deleted file mode 100644 index 78057d1929..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsDefaultVariationsCompose.kt +++ /dev/null @@ -1,31 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabs.Horizontal -import com.sdds.serv.styles.tabs.L -import com.sdds.serv.styles.tabs.M -import com.sdds.serv.styles.tabs.S -import com.sdds.serv.styles.tabs.TabsDefault -import com.sdds.serv.styles.tabs.Vertical -import com.sdds.serv.styles.tabs.Xs - -internal object SddsServTabsDefaultVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabsStyle> = - mapOf( - "L" to { TabsDefault.L.style() }, - "L.Vertical" to { TabsDefault.L.Vertical.style() }, - "L.Horizontal" to { TabsDefault.L.Horizontal.style() }, - "M" to { TabsDefault.M.style() }, - "M.Vertical" to { TabsDefault.M.Vertical.style() }, - "M.Horizontal" to { TabsDefault.M.Horizontal.style() }, - "S" to { TabsDefault.S.style() }, - "S.Vertical" to { TabsDefault.S.Vertical.style() }, - "S.Horizontal" to { TabsDefault.S.Horizontal.style() }, - "Xs" to { TabsDefault.Xs.style() }, - "Xs.Vertical" to { TabsDefault.Xs.Vertical.style() }, - "Xs.Horizontal" to { TabsDefault.Xs.Horizontal.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsHeaderVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsHeaderVariationsCompose.kt deleted file mode 100644 index 124523093f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTabsHeaderVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TabsStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tabs.H1 -import com.sdds.serv.styles.tabs.H2 -import com.sdds.serv.styles.tabs.H3 -import com.sdds.serv.styles.tabs.H4 -import com.sdds.serv.styles.tabs.H5 -import com.sdds.serv.styles.tabs.TabsHeader - -internal object SddsServTabsHeaderVariationsCompose : ComposeStyleProvider() { - override val variations: Map TabsStyle> = - mapOf( - "H1" to { TabsHeader.H1.style() }, - "H2" to { TabsHeader.H2.style() }, - "H3" to { TabsHeader.H3.style() }, - "H4" to { TabsHeader.H4.style() }, - "H5" to { TabsHeader.H5.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaClearVariationsCompose.kt deleted file mode 100644 index b61119ec0e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.textarea.Default -import com.sdds.serv.styles.textarea.Error -import com.sdds.serv.styles.textarea.InnerLabel -import com.sdds.serv.styles.textarea.L -import com.sdds.serv.styles.textarea.M -import com.sdds.serv.styles.textarea.OuterLabel -import com.sdds.serv.styles.textarea.RequiredEnd -import com.sdds.serv.styles.textarea.RequiredStart -import com.sdds.serv.styles.textarea.S -import com.sdds.serv.styles.textarea.TextAreaClear -import com.sdds.serv.styles.textarea.Warning -import com.sdds.serv.styles.textarea.Xl -import com.sdds.serv.styles.textarea.Xs - -internal object SddsServTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Warning" to { TextAreaClear.Xs.Warning.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextAreaClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextAreaClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextAreaClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextAreaClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextAreaClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextAreaClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextAreaClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Warning" to { TextAreaClear.S.Warning.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextAreaClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextAreaClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextAreaClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextAreaClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextAreaClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextAreaClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextAreaClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextAreaClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextAreaClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextAreaClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Warning" to { TextAreaClear.M.Warning.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextAreaClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextAreaClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextAreaClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextAreaClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextAreaClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextAreaClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextAreaClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextAreaClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextAreaClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextAreaClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Warning" to { TextAreaClear.L.Warning.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextAreaClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextAreaClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextAreaClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextAreaClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextAreaClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextAreaClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextAreaClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextAreaClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextAreaClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextAreaClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextAreaClear.Xl.Default.style() }, - "Xl.Warning" to { TextAreaClear.Xl.Warning.style() }, - "Xl.Error" to { TextAreaClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextAreaClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextAreaClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextAreaClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextAreaClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextAreaClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextAreaClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextAreaClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextAreaClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextAreaClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextAreaClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextAreaClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextAreaClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaVariationsCompose.kt deleted file mode 100644 index 6481bf13a5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextAreaVariationsCompose.kt +++ /dev/null @@ -1,151 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.textarea.Default -import com.sdds.serv.styles.textarea.Error -import com.sdds.serv.styles.textarea.InnerLabel -import com.sdds.serv.styles.textarea.L -import com.sdds.serv.styles.textarea.M -import com.sdds.serv.styles.textarea.OuterLabel -import com.sdds.serv.styles.textarea.RequiredEnd -import com.sdds.serv.styles.textarea.RequiredStart -import com.sdds.serv.styles.textarea.S -import com.sdds.serv.styles.textarea.TextArea -import com.sdds.serv.styles.textarea.Warning -import com.sdds.serv.styles.textarea.Xl -import com.sdds.serv.styles.textarea.Xs - -internal object SddsServTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Warning" to { TextArea.Xs.Warning.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextArea.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextArea.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextArea.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextArea.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextArea.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextArea.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextArea.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Warning" to { TextArea.S.Warning.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.RequiredStart.Default" to { TextArea.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextArea.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextArea.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextArea.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextArea.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextArea.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextArea.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextArea.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextArea.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextArea.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextArea.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextArea.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Warning" to { TextArea.M.Warning.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.RequiredStart.Default" to { TextArea.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextArea.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextArea.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextArea.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextArea.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextArea.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextArea.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextArea.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextArea.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextArea.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextArea.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextArea.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextArea.L.Default.style() }, - "L.Warning" to { TextArea.L.Warning.style() }, - "L.Error" to { TextArea.L.Error.style() }, - "L.RequiredStart.Default" to { TextArea.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextArea.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextArea.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextArea.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextArea.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextArea.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextArea.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextArea.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextArea.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextArea.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextArea.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextArea.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextArea.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextArea.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextArea.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextArea.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextArea.Xl.Default.style() }, - "Xl.Warning" to { TextArea.Xl.Warning.style() }, - "Xl.Error" to { TextArea.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextArea.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Warning" to { TextArea.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextArea.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextArea.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Warning" to { TextArea.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextArea.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextArea.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Warning" to { TextArea.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextArea.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextArea.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Warning" to { TextArea.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextArea.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldClearVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldClearVariationsCompose.kt deleted file mode 100644 index 2557df2c20..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.textfield.Default -import com.sdds.serv.styles.textfield.Error -import com.sdds.serv.styles.textfield.InnerLabel -import com.sdds.serv.styles.textfield.L -import com.sdds.serv.styles.textfield.M -import com.sdds.serv.styles.textfield.OuterLabel -import com.sdds.serv.styles.textfield.RequiredEnd -import com.sdds.serv.styles.textfield.RequiredStart -import com.sdds.serv.styles.textfield.S -import com.sdds.serv.styles.textfield.Success -import com.sdds.serv.styles.textfield.TextFieldClear -import com.sdds.serv.styles.textfield.Warning -import com.sdds.serv.styles.textfield.Xl -import com.sdds.serv.styles.textfield.Xs - -internal object SddsServTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Success" to { TextFieldClear.Xs.Success.style() }, - "Xs.Warning" to { TextFieldClear.Xs.Warning.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextFieldClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextFieldClear.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextFieldClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextFieldClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextFieldClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextFieldClear.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextFieldClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextFieldClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextFieldClear.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextFieldClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Success" to { TextFieldClear.S.Success.style() }, - "S.Warning" to { TextFieldClear.S.Warning.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextFieldClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextFieldClear.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextFieldClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextFieldClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextFieldClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextFieldClear.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextFieldClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextFieldClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextFieldClear.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextFieldClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextFieldClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextFieldClear.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextFieldClear.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextFieldClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextFieldClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextFieldClear.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Success" to { TextFieldClear.M.Success.style() }, - "M.Warning" to { TextFieldClear.M.Warning.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextFieldClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextFieldClear.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextFieldClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextFieldClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextFieldClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextFieldClear.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextFieldClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextFieldClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextFieldClear.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextFieldClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextFieldClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextFieldClear.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextFieldClear.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextFieldClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextFieldClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextFieldClear.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Success" to { TextFieldClear.L.Success.style() }, - "L.Warning" to { TextFieldClear.L.Warning.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextFieldClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextFieldClear.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextFieldClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextFieldClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextFieldClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextFieldClear.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextFieldClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextFieldClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextFieldClear.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextFieldClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextFieldClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextFieldClear.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextFieldClear.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextFieldClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextFieldClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextFieldClear.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextFieldClear.Xl.Default.style() }, - "Xl.Success" to { TextFieldClear.Xl.Success.style() }, - "Xl.Warning" to { TextFieldClear.Xl.Warning.style() }, - "Xl.Error" to { TextFieldClear.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextFieldClear.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextFieldClear.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextFieldClear.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextFieldClear.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextFieldClear.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextFieldClear.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextFieldClear.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextFieldClear.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextFieldClear.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextFieldClear.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextFieldClear.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextFieldClear.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextFieldClear.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextFieldClear.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextFieldClear.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextFieldClear.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldVariationsCompose.kt deleted file mode 100644 index ccf33ab988..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextFieldVariationsCompose.kt +++ /dev/null @@ -1,194 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.textfield.Default -import com.sdds.serv.styles.textfield.Error -import com.sdds.serv.styles.textfield.InnerLabel -import com.sdds.serv.styles.textfield.L -import com.sdds.serv.styles.textfield.M -import com.sdds.serv.styles.textfield.OuterLabel -import com.sdds.serv.styles.textfield.RequiredEnd -import com.sdds.serv.styles.textfield.RequiredStart -import com.sdds.serv.styles.textfield.S -import com.sdds.serv.styles.textfield.Success -import com.sdds.serv.styles.textfield.TextField -import com.sdds.serv.styles.textfield.Warning -import com.sdds.serv.styles.textfield.Xl -import com.sdds.serv.styles.textfield.Xs - -internal object SddsServTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Success" to { TextField.Xs.Success.style() }, - "Xs.Warning" to { TextField.Xs.Warning.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextField.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextField.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextField.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextField.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextField.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextField.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextField.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextField.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextField.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextField.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextField.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextField.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextField.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Success" to { TextField.S.Success.style() }, - "S.Warning" to { TextField.S.Warning.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextField.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextField.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextField.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextField.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextField.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextField.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextField.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextField.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextField.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextField.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextField.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextField.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextField.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextField.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextField.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextField.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextField.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextField.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Success" to { TextField.M.Success.style() }, - "M.Warning" to { TextField.M.Warning.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextField.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextField.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextField.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextField.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextField.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextField.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextField.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextField.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextField.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextField.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextField.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextField.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextField.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextField.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextField.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextField.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextField.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextField.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Success" to { TextField.L.Success.style() }, - "L.Warning" to { TextField.L.Warning.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextField.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextField.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextField.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextField.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextField.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextField.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextField.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextField.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextField.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextField.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextField.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextField.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextField.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextField.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextField.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextField.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextField.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextField.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextField.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextField.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - "Xl.Default" to { TextField.Xl.Default.style() }, - "Xl.Success" to { TextField.Xl.Success.style() }, - "Xl.Warning" to { TextField.Xl.Warning.style() }, - "Xl.Error" to { TextField.Xl.Error.style() }, - "Xl.RequiredStart.Default" to { TextField.Xl.RequiredStart.Default.style() }, - "Xl.RequiredStart.Success" to { TextField.Xl.RequiredStart.Success.style() }, - "Xl.RequiredStart.Warning" to { TextField.Xl.RequiredStart.Warning.style() }, - "Xl.RequiredStart.Error" to { TextField.Xl.RequiredStart.Error.style() }, - "Xl.RequiredEnd.Default" to { TextField.Xl.RequiredEnd.Default.style() }, - "Xl.RequiredEnd.Success" to { TextField.Xl.RequiredEnd.Success.style() }, - "Xl.RequiredEnd.Warning" to { TextField.Xl.RequiredEnd.Warning.style() }, - "Xl.RequiredEnd.Error" to { TextField.Xl.RequiredEnd.Error.style() }, - "Xl.OuterLabel.Default" to { TextField.Xl.OuterLabel.Default.style() }, - "Xl.OuterLabel.Success" to { TextField.Xl.OuterLabel.Success.style() }, - "Xl.OuterLabel.Warning" to { TextField.Xl.OuterLabel.Warning.style() }, - "Xl.OuterLabel.Error" to { TextField.Xl.OuterLabel.Error.style() }, - "Xl.OuterLabel.RequiredStart.Default" to { TextField.Xl.OuterLabel.RequiredStart.Default.style() }, - "Xl.OuterLabel.RequiredStart.Success" to { TextField.Xl.OuterLabel.RequiredStart.Success.style() }, - "Xl.OuterLabel.RequiredStart.Warning" to { TextField.Xl.OuterLabel.RequiredStart.Warning.style() }, - "Xl.OuterLabel.RequiredStart.Error" to { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, - "Xl.OuterLabel.RequiredEnd.Default" to { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, - "Xl.OuterLabel.RequiredEnd.Success" to { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, - "Xl.OuterLabel.RequiredEnd.Warning" to { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, - "Xl.OuterLabel.RequiredEnd.Error" to { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, - "Xl.InnerLabel.Default" to { TextField.Xl.InnerLabel.Default.style() }, - "Xl.InnerLabel.Success" to { TextField.Xl.InnerLabel.Success.style() }, - "Xl.InnerLabel.Warning" to { TextField.Xl.InnerLabel.Warning.style() }, - "Xl.InnerLabel.Error" to { TextField.Xl.InnerLabel.Error.style() }, - "Xl.InnerLabel.RequiredStart.Default" to { TextField.Xl.InnerLabel.RequiredStart.Default.style() }, - "Xl.InnerLabel.RequiredStart.Success" to { TextField.Xl.InnerLabel.RequiredStart.Success.style() }, - "Xl.InnerLabel.RequiredStart.Warning" to { TextField.Xl.InnerLabel.RequiredStart.Warning.style() }, - "Xl.InnerLabel.RequiredStart.Error" to { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, - "Xl.InnerLabel.RequiredEnd.Default" to { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, - "Xl.InnerLabel.RequiredEnd.Success" to { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, - "Xl.InnerLabel.RequiredEnd.Warning" to { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, - "Xl.InnerLabel.RequiredEnd.Error" to { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextSkeletonVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextSkeletonVariationsCompose.kt deleted file mode 100644 index f700377fec..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.textskeleton.Default -import com.sdds.serv.styles.textskeleton.Lighter -import com.sdds.serv.styles.textskeleton.TextSkeleton - -internal object SddsServTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - "Lighter" to { TextSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToastVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToastVariationsCompose.kt deleted file mode 100644 index ed03ff85f5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToastVariationsCompose.kt +++ /dev/null @@ -1,24 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.toast.Default -import com.sdds.serv.styles.toast.Negative -import com.sdds.serv.styles.toast.Pilled -import com.sdds.serv.styles.toast.Positive -import com.sdds.serv.styles.toast.Rounded -import com.sdds.serv.styles.toast.Toast - -internal object SddsServToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Rounded.Default" to { Toast.Rounded.Default.style() }, - "Rounded.Positive" to { Toast.Rounded.Positive.style() }, - "Rounded.Negative" to { Toast.Rounded.Negative.style() }, - "Pilled.Default" to { Toast.Pilled.Default.style() }, - "Pilled.Positive" to { Toast.Pilled.Positive.style() }, - "Pilled.Negative" to { Toast.Pilled.Negative.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarHorizontalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarHorizontalVariationsCompose.kt deleted file mode 100644 index 60cd72feef..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarHorizontalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.toolbar.HasShadow -import com.sdds.serv.styles.toolbar.L -import com.sdds.serv.styles.toolbar.M -import com.sdds.serv.styles.toolbar.S -import com.sdds.serv.styles.toolbar.ToolBarHorizontal -import com.sdds.serv.styles.toolbar.Xs - -internal object SddsServToolBarHorizontalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarHorizontal.L.style() }, - "L.HasShadow" to { ToolBarHorizontal.L.HasShadow.style() }, - "M" to { ToolBarHorizontal.M.style() }, - "M.HasShadow" to { ToolBarHorizontal.M.HasShadow.style() }, - "S" to { ToolBarHorizontal.S.style() }, - "S.HasShadow" to { ToolBarHorizontal.S.HasShadow.style() }, - "Xs" to { ToolBarHorizontal.Xs.style() }, - "Xs.HasShadow" to { ToolBarHorizontal.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarVerticalVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarVerticalVariationsCompose.kt deleted file mode 100644 index 9831523c0e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServToolBarVerticalVariationsCompose.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToolBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.toolbar.HasShadow -import com.sdds.serv.styles.toolbar.L -import com.sdds.serv.styles.toolbar.M -import com.sdds.serv.styles.toolbar.S -import com.sdds.serv.styles.toolbar.ToolBarVertical -import com.sdds.serv.styles.toolbar.Xs - -internal object SddsServToolBarVerticalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToolBarStyle> = - mapOf( - "L" to { ToolBarVertical.L.style() }, - "L.HasShadow" to { ToolBarVertical.L.HasShadow.style() }, - "M" to { ToolBarVertical.M.style() }, - "M.HasShadow" to { ToolBarVertical.M.HasShadow.style() }, - "S" to { ToolBarVertical.S.style() }, - "S.HasShadow" to { ToolBarVertical.S.HasShadow.style() }, - "Xs" to { ToolBarVertical.Xs.style() }, - "Xs.HasShadow" to { ToolBarVertical.Xs.HasShadow.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTooltipVariationsCompose.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTooltipVariationsCompose.kt deleted file mode 100644 index f177299c25..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.serv.styles.tooltip.M -import com.sdds.serv.styles.tooltip.S -import com.sdds.serv.styles.tooltip.Tooltip - -internal object SddsServTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionEndVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionEndVariationsView.kt deleted file mode 100644 index b0dd6a6559..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionEndH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionStartVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionStartVariationsView.kt deleted file mode 100644 index af8b18f035..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionClearActionStartH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionEndVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionEndVariationsView.kt deleted file mode 100644 index 5a193021ec..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionItemClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionEndH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionStartVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionStartVariationsView.kt deleted file mode 100644 index a4f0d07184..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionItemClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemClearActionStartH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionEndVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionEndVariationsView.kt deleted file mode 100644 index a4fe81c100..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionItemSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionEndH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionStartVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionStartVariationsView.kt deleted file mode 100644 index b066d9def5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionItemSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionItemSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionItemSolidActionStartH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionEndVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionEndVariationsView.kt deleted file mode 100644 index aaa88d3039..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionEndH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionStartVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionStartVariationsView.kt deleted file mode 100644 index 1647153117..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAccordionSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAccordionSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartXs, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartL, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_AccordionSolidActionStartH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteNormalVariationsView.kt deleted file mode 100644 index b237a7ec9c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAutocompleteNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteTightVariationsView.kt deleted file mode 100644 index 9194cf6e99..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAutocompleteTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAutocompleteTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_AutocompleteTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarGroupVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarGroupVariationsView.kt deleted file mode 100644 index 176a9e27f5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarGroupVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAvatarGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AvatarGroupS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarVariationsView.kt deleted file mode 100644 index 77feaa2a4a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServAvatarVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServAvatarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Serv_Sdds_ComponentOverlays_AvatarXxl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_AvatarL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_AvatarM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_AvatarS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeClearVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeClearVariationsView.kt deleted file mode 100644 index f9c4567bce..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeSolidVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeSolidVariationsView.kt deleted file mode 100644 index 31e7b1406e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeTransparentVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeTransparentVariationsView.kt deleted file mode 100644 index bdefc7437a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_BadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonGroupVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonGroupVariationsView.kt deleted file mode 100644 index fe8b3fc02b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonGroupVariationsView.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServBasicButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxs, - "Xxs.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsWide, - "Xxs.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsWideDefault, - "Xxs.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsWideSegmented, - "Xxs.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsDense, - "Xxs.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsDenseDefault, - "Xxs.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsDenseSegmented, - "Xxs.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsNoGap, - "Xxs.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsNoGapDefault, - "Xxs.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXxsNoGapSegmented, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXs, - "Xs.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsWideDefault, - "Xs.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsDenseDefault, - "Xs.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsNoGapDefault, - "Xs.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupXsNoGapSegmented, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupS, - "S.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSWide, - "S.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSWideDefault, - "S.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSDense, - "S.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSDenseDefault, - "S.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSNoGapDefault, - "S.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupSNoGapSegmented, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupM, - "M.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMWide, - "M.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMWideDefault, - "M.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMDense, - "M.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMDenseDefault, - "M.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMNoGapDefault, - "M.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupMNoGapSegmented, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupL, - "L.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLWide, - "L.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLWideDefault, - "L.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLDense, - "L.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLDenseDefault, - "L.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLNoGapDefault, - "L.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonVariationsView.kt deleted file mode 100644 index 3934c67839..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServBasicButtonVariationsView.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServBasicButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlDefault, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlAccent, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlNegative, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlWarning, - "Xl.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlClear, - "Xl.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlDark, - "Xl.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlBlack, - "Xl.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXlWhite, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLDefault, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLAccent, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLWarning, - "L.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLClear, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLDark, - "L.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLBlack, - "L.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonLWhite, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMDefault, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMAccent, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMWarning, - "M.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMClear, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMDark, - "M.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMBlack, - "M.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonMWhite, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSDefault, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSAccent, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSWarning, - "S.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSClear, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSDark, - "S.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSBlack, - "S.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonSWhite, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsDefault, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsAccent, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsWarning, - "Xs.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsClear, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsDark, - "Xs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsBlack, - "Xs.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXsWhite, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsAccent, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsPositive, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsNegative, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsWarning, - "Xxs.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsClear, - "Xxs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsDark, - "Xxs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsBlack, - "Xxs.White" to DsR.style.Serv_Sdds_ComponentOverlays_BasicButtonXxsWhite, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardClearVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardClearVariationsView.kt deleted file mode 100644 index a844dd3827..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardClearVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCardClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CardClearL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CardClearM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CardClearS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardSolidVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardSolidVariationsView.kt deleted file mode 100644 index c16cacff9e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCardSolidVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCardSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CardSolidL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CardSolidM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CardSolidS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCarouselVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCarouselVariationsView.kt deleted file mode 100644 index 3ec13b43b9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCarouselVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCarouselVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonsPlacementInner" to DsR.style.Serv_Sdds_ComponentOverlays_CarouselButtonsPlacementInner, - "ButtonsPlacementOuter" to DsR.style.Serv_Sdds_ComponentOverlays_CarouselButtonsPlacementOuter, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCellVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCellVariationsView.kt deleted file mode 100644 index 16a10ce948..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCellVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCellVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CellL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CellM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CellS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_CellXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxGroupVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxGroupVariationsView.kt deleted file mode 100644 index af3357d15f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxGroupVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCheckBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxGroupL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxGroupM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxGroupS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxVariationsView.kt deleted file mode 100644 index 78835cb509..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCheckBoxVariationsView.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCheckBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxLDefault, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxLNegative, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxMDefault, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxMNegative, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxSDefault, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CheckBoxSNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupDenseVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupDenseVariationsView.kt deleted file mode 100644 index 2f6cd9a1c8..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLWarning, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseLPilledWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMWarning, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseMPilledWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSWarning, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseSPilledWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsWarning, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupDenseXsPilledWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupWideVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupWideVariationsView.kt deleted file mode 100644 index 251271af05..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipGroupWideVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLWarning, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideLPilledWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMWarning, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideMPilledWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSWarning, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideSPilledWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsWarning, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipGroupWideXsPilledWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipVariationsView.kt deleted file mode 100644 index 3ad83c5c3b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServChipVariationsView.kt +++ /dev/null @@ -1,66 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ChipL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLWarning, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledPositive, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledSecondary, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipLPilledWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ChipM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMWarning, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledPositive, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledSecondary, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipMPilledWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ChipS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSWarning, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledPositive, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledSecondary, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipSPilledWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsWarning, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledPositive, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledSecondary, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ChipXsPilledWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCircularProgressBarVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCircularProgressBarVariationsView.kt deleted file mode 100644 index 25e42dd405..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCircularProgressBarVariationsView.kt +++ /dev/null @@ -1,73 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCircularProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxl, - "Xxl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlDefault, - "Xxl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlSecondary, - "Xxl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlAccent, - "Xxl.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlGradient, - "Xxl.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlInfo, - "Xxl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlNegative, - "Xxl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlPositive, - "Xxl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxlWarning, - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlDefault, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlAccent, - "Xl.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlGradient, - "Xl.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlInfo, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlNegative, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlPositive, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXlWarning, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLDefault, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLAccent, - "L.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLGradient, - "L.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLInfo, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarLWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMDefault, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMAccent, - "M.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMGradient, - "M.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMInfo, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarMWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSDefault, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSAccent, - "S.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSGradient, - "S.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSInfo, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarSWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsDefault, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsAccent, - "Xs.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsGradient, - "Xs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsInfo, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXsWarning, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsDefault, - "Xxs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsSecondary, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsAccent, - "Xxs.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsGradient, - "Xxs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsInfo, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsNegative, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsPositive, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CircularProgressBarXxsWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeFieldVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeFieldVariationsView.kt deleted file mode 100644 index ab931f9b70..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeFieldVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCodeFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CodeFieldL, - "L.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_CodeFieldLSegmented, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CodeFieldM, - "M.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_CodeFieldMSegmented, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeInputVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeInputVariationsView.kt deleted file mode 100644 index c6c57c8886..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCodeInputVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCodeInputVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CodeInputS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CodeInputM, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CodeInputL, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCounterVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCounterVariationsView.kt deleted file mode 100644 index 6ba5f17c8c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServCounterVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServCounterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_CounterL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLAccent, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLWarning, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLNegative, - "L.Black" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLBlack, - "L.White" to DsR.style.Serv_Sdds_ComponentOverlays_CounterLWhite, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_CounterM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMAccent, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMWarning, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMNegative, - "M.Black" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMBlack, - "M.White" to DsR.style.Serv_Sdds_ComponentOverlays_CounterMWhite, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_CounterS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSAccent, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSWarning, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSNegative, - "S.Black" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSBlack, - "S.White" to DsR.style.Serv_Sdds_ComponentOverlays_CounterSWhite, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsAccent, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsWarning, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsNegative, - "Xs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsBlack, - "Xs.White" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXsWhite, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsDefault, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsAccent, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsPositive, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsWarning, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsNegative, - "Xxs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsBlack, - "Xxs.White" to DsR.style.Serv_Sdds_ComponentOverlays_CounterXxsWhite, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDividerVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDividerVariationsView.kt deleted file mode 100644 index 022413f9f5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDividerVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDividerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Serv_Sdds_ComponentOverlays_Divider, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseInnerVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseInnerVariationsView.kt deleted file mode 100644 index 3611554222..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseInnerVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDrawerCloseInnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseInnerM, - "M.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseInnerMHasShadow, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseNoneVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseNoneVariationsView.kt deleted file mode 100644 index 586bd7f1a0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseNoneVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDrawerCloseNoneVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseNoneM, - "M.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseNoneMHasShadow, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseOuterVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseOuterVariationsView.kt deleted file mode 100644 index 365d7cdbbb..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDrawerCloseOuterVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDrawerCloseOuterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseOuterM, - "M.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_DrawerCloseOuterMHasShadow, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownEmptyStateVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownEmptyStateVariationsView.kt deleted file mode 100644 index 0cb29ff97b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownEmptyStateVariationsView.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownEmptyStateVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateXs, - "Xs.HasButton" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateXsHasButton, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateS, - "S.HasButton" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateSHasButton, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateM, - "M.HasButton" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateMHasButton, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateL, - "L.HasButton" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateLHasButton, - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateXl, - "Xl.HasButton" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownEmptyStateXlHasButton, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemNormalVariationsView.kt deleted file mode 100644 index 5dd0e8b0e2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemNormalVariationsView.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXlDefault, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXlNegative, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalLDefault, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalLNegative, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalMDefault, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalMNegative, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalSDefault, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalSNegative, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXsDefault, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemNormalXsNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemTightVariationsView.kt deleted file mode 100644 index d0a4554118..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuItemTightVariationsView.kt +++ /dev/null @@ -1,30 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXlDefault, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXlNegative, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightLDefault, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightLNegative, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightMDefault, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightMNegative, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightSDefault, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightSNegative, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXsDefault, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuItemTightXsNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListNormalVariationsView.kt deleted file mode 100644 index e5bfd01e09..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListTightVariationsView.kt deleted file mode 100644 index bd3fe62611..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuListTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuListTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuNormalVariationsView.kt deleted file mode 100644 index 87947b55fe..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuTightVariationsView.kt deleted file mode 100644 index 851c19a56b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServDropdownMenuTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServDropdownMenuTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_DropdownMenuTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEditableVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEditableVariationsView.kt deleted file mode 100644 index afc6ccf369..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEditableVariationsView.kt +++ /dev/null @@ -1,20 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServEditableVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "H1" to DsR.style.Serv_Sdds_ComponentOverlays_EditableH1, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_EditableH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_EditableH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_EditableH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_EditableH5, - "BodyL" to DsR.style.Serv_Sdds_ComponentOverlays_EditableBodyL, - "BodyM" to DsR.style.Serv_Sdds_ComponentOverlays_EditableBodyM, - "BodyS" to DsR.style.Serv_Sdds_ComponentOverlays_EditableBodyS, - "BodyXs" to DsR.style.Serv_Sdds_ComponentOverlays_EditableBodyXs, - "BodyXxs" to DsR.style.Serv_Sdds_ComponentOverlays_EditableBodyXxs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupDenseVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupDenseVariationsView.kt deleted file mode 100644 index c1f813c177..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServEmbeddedChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlDefault, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlAccent, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlNegative, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlPositive, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlSecondary, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXlWarning, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseLWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseMWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseSWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupDenseXsWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupWideVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupWideVariationsView.kt deleted file mode 100644 index 49977768cf..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipGroupWideVariationsView.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServEmbeddedChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlDefault, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlAccent, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlNegative, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlPositive, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlSecondary, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXlWarning, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideLWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideMWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideSWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipGroupWideXsWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipVariationsView.kt deleted file mode 100644 index bf46800dc2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServEmbeddedChipVariationsView.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServEmbeddedChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlDefault, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlAccent, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlNegative, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlPositive, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlSecondary, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXlWarning, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLPositive, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLSecondary, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipLWarning, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMPositive, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMSecondary, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipMWarning, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSPositive, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSSecondary, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipSWarning, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsPositive, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsSecondary, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_EmbeddedChipXsWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileCircularProgressVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileCircularProgressVariationsView.kt deleted file mode 100644 index cc50911177..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileCircularProgressVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServFileCircularProgressVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressXsDefault, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressXsNegative, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressSDefault, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressSNegative, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressMDefault, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressMNegative, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressLDefault, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileCircularProgressLNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileLinearProgressVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileLinearProgressVariationsView.kt deleted file mode 100644 index 61e6e6486a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServFileLinearProgressVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServFileLinearProgressVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressXsDefault, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressXsNegative, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressSDefault, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressSNegative, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressMDefault, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressMNegative, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressLDefault, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_FileLinearProgressLNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeClearVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeClearVariationsView.kt deleted file mode 100644 index 706217a87a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeSolidVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeSolidVariationsView.kt deleted file mode 100644 index 18ad0fee3c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeTransparentVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeTransparentVariationsView.kt deleted file mode 100644 index 30eb0379cb..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLAccent, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLNegative, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLWarning, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLDark, - "L.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLLight, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentLPilledLight, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMAccent, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMNegative, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMWarning, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMDark, - "M.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMLight, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentMPilledLight, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSAccent, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSNegative, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSWarning, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSDark, - "S.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSLight, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentSPilledLight, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsDark, - "Xs.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Serv_Sdds_ComponentOverlays_IconBadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonGroupVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonGroupVariationsView.kt deleted file mode 100644 index 556e6eeb5c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonGroupVariationsView.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXs, - "Xs.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsWideDefault, - "Xs.Wide.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsWidePilled, - "Xs.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsDenseDefault, - "Xs.Dense.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsDensePilled, - "Xs.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsNoGapDefault, - "Xs.NoGap.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsNoGapPilled, - "Xs.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupXsNoGapSegmented, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupS, - "S.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSWide, - "S.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSWideDefault, - "S.Wide.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSWidePilled, - "S.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSDense, - "S.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSDenseDefault, - "S.Dense.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSDensePilled, - "S.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSNoGapDefault, - "S.NoGap.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSNoGapPilled, - "S.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupSNoGapSegmented, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupM, - "M.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMWide, - "M.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMWideDefault, - "M.Wide.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMWidePilled, - "M.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMDense, - "M.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMDenseDefault, - "M.Dense.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMDensePilled, - "M.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMNoGapDefault, - "M.NoGap.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMNoGapPilled, - "M.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupMNoGapSegmented, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupL, - "L.Wide" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLWide, - "L.Wide.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLWideDefault, - "L.Wide.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLWidePilled, - "L.Wide.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLDense, - "L.Dense.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLDenseDefault, - "L.Dense.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLDensePilled, - "L.Dense.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLNoGapDefault, - "L.NoGap.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLNoGapPilled, - "L.NoGap.Segmented" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonVariationsView.kt deleted file mode 100644 index ae42b47e9d..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconButtonVariationsView.kt +++ /dev/null @@ -1,142 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlDefault, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlAccent, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlNegative, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlWarning, - "Xl.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlClear, - "Xl.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlDark, - "Xl.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlBlack, - "Xl.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlWhite, - "Xl.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilled, - "Xl.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledDefault, - "Xl.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledSecondary, - "Xl.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledAccent, - "Xl.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledPositive, - "Xl.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledNegative, - "Xl.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledWarning, - "Xl.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledClear, - "Xl.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledDark, - "Xl.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledBlack, - "Xl.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXlPilledWhite, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLDefault, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLAccent, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLWarning, - "L.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLClear, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLDark, - "L.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLBlack, - "L.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLWhite, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilled, - "L.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledDefault, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledSecondary, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledAccent, - "L.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledPositive, - "L.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledNegative, - "L.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledWarning, - "L.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledClear, - "L.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledDark, - "L.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledBlack, - "L.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonLPilledWhite, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMDefault, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMAccent, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMWarning, - "M.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMClear, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMDark, - "M.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMBlack, - "M.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMWhite, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilled, - "M.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledDefault, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledSecondary, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledAccent, - "M.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledPositive, - "M.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledNegative, - "M.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledWarning, - "M.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledClear, - "M.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledDark, - "M.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledBlack, - "M.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonMPilledWhite, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSDefault, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSAccent, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSWarning, - "S.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSClear, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSDark, - "S.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSBlack, - "S.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSWhite, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilled, - "S.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledDefault, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledSecondary, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledAccent, - "S.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledPositive, - "S.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledNegative, - "S.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledWarning, - "S.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledClear, - "S.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledDark, - "S.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledBlack, - "S.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonSPilledWhite, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsDefault, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsAccent, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsWarning, - "Xs.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsClear, - "Xs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsDark, - "Xs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsBlack, - "Xs.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsWhite, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilled, - "Xs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledDefault, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledSecondary, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledAccent, - "Xs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledPositive, - "Xs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledNegative, - "Xs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledWarning, - "Xs.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledClear, - "Xs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledDark, - "Xs.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledBlack, - "Xs.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXsPilledWhite, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsAccent, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPositive, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsNegative, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsWarning, - "Xxs.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsClear, - "Xxs.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsDark, - "Xxs.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsBlack, - "Xxs.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsWhite, - "Xxs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilled, - "Xxs.Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledDefault, - "Xxs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledSecondary, - "Xxs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledAccent, - "Xxs.Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledPositive, - "Xxs.Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledNegative, - "Xxs.Pilled.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledWarning, - "Xxs.Pilled.Clear" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledClear, - "Xxs.Pilled.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledDark, - "Xxs.Pilled.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledBlack, - "Xxs.Pilled.White" to DsR.style.Serv_Sdds_ComponentOverlays_IconButtonXxsPilledWhite, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabItemVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabItemVariationsView.kt deleted file mode 100644 index dfb855f78e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabItemVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconTabItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabItemL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabItemM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabItemS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabItemXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabsVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabsVariationsView.kt deleted file mode 100644 index 77854f5d6a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIconTabsVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIconTabsVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsL, - "L.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsLVertical, - "L.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsLHorizontal, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsM, - "M.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsMVertical, - "M.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsMHorizontal, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsS, - "S.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsSVertical, - "S.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsSHorizontal, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsXs, - "Xs.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsXsVertical, - "Xs.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_IconTabsXsHorizontal, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServImageViewVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServImageViewVariationsView.kt deleted file mode 100644 index 6a049e40d0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServImageViewVariationsView.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServImageViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Ratio12" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_1_2, - "Ratio916" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_9_16, - "Ratio34" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_3_4, - "Ratio21" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_2_1, - "Ratio169" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_16_9, - "Ratio43" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_4_3, - "Ratio11" to DsR.style.Serv_Sdds_ComponentOverlays_ImageViewRatio_1_1, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIndicatorVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIndicatorVariationsView.kt deleted file mode 100644 index 52f5c22828..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServIndicatorVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServIndicatorVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLAccent, - "L.Inactive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLInactive, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLPositive, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLWarning, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLNegative, - "L.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLDark, - "L.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLBlack, - "L.White" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorLWhite, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMAccent, - "M.Inactive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMInactive, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMPositive, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMWarning, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMNegative, - "M.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMDark, - "M.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMBlack, - "M.White" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorMWhite, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSAccent, - "S.Inactive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSInactive, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSPositive, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSWarning, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSNegative, - "S.Dark" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSDark, - "S.Black" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSBlack, - "S.White" to DsR.style.Serv_Sdds_ComponentOverlays_IndicatorSWhite, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLinkButtonVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLinkButtonVariationsView.kt deleted file mode 100644 index 922608f437..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLinkButtonVariationsView.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServLinkButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlDefault, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlAccent, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlNegative, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlWarning, - "Xl.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXlInfo, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLDefault, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLAccent, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLWarning, - "L.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonLInfo, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMDefault, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMAccent, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMWarning, - "M.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonMInfo, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSDefault, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSAccent, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSWarning, - "S.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonSInfo, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsDefault, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsAccent, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsWarning, - "Xs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXsInfo, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsDefault, - "Xxs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsSecondary, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsAccent, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsPositive, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsNegative, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsWarning, - "Xxs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_LinkButtonXxsInfo, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemNormalVariationsView.kt deleted file mode 100644 index a4d9c72af2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServListItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemTightVariationsView.kt deleted file mode 100644 index eef5b54226..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListItemTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServListItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ListItemTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListNormalVariationsView.kt deleted file mode 100644 index 6a56340a83..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_ListNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ListNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ListNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ListNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ListNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListTightVariationsView.kt deleted file mode 100644 index 4bcbb88f71..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServListTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_ListTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ListTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ListTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ListTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ListTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLoaderVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLoaderVariationsView.kt deleted file mode 100644 index ddcb6d6009..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServLoaderVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServLoaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Serv_Sdds_ComponentOverlays_Loader, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServModalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServModalVariationsView.kt deleted file mode 100644 index 289cf1a5b4..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServModalVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServModalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Serv_Sdds_ComponentOverlays_Modal, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarInternalPageVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarInternalPageVariationsView.kt deleted file mode 100644 index e43efce59b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarInternalPageVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNavigationBarInternalPageVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "NoBackground" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageNoBackground, - "NoBackground.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageNoBackgroundRounded, - "HasBackground" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageHasBackground, - "HasBackground.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageHasBackgroundRounded, - "HasBackground.Shadow" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadow, - "HasBackground.Shadow.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadowRounded, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarMainPageVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarMainPageVariationsView.kt deleted file mode 100644 index 56f75cf291..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNavigationBarMainPageVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNavigationBarMainPageVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "NoBackground" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageNoBackground, - "NoBackground.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageNoBackgroundRounded, - "HasBackground" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageHasBackground, - "HasBackground.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageHasBackgroundRounded, - "HasBackground.Shadow" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageHasBackgroundShadow, - "HasBackground.Shadow.Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_NavigationBarMainPageHasBackgroundShadowRounded, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteCompactVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteCompactVariationsView.kt deleted file mode 100644 index ee1e45be1b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteCompactVariationsView.kt +++ /dev/null @@ -1,106 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNoteCompactVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLDefault, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLWarning, - "L.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLInfo, - "L.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasClose, - "L.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseDefault, - "L.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasClosePositive, - "L.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseNegative, - "L.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseWarning, - "L.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseInfo, - "L.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalable, - "L.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalableDefault, - "L.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalablePositive, - "L.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalableNegative, - "L.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalableWarning, - "L.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLContentScalableInfo, - "L.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalable, - "L.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalableDefault, - "L.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalablePositive, - "L.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalableNegative, - "L.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalableWarning, - "L.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactLHasCloseContentScalableInfo, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMDefault, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMWarning, - "M.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMInfo, - "M.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasClose, - "M.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseDefault, - "M.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasClosePositive, - "M.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseNegative, - "M.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseWarning, - "M.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseInfo, - "M.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalable, - "M.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalableDefault, - "M.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalablePositive, - "M.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalableNegative, - "M.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalableWarning, - "M.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMContentScalableInfo, - "M.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalable, - "M.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalableDefault, - "M.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalablePositive, - "M.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalableNegative, - "M.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalableWarning, - "M.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactMHasCloseContentScalableInfo, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSDefault, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSWarning, - "S.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSInfo, - "S.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasClose, - "S.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseDefault, - "S.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasClosePositive, - "S.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseNegative, - "S.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseWarning, - "S.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseInfo, - "S.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalable, - "S.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalableDefault, - "S.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalablePositive, - "S.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalableNegative, - "S.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalableWarning, - "S.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSContentScalableInfo, - "S.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalable, - "S.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalableDefault, - "S.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalablePositive, - "S.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalableNegative, - "S.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalableWarning, - "S.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactSHasCloseContentScalableInfo, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsDefault, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsWarning, - "Xs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsInfo, - "Xs.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasClose, - "Xs.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseDefault, - "Xs.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasClosePositive, - "Xs.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseNegative, - "Xs.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseWarning, - "Xs.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseInfo, - "Xs.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalable, - "Xs.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalableDefault, - "Xs.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalablePositive, - "Xs.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalableNegative, - "Xs.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalableWarning, - "Xs.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsContentScalableInfo, - "Xs.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalable, - "Xs.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalableDefault, - "Xs.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalablePositive, - "Xs.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalableNegative, - "Xs.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalableWarning, - "Xs.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteCompactXsHasCloseContentScalableInfo, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteVariationsView.kt deleted file mode 100644 index 8dd514829a..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNoteVariationsView.kt +++ /dev/null @@ -1,106 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNoteVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_NoteL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLDefault, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLWarning, - "L.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLInfo, - "L.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasClose, - "L.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseDefault, - "L.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasClosePositive, - "L.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseNegative, - "L.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseWarning, - "L.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseInfo, - "L.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalable, - "L.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalableDefault, - "L.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalablePositive, - "L.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalableNegative, - "L.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalableWarning, - "L.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLContentScalableInfo, - "L.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalable, - "L.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalableDefault, - "L.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalablePositive, - "L.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalableNegative, - "L.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalableWarning, - "L.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteLHasCloseContentScalableInfo, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_NoteM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMDefault, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMWarning, - "M.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMInfo, - "M.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasClose, - "M.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseDefault, - "M.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasClosePositive, - "M.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseNegative, - "M.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseWarning, - "M.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseInfo, - "M.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalable, - "M.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalableDefault, - "M.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalablePositive, - "M.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalableNegative, - "M.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalableWarning, - "M.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMContentScalableInfo, - "M.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalable, - "M.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalableDefault, - "M.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalablePositive, - "M.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalableNegative, - "M.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalableWarning, - "M.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteMHasCloseContentScalableInfo, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_NoteS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSDefault, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSWarning, - "S.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSInfo, - "S.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasClose, - "S.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseDefault, - "S.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasClosePositive, - "S.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseNegative, - "S.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseWarning, - "S.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseInfo, - "S.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalable, - "S.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalableDefault, - "S.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalablePositive, - "S.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalableNegative, - "S.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalableWarning, - "S.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSContentScalableInfo, - "S.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalable, - "S.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalableDefault, - "S.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalablePositive, - "S.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalableNegative, - "S.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalableWarning, - "S.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteSHasCloseContentScalableInfo, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsDefault, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsWarning, - "Xs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsInfo, - "Xs.HasClose" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasClose, - "Xs.HasClose.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseDefault, - "Xs.HasClose.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasClosePositive, - "Xs.HasClose.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseNegative, - "Xs.HasClose.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseWarning, - "Xs.HasClose.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseInfo, - "Xs.ContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalable, - "Xs.ContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalableDefault, - "Xs.ContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalablePositive, - "Xs.ContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalableNegative, - "Xs.ContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalableWarning, - "Xs.ContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsContentScalableInfo, - "Xs.HasCloseContentScalable" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalable, - "Xs.HasCloseContentScalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalableDefault, - "Xs.HasCloseContentScalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalablePositive, - "Xs.HasCloseContentScalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalableNegative, - "Xs.HasCloseContentScalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalableWarning, - "Xs.HasCloseContentScalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NoteXsHasCloseContentScalableInfo, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationCompactVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationCompactVariationsView.kt deleted file mode 100644 index 00fb4f1b52..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationCompactVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNotificationCompactVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationCompactL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationCompactM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationCompactS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationContentVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationContentVariationsView.kt deleted file mode 100644 index 30e3a35913..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationContentVariationsView.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNotificationContentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonStretch" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretch, - "ButtonStretch.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchDefault, - "ButtonStretch.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchPositive, - "ButtonStretch.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchNegative, - "ButtonStretch.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchWarning, - "ButtonStretch.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchInfo, - "ButtonStretch.IconTop" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTop, - "ButtonStretch.IconTop.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTopDefault, - "ButtonStretch.IconTop.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTopPositive, - "ButtonStretch.IconTop.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTopNegative, - "ButtonStretch.IconTop.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTopWarning, - "ButtonStretch.IconTop.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconTopInfo, - "ButtonStretch.IconStart" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStart, - "ButtonStretch.IconStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStartDefault, - "ButtonStretch.IconStart.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStartPositive, - "ButtonStretch.IconStart.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStartNegative, - "ButtonStretch.IconStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStartWarning, - "ButtonStretch.IconStart.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentButtonStretchIconStartInfo, - "NoButtonStretch" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretch, - "NoButtonStretch.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchDefault, - "NoButtonStretch.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchPositive, - "NoButtonStretch.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchNegative, - "NoButtonStretch.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchWarning, - "NoButtonStretch.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchInfo, - "NoButtonStretch.IconTop" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTop, - "NoButtonStretch.IconTop.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTopDefault, - "NoButtonStretch.IconTop.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTopPositive, - "NoButtonStretch.IconTop.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTopNegative, - "NoButtonStretch.IconTop.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTopWarning, - "NoButtonStretch.IconTop.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconTopInfo, - "NoButtonStretch.IconStart" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStart, - "NoButtonStretch.IconStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStartDefault, - "NoButtonStretch.IconStart.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStartPositive, - "NoButtonStretch.IconStart.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStartNegative, - "NoButtonStretch.IconStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStartWarning, - "NoButtonStretch.IconStart.Info" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationContentNoButtonStretchIconStartInfo, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationLooseVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationLooseVariationsView.kt deleted file mode 100644 index 1e215ac3d5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServNotificationLooseVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServNotificationLooseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationLooseL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationLooseM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_NotificationLooseS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServOverlayViewVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServOverlayViewVariationsView.kt deleted file mode 100644 index a288ef2f00..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServOverlayViewVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServOverlayViewVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Serv_Sdds_ComponentOverlays_OverlayView, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsHorizontalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsHorizontalVariationsView.kt deleted file mode 100644 index 0ad7a5c886..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsHorizontalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServPaginationDotsHorizontalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsHorizontalM, - "M.ActiveTypeLine" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsHorizontalMActiveTypeLine, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsHorizontalS, - "S.ActiveTypeLine" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsHorizontalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsVerticalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsVerticalVariationsView.kt deleted file mode 100644 index 505a47a076..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPaginationDotsVerticalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServPaginationDotsVerticalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsVerticalM, - "M.ActiveTypeLine" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsVerticalMActiveTypeLine, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsVerticalS, - "S.ActiveTypeLine" to DsR.style.Serv_Sdds_ComponentOverlays_PaginationDotsVerticalSActiveTypeLine, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPopoverVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPopoverVariationsView.kt deleted file mode 100644 index 174bfb9821..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServPopoverVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServPopoverVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverMAccent, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_PopoverSAccent, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServProgressBarVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServProgressBarVariationsView.kt deleted file mode 100644 index f06141a845..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServProgressBarVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarDefault, - ".Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarSecondary, - ".Accent" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarAccent, - ".Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarGradient, - ".Info" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarInfo, - ".Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarNegative, - ".Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarPositive, - ".Warning" to DsR.style.Serv_Sdds_ComponentOverlays_ProgressBarWarning, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxGroupVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxGroupVariationsView.kt deleted file mode 100644 index 43199ed639..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxGroupVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServRadioBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_RadioBoxGroupM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_RadioBoxGroupS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxVariationsView.kt deleted file mode 100644 index 24e6d917df..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRadioBoxVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServRadioBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_RadioBoxL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_RadioBoxM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_RadioBoxS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRectSkeletonVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRectSkeletonVariationsView.kt deleted file mode 100644 index b95d6729c5..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServRectSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServRectSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Serv_Sdds_ComponentOverlays_RectSkeletonDefault, - ".Lighter" to DsR.style.Serv_Sdds_ComponentOverlays_RectSkeletonLighter, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServScrollBarVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServScrollBarVariationsView.kt deleted file mode 100644 index c81019217e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServScrollBarVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServScrollBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ScrollBarS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ScrollBarM, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentItemVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentItemVariationsView.kt deleted file mode 100644 index 0e9210b600..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentItemVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSegmentItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXl, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlAccent, - "Xl.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlPrimary, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlSecondary, - "Xl.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlPilled, - "Xl.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlPilledAccent, - "Xl.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXlPilledSecondary, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemL, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLAccent, - "L.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLPrimary, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLSecondary, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLPilled, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLPilledAccent, - "L.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemLPilledSecondary, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemM, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMAccent, - "M.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMPrimary, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMSecondary, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMPilled, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMPilledAccent, - "M.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemMPilledSecondary, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemS, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSAccent, - "S.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSPrimary, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSSecondary, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSPilled, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSPilledAccent, - "S.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemSPilledSecondary, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXs, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsAccent, - "Xs.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsPrimary, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsSecondary, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsPilled, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsPilledAccent, - "Xs.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentItemXsPilledSecondary, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentVariationsView.kt deleted file mode 100644 index 2314878b9e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSegmentVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSegmentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXl, - "Xl.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlPrimary, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlAccent, - "Xl.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlPilled, - "Xl.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlPilledPrimary, - "Xl.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlPilledSecondary, - "Xl.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXlPilledAccent, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentL, - "L.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLPrimary, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLAccent, - "L.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLPilled, - "L.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLPilledSecondary, - "L.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentLPilledAccent, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentM, - "M.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMPrimary, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMAccent, - "M.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMPilled, - "M.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMPilledSecondary, - "M.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentMPilledAccent, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentS, - "S.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSPrimary, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSAccent, - "S.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSPilled, - "S.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSPilledSecondary, - "S.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentSPilledAccent, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXs, - "Xs.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsPrimary, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsAccent, - "Xs.Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsPilled, - "Xs.Pilled.Primary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsPilledSecondary, - "Xs.Pilled.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SegmentXsPilledAccent, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleNormalVariationsView.kt deleted file mode 100644 index dc7dee17d6..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectItemMultipleNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleTightVariationsView.kt deleted file mode 100644 index 36991be086..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemMultipleTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectItemMultipleTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemMultipleTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleNormalVariationsView.kt deleted file mode 100644 index d5f2b92181..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectItemSingleNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleTightVariationsView.kt deleted file mode 100644 index 251147a5b2..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectItemSingleTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectItemSingleTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectItemSingleTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleNormalVariationsView.kt deleted file mode 100644 index 32610d6eb3..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectMultipleNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleTightVariationsView.kt deleted file mode 100644 index bc3163279c..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectMultipleTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectMultipleTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectMultipleTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleNormalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleNormalVariationsView.kt deleted file mode 100644 index 19b2e23e5e..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectSingleNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleNormalXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleNormalL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleNormalM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleNormalS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleNormalXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleTightVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleTightVariationsView.kt deleted file mode 100644 index 14e792e9ae..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSelectSingleTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSelectSingleTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleTightXl, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleTightL, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleTightM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleTightS, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SelectSingleTightXs, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelInnerVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelInnerVariationsView.kt deleted file mode 100644 index a1f583a34b..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelInnerVariationsView.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSliderHorizontalLabelInnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLAccent, - "L.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLGradient, - "L.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenter, - "L.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterDefault, - "L.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterAccent, - "L.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterGradient, - "L.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterThumbS, - "L.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterThumbSDefault, - "L.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterThumbSAccent, - "L.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLLimitLabelCenterThumbSGradient, - "L.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLThumbS, - "L.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLThumbSDefault, - "L.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLThumbSAccent, - "L.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerLThumbSGradient, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMAccent, - "M.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMGradient, - "M.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenter, - "M.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterDefault, - "M.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterAccent, - "M.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterGradient, - "M.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterThumbS, - "M.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterThumbSDefault, - "M.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterThumbSAccent, - "M.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMLimitLabelCenterThumbSGradient, - "M.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMThumbS, - "M.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMThumbSDefault, - "M.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMThumbSAccent, - "M.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerMThumbSGradient, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSAccent, - "S.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSGradient, - "S.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenter, - "S.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterDefault, - "S.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterAccent, - "S.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterGradient, - "S.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterThumbS, - "S.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterThumbSDefault, - "S.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterThumbSAccent, - "S.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSLimitLabelCenterThumbSGradient, - "S.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSThumbS, - "S.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSThumbSDefault, - "S.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSThumbSAccent, - "S.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelInnerSThumbSGradient, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelOuterVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelOuterVariationsView.kt deleted file mode 100644 index 68f7b58f59..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderHorizontalLabelOuterVariationsView.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSliderHorizontalLabelOuterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLAccent, - "L.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLGradient, - "L.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenter, - "L.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterDefault, - "L.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterAccent, - "L.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterGradient, - "L.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterThumbS, - "L.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterThumbSDefault, - "L.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterThumbSAccent, - "L.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLLimitLabelCenterThumbSGradient, - "L.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLThumbS, - "L.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLThumbSDefault, - "L.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLThumbSAccent, - "L.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterLThumbSGradient, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMAccent, - "M.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMGradient, - "M.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenter, - "M.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterDefault, - "M.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterAccent, - "M.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterGradient, - "M.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterThumbS, - "M.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterThumbSDefault, - "M.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterThumbSAccent, - "M.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMLimitLabelCenterThumbSGradient, - "M.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMThumbS, - "M.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMThumbSDefault, - "M.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMThumbSAccent, - "M.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterMThumbSGradient, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSAccent, - "S.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSGradient, - "S.LimitLabelCenter" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenter, - "S.LimitLabelCenter.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterDefault, - "S.LimitLabelCenter.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterAccent, - "S.LimitLabelCenter.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterGradient, - "S.LimitLabelCenter.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterThumbS, - "S.LimitLabelCenter.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterThumbSDefault, - "S.LimitLabelCenter.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterThumbSAccent, - "S.LimitLabelCenter.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSLimitLabelCenterThumbSGradient, - "S.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSThumbS, - "S.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSThumbSDefault, - "S.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSThumbSAccent, - "S.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderHorizontalLabelOuterSThumbSGradient, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelInnerVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelInnerVariationsView.kt deleted file mode 100644 index c03acf1bb9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelInnerVariationsView.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSliderVerticalLabelInnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLAccent, - "L.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLGradient, - "L.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEnd, - "L.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndDefault, - "L.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndAccent, - "L.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndGradient, - "L.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndThumbS, - "L.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndThumbSDefault, - "L.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndThumbSAccent, - "L.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLLabelEndThumbSGradient, - "L.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLThumbS, - "L.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLThumbSDefault, - "L.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLThumbSAccent, - "L.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerLThumbSGradient, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMAccent, - "M.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMGradient, - "M.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEnd, - "M.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndDefault, - "M.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndAccent, - "M.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndGradient, - "M.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndThumbS, - "M.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndThumbSDefault, - "M.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndThumbSAccent, - "M.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMLabelEndThumbSGradient, - "M.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMThumbS, - "M.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMThumbSDefault, - "M.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMThumbSAccent, - "M.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerMThumbSGradient, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSAccent, - "S.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSGradient, - "S.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEnd, - "S.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndDefault, - "S.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndAccent, - "S.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndGradient, - "S.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndThumbS, - "S.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndThumbSDefault, - "S.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndThumbSAccent, - "S.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSLabelEndThumbSGradient, - "S.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSThumbS, - "S.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSThumbSDefault, - "S.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSThumbSAccent, - "S.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelInnerSThumbSGradient, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelOuterVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelOuterVariationsView.kt deleted file mode 100644 index 73653cf969..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSliderVerticalLabelOuterVariationsView.kt +++ /dev/null @@ -1,106 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSliderVerticalLabelOuterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLDefault, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAccent, - "L.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLGradient, - "L.AlignmentEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEnd, - "L.AlignmentEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndDefault, - "L.AlignmentEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndAccent, - "L.AlignmentEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndGradient, - "L.AlignmentEnd.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEnd, - "L.AlignmentEnd.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndDefault, - "L.AlignmentEnd.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndAccent, - "L.AlignmentEnd.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndGradient, - "L.AlignmentEnd.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndThumbS, - "L.AlignmentEnd.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndThumbSDefault, - "L.AlignmentEnd.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndThumbSAccent, - "L.AlignmentEnd.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndLabelEndThumbSGradient, - "L.AlignmentEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndThumbS, - "L.AlignmentEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndThumbSDefault, - "L.AlignmentEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndThumbSAccent, - "L.AlignmentEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLAlignmentEndThumbSGradient, - "L.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEnd, - "L.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndDefault, - "L.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndAccent, - "L.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndGradient, - "L.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndThumbS, - "L.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndThumbSDefault, - "L.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndThumbSAccent, - "L.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLLabelEndThumbSGradient, - "L.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLThumbS, - "L.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLThumbSDefault, - "L.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLThumbSAccent, - "L.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterLThumbSGradient, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMDefault, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAccent, - "M.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMGradient, - "M.AlignmentEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEnd, - "M.AlignmentEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndDefault, - "M.AlignmentEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndAccent, - "M.AlignmentEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndGradient, - "M.AlignmentEnd.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEnd, - "M.AlignmentEnd.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndDefault, - "M.AlignmentEnd.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndAccent, - "M.AlignmentEnd.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndGradient, - "M.AlignmentEnd.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndThumbS, - "M.AlignmentEnd.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndThumbSDefault, - "M.AlignmentEnd.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndThumbSAccent, - "M.AlignmentEnd.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndLabelEndThumbSGradient, - "M.AlignmentEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndThumbS, - "M.AlignmentEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndThumbSDefault, - "M.AlignmentEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndThumbSAccent, - "M.AlignmentEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMAlignmentEndThumbSGradient, - "M.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEnd, - "M.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndDefault, - "M.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndAccent, - "M.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndGradient, - "M.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndThumbS, - "M.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndThumbSDefault, - "M.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndThumbSAccent, - "M.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMLabelEndThumbSGradient, - "M.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMThumbS, - "M.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMThumbSDefault, - "M.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMThumbSAccent, - "M.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterMThumbSGradient, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSDefault, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAccent, - "S.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSGradient, - "S.AlignmentEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEnd, - "S.AlignmentEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndDefault, - "S.AlignmentEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndAccent, - "S.AlignmentEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndGradient, - "S.AlignmentEnd.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEnd, - "S.AlignmentEnd.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndDefault, - "S.AlignmentEnd.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndAccent, - "S.AlignmentEnd.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndGradient, - "S.AlignmentEnd.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndThumbS, - "S.AlignmentEnd.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndThumbSDefault, - "S.AlignmentEnd.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndThumbSAccent, - "S.AlignmentEnd.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndLabelEndThumbSGradient, - "S.AlignmentEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndThumbS, - "S.AlignmentEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndThumbSDefault, - "S.AlignmentEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndThumbSAccent, - "S.AlignmentEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSAlignmentEndThumbSGradient, - "S.LabelEnd" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEnd, - "S.LabelEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndDefault, - "S.LabelEnd.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndAccent, - "S.LabelEnd.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndGradient, - "S.LabelEnd.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndThumbS, - "S.LabelEnd.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndThumbSDefault, - "S.LabelEnd.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndThumbSAccent, - "S.LabelEnd.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSLabelEndThumbSGradient, - "S.ThumbS" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSThumbS, - "S.ThumbS.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSThumbSDefault, - "S.ThumbS.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSThumbSAccent, - "S.ThumbS.Gradient" to DsR.style.Serv_Sdds_ComponentOverlays_SliderVerticalLabelOuterSThumbSGradient, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSpinnerVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSpinnerVariationsView.kt deleted file mode 100644 index a263702726..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSpinnerVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSpinnerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxl, - "Xxl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlDefault, - "Xxl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlSecondary, - "Xxl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlAccent, - "Xxl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlPositive, - "Xxl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlNegative, - "Xxl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlWarning, - "Xxl.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxlInfo, - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlDefault, - "Xl.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlSecondary, - "Xl.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlAccent, - "Xl.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlPositive, - "Xl.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlNegative, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlWarning, - "Xl.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXlInfo, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLDefault, - "L.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLSecondary, - "L.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLAccent, - "L.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLPositive, - "L.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLNegative, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLWarning, - "L.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerLInfo, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMDefault, - "M.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMSecondary, - "M.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMAccent, - "M.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMPositive, - "M.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMNegative, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMWarning, - "M.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerMInfo, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSDefault, - "S.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSSecondary, - "S.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSAccent, - "S.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSPositive, - "S.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSNegative, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSWarning, - "S.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerSInfo, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsDefault, - "Xs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsSecondary, - "Xs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsAccent, - "Xs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsPositive, - "Xs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsNegative, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsWarning, - "Xs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXsInfo, - "Xxs" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxs, - "Xxs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsDefault, - "Xxs.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsSecondary, - "Xxs.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsAccent, - "Xxs.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsPositive, - "Xxs.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsNegative, - "Xxs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsWarning, - "Xxs.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerXxsInfo, - "Scalable" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalable, - "Scalable.Default" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableDefault, - "Scalable.Secondary" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableSecondary, - "Scalable.Accent" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableAccent, - "Scalable.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalablePositive, - "Scalable.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableNegative, - "Scalable.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableWarning, - "Scalable.Info" to DsR.style.Serv_Sdds_ComponentOverlays_SpinnerScalableInfo, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSwitchVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSwitchVariationsView.kt deleted file mode 100644 index 95a4ef4991..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServSwitchVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServSwitchVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchL, - "L.ToggleS" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchLToggleS, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchM, - "M.ToggleS" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchMToggleS, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchS, - "S.ToggleS" to DsR.style.Serv_Sdds_ComponentOverlays_SwitchSToggleS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemDefaultVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemDefaultVariationsView.kt deleted file mode 100644 index 19a776cabb..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemDefaultVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTabItemDefaultVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultL, - "L.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultLHorizontal, - "L.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultLVertical, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultM, - "M.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultMHorizontal, - "M.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultMVertical, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultS, - "S.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultSHorizontal, - "S.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultSVertical, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultXs, - "Xs.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultXsHorizontal, - "Xs.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemDefaultXsVertical, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemHeaderVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemHeaderVariationsView.kt deleted file mode 100644 index f3d9ff6eed..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabItemHeaderVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTabItemHeaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "H1" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemHeaderH1, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemHeaderH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemHeaderH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemHeaderH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_TabItemHeaderH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsDefaultVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsDefaultVariationsView.kt deleted file mode 100644 index e4c557c173..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsDefaultVariationsView.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTabsDefaultVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultL, - "L.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultLVertical, - "L.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultLHorizontal, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultM, - "M.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultMVertical, - "M.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultMHorizontal, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultS, - "S.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultSVertical, - "S.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultSHorizontal, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultXs, - "Xs.Vertical" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultXsVertical, - "Xs.Horizontal" to DsR.style.Serv_Sdds_ComponentOverlays_TabsDefaultXsHorizontal, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsHeaderVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsHeaderVariationsView.kt deleted file mode 100644 index b0969d7f91..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTabsHeaderVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTabsHeaderVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "H1" to DsR.style.Serv_Sdds_ComponentOverlays_TabsHeaderH1, - "H2" to DsR.style.Serv_Sdds_ComponentOverlays_TabsHeaderH2, - "H3" to DsR.style.Serv_Sdds_ComponentOverlays_TabsHeaderH3, - "H4" to DsR.style.Serv_Sdds_ComponentOverlays_TabsHeaderH4, - "H5" to DsR.style.Serv_Sdds_ComponentOverlays_TabsHeaderH5, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextAreaVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextAreaVariationsView.kt deleted file mode 100644 index 6dd4bb4c9f..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextAreaVariationsView.kt +++ /dev/null @@ -1,178 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTextAreaVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsDefault, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsWarning, - "Xs.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsError, - "Xs.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredStartDefault, - "Xs.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredEndDefault, - "Xs.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelDefault, - "Xs.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXsOuterLabelRequiredEndError, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSDefault, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSWarning, - "S.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSError, - "S.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredStartDefault, - "S.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredStartError, - "S.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredEndDefault, - "S.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSRequiredEndError, - "S.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelDefault, - "S.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelDefault, - "S.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaSInnerLabelRequiredEndError, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMDefault, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMWarning, - "M.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMError, - "M.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredStartDefault, - "M.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredStartError, - "M.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredEndDefault, - "M.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMRequiredEndError, - "M.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelDefault, - "M.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelDefault, - "M.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaMInnerLabelRequiredEndError, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLDefault, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLWarning, - "L.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLError, - "L.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredStartDefault, - "L.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredStartError, - "L.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredEndDefault, - "L.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLRequiredEndError, - "L.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelDefault, - "L.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelDefault, - "L.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaLInnerLabelRequiredEndError, - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlDefault, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlWarning, - "Xl.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlError, - "Xl.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredStart, - "Xl.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredStartDefault, - "Xl.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredStartWarning, - "Xl.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredStartError, - "Xl.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredEnd, - "Xl.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredEndDefault, - "Xl.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredEndWarning, - "Xl.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlRequiredEndError, - "Xl.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabel, - "Xl.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelDefault, - "Xl.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelWarning, - "Xl.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelError, - "Xl.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredStart, - "Xl.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredStartDefault, - "Xl.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredStartWarning, - "Xl.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredStartError, - "Xl.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredEnd, - "Xl.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredEndDefault, - "Xl.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredEndWarning, - "Xl.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlOuterLabelRequiredEndError, - "Xl.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabel, - "Xl.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelDefault, - "Xl.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelWarning, - "Xl.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelError, - "Xl.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredStart, - "Xl.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredStartDefault, - "Xl.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredStartWarning, - "Xl.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredStartError, - "Xl.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredEnd, - "Xl.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredEndDefault, - "Xl.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredEndWarning, - "Xl.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextAreaXlInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextFieldVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextFieldVariationsView.kt deleted file mode 100644 index a54f847752..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextFieldVariationsView.kt +++ /dev/null @@ -1,220 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTextFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXs, - "Xs.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsDefault, - "Xs.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsSuccess, - "Xs.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsWarning, - "Xs.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsError, - "Xs.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredStartDefault, - "Xs.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredStartSuccess, - "Xs.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredEndDefault, - "Xs.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredEndSuccess, - "Xs.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelDefault, - "Xs.OuterLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelSuccess, - "Xs.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredStartSuccess, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredEndSuccess, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXsOuterLabelRequiredEndError, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldS, - "S.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSDefault, - "S.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSSuccess, - "S.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSWarning, - "S.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSError, - "S.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredStartDefault, - "S.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredStartSuccess, - "S.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredStartError, - "S.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredEndDefault, - "S.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredEndSuccess, - "S.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSRequiredEndError, - "S.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelDefault, - "S.OuterLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelSuccess, - "S.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredStartSuccess, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredEndSuccess, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelDefault, - "S.InnerLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelSuccess, - "S.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredStartSuccess, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredEndSuccess, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldSInnerLabelRequiredEndError, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldM, - "M.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMDefault, - "M.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMSuccess, - "M.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMWarning, - "M.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMError, - "M.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredStartDefault, - "M.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredStartSuccess, - "M.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredStartError, - "M.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredEndDefault, - "M.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredEndSuccess, - "M.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMRequiredEndError, - "M.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelDefault, - "M.OuterLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelSuccess, - "M.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredStartSuccess, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredEndSuccess, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelDefault, - "M.InnerLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelSuccess, - "M.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredStartSuccess, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredEndSuccess, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldMInnerLabelRequiredEndError, - "L" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldL, - "L.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLDefault, - "L.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLSuccess, - "L.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLWarning, - "L.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLError, - "L.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredStartDefault, - "L.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredStartSuccess, - "L.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredStartError, - "L.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredEndDefault, - "L.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredEndSuccess, - "L.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLRequiredEndError, - "L.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelDefault, - "L.OuterLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelSuccess, - "L.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredStartSuccess, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredEndSuccess, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelDefault, - "L.InnerLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelSuccess, - "L.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredStartSuccess, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredEndSuccess, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldLInnerLabelRequiredEndError, - "Xl" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXl, - "Xl.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlDefault, - "Xl.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlSuccess, - "Xl.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlWarning, - "Xl.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlError, - "Xl.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredStart, - "Xl.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredStartDefault, - "Xl.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredStartSuccess, - "Xl.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredStartWarning, - "Xl.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredStartError, - "Xl.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredEnd, - "Xl.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredEndDefault, - "Xl.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredEndSuccess, - "Xl.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredEndWarning, - "Xl.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlRequiredEndError, - "Xl.OuterLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabel, - "Xl.OuterLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelDefault, - "Xl.OuterLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelSuccess, - "Xl.OuterLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelWarning, - "Xl.OuterLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelError, - "Xl.OuterLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredStart, - "Xl.OuterLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredStartDefault, - "Xl.OuterLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredStartSuccess, - "Xl.OuterLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredStartWarning, - "Xl.OuterLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredStartError, - "Xl.OuterLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredEnd, - "Xl.OuterLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredEndDefault, - "Xl.OuterLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredEndSuccess, - "Xl.OuterLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredEndWarning, - "Xl.OuterLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlOuterLabelRequiredEndError, - "Xl.InnerLabel" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabel, - "Xl.InnerLabel.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelDefault, - "Xl.InnerLabel.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelSuccess, - "Xl.InnerLabel.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelWarning, - "Xl.InnerLabel.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelError, - "Xl.InnerLabel.RequiredStart" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredStart, - "Xl.InnerLabel.RequiredStart.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredStartDefault, - "Xl.InnerLabel.RequiredStart.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredStartSuccess, - "Xl.InnerLabel.RequiredStart.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredStartWarning, - "Xl.InnerLabel.RequiredStart.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredStartError, - "Xl.InnerLabel.RequiredEnd" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredEnd, - "Xl.InnerLabel.RequiredEnd.Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredEndDefault, - "Xl.InnerLabel.RequiredEnd.Success" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredEndSuccess, - "Xl.InnerLabel.RequiredEnd.Warning" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredEndWarning, - "Xl.InnerLabel.RequiredEnd.Error" to DsR.style.Serv_Sdds_ComponentOverlays_TextFieldXlInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextSkeletonVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextSkeletonVariationsView.kt deleted file mode 100644 index 76b681e153..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTextSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTextSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Serv_Sdds_ComponentOverlays_TextSkeletonDefault, - ".Lighter" to DsR.style.Serv_Sdds_ComponentOverlays_TextSkeletonLighter, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToastVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToastVariationsView.kt deleted file mode 100644 index c5ffaf00f0..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToastVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServToastVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Rounded" to DsR.style.Serv_Sdds_ComponentOverlays_ToastRounded, - "Rounded.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ToastRoundedDefault, - "Rounded.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ToastRoundedPositive, - "Rounded.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ToastRoundedNegative, - "Pilled" to DsR.style.Serv_Sdds_ComponentOverlays_ToastPilled, - "Pilled.Default" to DsR.style.Serv_Sdds_ComponentOverlays_ToastPilledDefault, - "Pilled.Positive" to DsR.style.Serv_Sdds_ComponentOverlays_ToastPilledPositive, - "Pilled.Negative" to DsR.style.Serv_Sdds_ComponentOverlays_ToastPilledNegative, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarHorizontalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarHorizontalVariationsView.kt deleted file mode 100644 index e01e1b7221..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarHorizontalVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServToolBarHorizontalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalL, - "L.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalLHasShadow, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalM, - "M.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalMHasShadow, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalS, - "S.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalSHasShadow, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalXs, - "Xs.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarHorizontalXsHasShadow, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarVerticalVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarVerticalVariationsView.kt deleted file mode 100644 index 2435046202..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServToolBarVerticalVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServToolBarVerticalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalL, - "L.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalLHasShadow, - "M" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalM, - "M.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalMHasShadow, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalS, - "S.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalSHasShadow, - "Xs" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalXs, - "Xs.HasShadow" to DsR.style.Serv_Sdds_ComponentOverlays_ToolBarVerticalXsHasShadow, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTooltipVariationsView.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTooltipVariationsView.kt deleted file mode 100644 index 4a59d3e8b8..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServTooltipVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.serv.R as DsR - -internal object SddsServTooltipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Serv_Sdds_ComponentOverlays_TooltipM, - "S" to DsR.style.Serv_Sdds_ComponentOverlays_TooltipS, - ) -} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServViewComponents.kt b/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServViewComponents.kt deleted file mode 100644 index d61e3185d9..0000000000 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/view/SddsServViewComponents.kt +++ /dev/null @@ -1,434 +0,0 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.view - -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView -import com.sdds.playground.sandbox.core.integration.component.ViewComponent - -/** - * Компоненты - */ -object SddsServViewComponents : ComponentsProviderView() { - - override val generated: Map> = - listOf( - ViewComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to SddsServAvatarVariationsView, - ), - ), - ViewComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to SddsServAvatarGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Badge, - mapOf( - "BadgeClear" to SddsServBadgeClearVariationsView, - "BadgeSolid" to SddsServBadgeSolidVariationsView, - "BadgeTransparent" to SddsServBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeClear" to SddsServIconBadgeClearVariationsView, - "IconBadgeSolid" to SddsServIconBadgeSolidVariationsView, - "IconBadgeTransparent" to SddsServIconBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to SddsServBasicButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to SddsServIconButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.LinkButton, - mapOf( - "LinkButton" to SddsServLinkButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.Card, - mapOf( - "CardSolid" to SddsServCardSolidVariationsView, - "CardClear" to SddsServCardClearVariationsView, - ), - ), - ViewComponent( - ComponentKey.Cell, - mapOf( - "Cell" to SddsServCellVariationsView, - ), - ), - ViewComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to SddsServCheckBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.CheckBoxGroup, - mapOf( - "CheckBoxGroup" to SddsServCheckBoxGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Chip, - mapOf( - "Chip" to SddsServChipVariationsView, - "EmbeddedChip" to SddsServEmbeddedChipVariationsView, - ), - ), - ViewComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to SddsServChipGroupDenseVariationsView, - "ChipGroupWide" to SddsServChipGroupWideVariationsView, - "EmbeddedChipGroupDense" to SddsServEmbeddedChipGroupDenseVariationsView, - "EmbeddedChipGroupWide" to SddsServEmbeddedChipGroupWideVariationsView, - ), - ), - ViewComponent( - ComponentKey.Counter, - mapOf( - "Counter" to SddsServCounterVariationsView, - ), - ), - ViewComponent( - ComponentKey.Divider, - mapOf( - "Divider" to SddsServDividerVariationsView, - ), - ), - ViewComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to SddsServIndicatorVariationsView, - ), - ), - ViewComponent( - ComponentKey.Loader, - mapOf( - "Loader" to SddsServLoaderVariationsView, - ), - ), - ViewComponent( - ComponentKey.Overlay, - mapOf( - "OverlayView" to SddsServOverlayViewVariationsView, - ), - ), - ViewComponent( - ComponentKey.ProgressBar, - mapOf( - "ProgressBar" to SddsServProgressBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.CircularProgressBar, - mapOf( - "CircularProgressBar" to SddsServCircularProgressBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.Popover, - mapOf( - "Popover" to SddsServPopoverVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to SddsServRadioBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to SddsServRadioBoxGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Segment, - mapOf( - "Segment" to SddsServSegmentVariationsView, - ), - ), - ViewComponent( - ComponentKey.SegmentItem, - mapOf( - "SegmentItem" to SddsServSegmentItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.Switch, - mapOf( - "Switch" to SddsServSwitchVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextField, - mapOf( - "TextField" to SddsServTextFieldVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextArea, - mapOf( - "TextArea" to SddsServTextAreaVariationsView, - ), - ), - ViewComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to SddsServTooltipVariationsView, - ), - ), - ViewComponent( - ComponentKey.Toast, - mapOf( - "Toast" to SddsServToastVariationsView, - ), - ), - ViewComponent( - ComponentKey.Modal, - mapOf( - "Modal" to SddsServModalVariationsView, - ), - ), - ViewComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to SddsServRectSkeletonVariationsView, - ), - ), - ViewComponent( - ComponentKey.Note, - mapOf( - "Note" to SddsServNoteVariationsView, - ), - ), - ViewComponent( - ComponentKey.NoteCompact, - mapOf( - "NoteCompact" to SddsServNoteCompactVariationsView, - ), - ), - ViewComponent( - ComponentKey.Notification, - mapOf( - "NotificationCompact" to SddsServNotificationCompactVariationsView, - "NotificationLoose" to SddsServNotificationLooseVariationsView, - ), - ), - ViewComponent( - ComponentKey.NotificationContent, - mapOf( - "NotificationContent" to SddsServNotificationContentVariationsView, - ), - ), - ViewComponent( - ComponentKey.List, - mapOf( - "ListNormal" to SddsServListNormalVariationsView, - "ListTight" to SddsServListTightVariationsView, - "DropdownMenuListNormal" to SddsServDropdownMenuListNormalVariationsView, - "DropdownMenuListTight" to SddsServDropdownMenuListTightVariationsView, - ), - ), - ViewComponent( - ComponentKey.ListItem, - mapOf( - "ListItemNormal" to SddsServListItemNormalVariationsView, - "ListItemTight" to SddsServListItemTightVariationsView, - "DropdownMenuItemNormal" to SddsServDropdownMenuItemNormalVariationsView, - "DropdownMenuItemTight" to SddsServDropdownMenuItemTightVariationsView, - ), - ), - ViewComponent( - ComponentKey.Spinner, - mapOf( - "Spinner" to SddsServSpinnerVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeleton" to SddsServTextSkeletonVariationsView, - ), - ), - ViewComponent( - ComponentKey.DropdownMenu, - mapOf( - "DropdownMenuTight" to SddsServDropdownMenuTightVariationsView, - "DropdownMenuNormal" to SddsServDropdownMenuNormalVariationsView, - ), - ), - ViewComponent( - ComponentKey.AccordionItem, - mapOf( - "AccordionItemSolidActionStart" to SddsServAccordionItemSolidActionStartVariationsView, - "AccordionItemSolidActionEnd" to SddsServAccordionItemSolidActionEndVariationsView, - "AccordionItemClearActionStart" to SddsServAccordionItemClearActionStartVariationsView, - "AccordionItemClearActionEnd" to SddsServAccordionItemClearActionEndVariationsView, - ), - ), - ViewComponent( - ComponentKey.Accordion, - mapOf( - "AccordionSolidActionStart" to SddsServAccordionSolidActionStartVariationsView, - "AccordionSolidActionEnd" to SddsServAccordionSolidActionEndVariationsView, - "AccordionClearActionStart" to SddsServAccordionClearActionStartVariationsView, - "AccordionClearActionEnd" to SddsServAccordionClearActionEndVariationsView, - ), - ), - ViewComponent( - ComponentKey.ScrollBar, - mapOf( - "ScrollBar" to SddsServScrollBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.Slider, - mapOf( - "SliderHorizontalLabelInner" to SddsServSliderHorizontalLabelInnerVariationsView, - "SliderHorizontalLabelOuter" to SddsServSliderHorizontalLabelOuterVariationsView, - "SliderVerticalLabelInner" to SddsServSliderVerticalLabelInnerVariationsView, - "SliderVerticalLabelOuter" to SddsServSliderVerticalLabelOuterVariationsView, - ), - ), - ViewComponent( - ComponentKey.Image, - mapOf( - "ImageView" to SddsServImageViewVariationsView, - ), - ), - ViewComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to SddsServBasicButtonGroupVariationsView, - "IconButtonGroup" to SddsServIconButtonGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.CodeField, - mapOf( - "CodeField" to SddsServCodeFieldVariationsView, - ), - ), - ViewComponent( - ComponentKey.CodeInput, - mapOf( - "CodeInput" to SddsServCodeInputVariationsView, - ), - ), - ViewComponent( - ComponentKey.Drawer, - mapOf( - "DrawerCloseNone" to SddsServDrawerCloseNoneVariationsView, - "DrawerCloseInner" to SddsServDrawerCloseInnerVariationsView, - "DrawerCloseOuter" to SddsServDrawerCloseOuterVariationsView, - ), - ), - ViewComponent( - ComponentKey.Tabs, - mapOf( - "TabsDefault" to SddsServTabsDefaultVariationsView, - "TabsHeader" to SddsServTabsHeaderVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconTabs, - mapOf( - "IconTabs" to SddsServIconTabsVariationsView, - ), - ), - ViewComponent( - ComponentKey.TabItem, - mapOf( - "TabItemDefault" to SddsServTabItemDefaultVariationsView, - "TabItemHeader" to SddsServTabItemHeaderVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconTabItem, - mapOf( - "IconTabItem" to SddsServIconTabItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.NavigationBar, - mapOf( - "NavigationBarMainPage" to SddsServNavigationBarMainPageVariationsView, - "NavigationBarInternalPage" to SddsServNavigationBarInternalPageVariationsView, - ), - ), - ViewComponent( - ComponentKey.PaginationDots, - mapOf( - "PaginationDotsHorizontal" to SddsServPaginationDotsHorizontalVariationsView, - "PaginationDotsVertical" to SddsServPaginationDotsVerticalVariationsView, - ), - ), - ViewComponent( - ComponentKey.Autocomplete, - mapOf( - "AutocompleteTight" to SddsServAutocompleteTightVariationsView, - "AutocompleteNormal" to SddsServAutocompleteNormalVariationsView, - ), - ), - ViewComponent( - ComponentKey.DropdownEmptyState, - mapOf( - "DropdownEmptyState" to SddsServDropdownEmptyStateVariationsView, - ), - ), - ViewComponent( - ComponentKey.Carousel, - mapOf( - "Carousel" to SddsServCarouselVariationsView, - ), - ), - ViewComponent( - ComponentKey.File, - mapOf( - "FileCircularProgress" to SddsServFileCircularProgressVariationsView, - "FileLinearProgress" to SddsServFileLinearProgressVariationsView, - ), - ), - ViewComponent( - ComponentKey.Editable, - mapOf( - "Editable" to SddsServEditableVariationsView, - ), - ), - ViewComponent( - ComponentKey.Select, - mapOf( - "SelectSingleNormal" to SddsServSelectSingleNormalVariationsView, - "SelectSingleTight" to SddsServSelectSingleTightVariationsView, - "SelectMultipleNormal" to SddsServSelectMultipleNormalVariationsView, - "SelectMultipleTight" to SddsServSelectMultipleTightVariationsView, - ), - ), - ViewComponent( - ComponentKey.SelectItem, - mapOf( - "SelectItemSingleNormal" to SddsServSelectItemSingleNormalVariationsView, - "SelectItemSingleTight" to SddsServSelectItemSingleTightVariationsView, - "SelectItemMultipleNormal" to SddsServSelectItemMultipleNormalVariationsView, - "SelectItemMultipleTight" to SddsServSelectItemMultipleTightVariationsView, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/sandbox-stylessalute-integration/build.gradle.kts b/playground/sandbox-stylessalute-integration/build.gradle.kts deleted file mode 100644 index 84941f9a89..0000000000 --- a/playground/sandbox-stylessalute-integration/build.gradle.kts +++ /dev/null @@ -1,24 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.integration-compose") - id("convention.integration-view") -} - -android { - namespace = "com.sdds.playground.sandbox.stylessalute.integration" -} - -dependencies { - implementation(project(":sandbox-core-integration")) - implementation("tokens:stylessalute.compose") - implementation("tokens:stylessalute.view") - implementation(libs.sdds.uikit.compose) - implementation(libs.sdds.uikit) - - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.base.android.material) -} diff --git a/playground/sandbox-stylessalute-integration/gradle.properties b/playground/sandbox-stylessalute-integration/gradle.properties deleted file mode 100644 index a796dddfb7..0000000000 --- a/playground/sandbox-stylessalute-integration/gradle.properties +++ /dev/null @@ -1,5 +0,0 @@ -integration.compose.config-path=../tokens/stylessalute.compose/config-info-compose.json -integration.compose.package-name=com.sdds.playground.sandbox.stylessalute.integration.compose - -integration.view.config-path=../tokens/stylessalute.view/config-info-view-system.json -integration.view.package-name=com.sdds.playground.sandbox.stylessalute.integration.view \ No newline at end of file diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/StylesSaluteThemeWrapper.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/StylesSaluteThemeWrapper.kt deleted file mode 100644 index 2231216760..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/StylesSaluteThemeWrapper.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.stylessalute.theme.StylesSaluteTheme -import com.sdds.stylessalute.theme.darkStylesSaluteColors -import com.sdds.stylessalute.theme.darkStylesSaluteGradients -import com.sdds.stylessalute.theme.lightStylesSaluteColors -import com.sdds.stylessalute.theme.lightStylesSaluteGradients - -/** - * Позволяет обернуть Composable в тему - */ -@Composable -fun StylesSaluteThemeWrapper(content: @Composable () -> Unit) { - val isDark = isSystemInDarkTheme() - StylesSaluteTheme( - colors = if (isDark) darkStylesSaluteColors() else lightStylesSaluteColors(), - gradients = if (isDark) darkStylesSaluteGradients() else lightStylesSaluteGradients(), - ) { - content() - } -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionEndVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionEndVariationsCompose.kt deleted file mode 100644 index 6c27523390..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordion.AccordionClearActionEnd -import com.sdds.stylessalute.styles.accordion.H2 -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.accordion.H4 -import com.sdds.stylessalute.styles.accordion.H5 -import com.sdds.stylessalute.styles.accordion.L -import com.sdds.stylessalute.styles.accordion.M -import com.sdds.stylessalute.styles.accordion.S -import com.sdds.stylessalute.styles.accordion.Xs - -internal object StylesSaluteAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionEnd.Xs.style() }, - "S" to { AccordionClearActionEnd.S.style() }, - "M" to { AccordionClearActionEnd.M.style() }, - "L" to { AccordionClearActionEnd.L.style() }, - "H2" to { AccordionClearActionEnd.H2.style() }, - "H3" to { AccordionClearActionEnd.H3.style() }, - "H4" to { AccordionClearActionEnd.H4.style() }, - "H5" to { AccordionClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionStartVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionStartVariationsCompose.kt deleted file mode 100644 index 145149217c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordion.AccordionClearActionStart -import com.sdds.stylessalute.styles.accordion.H2 -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.accordion.H4 -import com.sdds.stylessalute.styles.accordion.H5 -import com.sdds.stylessalute.styles.accordion.L -import com.sdds.stylessalute.styles.accordion.M -import com.sdds.stylessalute.styles.accordion.S -import com.sdds.stylessalute.styles.accordion.Xs - -internal object StylesSaluteAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionClearActionStart.Xs.style() }, - "S" to { AccordionClearActionStart.S.style() }, - "M" to { AccordionClearActionStart.M.style() }, - "L" to { AccordionClearActionStart.L.style() }, - "H2" to { AccordionClearActionStart.H2.style() }, - "H3" to { AccordionClearActionStart.H3.style() }, - "H4" to { AccordionClearActionStart.H4.style() }, - "H5" to { AccordionClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionEndVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionEndVariationsCompose.kt deleted file mode 100644 index 277e09d38e..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs - -internal object StylesSaluteAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionEnd.Xs.style() }, - "S" to { AccordionItemClearActionEnd.S.style() }, - "M" to { AccordionItemClearActionEnd.M.style() }, - "L" to { AccordionItemClearActionEnd.L.style() }, - "H2" to { AccordionItemClearActionEnd.H2.style() }, - "H3" to { AccordionItemClearActionEnd.H3.style() }, - "H4" to { AccordionItemClearActionEnd.H4.style() }, - "H5" to { AccordionItemClearActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionStartVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionStartVariationsCompose.kt deleted file mode 100644 index d2684e940c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemClearActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs - -internal object StylesSaluteAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemClearActionStart.Xs.style() }, - "S" to { AccordionItemClearActionStart.S.style() }, - "M" to { AccordionItemClearActionStart.M.style() }, - "L" to { AccordionItemClearActionStart.L.style() }, - "H2" to { AccordionItemClearActionStart.H2.style() }, - "H3" to { AccordionItemClearActionStart.H3.style() }, - "H4" to { AccordionItemClearActionStart.H4.style() }, - "H5" to { AccordionItemClearActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionEndVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionEndVariationsCompose.kt deleted file mode 100644 index f442c3a415..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs - -internal object StylesSaluteAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionEnd.Xs.style() }, - "S" to { AccordionItemSolidActionEnd.S.style() }, - "M" to { AccordionItemSolidActionEnd.M.style() }, - "L" to { AccordionItemSolidActionEnd.L.style() }, - "H2" to { AccordionItemSolidActionEnd.H2.style() }, - "H3" to { AccordionItemSolidActionEnd.H3.style() }, - "H4" to { AccordionItemSolidActionEnd.H4.style() }, - "H5" to { AccordionItemSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionStartVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionStartVariationsCompose.kt deleted file mode 100644 index c9ee91a54e..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionItemSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs - -internal object StylesSaluteAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionItemStyle> = - mapOf( - "Xs" to { AccordionItemSolidActionStart.Xs.style() }, - "S" to { AccordionItemSolidActionStart.S.style() }, - "M" to { AccordionItemSolidActionStart.M.style() }, - "L" to { AccordionItemSolidActionStart.L.style() }, - "H2" to { AccordionItemSolidActionStart.H2.style() }, - "H3" to { AccordionItemSolidActionStart.H3.style() }, - "H4" to { AccordionItemSolidActionStart.H4.style() }, - "H5" to { AccordionItemSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionEndVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionEndVariationsCompose.kt deleted file mode 100644 index 571684ae1f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionEndVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordion.AccordionSolidActionEnd -import com.sdds.stylessalute.styles.accordion.H2 -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.accordion.H4 -import com.sdds.stylessalute.styles.accordion.H5 -import com.sdds.stylessalute.styles.accordion.L -import com.sdds.stylessalute.styles.accordion.M -import com.sdds.stylessalute.styles.accordion.S -import com.sdds.stylessalute.styles.accordion.Xs - -internal object StylesSaluteAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionEnd.Xs.style() }, - "S" to { AccordionSolidActionEnd.S.style() }, - "M" to { AccordionSolidActionEnd.M.style() }, - "L" to { AccordionSolidActionEnd.L.style() }, - "H2" to { AccordionSolidActionEnd.H2.style() }, - "H3" to { AccordionSolidActionEnd.H3.style() }, - "H4" to { AccordionSolidActionEnd.H4.style() }, - "H5" to { AccordionSolidActionEnd.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionStartVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionStartVariationsCompose.kt deleted file mode 100644 index abc3de0628..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAccordionSolidActionStartVariationsCompose.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.accordion.AccordionSolidActionStart -import com.sdds.stylessalute.styles.accordion.H2 -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.accordion.H4 -import com.sdds.stylessalute.styles.accordion.H5 -import com.sdds.stylessalute.styles.accordion.L -import com.sdds.stylessalute.styles.accordion.M -import com.sdds.stylessalute.styles.accordion.S -import com.sdds.stylessalute.styles.accordion.Xs - -internal object StylesSaluteAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { - override val variations: Map AccordionStyle> = - mapOf( - "Xs" to { AccordionSolidActionStart.Xs.style() }, - "S" to { AccordionSolidActionStart.S.style() }, - "M" to { AccordionSolidActionStart.M.style() }, - "L" to { AccordionSolidActionStart.L.style() }, - "H2" to { AccordionSolidActionStart.H2.style() }, - "H3" to { AccordionSolidActionStart.H3.style() }, - "H4" to { AccordionSolidActionStart.H4.style() }, - "H5" to { AccordionSolidActionStart.H5.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarGroupVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarGroupVariationsCompose.kt deleted file mode 100644 index 1fa7758999..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarGroupVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.avatargroup.AvatarGroup -import com.sdds.stylessalute.styles.avatargroup.S - -internal object StylesSaluteAvatarGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarGroupStyle> = - mapOf( - "S" to { AvatarGroup.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarVariationsCompose.kt deleted file mode 100644 index 539132ea45..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteAvatarVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.avatar.Avatar -import com.sdds.stylessalute.styles.avatar.L -import com.sdds.stylessalute.styles.avatar.M -import com.sdds.stylessalute.styles.avatar.S -import com.sdds.stylessalute.styles.avatar.Xxl - -internal object StylesSaluteAvatarVariationsCompose : ComposeStyleProvider() { - override val variations: Map AvatarStyle> = - mapOf( - "Xxl" to { Avatar.Xxl.style() }, - "L" to { Avatar.L.style() }, - "M" to { Avatar.M.style() }, - "S" to { Avatar.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeClearVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeClearVariationsCompose.kt deleted file mode 100644 index 79b9d9449d..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.badge.Accent -import com.sdds.stylessalute.styles.badge.BadgeClear -import com.sdds.stylessalute.styles.badge.Dark -import com.sdds.stylessalute.styles.badge.Default -import com.sdds.stylessalute.styles.badge.L -import com.sdds.stylessalute.styles.badge.Light -import com.sdds.stylessalute.styles.badge.M -import com.sdds.stylessalute.styles.badge.Negative -import com.sdds.stylessalute.styles.badge.Pilled -import com.sdds.stylessalute.styles.badge.Positive -import com.sdds.stylessalute.styles.badge.S -import com.sdds.stylessalute.styles.badge.Warning -import com.sdds.stylessalute.styles.badge.Xs - -internal object StylesSaluteBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeClear.L.Default.style() }, - "L.Accent" to { BadgeClear.L.Accent.style() }, - "L.Negative" to { BadgeClear.L.Negative.style() }, - "L.Positive" to { BadgeClear.L.Positive.style() }, - "L.Warning" to { BadgeClear.L.Warning.style() }, - "L.Dark" to { BadgeClear.L.Dark.style() }, - "L.Light" to { BadgeClear.L.Light.style() }, - "L.Pilled.Default" to { BadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeClear.L.Pilled.Light.style() }, - "M.Default" to { BadgeClear.M.Default.style() }, - "M.Accent" to { BadgeClear.M.Accent.style() }, - "M.Negative" to { BadgeClear.M.Negative.style() }, - "M.Positive" to { BadgeClear.M.Positive.style() }, - "M.Warning" to { BadgeClear.M.Warning.style() }, - "M.Dark" to { BadgeClear.M.Dark.style() }, - "M.Light" to { BadgeClear.M.Light.style() }, - "M.Pilled.Default" to { BadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeClear.M.Pilled.Light.style() }, - "S.Default" to { BadgeClear.S.Default.style() }, - "S.Accent" to { BadgeClear.S.Accent.style() }, - "S.Negative" to { BadgeClear.S.Negative.style() }, - "S.Positive" to { BadgeClear.S.Positive.style() }, - "S.Warning" to { BadgeClear.S.Warning.style() }, - "S.Dark" to { BadgeClear.S.Dark.style() }, - "S.Light" to { BadgeClear.S.Light.style() }, - "S.Pilled.Default" to { BadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeClear.Xs.Default.style() }, - "Xs.Accent" to { BadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { BadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { BadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { BadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { BadgeClear.Xs.Dark.style() }, - "Xs.Light" to { BadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeSolidVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeSolidVariationsCompose.kt deleted file mode 100644 index cc4364be0c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.badge.Accent -import com.sdds.stylessalute.styles.badge.BadgeSolid -import com.sdds.stylessalute.styles.badge.Dark -import com.sdds.stylessalute.styles.badge.Default -import com.sdds.stylessalute.styles.badge.L -import com.sdds.stylessalute.styles.badge.Light -import com.sdds.stylessalute.styles.badge.M -import com.sdds.stylessalute.styles.badge.Negative -import com.sdds.stylessalute.styles.badge.Pilled -import com.sdds.stylessalute.styles.badge.Positive -import com.sdds.stylessalute.styles.badge.S -import com.sdds.stylessalute.styles.badge.Warning -import com.sdds.stylessalute.styles.badge.Xs - -internal object StylesSaluteBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeSolid.L.Default.style() }, - "L.Accent" to { BadgeSolid.L.Accent.style() }, - "L.Negative" to { BadgeSolid.L.Negative.style() }, - "L.Positive" to { BadgeSolid.L.Positive.style() }, - "L.Warning" to { BadgeSolid.L.Warning.style() }, - "L.Dark" to { BadgeSolid.L.Dark.style() }, - "L.Light" to { BadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { BadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { BadgeSolid.M.Default.style() }, - "M.Accent" to { BadgeSolid.M.Accent.style() }, - "M.Negative" to { BadgeSolid.M.Negative.style() }, - "M.Positive" to { BadgeSolid.M.Positive.style() }, - "M.Warning" to { BadgeSolid.M.Warning.style() }, - "M.Dark" to { BadgeSolid.M.Dark.style() }, - "M.Light" to { BadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { BadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { BadgeSolid.S.Default.style() }, - "S.Accent" to { BadgeSolid.S.Accent.style() }, - "S.Negative" to { BadgeSolid.S.Negative.style() }, - "S.Positive" to { BadgeSolid.S.Positive.style() }, - "S.Warning" to { BadgeSolid.S.Warning.style() }, - "S.Dark" to { BadgeSolid.S.Dark.style() }, - "S.Light" to { BadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { BadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { BadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { BadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { BadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { BadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { BadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { BadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeTransparentVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeTransparentVariationsCompose.kt deleted file mode 100644 index d5ff8e1f38..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.badge.Accent -import com.sdds.stylessalute.styles.badge.BadgeTransparent -import com.sdds.stylessalute.styles.badge.Dark -import com.sdds.stylessalute.styles.badge.Default -import com.sdds.stylessalute.styles.badge.L -import com.sdds.stylessalute.styles.badge.Light -import com.sdds.stylessalute.styles.badge.M -import com.sdds.stylessalute.styles.badge.Negative -import com.sdds.stylessalute.styles.badge.Pilled -import com.sdds.stylessalute.styles.badge.Positive -import com.sdds.stylessalute.styles.badge.S -import com.sdds.stylessalute.styles.badge.Warning -import com.sdds.stylessalute.styles.badge.Xs - -internal object StylesSaluteBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { BadgeTransparent.L.Default.style() }, - "L.Accent" to { BadgeTransparent.L.Accent.style() }, - "L.Negative" to { BadgeTransparent.L.Negative.style() }, - "L.Positive" to { BadgeTransparent.L.Positive.style() }, - "L.Warning" to { BadgeTransparent.L.Warning.style() }, - "L.Dark" to { BadgeTransparent.L.Dark.style() }, - "L.Light" to { BadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { BadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { BadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { BadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { BadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { BadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { BadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { BadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { BadgeTransparent.M.Default.style() }, - "M.Accent" to { BadgeTransparent.M.Accent.style() }, - "M.Negative" to { BadgeTransparent.M.Negative.style() }, - "M.Positive" to { BadgeTransparent.M.Positive.style() }, - "M.Warning" to { BadgeTransparent.M.Warning.style() }, - "M.Dark" to { BadgeTransparent.M.Dark.style() }, - "M.Light" to { BadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { BadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { BadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { BadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { BadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { BadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { BadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { BadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { BadgeTransparent.S.Default.style() }, - "S.Accent" to { BadgeTransparent.S.Accent.style() }, - "S.Negative" to { BadgeTransparent.S.Negative.style() }, - "S.Positive" to { BadgeTransparent.S.Positive.style() }, - "S.Warning" to { BadgeTransparent.S.Warning.style() }, - "S.Dark" to { BadgeTransparent.S.Dark.style() }, - "S.Light" to { BadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { BadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { BadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { BadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { BadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { BadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { BadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { BadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { BadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { BadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { BadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { BadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { BadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { BadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { BadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { BadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { BadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { BadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { BadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { BadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { BadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { BadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonGroupVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonGroupVariationsCompose.kt deleted file mode 100644 index be40a7f998..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.buttongroup.BasicButtonGroup -import com.sdds.stylessalute.styles.buttongroup.Default -import com.sdds.stylessalute.styles.buttongroup.Dense -import com.sdds.stylessalute.styles.buttongroup.L -import com.sdds.stylessalute.styles.buttongroup.M -import com.sdds.stylessalute.styles.buttongroup.NoGap -import com.sdds.stylessalute.styles.buttongroup.S -import com.sdds.stylessalute.styles.buttongroup.Segmented -import com.sdds.stylessalute.styles.buttongroup.Wide -import com.sdds.stylessalute.styles.buttongroup.Xs - -internal object StylesSaluteBasicButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { BasicButtonGroup.Xs.style() }, - "Xs.Wide" to { BasicButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { BasicButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Segmented" to { BasicButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { BasicButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { BasicButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Segmented" to { BasicButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { BasicButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { BasicButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Segmented" to { BasicButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { BasicButtonGroup.S.style() }, - "S.Wide" to { BasicButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { BasicButtonGroup.S.Wide.Default.style() }, - "S.Wide.Segmented" to { BasicButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { BasicButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { BasicButtonGroup.S.Dense.Default.style() }, - "S.Dense.Segmented" to { BasicButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { BasicButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { BasicButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Segmented" to { BasicButtonGroup.S.NoGap.Segmented.style() }, - "M" to { BasicButtonGroup.M.style() }, - "M.Wide" to { BasicButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { BasicButtonGroup.M.Wide.Default.style() }, - "M.Wide.Segmented" to { BasicButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { BasicButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { BasicButtonGroup.M.Dense.Default.style() }, - "M.Dense.Segmented" to { BasicButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { BasicButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { BasicButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Segmented" to { BasicButtonGroup.M.NoGap.Segmented.style() }, - "L" to { BasicButtonGroup.L.style() }, - "L.Wide" to { BasicButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { BasicButtonGroup.L.Wide.Default.style() }, - "L.Wide.Segmented" to { BasicButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { BasicButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { BasicButtonGroup.L.Dense.Default.style() }, - "L.Dense.Segmented" to { BasicButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { BasicButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { BasicButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Segmented" to { BasicButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonVariationsCompose.kt deleted file mode 100644 index 9d5bf9331a..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteBasicButtonVariationsCompose.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.basicbutton.Accent -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Black -import com.sdds.stylessalute.styles.basicbutton.Clear -import com.sdds.stylessalute.styles.basicbutton.Dark -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.L -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.basicbutton.Negative -import com.sdds.stylessalute.styles.basicbutton.Positive -import com.sdds.stylessalute.styles.basicbutton.S -import com.sdds.stylessalute.styles.basicbutton.Secondary -import com.sdds.stylessalute.styles.basicbutton.Warning -import com.sdds.stylessalute.styles.basicbutton.White -import com.sdds.stylessalute.styles.basicbutton.Xs - -internal object StylesSaluteBasicButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { BasicButton.L.Default.style() }, - "L.Secondary" to { BasicButton.L.Secondary.style() }, - "L.Accent" to { BasicButton.L.Accent.style() }, - "L.Positive" to { BasicButton.L.Positive.style() }, - "L.Negative" to { BasicButton.L.Negative.style() }, - "L.Warning" to { BasicButton.L.Warning.style() }, - "L.Clear" to { BasicButton.L.Clear.style() }, - "L.Dark" to { BasicButton.L.Dark.style() }, - "L.Black" to { BasicButton.L.Black.style() }, - "L.White" to { BasicButton.L.White.style() }, - "M.Default" to { BasicButton.M.Default.style() }, - "M.Secondary" to { BasicButton.M.Secondary.style() }, - "M.Accent" to { BasicButton.M.Accent.style() }, - "M.Positive" to { BasicButton.M.Positive.style() }, - "M.Negative" to { BasicButton.M.Negative.style() }, - "M.Warning" to { BasicButton.M.Warning.style() }, - "M.Clear" to { BasicButton.M.Clear.style() }, - "M.Dark" to { BasicButton.M.Dark.style() }, - "M.Black" to { BasicButton.M.Black.style() }, - "M.White" to { BasicButton.M.White.style() }, - "S.Default" to { BasicButton.S.Default.style() }, - "S.Secondary" to { BasicButton.S.Secondary.style() }, - "S.Accent" to { BasicButton.S.Accent.style() }, - "S.Positive" to { BasicButton.S.Positive.style() }, - "S.Negative" to { BasicButton.S.Negative.style() }, - "S.Warning" to { BasicButton.S.Warning.style() }, - "S.Clear" to { BasicButton.S.Clear.style() }, - "S.Dark" to { BasicButton.S.Dark.style() }, - "S.Black" to { BasicButton.S.Black.style() }, - "S.White" to { BasicButton.S.White.style() }, - "Xs.Default" to { BasicButton.Xs.Default.style() }, - "Xs.Secondary" to { BasicButton.Xs.Secondary.style() }, - "Xs.Accent" to { BasicButton.Xs.Accent.style() }, - "Xs.Positive" to { BasicButton.Xs.Positive.style() }, - "Xs.Negative" to { BasicButton.Xs.Negative.style() }, - "Xs.Warning" to { BasicButton.Xs.Warning.style() }, - "Xs.Clear" to { BasicButton.Xs.Clear.style() }, - "Xs.Dark" to { BasicButton.Xs.Dark.style() }, - "Xs.Black" to { BasicButton.Xs.Black.style() }, - "Xs.White" to { BasicButton.Xs.White.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCellVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCellVariationsCompose.kt deleted file mode 100644 index 00d3541371..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCellVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.cell.Cell -import com.sdds.stylessalute.styles.cell.L -import com.sdds.stylessalute.styles.cell.M -import com.sdds.stylessalute.styles.cell.S -import com.sdds.stylessalute.styles.cell.Xs - -internal object StylesSaluteCellVariationsCompose : ComposeStyleProvider() { - override val variations: Map CellStyle> = - mapOf( - "L" to { Cell.L.style() }, - "M" to { Cell.M.style() }, - "S" to { Cell.S.style() }, - "Xs" to { Cell.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxGroupVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxGroupVariationsCompose.kt deleted file mode 100644 index 57f4f99005..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.checkboxgroup.CheckBoxGroup -import com.sdds.stylessalute.styles.checkboxgroup.M -import com.sdds.stylessalute.styles.checkboxgroup.S - -internal object StylesSaluteCheckBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxGroupStyle> = - mapOf( - "M" to { CheckBoxGroup.M.style() }, - "S" to { CheckBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxVariationsCompose.kt deleted file mode 100644 index 8755b14777..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCheckBoxVariationsCompose.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.checkbox.CheckBox -import com.sdds.stylessalute.styles.checkbox.Default -import com.sdds.stylessalute.styles.checkbox.M -import com.sdds.stylessalute.styles.checkbox.S - -internal object StylesSaluteCheckBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map CheckBoxStyle> = - mapOf( - "M.Default" to { CheckBox.M.Default.style() }, - "S.Default" to { CheckBox.S.Default.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupDenseVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupDenseVariationsCompose.kt deleted file mode 100644 index 3f3dfb2a91..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chipgroup.Accent -import com.sdds.stylessalute.styles.chipgroup.ChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.Pilled -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs - -internal object StylesSaluteChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupDense.L.Default.style() }, - "L.Accent" to { ChipGroupDense.L.Accent.style() }, - "L.Secondary" to { ChipGroupDense.L.Secondary.style() }, - "L.Pilled.Default" to { ChipGroupDense.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupDense.L.Pilled.Accent.style() }, - "L.Pilled.Secondary" to { ChipGroupDense.L.Pilled.Secondary.style() }, - "M.Default" to { ChipGroupDense.M.Default.style() }, - "M.Accent" to { ChipGroupDense.M.Accent.style() }, - "M.Secondary" to { ChipGroupDense.M.Secondary.style() }, - "M.Pilled.Default" to { ChipGroupDense.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupDense.M.Pilled.Accent.style() }, - "M.Pilled.Secondary" to { ChipGroupDense.M.Pilled.Secondary.style() }, - "S.Default" to { ChipGroupDense.S.Default.style() }, - "S.Accent" to { ChipGroupDense.S.Accent.style() }, - "S.Secondary" to { ChipGroupDense.S.Secondary.style() }, - "S.Pilled.Default" to { ChipGroupDense.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupDense.S.Pilled.Accent.style() }, - "S.Pilled.Secondary" to { ChipGroupDense.S.Pilled.Secondary.style() }, - "Xs.Default" to { ChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupDense.Xs.Accent.style() }, - "Xs.Secondary" to { ChipGroupDense.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { ChipGroupDense.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupDense.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Secondary" to { ChipGroupDense.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupWideVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupWideVariationsCompose.kt deleted file mode 100644 index 15b07b56a0..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chipgroup.Accent -import com.sdds.stylessalute.styles.chipgroup.ChipGroupWide -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.Pilled -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs - -internal object StylesSaluteChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { ChipGroupWide.L.Default.style() }, - "L.Accent" to { ChipGroupWide.L.Accent.style() }, - "L.Secondary" to { ChipGroupWide.L.Secondary.style() }, - "L.Pilled.Default" to { ChipGroupWide.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { ChipGroupWide.L.Pilled.Accent.style() }, - "L.Pilled.Secondary" to { ChipGroupWide.L.Pilled.Secondary.style() }, - "M.Default" to { ChipGroupWide.M.Default.style() }, - "M.Accent" to { ChipGroupWide.M.Accent.style() }, - "M.Secondary" to { ChipGroupWide.M.Secondary.style() }, - "M.Pilled.Default" to { ChipGroupWide.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { ChipGroupWide.M.Pilled.Accent.style() }, - "M.Pilled.Secondary" to { ChipGroupWide.M.Pilled.Secondary.style() }, - "S.Default" to { ChipGroupWide.S.Default.style() }, - "S.Accent" to { ChipGroupWide.S.Accent.style() }, - "S.Secondary" to { ChipGroupWide.S.Secondary.style() }, - "S.Pilled.Default" to { ChipGroupWide.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { ChipGroupWide.S.Pilled.Accent.style() }, - "S.Pilled.Secondary" to { ChipGroupWide.S.Pilled.Secondary.style() }, - "Xs.Default" to { ChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { ChipGroupWide.Xs.Accent.style() }, - "Xs.Secondary" to { ChipGroupWide.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { ChipGroupWide.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { ChipGroupWide.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Secondary" to { ChipGroupWide.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipVariationsCompose.kt deleted file mode 100644 index c0bc711f1c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteChipVariationsCompose.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Chip -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.Pilled -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs - -internal object StylesSaluteChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { Chip.L.Default.style() }, - "L.Accent" to { Chip.L.Accent.style() }, - "L.Secondary" to { Chip.L.Secondary.style() }, - "L.Pilled.Default" to { Chip.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { Chip.L.Pilled.Accent.style() }, - "L.Pilled.Secondary" to { Chip.L.Pilled.Secondary.style() }, - "M.Default" to { Chip.M.Default.style() }, - "M.Accent" to { Chip.M.Accent.style() }, - "M.Secondary" to { Chip.M.Secondary.style() }, - "M.Pilled.Default" to { Chip.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { Chip.M.Pilled.Accent.style() }, - "M.Pilled.Secondary" to { Chip.M.Pilled.Secondary.style() }, - "S.Default" to { Chip.S.Default.style() }, - "S.Accent" to { Chip.S.Accent.style() }, - "S.Secondary" to { Chip.S.Secondary.style() }, - "S.Pilled.Default" to { Chip.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { Chip.S.Pilled.Accent.style() }, - "S.Pilled.Secondary" to { Chip.S.Pilled.Secondary.style() }, - "Xs.Default" to { Chip.Xs.Default.style() }, - "Xs.Accent" to { Chip.Xs.Accent.style() }, - "Xs.Secondary" to { Chip.Xs.Secondary.style() }, - "Xs.Pilled.Default" to { Chip.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { Chip.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Secondary" to { Chip.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCodeInputVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCodeInputVariationsCompose.kt deleted file mode 100644 index 6395ec9b2f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCodeInputVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.codeinput.CodeInput -import com.sdds.stylessalute.styles.codeinput.L -import com.sdds.stylessalute.styles.codeinput.M -import com.sdds.stylessalute.styles.codeinput.S - -internal object StylesSaluteCodeInputVariationsCompose : ComposeStyleProvider() { - override val variations: Map CodeInputStyle> = - mapOf( - "S" to { CodeInput.S.style() }, - "M" to { CodeInput.M.style() }, - "L" to { CodeInput.L.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteComposeComponents.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteComposeComponents.kt deleted file mode 100644 index 910695a213..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteComposeComponents.kt +++ /dev/null @@ -1,281 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent - -/** - * Компоненты - */ -object StylesSaluteComposeComponents : ComponentsProviderCompose() { - - override val generated: Map> = - listOf( - ComposeComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to StylesSaluteAvatarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to StylesSaluteAvatarGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Badge, - mapOf( - "BadgeClear" to StylesSaluteBadgeClearVariationsCompose, - "BadgeSolid" to StylesSaluteBadgeSolidVariationsCompose, - "BadgeTransparent" to StylesSaluteBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeClear" to StylesSaluteIconBadgeClearVariationsCompose, - "IconBadgeSolid" to StylesSaluteIconBadgeSolidVariationsCompose, - "IconBadgeTransparent" to StylesSaluteIconBadgeTransparentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to StylesSaluteBasicButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to StylesSaluteIconButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.LinkButton, - mapOf( - "LinkButton" to StylesSaluteLinkButtonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.BottomSheet, - mapOf( - "ModalBottomSheet" to StylesSaluteModalBottomSheetVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Cell, - mapOf( - "Cell" to StylesSaluteCellVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to StylesSaluteCheckBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CheckBoxGroup, - mapOf( - "CheckBoxGroup" to StylesSaluteCheckBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Chip, - mapOf( - "Chip" to StylesSaluteChipVariationsCompose, - "EmbeddedChip" to StylesSaluteEmbeddedChipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to StylesSaluteChipGroupDenseVariationsCompose, - "ChipGroupWide" to StylesSaluteChipGroupWideVariationsCompose, - "EmbeddedChipGroupDense" to StylesSaluteEmbeddedChipGroupDenseVariationsCompose, - "EmbeddedChipGroupWide" to StylesSaluteEmbeddedChipGroupWideVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Counter, - mapOf( - "Counter" to StylesSaluteCounterVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Divider, - mapOf( - "Divider" to StylesSaluteDividerVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to StylesSaluteIndicatorVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ProgressBar, - mapOf( - "ProgressBar" to StylesSaluteProgressBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Popover, - mapOf( - "Popover" to StylesSalutePopoverVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to StylesSaluteRadioBoxVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to StylesSaluteRadioBoxGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Segment, - mapOf( - "Segment" to StylesSaluteSegmentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.SegmentItem, - mapOf( - "SegmentItem" to StylesSaluteSegmentItemVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Switch, - mapOf( - "Switch" to StylesSaluteSwitchVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextField, - mapOf( - "TextField" to StylesSaluteTextFieldVariationsCompose, - "TextFieldClear" to StylesSaluteTextFieldClearVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextArea, - mapOf( - "TextArea" to StylesSaluteTextAreaVariationsCompose, - "TextAreaClear" to StylesSaluteTextAreaClearVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to StylesSaluteTooltipVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Toast, - mapOf( - "Toast" to StylesSaluteToastVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Modal, - mapOf( - "Modal" to StylesSaluteModalVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to StylesSaluteRectSkeletonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Notification, - mapOf( - "NotificationCompact" to StylesSaluteNotificationCompactVariationsCompose, - "NotificationLoose" to StylesSaluteNotificationLooseVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.NotificationContent, - mapOf( - "NotificationContent" to StylesSaluteNotificationContentVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.List, - mapOf( - "ListNormal" to StylesSaluteListNormalVariationsCompose, - "ListTight" to StylesSaluteListTightVariationsCompose, - "DropdownMenuListNormal" to StylesSaluteDropdownMenuListNormalVariationsCompose, - "DropdownMenuListTight" to StylesSaluteDropdownMenuListTightVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ListItem, - mapOf( - "ListItemNormal" to StylesSaluteListItemNormalVariationsCompose, - "ListItemTight" to StylesSaluteListItemTightVariationsCompose, - "DropdownMenuItemNormal" to StylesSaluteDropdownMenuItemNormalVariationsCompose, - "DropdownMenuItemTight" to StylesSaluteDropdownMenuItemTightVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeleton" to StylesSaluteTextSkeletonVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.DropdownMenu, - mapOf( - "DropdownMenuTight" to StylesSaluteDropdownMenuTightVariationsCompose, - "DropdownMenuNormal" to StylesSaluteDropdownMenuNormalVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.AccordionItem, - mapOf( - "AccordionItemSolidActionStart" to StylesSaluteAccordionItemSolidActionStartVariationsCompose, - "AccordionItemSolidActionEnd" to StylesSaluteAccordionItemSolidActionEndVariationsCompose, - "AccordionItemClearActionStart" to StylesSaluteAccordionItemClearActionStartVariationsCompose, - "AccordionItemClearActionEnd" to StylesSaluteAccordionItemClearActionEndVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.Accordion, - mapOf( - "AccordionSolidActionStart" to StylesSaluteAccordionSolidActionStartVariationsCompose, - "AccordionSolidActionEnd" to StylesSaluteAccordionSolidActionEndVariationsCompose, - "AccordionClearActionStart" to StylesSaluteAccordionClearActionStartVariationsCompose, - "AccordionClearActionEnd" to StylesSaluteAccordionClearActionEndVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ScrollBar, - mapOf( - "ScrollBar" to StylesSaluteScrollBarVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to StylesSaluteBasicButtonGroupVariationsCompose, - "IconButtonGroup" to StylesSaluteIconButtonGroupVariationsCompose, - ), - ), - ComposeComponent( - ComponentKey.CodeInput, - mapOf( - "CodeInput" to StylesSaluteCodeInputVariationsCompose, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCounterVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCounterVariationsCompose.kt deleted file mode 100644 index 9171a66f89..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteCounterVariationsCompose.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.counter.Accent -import com.sdds.stylessalute.styles.counter.Black -import com.sdds.stylessalute.styles.counter.Counter -import com.sdds.stylessalute.styles.counter.Default -import com.sdds.stylessalute.styles.counter.L -import com.sdds.stylessalute.styles.counter.M -import com.sdds.stylessalute.styles.counter.Negative -import com.sdds.stylessalute.styles.counter.Positive -import com.sdds.stylessalute.styles.counter.S -import com.sdds.stylessalute.styles.counter.Warning -import com.sdds.stylessalute.styles.counter.White -import com.sdds.stylessalute.styles.counter.Xs -import com.sdds.stylessalute.styles.counter.Xxs - -internal object StylesSaluteCounterVariationsCompose : ComposeStyleProvider() { - override val variations: Map CounterStyle> = - mapOf( - "L.Default" to { Counter.L.Default.style() }, - "L.Accent" to { Counter.L.Accent.style() }, - "L.Positive" to { Counter.L.Positive.style() }, - "L.Warning" to { Counter.L.Warning.style() }, - "L.Negative" to { Counter.L.Negative.style() }, - "L.Black" to { Counter.L.Black.style() }, - "L.White" to { Counter.L.White.style() }, - "M.Default" to { Counter.M.Default.style() }, - "M.Accent" to { Counter.M.Accent.style() }, - "M.Positive" to { Counter.M.Positive.style() }, - "M.Warning" to { Counter.M.Warning.style() }, - "M.Negative" to { Counter.M.Negative.style() }, - "M.Black" to { Counter.M.Black.style() }, - "M.White" to { Counter.M.White.style() }, - "S.Default" to { Counter.S.Default.style() }, - "S.Accent" to { Counter.S.Accent.style() }, - "S.Positive" to { Counter.S.Positive.style() }, - "S.Warning" to { Counter.S.Warning.style() }, - "S.Negative" to { Counter.S.Negative.style() }, - "S.Black" to { Counter.S.Black.style() }, - "S.White" to { Counter.S.White.style() }, - "Xs.Default" to { Counter.Xs.Default.style() }, - "Xs.Accent" to { Counter.Xs.Accent.style() }, - "Xs.Positive" to { Counter.Xs.Positive.style() }, - "Xs.Warning" to { Counter.Xs.Warning.style() }, - "Xs.Negative" to { Counter.Xs.Negative.style() }, - "Xs.Black" to { Counter.Xs.Black.style() }, - "Xs.White" to { Counter.Xs.White.style() }, - "Xxs.Default" to { Counter.Xxs.Default.style() }, - "Xxs.Accent" to { Counter.Xxs.Accent.style() }, - "Xxs.Positive" to { Counter.Xxs.Positive.style() }, - "Xxs.Warning" to { Counter.Xxs.Warning.style() }, - "Xxs.Negative" to { Counter.Xxs.Negative.style() }, - "Xxs.Black" to { Counter.Xxs.Black.style() }, - "Xxs.White" to { Counter.Xxs.White.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDividerVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDividerVariationsCompose.kt deleted file mode 100644 index e52541b553..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDividerVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider - -internal object StylesSaluteDividerVariationsCompose : ComposeStyleProvider() { - override val variations: Map DividerStyle> = - mapOf( - "Default" to { Divider.Default.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemNormalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemNormalVariationsCompose.kt deleted file mode 100644 index f1de7d9893..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemNormalVariationsCompose.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.listitem.Default -import com.sdds.stylessalute.styles.listitem.DropdownMenuItemNormal -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.Negative -import com.sdds.stylessalute.styles.listitem.Positive -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xs - -internal object StylesSaluteDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "L.Default" to { DropdownMenuItemNormal.L.Default.style() }, - "L.Positive" to { DropdownMenuItemNormal.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemNormal.L.Negative.style() }, - "M.Default" to { DropdownMenuItemNormal.M.Default.style() }, - "M.Positive" to { DropdownMenuItemNormal.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemNormal.M.Negative.style() }, - "S.Default" to { DropdownMenuItemNormal.S.Default.style() }, - "S.Positive" to { DropdownMenuItemNormal.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemNormal.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemNormal.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemNormal.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemNormal.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemTightVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemTightVariationsCompose.kt deleted file mode 100644 index 3d9801b32c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuItemTightVariationsCompose.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.listitem.Default -import com.sdds.stylessalute.styles.listitem.DropdownMenuItemTight -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.Negative -import com.sdds.stylessalute.styles.listitem.Positive -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xs - -internal object StylesSaluteDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "L.Default" to { DropdownMenuItemTight.L.Default.style() }, - "L.Positive" to { DropdownMenuItemTight.L.Positive.style() }, - "L.Negative" to { DropdownMenuItemTight.L.Negative.style() }, - "M.Default" to { DropdownMenuItemTight.M.Default.style() }, - "M.Positive" to { DropdownMenuItemTight.M.Positive.style() }, - "M.Negative" to { DropdownMenuItemTight.M.Negative.style() }, - "S.Default" to { DropdownMenuItemTight.S.Default.style() }, - "S.Positive" to { DropdownMenuItemTight.S.Positive.style() }, - "S.Negative" to { DropdownMenuItemTight.S.Negative.style() }, - "Xs.Default" to { DropdownMenuItemTight.Xs.Default.style() }, - "Xs.Positive" to { DropdownMenuItemTight.Xs.Positive.style() }, - "Xs.Negative" to { DropdownMenuItemTight.Xs.Negative.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListNormalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListNormalVariationsCompose.kt deleted file mode 100644 index 75e2cf1c8c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListNormalVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.list.DropdownMenuListNormal -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xs - -internal object StylesSaluteDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "L" to { DropdownMenuListNormal.L.style() }, - "M" to { DropdownMenuListNormal.M.style() }, - "S" to { DropdownMenuListNormal.S.style() }, - "Xs" to { DropdownMenuListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListTightVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListTightVariationsCompose.kt deleted file mode 100644 index bd53ff99bd..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuListTightVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.list.DropdownMenuListTight -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xs - -internal object StylesSaluteDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "L" to { DropdownMenuListTight.L.style() }, - "M" to { DropdownMenuListTight.M.style() }, - "S" to { DropdownMenuListTight.S.style() }, - "Xs" to { DropdownMenuListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuNormalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuNormalVariationsCompose.kt deleted file mode 100644 index e2471fe627..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuNormalVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.stylessalute.styles.dropdownmenu.L -import com.sdds.stylessalute.styles.dropdownmenu.M -import com.sdds.stylessalute.styles.dropdownmenu.S -import com.sdds.stylessalute.styles.dropdownmenu.Xs - -internal object StylesSaluteDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "L" to { DropdownMenuNormal.L.style() }, - "M" to { DropdownMenuNormal.M.style() }, - "S" to { DropdownMenuNormal.S.style() }, - "Xs" to { DropdownMenuNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuTightVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuTightVariationsCompose.kt deleted file mode 100644 index 5c250ba151..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteDropdownMenuTightVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.dropdownmenu.DropdownMenuTight -import com.sdds.stylessalute.styles.dropdownmenu.L -import com.sdds.stylessalute.styles.dropdownmenu.M -import com.sdds.stylessalute.styles.dropdownmenu.S -import com.sdds.stylessalute.styles.dropdownmenu.Xs - -internal object StylesSaluteDropdownMenuTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map DropdownMenuStyle> = - mapOf( - "L" to { DropdownMenuTight.L.style() }, - "M" to { DropdownMenuTight.M.style() }, - "S" to { DropdownMenuTight.S.style() }, - "Xs" to { DropdownMenuTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupDenseVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupDenseVariationsCompose.kt deleted file mode 100644 index ab35cb65f5..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupDenseVariationsCompose.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chipgroup.Accent -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs - -internal object StylesSaluteEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { EmbeddedChipGroupDense.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupDense.L.Accent.style() }, - "L.Secondary" to { EmbeddedChipGroupDense.L.Secondary.style() }, - "M.Default" to { EmbeddedChipGroupDense.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupDense.M.Accent.style() }, - "M.Secondary" to { EmbeddedChipGroupDense.M.Secondary.style() }, - "S.Default" to { EmbeddedChipGroupDense.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupDense.S.Accent.style() }, - "S.Secondary" to { EmbeddedChipGroupDense.S.Secondary.style() }, - "Xs.Default" to { EmbeddedChipGroupDense.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupDense.Xs.Accent.style() }, - "Xs.Secondary" to { EmbeddedChipGroupDense.Xs.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupWideVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupWideVariationsCompose.kt deleted file mode 100644 index 9f5adaabcf..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipGroupWideVariationsCompose.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chipgroup.Accent -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupWide -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs - -internal object StylesSaluteEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipGroupStyle> = - mapOf( - "L.Default" to { EmbeddedChipGroupWide.L.Default.style() }, - "L.Accent" to { EmbeddedChipGroupWide.L.Accent.style() }, - "L.Secondary" to { EmbeddedChipGroupWide.L.Secondary.style() }, - "M.Default" to { EmbeddedChipGroupWide.M.Default.style() }, - "M.Accent" to { EmbeddedChipGroupWide.M.Accent.style() }, - "M.Secondary" to { EmbeddedChipGroupWide.M.Secondary.style() }, - "S.Default" to { EmbeddedChipGroupWide.S.Default.style() }, - "S.Accent" to { EmbeddedChipGroupWide.S.Accent.style() }, - "S.Secondary" to { EmbeddedChipGroupWide.S.Secondary.style() }, - "Xs.Default" to { EmbeddedChipGroupWide.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChipGroupWide.Xs.Accent.style() }, - "Xs.Secondary" to { EmbeddedChipGroupWide.Xs.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipVariationsCompose.kt deleted file mode 100644 index 6b4c14d1c3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteEmbeddedChipVariationsCompose.kt +++ /dev/null @@ -1,32 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.EmbeddedChip -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs - -internal object StylesSaluteEmbeddedChipVariationsCompose : ComposeStyleProvider() { - override val variations: Map ChipStyle> = - mapOf( - "L.Default" to { EmbeddedChip.L.Default.style() }, - "L.Accent" to { EmbeddedChip.L.Accent.style() }, - "L.Secondary" to { EmbeddedChip.L.Secondary.style() }, - "M.Default" to { EmbeddedChip.M.Default.style() }, - "M.Accent" to { EmbeddedChip.M.Accent.style() }, - "M.Secondary" to { EmbeddedChip.M.Secondary.style() }, - "S.Default" to { EmbeddedChip.S.Default.style() }, - "S.Accent" to { EmbeddedChip.S.Accent.style() }, - "S.Secondary" to { EmbeddedChip.S.Secondary.style() }, - "Xs.Default" to { EmbeddedChip.Xs.Default.style() }, - "Xs.Accent" to { EmbeddedChip.Xs.Accent.style() }, - "Xs.Secondary" to { EmbeddedChip.Xs.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeClearVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeClearVariationsCompose.kt deleted file mode 100644 index 745a063a03..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeClearVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.iconbadge.Accent -import com.sdds.stylessalute.styles.iconbadge.Dark -import com.sdds.stylessalute.styles.iconbadge.Default -import com.sdds.stylessalute.styles.iconbadge.IconBadgeClear -import com.sdds.stylessalute.styles.iconbadge.L -import com.sdds.stylessalute.styles.iconbadge.Light -import com.sdds.stylessalute.styles.iconbadge.M -import com.sdds.stylessalute.styles.iconbadge.Negative -import com.sdds.stylessalute.styles.iconbadge.Pilled -import com.sdds.stylessalute.styles.iconbadge.Positive -import com.sdds.stylessalute.styles.iconbadge.S -import com.sdds.stylessalute.styles.iconbadge.Warning -import com.sdds.stylessalute.styles.iconbadge.Xs - -internal object StylesSaluteIconBadgeClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeClear.L.Default.style() }, - "L.Accent" to { IconBadgeClear.L.Accent.style() }, - "L.Negative" to { IconBadgeClear.L.Negative.style() }, - "L.Positive" to { IconBadgeClear.L.Positive.style() }, - "L.Warning" to { IconBadgeClear.L.Warning.style() }, - "L.Dark" to { IconBadgeClear.L.Dark.style() }, - "L.Light" to { IconBadgeClear.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeClear.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeClear.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeClear.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeClear.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeClear.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeClear.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeClear.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeClear.M.Default.style() }, - "M.Accent" to { IconBadgeClear.M.Accent.style() }, - "M.Negative" to { IconBadgeClear.M.Negative.style() }, - "M.Positive" to { IconBadgeClear.M.Positive.style() }, - "M.Warning" to { IconBadgeClear.M.Warning.style() }, - "M.Dark" to { IconBadgeClear.M.Dark.style() }, - "M.Light" to { IconBadgeClear.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeClear.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeClear.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeClear.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeClear.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeClear.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeClear.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeClear.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeClear.S.Default.style() }, - "S.Accent" to { IconBadgeClear.S.Accent.style() }, - "S.Negative" to { IconBadgeClear.S.Negative.style() }, - "S.Positive" to { IconBadgeClear.S.Positive.style() }, - "S.Warning" to { IconBadgeClear.S.Warning.style() }, - "S.Dark" to { IconBadgeClear.S.Dark.style() }, - "S.Light" to { IconBadgeClear.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeClear.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeClear.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeClear.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeClear.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeClear.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeClear.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeClear.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeClear.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeClear.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeClear.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeClear.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeClear.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeClear.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeClear.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeClear.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeClear.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeClear.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeClear.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeClear.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeClear.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeClear.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeSolidVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeSolidVariationsCompose.kt deleted file mode 100644 index efd9da7bb2..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeSolidVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.iconbadge.Accent -import com.sdds.stylessalute.styles.iconbadge.Dark -import com.sdds.stylessalute.styles.iconbadge.Default -import com.sdds.stylessalute.styles.iconbadge.IconBadgeSolid -import com.sdds.stylessalute.styles.iconbadge.L -import com.sdds.stylessalute.styles.iconbadge.Light -import com.sdds.stylessalute.styles.iconbadge.M -import com.sdds.stylessalute.styles.iconbadge.Negative -import com.sdds.stylessalute.styles.iconbadge.Pilled -import com.sdds.stylessalute.styles.iconbadge.Positive -import com.sdds.stylessalute.styles.iconbadge.S -import com.sdds.stylessalute.styles.iconbadge.Warning -import com.sdds.stylessalute.styles.iconbadge.Xs - -internal object StylesSaluteIconBadgeSolidVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeSolid.L.Default.style() }, - "L.Accent" to { IconBadgeSolid.L.Accent.style() }, - "L.Negative" to { IconBadgeSolid.L.Negative.style() }, - "L.Positive" to { IconBadgeSolid.L.Positive.style() }, - "L.Warning" to { IconBadgeSolid.L.Warning.style() }, - "L.Dark" to { IconBadgeSolid.L.Dark.style() }, - "L.Light" to { IconBadgeSolid.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeSolid.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeSolid.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeSolid.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeSolid.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeSolid.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeSolid.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeSolid.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeSolid.M.Default.style() }, - "M.Accent" to { IconBadgeSolid.M.Accent.style() }, - "M.Negative" to { IconBadgeSolid.M.Negative.style() }, - "M.Positive" to { IconBadgeSolid.M.Positive.style() }, - "M.Warning" to { IconBadgeSolid.M.Warning.style() }, - "M.Dark" to { IconBadgeSolid.M.Dark.style() }, - "M.Light" to { IconBadgeSolid.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeSolid.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeSolid.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeSolid.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeSolid.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeSolid.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeSolid.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeSolid.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeSolid.S.Default.style() }, - "S.Accent" to { IconBadgeSolid.S.Accent.style() }, - "S.Negative" to { IconBadgeSolid.S.Negative.style() }, - "S.Positive" to { IconBadgeSolid.S.Positive.style() }, - "S.Warning" to { IconBadgeSolid.S.Warning.style() }, - "S.Dark" to { IconBadgeSolid.S.Dark.style() }, - "S.Light" to { IconBadgeSolid.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeSolid.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeSolid.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeSolid.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeSolid.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeSolid.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeSolid.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeSolid.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeSolid.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeSolid.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeSolid.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeSolid.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeSolid.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeSolid.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeSolid.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeSolid.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeSolid.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeSolid.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeSolid.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeSolid.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeSolid.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeSolid.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeTransparentVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeTransparentVariationsCompose.kt deleted file mode 100644 index 554c8bfd54..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconBadgeTransparentVariationsCompose.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.iconbadge.Accent -import com.sdds.stylessalute.styles.iconbadge.Dark -import com.sdds.stylessalute.styles.iconbadge.Default -import com.sdds.stylessalute.styles.iconbadge.IconBadgeTransparent -import com.sdds.stylessalute.styles.iconbadge.L -import com.sdds.stylessalute.styles.iconbadge.Light -import com.sdds.stylessalute.styles.iconbadge.M -import com.sdds.stylessalute.styles.iconbadge.Negative -import com.sdds.stylessalute.styles.iconbadge.Pilled -import com.sdds.stylessalute.styles.iconbadge.Positive -import com.sdds.stylessalute.styles.iconbadge.S -import com.sdds.stylessalute.styles.iconbadge.Warning -import com.sdds.stylessalute.styles.iconbadge.Xs - -internal object StylesSaluteIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { - override val variations: Map BadgeStyle> = - mapOf( - "L.Default" to { IconBadgeTransparent.L.Default.style() }, - "L.Accent" to { IconBadgeTransparent.L.Accent.style() }, - "L.Negative" to { IconBadgeTransparent.L.Negative.style() }, - "L.Positive" to { IconBadgeTransparent.L.Positive.style() }, - "L.Warning" to { IconBadgeTransparent.L.Warning.style() }, - "L.Dark" to { IconBadgeTransparent.L.Dark.style() }, - "L.Light" to { IconBadgeTransparent.L.Light.style() }, - "L.Pilled.Default" to { IconBadgeTransparent.L.Pilled.Default.style() }, - "L.Pilled.Accent" to { IconBadgeTransparent.L.Pilled.Accent.style() }, - "L.Pilled.Negative" to { IconBadgeTransparent.L.Pilled.Negative.style() }, - "L.Pilled.Positive" to { IconBadgeTransparent.L.Pilled.Positive.style() }, - "L.Pilled.Warning" to { IconBadgeTransparent.L.Pilled.Warning.style() }, - "L.Pilled.Dark" to { IconBadgeTransparent.L.Pilled.Dark.style() }, - "L.Pilled.Light" to { IconBadgeTransparent.L.Pilled.Light.style() }, - "M.Default" to { IconBadgeTransparent.M.Default.style() }, - "M.Accent" to { IconBadgeTransparent.M.Accent.style() }, - "M.Negative" to { IconBadgeTransparent.M.Negative.style() }, - "M.Positive" to { IconBadgeTransparent.M.Positive.style() }, - "M.Warning" to { IconBadgeTransparent.M.Warning.style() }, - "M.Dark" to { IconBadgeTransparent.M.Dark.style() }, - "M.Light" to { IconBadgeTransparent.M.Light.style() }, - "M.Pilled.Default" to { IconBadgeTransparent.M.Pilled.Default.style() }, - "M.Pilled.Accent" to { IconBadgeTransparent.M.Pilled.Accent.style() }, - "M.Pilled.Negative" to { IconBadgeTransparent.M.Pilled.Negative.style() }, - "M.Pilled.Positive" to { IconBadgeTransparent.M.Pilled.Positive.style() }, - "M.Pilled.Warning" to { IconBadgeTransparent.M.Pilled.Warning.style() }, - "M.Pilled.Dark" to { IconBadgeTransparent.M.Pilled.Dark.style() }, - "M.Pilled.Light" to { IconBadgeTransparent.M.Pilled.Light.style() }, - "S.Default" to { IconBadgeTransparent.S.Default.style() }, - "S.Accent" to { IconBadgeTransparent.S.Accent.style() }, - "S.Negative" to { IconBadgeTransparent.S.Negative.style() }, - "S.Positive" to { IconBadgeTransparent.S.Positive.style() }, - "S.Warning" to { IconBadgeTransparent.S.Warning.style() }, - "S.Dark" to { IconBadgeTransparent.S.Dark.style() }, - "S.Light" to { IconBadgeTransparent.S.Light.style() }, - "S.Pilled.Default" to { IconBadgeTransparent.S.Pilled.Default.style() }, - "S.Pilled.Accent" to { IconBadgeTransparent.S.Pilled.Accent.style() }, - "S.Pilled.Negative" to { IconBadgeTransparent.S.Pilled.Negative.style() }, - "S.Pilled.Positive" to { IconBadgeTransparent.S.Pilled.Positive.style() }, - "S.Pilled.Warning" to { IconBadgeTransparent.S.Pilled.Warning.style() }, - "S.Pilled.Dark" to { IconBadgeTransparent.S.Pilled.Dark.style() }, - "S.Pilled.Light" to { IconBadgeTransparent.S.Pilled.Light.style() }, - "Xs.Default" to { IconBadgeTransparent.Xs.Default.style() }, - "Xs.Accent" to { IconBadgeTransparent.Xs.Accent.style() }, - "Xs.Negative" to { IconBadgeTransparent.Xs.Negative.style() }, - "Xs.Positive" to { IconBadgeTransparent.Xs.Positive.style() }, - "Xs.Warning" to { IconBadgeTransparent.Xs.Warning.style() }, - "Xs.Dark" to { IconBadgeTransparent.Xs.Dark.style() }, - "Xs.Light" to { IconBadgeTransparent.Xs.Light.style() }, - "Xs.Pilled.Default" to { IconBadgeTransparent.Xs.Pilled.Default.style() }, - "Xs.Pilled.Accent" to { IconBadgeTransparent.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Negative" to { IconBadgeTransparent.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Positive" to { IconBadgeTransparent.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Warning" to { IconBadgeTransparent.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Dark" to { IconBadgeTransparent.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Light" to { IconBadgeTransparent.Xs.Pilled.Light.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonGroupVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonGroupVariationsCompose.kt deleted file mode 100644 index 3dd5c1901f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonGroupVariationsCompose.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.buttongroup.Default -import com.sdds.stylessalute.styles.buttongroup.Dense -import com.sdds.stylessalute.styles.buttongroup.IconButtonGroup -import com.sdds.stylessalute.styles.buttongroup.L -import com.sdds.stylessalute.styles.buttongroup.M -import com.sdds.stylessalute.styles.buttongroup.NoGap -import com.sdds.stylessalute.styles.buttongroup.Pilled -import com.sdds.stylessalute.styles.buttongroup.S -import com.sdds.stylessalute.styles.buttongroup.Segmented -import com.sdds.stylessalute.styles.buttongroup.Wide -import com.sdds.stylessalute.styles.buttongroup.Xs - -internal object StylesSaluteIconButtonGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonGroupStyle> = - mapOf( - "Xs" to { IconButtonGroup.Xs.style() }, - "Xs.Wide" to { IconButtonGroup.Xs.Wide.style() }, - "Xs.Wide.Default" to { IconButtonGroup.Xs.Wide.Default.style() }, - "Xs.Wide.Pilled" to { IconButtonGroup.Xs.Wide.Pilled.style() }, - "Xs.Wide.Segmented" to { IconButtonGroup.Xs.Wide.Segmented.style() }, - "Xs.Dense" to { IconButtonGroup.Xs.Dense.style() }, - "Xs.Dense.Default" to { IconButtonGroup.Xs.Dense.Default.style() }, - "Xs.Dense.Pilled" to { IconButtonGroup.Xs.Dense.Pilled.style() }, - "Xs.Dense.Segmented" to { IconButtonGroup.Xs.Dense.Segmented.style() }, - "Xs.NoGap" to { IconButtonGroup.Xs.NoGap.style() }, - "Xs.NoGap.Default" to { IconButtonGroup.Xs.NoGap.Default.style() }, - "Xs.NoGap.Pilled" to { IconButtonGroup.Xs.NoGap.Pilled.style() }, - "Xs.NoGap.Segmented" to { IconButtonGroup.Xs.NoGap.Segmented.style() }, - "S" to { IconButtonGroup.S.style() }, - "S.Wide" to { IconButtonGroup.S.Wide.style() }, - "S.Wide.Default" to { IconButtonGroup.S.Wide.Default.style() }, - "S.Wide.Pilled" to { IconButtonGroup.S.Wide.Pilled.style() }, - "S.Wide.Segmented" to { IconButtonGroup.S.Wide.Segmented.style() }, - "S.Dense" to { IconButtonGroup.S.Dense.style() }, - "S.Dense.Default" to { IconButtonGroup.S.Dense.Default.style() }, - "S.Dense.Pilled" to { IconButtonGroup.S.Dense.Pilled.style() }, - "S.Dense.Segmented" to { IconButtonGroup.S.Dense.Segmented.style() }, - "S.NoGap" to { IconButtonGroup.S.NoGap.style() }, - "S.NoGap.Default" to { IconButtonGroup.S.NoGap.Default.style() }, - "S.NoGap.Pilled" to { IconButtonGroup.S.NoGap.Pilled.style() }, - "S.NoGap.Segmented" to { IconButtonGroup.S.NoGap.Segmented.style() }, - "M" to { IconButtonGroup.M.style() }, - "M.Wide" to { IconButtonGroup.M.Wide.style() }, - "M.Wide.Default" to { IconButtonGroup.M.Wide.Default.style() }, - "M.Wide.Pilled" to { IconButtonGroup.M.Wide.Pilled.style() }, - "M.Wide.Segmented" to { IconButtonGroup.M.Wide.Segmented.style() }, - "M.Dense" to { IconButtonGroup.M.Dense.style() }, - "M.Dense.Default" to { IconButtonGroup.M.Dense.Default.style() }, - "M.Dense.Pilled" to { IconButtonGroup.M.Dense.Pilled.style() }, - "M.Dense.Segmented" to { IconButtonGroup.M.Dense.Segmented.style() }, - "M.NoGap" to { IconButtonGroup.M.NoGap.style() }, - "M.NoGap.Default" to { IconButtonGroup.M.NoGap.Default.style() }, - "M.NoGap.Pilled" to { IconButtonGroup.M.NoGap.Pilled.style() }, - "M.NoGap.Segmented" to { IconButtonGroup.M.NoGap.Segmented.style() }, - "L" to { IconButtonGroup.L.style() }, - "L.Wide" to { IconButtonGroup.L.Wide.style() }, - "L.Wide.Default" to { IconButtonGroup.L.Wide.Default.style() }, - "L.Wide.Pilled" to { IconButtonGroup.L.Wide.Pilled.style() }, - "L.Wide.Segmented" to { IconButtonGroup.L.Wide.Segmented.style() }, - "L.Dense" to { IconButtonGroup.L.Dense.style() }, - "L.Dense.Default" to { IconButtonGroup.L.Dense.Default.style() }, - "L.Dense.Pilled" to { IconButtonGroup.L.Dense.Pilled.style() }, - "L.Dense.Segmented" to { IconButtonGroup.L.Dense.Segmented.style() }, - "L.NoGap" to { IconButtonGroup.L.NoGap.style() }, - "L.NoGap.Default" to { IconButtonGroup.L.NoGap.Default.style() }, - "L.NoGap.Pilled" to { IconButtonGroup.L.NoGap.Pilled.style() }, - "L.NoGap.Segmented" to { IconButtonGroup.L.NoGap.Segmented.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonVariationsCompose.kt deleted file mode 100644 index a239b01414..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIconButtonVariationsCompose.kt +++ /dev/null @@ -1,108 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.iconbutton.Accent -import com.sdds.stylessalute.styles.iconbutton.Black -import com.sdds.stylessalute.styles.iconbutton.Clear -import com.sdds.stylessalute.styles.iconbutton.Dark -import com.sdds.stylessalute.styles.iconbutton.Default -import com.sdds.stylessalute.styles.iconbutton.IconButton -import com.sdds.stylessalute.styles.iconbutton.L -import com.sdds.stylessalute.styles.iconbutton.M -import com.sdds.stylessalute.styles.iconbutton.Negative -import com.sdds.stylessalute.styles.iconbutton.Pilled -import com.sdds.stylessalute.styles.iconbutton.Positive -import com.sdds.stylessalute.styles.iconbutton.S -import com.sdds.stylessalute.styles.iconbutton.Secondary -import com.sdds.stylessalute.styles.iconbutton.Warning -import com.sdds.stylessalute.styles.iconbutton.White -import com.sdds.stylessalute.styles.iconbutton.Xs - -internal object StylesSaluteIconButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { IconButton.L.Default.style() }, - "L.Secondary" to { IconButton.L.Secondary.style() }, - "L.Accent" to { IconButton.L.Accent.style() }, - "L.Positive" to { IconButton.L.Positive.style() }, - "L.Negative" to { IconButton.L.Negative.style() }, - "L.Warning" to { IconButton.L.Warning.style() }, - "L.Clear" to { IconButton.L.Clear.style() }, - "L.Dark" to { IconButton.L.Dark.style() }, - "L.Black" to { IconButton.L.Black.style() }, - "L.White" to { IconButton.L.White.style() }, - "L.Pilled.Default" to { IconButton.L.Pilled.Default.style() }, - "L.Pilled.Secondary" to { IconButton.L.Pilled.Secondary.style() }, - "L.Pilled.Accent" to { IconButton.L.Pilled.Accent.style() }, - "L.Pilled.Positive" to { IconButton.L.Pilled.Positive.style() }, - "L.Pilled.Negative" to { IconButton.L.Pilled.Negative.style() }, - "L.Pilled.Warning" to { IconButton.L.Pilled.Warning.style() }, - "L.Pilled.Clear" to { IconButton.L.Pilled.Clear.style() }, - "L.Pilled.Dark" to { IconButton.L.Pilled.Dark.style() }, - "L.Pilled.Black" to { IconButton.L.Pilled.Black.style() }, - "L.Pilled.White" to { IconButton.L.Pilled.White.style() }, - "M.Default" to { IconButton.M.Default.style() }, - "M.Secondary" to { IconButton.M.Secondary.style() }, - "M.Accent" to { IconButton.M.Accent.style() }, - "M.Positive" to { IconButton.M.Positive.style() }, - "M.Negative" to { IconButton.M.Negative.style() }, - "M.Warning" to { IconButton.M.Warning.style() }, - "M.Clear" to { IconButton.M.Clear.style() }, - "M.Dark" to { IconButton.M.Dark.style() }, - "M.Black" to { IconButton.M.Black.style() }, - "M.White" to { IconButton.M.White.style() }, - "M.Pilled.Default" to { IconButton.M.Pilled.Default.style() }, - "M.Pilled.Secondary" to { IconButton.M.Pilled.Secondary.style() }, - "M.Pilled.Accent" to { IconButton.M.Pilled.Accent.style() }, - "M.Pilled.Positive" to { IconButton.M.Pilled.Positive.style() }, - "M.Pilled.Negative" to { IconButton.M.Pilled.Negative.style() }, - "M.Pilled.Warning" to { IconButton.M.Pilled.Warning.style() }, - "M.Pilled.Clear" to { IconButton.M.Pilled.Clear.style() }, - "M.Pilled.Dark" to { IconButton.M.Pilled.Dark.style() }, - "M.Pilled.Black" to { IconButton.M.Pilled.Black.style() }, - "M.Pilled.White" to { IconButton.M.Pilled.White.style() }, - "S.Default" to { IconButton.S.Default.style() }, - "S.Secondary" to { IconButton.S.Secondary.style() }, - "S.Accent" to { IconButton.S.Accent.style() }, - "S.Positive" to { IconButton.S.Positive.style() }, - "S.Negative" to { IconButton.S.Negative.style() }, - "S.Warning" to { IconButton.S.Warning.style() }, - "S.Clear" to { IconButton.S.Clear.style() }, - "S.Dark" to { IconButton.S.Dark.style() }, - "S.Black" to { IconButton.S.Black.style() }, - "S.White" to { IconButton.S.White.style() }, - "S.Pilled.Default" to { IconButton.S.Pilled.Default.style() }, - "S.Pilled.Secondary" to { IconButton.S.Pilled.Secondary.style() }, - "S.Pilled.Accent" to { IconButton.S.Pilled.Accent.style() }, - "S.Pilled.Positive" to { IconButton.S.Pilled.Positive.style() }, - "S.Pilled.Negative" to { IconButton.S.Pilled.Negative.style() }, - "S.Pilled.Warning" to { IconButton.S.Pilled.Warning.style() }, - "S.Pilled.Clear" to { IconButton.S.Pilled.Clear.style() }, - "S.Pilled.Dark" to { IconButton.S.Pilled.Dark.style() }, - "S.Pilled.Black" to { IconButton.S.Pilled.Black.style() }, - "S.Pilled.White" to { IconButton.S.Pilled.White.style() }, - "Xs.Default" to { IconButton.Xs.Default.style() }, - "Xs.Secondary" to { IconButton.Xs.Secondary.style() }, - "Xs.Accent" to { IconButton.Xs.Accent.style() }, - "Xs.Positive" to { IconButton.Xs.Positive.style() }, - "Xs.Negative" to { IconButton.Xs.Negative.style() }, - "Xs.Warning" to { IconButton.Xs.Warning.style() }, - "Xs.Clear" to { IconButton.Xs.Clear.style() }, - "Xs.Dark" to { IconButton.Xs.Dark.style() }, - "Xs.Black" to { IconButton.Xs.Black.style() }, - "Xs.White" to { IconButton.Xs.White.style() }, - "Xs.Pilled.Default" to { IconButton.Xs.Pilled.Default.style() }, - "Xs.Pilled.Secondary" to { IconButton.Xs.Pilled.Secondary.style() }, - "Xs.Pilled.Accent" to { IconButton.Xs.Pilled.Accent.style() }, - "Xs.Pilled.Positive" to { IconButton.Xs.Pilled.Positive.style() }, - "Xs.Pilled.Negative" to { IconButton.Xs.Pilled.Negative.style() }, - "Xs.Pilled.Warning" to { IconButton.Xs.Pilled.Warning.style() }, - "Xs.Pilled.Clear" to { IconButton.Xs.Pilled.Clear.style() }, - "Xs.Pilled.Dark" to { IconButton.Xs.Pilled.Dark.style() }, - "Xs.Pilled.Black" to { IconButton.Xs.Pilled.Black.style() }, - "Xs.Pilled.White" to { IconButton.Xs.Pilled.White.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIndicatorVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIndicatorVariationsCompose.kt deleted file mode 100644 index 199c0695da..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteIndicatorVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.indicator.Accent -import com.sdds.stylessalute.styles.indicator.Black -import com.sdds.stylessalute.styles.indicator.Dark -import com.sdds.stylessalute.styles.indicator.Default -import com.sdds.stylessalute.styles.indicator.Inactive -import com.sdds.stylessalute.styles.indicator.Indicator -import com.sdds.stylessalute.styles.indicator.L -import com.sdds.stylessalute.styles.indicator.M -import com.sdds.stylessalute.styles.indicator.Negative -import com.sdds.stylessalute.styles.indicator.Positive -import com.sdds.stylessalute.styles.indicator.S -import com.sdds.stylessalute.styles.indicator.Warning -import com.sdds.stylessalute.styles.indicator.White - -internal object StylesSaluteIndicatorVariationsCompose : ComposeStyleProvider() { - override val variations: Map IndicatorStyle> = - mapOf( - "L.Default" to { Indicator.L.Default.style() }, - "L.Accent" to { Indicator.L.Accent.style() }, - "L.Inactive" to { Indicator.L.Inactive.style() }, - "L.Positive" to { Indicator.L.Positive.style() }, - "L.Warning" to { Indicator.L.Warning.style() }, - "L.Negative" to { Indicator.L.Negative.style() }, - "L.Dark" to { Indicator.L.Dark.style() }, - "L.Black" to { Indicator.L.Black.style() }, - "L.White" to { Indicator.L.White.style() }, - "M.Default" to { Indicator.M.Default.style() }, - "M.Accent" to { Indicator.M.Accent.style() }, - "M.Inactive" to { Indicator.M.Inactive.style() }, - "M.Positive" to { Indicator.M.Positive.style() }, - "M.Warning" to { Indicator.M.Warning.style() }, - "M.Negative" to { Indicator.M.Negative.style() }, - "M.Dark" to { Indicator.M.Dark.style() }, - "M.Black" to { Indicator.M.Black.style() }, - "M.White" to { Indicator.M.White.style() }, - "S.Default" to { Indicator.S.Default.style() }, - "S.Accent" to { Indicator.S.Accent.style() }, - "S.Inactive" to { Indicator.S.Inactive.style() }, - "S.Positive" to { Indicator.S.Positive.style() }, - "S.Warning" to { Indicator.S.Warning.style() }, - "S.Negative" to { Indicator.S.Negative.style() }, - "S.Dark" to { Indicator.S.Dark.style() }, - "S.Black" to { Indicator.S.Black.style() }, - "S.White" to { Indicator.S.White.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteLinkButtonVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteLinkButtonVariationsCompose.kt deleted file mode 100644 index 03d2269ae2..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteLinkButtonVariationsCompose.kt +++ /dev/null @@ -1,47 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.linkbutton.Accent -import com.sdds.stylessalute.styles.linkbutton.Default -import com.sdds.stylessalute.styles.linkbutton.L -import com.sdds.stylessalute.styles.linkbutton.LinkButton -import com.sdds.stylessalute.styles.linkbutton.M -import com.sdds.stylessalute.styles.linkbutton.Negative -import com.sdds.stylessalute.styles.linkbutton.Positive -import com.sdds.stylessalute.styles.linkbutton.S -import com.sdds.stylessalute.styles.linkbutton.Secondary -import com.sdds.stylessalute.styles.linkbutton.Warning -import com.sdds.stylessalute.styles.linkbutton.Xs - -internal object StylesSaluteLinkButtonVariationsCompose : ComposeStyleProvider() { - override val variations: Map ButtonStyle> = - mapOf( - "L.Default" to { LinkButton.L.Default.style() }, - "L.Secondary" to { LinkButton.L.Secondary.style() }, - "L.Accent" to { LinkButton.L.Accent.style() }, - "L.Positive" to { LinkButton.L.Positive.style() }, - "L.Negative" to { LinkButton.L.Negative.style() }, - "L.Warning" to { LinkButton.L.Warning.style() }, - "M.Default" to { LinkButton.M.Default.style() }, - "M.Secondary" to { LinkButton.M.Secondary.style() }, - "M.Accent" to { LinkButton.M.Accent.style() }, - "M.Positive" to { LinkButton.M.Positive.style() }, - "M.Negative" to { LinkButton.M.Negative.style() }, - "M.Warning" to { LinkButton.M.Warning.style() }, - "S.Default" to { LinkButton.S.Default.style() }, - "S.Secondary" to { LinkButton.S.Secondary.style() }, - "S.Accent" to { LinkButton.S.Accent.style() }, - "S.Positive" to { LinkButton.S.Positive.style() }, - "S.Negative" to { LinkButton.S.Negative.style() }, - "S.Warning" to { LinkButton.S.Warning.style() }, - "Xs.Default" to { LinkButton.Xs.Default.style() }, - "Xs.Secondary" to { LinkButton.Xs.Secondary.style() }, - "Xs.Accent" to { LinkButton.Xs.Accent.style() }, - "Xs.Positive" to { LinkButton.Xs.Positive.style() }, - "Xs.Negative" to { LinkButton.Xs.Negative.style() }, - "Xs.Warning" to { LinkButton.Xs.Warning.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemNormalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemNormalVariationsCompose.kt deleted file mode 100644 index 7ebff73ce3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.ListItemNormal -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xl -import com.sdds.stylessalute.styles.listitem.Xs - -internal object StylesSaluteListItemNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemNormal.Xl.style() }, - "L" to { ListItemNormal.L.style() }, - "M" to { ListItemNormal.M.style() }, - "S" to { ListItemNormal.S.style() }, - "Xs" to { ListItemNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemTightVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemTightVariationsCompose.kt deleted file mode 100644 index 37e0acf238..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListItemTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.ListItemTight -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xl -import com.sdds.stylessalute.styles.listitem.Xs - -internal object StylesSaluteListItemTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListItemStyle> = - mapOf( - "Xl" to { ListItemTight.Xl.style() }, - "L" to { ListItemTight.L.style() }, - "M" to { ListItemTight.M.style() }, - "S" to { ListItemTight.S.style() }, - "Xs" to { ListItemTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListNormalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListNormalVariationsCompose.kt deleted file mode 100644 index 3d2373e227..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListNormalVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.ListNormal -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xl -import com.sdds.stylessalute.styles.list.Xs - -internal object StylesSaluteListNormalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListNormal.Xl.style() }, - "L" to { ListNormal.L.style() }, - "M" to { ListNormal.M.style() }, - "S" to { ListNormal.S.style() }, - "Xs" to { ListNormal.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListTightVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListTightVariationsCompose.kt deleted file mode 100644 index 84e61a9208..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteListTightVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.ListTight -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xl -import com.sdds.stylessalute.styles.list.Xs - -internal object StylesSaluteListTightVariationsCompose : ComposeStyleProvider() { - override val variations: Map ListStyle> = - mapOf( - "Xl" to { ListTight.Xl.style() }, - "L" to { ListTight.L.style() }, - "M" to { ListTight.M.style() }, - "S" to { ListTight.S.style() }, - "Xs" to { ListTight.Xs.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalBottomSheetVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalBottomSheetVariationsCompose.kt deleted file mode 100644 index 8cfe74664b..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalBottomSheetVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.bottomsheet.Default -import com.sdds.stylessalute.styles.bottomsheet.ModalBottomSheet - -internal object StylesSaluteModalBottomSheetVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalBottomSheetStyle> = - mapOf( - "Default" to { ModalBottomSheet.Default.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalVariationsCompose.kt deleted file mode 100644 index b90fdead4d..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteModalVariationsCompose.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.modal.Default -import com.sdds.stylessalute.styles.modal.Modal - -internal object StylesSaluteModalVariationsCompose : ComposeStyleProvider() { - override val variations: Map ModalStyle> = - mapOf( - "Default" to { Modal.Default.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationCompactVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationCompactVariationsCompose.kt deleted file mode 100644 index 0370d83759..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationCompactVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.notification.L -import com.sdds.stylessalute.styles.notification.M -import com.sdds.stylessalute.styles.notification.NotificationCompact -import com.sdds.stylessalute.styles.notification.S - -internal object StylesSaluteNotificationCompactVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationCompact.L.style() }, - "M" to { NotificationCompact.M.style() }, - "S" to { NotificationCompact.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationContentVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationContentVariationsCompose.kt deleted file mode 100644 index eb351ceba1..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationContentVariationsCompose.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.notificationcontent.ButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.Default -import com.sdds.stylessalute.styles.notificationcontent.IconStart -import com.sdds.stylessalute.styles.notificationcontent.IconTop -import com.sdds.stylessalute.styles.notificationcontent.Info -import com.sdds.stylessalute.styles.notificationcontent.Negative -import com.sdds.stylessalute.styles.notificationcontent.NoButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.NotificationContent -import com.sdds.stylessalute.styles.notificationcontent.Positive -import com.sdds.stylessalute.styles.notificationcontent.Warning - -internal object StylesSaluteNotificationContentVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationContentStyle> = - mapOf( - "ButtonStretch.Default" to { NotificationContent.ButtonStretch.Default.style() }, - "ButtonStretch.Positive" to { NotificationContent.ButtonStretch.Positive.style() }, - "ButtonStretch.Negative" to { NotificationContent.ButtonStretch.Negative.style() }, - "ButtonStretch.Warning" to { NotificationContent.ButtonStretch.Warning.style() }, - "ButtonStretch.Info" to { NotificationContent.ButtonStretch.Info.style() }, - "ButtonStretch.IconTop.Default" to { NotificationContent.ButtonStretch.IconTop.Default.style() }, - "ButtonStretch.IconTop.Positive" to { NotificationContent.ButtonStretch.IconTop.Positive.style() }, - "ButtonStretch.IconTop.Negative" to { NotificationContent.ButtonStretch.IconTop.Negative.style() }, - "ButtonStretch.IconTop.Warning" to { NotificationContent.ButtonStretch.IconTop.Warning.style() }, - "ButtonStretch.IconTop.Info" to { NotificationContent.ButtonStretch.IconTop.Info.style() }, - "ButtonStretch.IconStart.Default" to { NotificationContent.ButtonStretch.IconStart.Default.style() }, - "ButtonStretch.IconStart.Positive" to { NotificationContent.ButtonStretch.IconStart.Positive.style() }, - "ButtonStretch.IconStart.Negative" to { NotificationContent.ButtonStretch.IconStart.Negative.style() }, - "ButtonStretch.IconStart.Warning" to { NotificationContent.ButtonStretch.IconStart.Warning.style() }, - "ButtonStretch.IconStart.Info" to { NotificationContent.ButtonStretch.IconStart.Info.style() }, - "NoButtonStretch.Default" to { NotificationContent.NoButtonStretch.Default.style() }, - "NoButtonStretch.Positive" to { NotificationContent.NoButtonStretch.Positive.style() }, - "NoButtonStretch.Negative" to { NotificationContent.NoButtonStretch.Negative.style() }, - "NoButtonStretch.Warning" to { NotificationContent.NoButtonStretch.Warning.style() }, - "NoButtonStretch.Info" to { NotificationContent.NoButtonStretch.Info.style() }, - "NoButtonStretch.IconTop.Default" to { NotificationContent.NoButtonStretch.IconTop.Default.style() }, - "NoButtonStretch.IconTop.Positive" to { NotificationContent.NoButtonStretch.IconTop.Positive.style() }, - "NoButtonStretch.IconTop.Negative" to { NotificationContent.NoButtonStretch.IconTop.Negative.style() }, - "NoButtonStretch.IconTop.Warning" to { NotificationContent.NoButtonStretch.IconTop.Warning.style() }, - "NoButtonStretch.IconTop.Info" to { NotificationContent.NoButtonStretch.IconTop.Info.style() }, - "NoButtonStretch.IconStart.Default" to { NotificationContent.NoButtonStretch.IconStart.Default.style() }, - "NoButtonStretch.IconStart.Positive" to { NotificationContent.NoButtonStretch.IconStart.Positive.style() }, - "NoButtonStretch.IconStart.Negative" to { NotificationContent.NoButtonStretch.IconStart.Negative.style() }, - "NoButtonStretch.IconStart.Warning" to { NotificationContent.NoButtonStretch.IconStart.Warning.style() }, - "NoButtonStretch.IconStart.Info" to { NotificationContent.NoButtonStretch.IconStart.Info.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationLooseVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationLooseVariationsCompose.kt deleted file mode 100644 index e5c28255db..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteNotificationLooseVariationsCompose.kt +++ /dev/null @@ -1,19 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.notification.L -import com.sdds.stylessalute.styles.notification.M -import com.sdds.stylessalute.styles.notification.NotificationLoose -import com.sdds.stylessalute.styles.notification.S - -internal object StylesSaluteNotificationLooseVariationsCompose : ComposeStyleProvider() { - override val variations: Map NotificationStyle> = - mapOf( - "L" to { NotificationLoose.L.style() }, - "M" to { NotificationLoose.M.style() }, - "S" to { NotificationLoose.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSalutePopoverVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSalutePopoverVariationsCompose.kt deleted file mode 100644 index 907429460a..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSalutePopoverVariationsCompose.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.popover.Accent -import com.sdds.stylessalute.styles.popover.Default -import com.sdds.stylessalute.styles.popover.M -import com.sdds.stylessalute.styles.popover.Popover -import com.sdds.stylessalute.styles.popover.S - -internal object StylesSalutePopoverVariationsCompose : ComposeStyleProvider() { - override val variations: Map PopoverStyle> = - mapOf( - "M.Default" to { Popover.M.Default.style() }, - "M.Accent" to { Popover.M.Accent.style() }, - "S.Default" to { Popover.S.Default.style() }, - "S.Accent" to { Popover.S.Accent.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteProgressBarVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteProgressBarVariationsCompose.kt deleted file mode 100644 index f50a8d4f20..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteProgressBarVariationsCompose.kt +++ /dev/null @@ -1,27 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.progressbar.Accent -import com.sdds.stylessalute.styles.progressbar.Default -import com.sdds.stylessalute.styles.progressbar.Gradient -import com.sdds.stylessalute.styles.progressbar.Negative -import com.sdds.stylessalute.styles.progressbar.Positive -import com.sdds.stylessalute.styles.progressbar.ProgressBar -import com.sdds.stylessalute.styles.progressbar.Secondary -import com.sdds.stylessalute.styles.progressbar.Warning - -internal object StylesSaluteProgressBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ProgressBarStyle> = - mapOf( - "Default" to { ProgressBar.Default.style() }, - "Secondary" to { ProgressBar.Secondary.style() }, - "Accent" to { ProgressBar.Accent.style() }, - "Gradient" to { ProgressBar.Gradient.style() }, - "Negative" to { ProgressBar.Negative.style() }, - "Positive" to { ProgressBar.Positive.style() }, - "Warning" to { ProgressBar.Warning.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxGroupVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxGroupVariationsCompose.kt deleted file mode 100644 index c0267e1a2e..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxGroupVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.radioboxgroup.M -import com.sdds.stylessalute.styles.radioboxgroup.RadioBoxGroup -import com.sdds.stylessalute.styles.radioboxgroup.S - -internal object StylesSaluteRadioBoxGroupVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxGroupStyle> = - mapOf( - "M" to { RadioBoxGroup.M.style() }, - "S" to { RadioBoxGroup.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxVariationsCompose.kt deleted file mode 100644 index 2f1e39855f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRadioBoxVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.radiobox.M -import com.sdds.stylessalute.styles.radiobox.RadioBox -import com.sdds.stylessalute.styles.radiobox.S - -internal object StylesSaluteRadioBoxVariationsCompose : ComposeStyleProvider() { - override val variations: Map RadioBoxStyle> = - mapOf( - "M" to { RadioBox.M.style() }, - "S" to { RadioBox.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRectSkeletonVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRectSkeletonVariationsCompose.kt deleted file mode 100644 index 9a87ab0015..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteRectSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.rectskeleton.Default -import com.sdds.stylessalute.styles.rectskeleton.Lighter -import com.sdds.stylessalute.styles.rectskeleton.RectSkeleton - -internal object StylesSaluteRectSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map RectSkeletonStyle> = - mapOf( - "Default" to { RectSkeleton.Default.style() }, - "Lighter" to { RectSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteScrollBarVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteScrollBarVariationsCompose.kt deleted file mode 100644 index 0684ddea9a..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteScrollBarVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.scrollbar.M -import com.sdds.stylessalute.styles.scrollbar.S -import com.sdds.stylessalute.styles.scrollbar.ScrollBar - -internal object StylesSaluteScrollBarVariationsCompose : ComposeStyleProvider() { - override val variations: Map ScrollBarStyle> = - mapOf( - "S" to { ScrollBar.S.style() }, - "M" to { ScrollBar.M.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentItemVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentItemVariationsCompose.kt deleted file mode 100644 index bb3af8d5e6..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentItemVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.segmentitem.L -import com.sdds.stylessalute.styles.segmentitem.M -import com.sdds.stylessalute.styles.segmentitem.Pilled -import com.sdds.stylessalute.styles.segmentitem.Primary -import com.sdds.stylessalute.styles.segmentitem.S -import com.sdds.stylessalute.styles.segmentitem.Secondary -import com.sdds.stylessalute.styles.segmentitem.SegmentItem -import com.sdds.stylessalute.styles.segmentitem.Xs - -internal object StylesSaluteSegmentItemVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentItemStyle> = - mapOf( - "L.Primary" to { SegmentItem.L.Primary.style() }, - "L.Secondary" to { SegmentItem.L.Secondary.style() }, - "L.Pilled.Primary" to { SegmentItem.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { SegmentItem.L.Pilled.Secondary.style() }, - "M.Primary" to { SegmentItem.M.Primary.style() }, - "M.Secondary" to { SegmentItem.M.Secondary.style() }, - "M.Pilled.Primary" to { SegmentItem.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { SegmentItem.M.Pilled.Secondary.style() }, - "S.Primary" to { SegmentItem.S.Primary.style() }, - "S.Secondary" to { SegmentItem.S.Secondary.style() }, - "S.Pilled.Primary" to { SegmentItem.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { SegmentItem.S.Pilled.Secondary.style() }, - "Xs.Primary" to { SegmentItem.Xs.Primary.style() }, - "Xs.Secondary" to { SegmentItem.Xs.Secondary.style() }, - "Xs.Pilled.Primary" to { SegmentItem.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { SegmentItem.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentVariationsCompose.kt deleted file mode 100644 index 2de7e9d677..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSegmentVariationsCompose.kt +++ /dev/null @@ -1,36 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.segment.L -import com.sdds.stylessalute.styles.segment.M -import com.sdds.stylessalute.styles.segment.Pilled -import com.sdds.stylessalute.styles.segment.Primary -import com.sdds.stylessalute.styles.segment.S -import com.sdds.stylessalute.styles.segment.Secondary -import com.sdds.stylessalute.styles.segment.Segment -import com.sdds.stylessalute.styles.segment.Xs - -internal object StylesSaluteSegmentVariationsCompose : ComposeStyleProvider() { - override val variations: Map SegmentStyle> = - mapOf( - "L.Primary" to { Segment.L.Primary.style() }, - "L.Secondary" to { Segment.L.Secondary.style() }, - "L.Pilled.Primary" to { Segment.L.Pilled.Primary.style() }, - "L.Pilled.Secondary" to { Segment.L.Pilled.Secondary.style() }, - "M.Primary" to { Segment.M.Primary.style() }, - "M.Secondary" to { Segment.M.Secondary.style() }, - "M.Pilled.Primary" to { Segment.M.Pilled.Primary.style() }, - "M.Pilled.Secondary" to { Segment.M.Pilled.Secondary.style() }, - "S.Primary" to { Segment.S.Primary.style() }, - "S.Secondary" to { Segment.S.Secondary.style() }, - "S.Pilled.Primary" to { Segment.S.Pilled.Primary.style() }, - "S.Pilled.Secondary" to { Segment.S.Pilled.Secondary.style() }, - "Xs.Primary" to { Segment.Xs.Primary.style() }, - "Xs.Secondary" to { Segment.Xs.Secondary.style() }, - "Xs.Pilled.Primary" to { Segment.Xs.Pilled.Primary.style() }, - "Xs.Pilled.Secondary" to { Segment.Xs.Pilled.Secondary.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSwitchVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSwitchVariationsCompose.kt deleted file mode 100644 index 1b54b15fdb..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteSwitchVariationsCompose.kt +++ /dev/null @@ -1,23 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.switcher.L -import com.sdds.stylessalute.styles.switcher.M -import com.sdds.stylessalute.styles.switcher.S -import com.sdds.stylessalute.styles.switcher.Switch -import com.sdds.stylessalute.styles.switcher.ToggleS - -internal object StylesSaluteSwitchVariationsCompose : ComposeStyleProvider() { - override val variations: Map SwitchStyle> = - mapOf( - "L" to { Switch.L.style() }, - "L.ToggleS" to { Switch.L.ToggleS.style() }, - "M" to { Switch.M.style() }, - "M.ToggleS" to { Switch.M.ToggleS.style() }, - "S" to { Switch.S.style() }, - "S.ToggleS" to { Switch.S.ToggleS.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaClearVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaClearVariationsCompose.kt deleted file mode 100644 index 4089a50c76..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaClearVariationsCompose.kt +++ /dev/null @@ -1,123 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.textarea.Default -import com.sdds.stylessalute.styles.textarea.Error -import com.sdds.stylessalute.styles.textarea.InnerLabel -import com.sdds.stylessalute.styles.textarea.L -import com.sdds.stylessalute.styles.textarea.M -import com.sdds.stylessalute.styles.textarea.OuterLabel -import com.sdds.stylessalute.styles.textarea.RequiredEnd -import com.sdds.stylessalute.styles.textarea.RequiredStart -import com.sdds.stylessalute.styles.textarea.S -import com.sdds.stylessalute.styles.textarea.TextAreaClear -import com.sdds.stylessalute.styles.textarea.Warning -import com.sdds.stylessalute.styles.textarea.Xs - -internal object StylesSaluteTextAreaClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextAreaClear.Xs.Default.style() }, - "Xs.Warning" to { TextAreaClear.Xs.Warning.style() }, - "Xs.Error" to { TextAreaClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextAreaClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextAreaClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextAreaClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextAreaClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextAreaClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextAreaClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextAreaClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextAreaClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextAreaClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextAreaClear.S.Default.style() }, - "S.Warning" to { TextAreaClear.S.Warning.style() }, - "S.Error" to { TextAreaClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextAreaClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextAreaClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextAreaClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextAreaClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextAreaClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextAreaClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextAreaClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextAreaClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextAreaClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextAreaClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextAreaClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextAreaClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextAreaClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextAreaClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextAreaClear.M.Default.style() }, - "M.Warning" to { TextAreaClear.M.Warning.style() }, - "M.Error" to { TextAreaClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextAreaClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextAreaClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextAreaClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextAreaClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextAreaClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextAreaClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextAreaClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextAreaClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextAreaClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextAreaClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextAreaClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextAreaClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextAreaClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextAreaClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextAreaClear.L.Default.style() }, - "L.Warning" to { TextAreaClear.L.Warning.style() }, - "L.Error" to { TextAreaClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextAreaClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextAreaClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextAreaClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextAreaClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextAreaClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextAreaClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextAreaClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextAreaClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextAreaClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextAreaClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextAreaClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextAreaClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextAreaClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextAreaClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaVariationsCompose.kt deleted file mode 100644 index 6e615572af..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextAreaVariationsCompose.kt +++ /dev/null @@ -1,123 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.textarea.Default -import com.sdds.stylessalute.styles.textarea.Error -import com.sdds.stylessalute.styles.textarea.InnerLabel -import com.sdds.stylessalute.styles.textarea.L -import com.sdds.stylessalute.styles.textarea.M -import com.sdds.stylessalute.styles.textarea.OuterLabel -import com.sdds.stylessalute.styles.textarea.RequiredEnd -import com.sdds.stylessalute.styles.textarea.RequiredStart -import com.sdds.stylessalute.styles.textarea.S -import com.sdds.stylessalute.styles.textarea.TextArea -import com.sdds.stylessalute.styles.textarea.Warning -import com.sdds.stylessalute.styles.textarea.Xs - -internal object StylesSaluteTextAreaVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextArea.Xs.Default.style() }, - "Xs.Warning" to { TextArea.Xs.Warning.style() }, - "Xs.Error" to { TextArea.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextArea.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Warning" to { TextArea.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextArea.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextArea.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Warning" to { TextArea.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextArea.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextArea.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Warning" to { TextArea.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextArea.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextArea.S.Default.style() }, - "S.Warning" to { TextArea.S.Warning.style() }, - "S.Error" to { TextArea.S.Error.style() }, - "S.RequiredStart.Default" to { TextArea.S.RequiredStart.Default.style() }, - "S.RequiredStart.Warning" to { TextArea.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextArea.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextArea.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Warning" to { TextArea.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextArea.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextArea.S.OuterLabel.Default.style() }, - "S.OuterLabel.Warning" to { TextArea.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextArea.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextArea.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextArea.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextArea.S.InnerLabel.Default.style() }, - "S.InnerLabel.Warning" to { TextArea.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextArea.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextArea.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextArea.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextArea.M.Default.style() }, - "M.Warning" to { TextArea.M.Warning.style() }, - "M.Error" to { TextArea.M.Error.style() }, - "M.RequiredStart.Default" to { TextArea.M.RequiredStart.Default.style() }, - "M.RequiredStart.Warning" to { TextArea.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextArea.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextArea.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Warning" to { TextArea.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextArea.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextArea.M.OuterLabel.Default.style() }, - "M.OuterLabel.Warning" to { TextArea.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextArea.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextArea.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextArea.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextArea.M.InnerLabel.Default.style() }, - "M.InnerLabel.Warning" to { TextArea.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextArea.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextArea.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextArea.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextArea.L.Default.style() }, - "L.Warning" to { TextArea.L.Warning.style() }, - "L.Error" to { TextArea.L.Error.style() }, - "L.RequiredStart.Default" to { TextArea.L.RequiredStart.Default.style() }, - "L.RequiredStart.Warning" to { TextArea.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextArea.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextArea.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Warning" to { TextArea.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextArea.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextArea.L.OuterLabel.Default.style() }, - "L.OuterLabel.Warning" to { TextArea.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextArea.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextArea.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextArea.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextArea.L.InnerLabel.Default.style() }, - "L.InnerLabel.Warning" to { TextArea.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextArea.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextArea.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextArea.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldClearVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldClearVariationsCompose.kt deleted file mode 100644 index bfb59be13d..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldClearVariationsCompose.kt +++ /dev/null @@ -1,157 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.textfield.Default -import com.sdds.stylessalute.styles.textfield.Error -import com.sdds.stylessalute.styles.textfield.InnerLabel -import com.sdds.stylessalute.styles.textfield.L -import com.sdds.stylessalute.styles.textfield.M -import com.sdds.stylessalute.styles.textfield.OuterLabel -import com.sdds.stylessalute.styles.textfield.RequiredEnd -import com.sdds.stylessalute.styles.textfield.RequiredStart -import com.sdds.stylessalute.styles.textfield.S -import com.sdds.stylessalute.styles.textfield.Success -import com.sdds.stylessalute.styles.textfield.TextFieldClear -import com.sdds.stylessalute.styles.textfield.Warning -import com.sdds.stylessalute.styles.textfield.Xs - -internal object StylesSaluteTextFieldClearVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextFieldClear.Xs.Default.style() }, - "Xs.Success" to { TextFieldClear.Xs.Success.style() }, - "Xs.Warning" to { TextFieldClear.Xs.Warning.style() }, - "Xs.Error" to { TextFieldClear.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextFieldClear.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextFieldClear.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextFieldClear.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextFieldClear.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextFieldClear.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextFieldClear.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextFieldClear.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextFieldClear.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextFieldClear.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextFieldClear.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextFieldClear.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextFieldClear.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextFieldClear.S.Default.style() }, - "S.Success" to { TextFieldClear.S.Success.style() }, - "S.Warning" to { TextFieldClear.S.Warning.style() }, - "S.Error" to { TextFieldClear.S.Error.style() }, - "S.RequiredStart.Default" to { TextFieldClear.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextFieldClear.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextFieldClear.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextFieldClear.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextFieldClear.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextFieldClear.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextFieldClear.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextFieldClear.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextFieldClear.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextFieldClear.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextFieldClear.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextFieldClear.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextFieldClear.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextFieldClear.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextFieldClear.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextFieldClear.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextFieldClear.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextFieldClear.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextFieldClear.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextFieldClear.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextFieldClear.M.Default.style() }, - "M.Success" to { TextFieldClear.M.Success.style() }, - "M.Warning" to { TextFieldClear.M.Warning.style() }, - "M.Error" to { TextFieldClear.M.Error.style() }, - "M.RequiredStart.Default" to { TextFieldClear.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextFieldClear.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextFieldClear.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextFieldClear.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextFieldClear.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextFieldClear.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextFieldClear.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextFieldClear.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextFieldClear.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextFieldClear.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextFieldClear.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextFieldClear.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextFieldClear.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextFieldClear.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextFieldClear.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextFieldClear.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextFieldClear.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextFieldClear.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextFieldClear.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextFieldClear.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextFieldClear.L.Default.style() }, - "L.Success" to { TextFieldClear.L.Success.style() }, - "L.Warning" to { TextFieldClear.L.Warning.style() }, - "L.Error" to { TextFieldClear.L.Error.style() }, - "L.RequiredStart.Default" to { TextFieldClear.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextFieldClear.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextFieldClear.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextFieldClear.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextFieldClear.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextFieldClear.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextFieldClear.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextFieldClear.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextFieldClear.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextFieldClear.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextFieldClear.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextFieldClear.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextFieldClear.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextFieldClear.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextFieldClear.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextFieldClear.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextFieldClear.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextFieldClear.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextFieldClear.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextFieldClear.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldVariationsCompose.kt deleted file mode 100644 index 23fb81e339..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextFieldVariationsCompose.kt +++ /dev/null @@ -1,157 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.textfield.Default -import com.sdds.stylessalute.styles.textfield.Error -import com.sdds.stylessalute.styles.textfield.InnerLabel -import com.sdds.stylessalute.styles.textfield.L -import com.sdds.stylessalute.styles.textfield.M -import com.sdds.stylessalute.styles.textfield.OuterLabel -import com.sdds.stylessalute.styles.textfield.RequiredEnd -import com.sdds.stylessalute.styles.textfield.RequiredStart -import com.sdds.stylessalute.styles.textfield.S -import com.sdds.stylessalute.styles.textfield.Success -import com.sdds.stylessalute.styles.textfield.TextField -import com.sdds.stylessalute.styles.textfield.Warning -import com.sdds.stylessalute.styles.textfield.Xs - -internal object StylesSaluteTextFieldVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextFieldStyle> = - mapOf( - "Xs.Default" to { TextField.Xs.Default.style() }, - "Xs.Success" to { TextField.Xs.Success.style() }, - "Xs.Warning" to { TextField.Xs.Warning.style() }, - "Xs.Error" to { TextField.Xs.Error.style() }, - "Xs.RequiredStart.Default" to { TextField.Xs.RequiredStart.Default.style() }, - "Xs.RequiredStart.Success" to { TextField.Xs.RequiredStart.Success.style() }, - "Xs.RequiredStart.Warning" to { TextField.Xs.RequiredStart.Warning.style() }, - "Xs.RequiredStart.Error" to { TextField.Xs.RequiredStart.Error.style() }, - "Xs.RequiredEnd.Default" to { TextField.Xs.RequiredEnd.Default.style() }, - "Xs.RequiredEnd.Success" to { TextField.Xs.RequiredEnd.Success.style() }, - "Xs.RequiredEnd.Warning" to { TextField.Xs.RequiredEnd.Warning.style() }, - "Xs.RequiredEnd.Error" to { TextField.Xs.RequiredEnd.Error.style() }, - "Xs.OuterLabel.Default" to { TextField.Xs.OuterLabel.Default.style() }, - "Xs.OuterLabel.Success" to { TextField.Xs.OuterLabel.Success.style() }, - "Xs.OuterLabel.Warning" to { TextField.Xs.OuterLabel.Warning.style() }, - "Xs.OuterLabel.Error" to { TextField.Xs.OuterLabel.Error.style() }, - "Xs.OuterLabel.RequiredStart.Default" to { TextField.Xs.OuterLabel.RequiredStart.Default.style() }, - "Xs.OuterLabel.RequiredStart.Success" to { TextField.Xs.OuterLabel.RequiredStart.Success.style() }, - "Xs.OuterLabel.RequiredStart.Warning" to { TextField.Xs.OuterLabel.RequiredStart.Warning.style() }, - "Xs.OuterLabel.RequiredStart.Error" to { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, - "Xs.OuterLabel.RequiredEnd.Default" to { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, - "Xs.OuterLabel.RequiredEnd.Success" to { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, - "Xs.OuterLabel.RequiredEnd.Warning" to { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, - "Xs.OuterLabel.RequiredEnd.Error" to { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, - "S.Default" to { TextField.S.Default.style() }, - "S.Success" to { TextField.S.Success.style() }, - "S.Warning" to { TextField.S.Warning.style() }, - "S.Error" to { TextField.S.Error.style() }, - "S.RequiredStart.Default" to { TextField.S.RequiredStart.Default.style() }, - "S.RequiredStart.Success" to { TextField.S.RequiredStart.Success.style() }, - "S.RequiredStart.Warning" to { TextField.S.RequiredStart.Warning.style() }, - "S.RequiredStart.Error" to { TextField.S.RequiredStart.Error.style() }, - "S.RequiredEnd.Default" to { TextField.S.RequiredEnd.Default.style() }, - "S.RequiredEnd.Success" to { TextField.S.RequiredEnd.Success.style() }, - "S.RequiredEnd.Warning" to { TextField.S.RequiredEnd.Warning.style() }, - "S.RequiredEnd.Error" to { TextField.S.RequiredEnd.Error.style() }, - "S.OuterLabel.Default" to { TextField.S.OuterLabel.Default.style() }, - "S.OuterLabel.Success" to { TextField.S.OuterLabel.Success.style() }, - "S.OuterLabel.Warning" to { TextField.S.OuterLabel.Warning.style() }, - "S.OuterLabel.Error" to { TextField.S.OuterLabel.Error.style() }, - "S.OuterLabel.RequiredStart.Default" to { TextField.S.OuterLabel.RequiredStart.Default.style() }, - "S.OuterLabel.RequiredStart.Success" to { TextField.S.OuterLabel.RequiredStart.Success.style() }, - "S.OuterLabel.RequiredStart.Warning" to { TextField.S.OuterLabel.RequiredStart.Warning.style() }, - "S.OuterLabel.RequiredStart.Error" to { TextField.S.OuterLabel.RequiredStart.Error.style() }, - "S.OuterLabel.RequiredEnd.Default" to { TextField.S.OuterLabel.RequiredEnd.Default.style() }, - "S.OuterLabel.RequiredEnd.Success" to { TextField.S.OuterLabel.RequiredEnd.Success.style() }, - "S.OuterLabel.RequiredEnd.Warning" to { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, - "S.OuterLabel.RequiredEnd.Error" to { TextField.S.OuterLabel.RequiredEnd.Error.style() }, - "S.InnerLabel.Default" to { TextField.S.InnerLabel.Default.style() }, - "S.InnerLabel.Success" to { TextField.S.InnerLabel.Success.style() }, - "S.InnerLabel.Warning" to { TextField.S.InnerLabel.Warning.style() }, - "S.InnerLabel.Error" to { TextField.S.InnerLabel.Error.style() }, - "S.InnerLabel.RequiredStart.Default" to { TextField.S.InnerLabel.RequiredStart.Default.style() }, - "S.InnerLabel.RequiredStart.Success" to { TextField.S.InnerLabel.RequiredStart.Success.style() }, - "S.InnerLabel.RequiredStart.Warning" to { TextField.S.InnerLabel.RequiredStart.Warning.style() }, - "S.InnerLabel.RequiredStart.Error" to { TextField.S.InnerLabel.RequiredStart.Error.style() }, - "S.InnerLabel.RequiredEnd.Default" to { TextField.S.InnerLabel.RequiredEnd.Default.style() }, - "S.InnerLabel.RequiredEnd.Success" to { TextField.S.InnerLabel.RequiredEnd.Success.style() }, - "S.InnerLabel.RequiredEnd.Warning" to { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, - "S.InnerLabel.RequiredEnd.Error" to { TextField.S.InnerLabel.RequiredEnd.Error.style() }, - "M.Default" to { TextField.M.Default.style() }, - "M.Success" to { TextField.M.Success.style() }, - "M.Warning" to { TextField.M.Warning.style() }, - "M.Error" to { TextField.M.Error.style() }, - "M.RequiredStart.Default" to { TextField.M.RequiredStart.Default.style() }, - "M.RequiredStart.Success" to { TextField.M.RequiredStart.Success.style() }, - "M.RequiredStart.Warning" to { TextField.M.RequiredStart.Warning.style() }, - "M.RequiredStart.Error" to { TextField.M.RequiredStart.Error.style() }, - "M.RequiredEnd.Default" to { TextField.M.RequiredEnd.Default.style() }, - "M.RequiredEnd.Success" to { TextField.M.RequiredEnd.Success.style() }, - "M.RequiredEnd.Warning" to { TextField.M.RequiredEnd.Warning.style() }, - "M.RequiredEnd.Error" to { TextField.M.RequiredEnd.Error.style() }, - "M.OuterLabel.Default" to { TextField.M.OuterLabel.Default.style() }, - "M.OuterLabel.Success" to { TextField.M.OuterLabel.Success.style() }, - "M.OuterLabel.Warning" to { TextField.M.OuterLabel.Warning.style() }, - "M.OuterLabel.Error" to { TextField.M.OuterLabel.Error.style() }, - "M.OuterLabel.RequiredStart.Default" to { TextField.M.OuterLabel.RequiredStart.Default.style() }, - "M.OuterLabel.RequiredStart.Success" to { TextField.M.OuterLabel.RequiredStart.Success.style() }, - "M.OuterLabel.RequiredStart.Warning" to { TextField.M.OuterLabel.RequiredStart.Warning.style() }, - "M.OuterLabel.RequiredStart.Error" to { TextField.M.OuterLabel.RequiredStart.Error.style() }, - "M.OuterLabel.RequiredEnd.Default" to { TextField.M.OuterLabel.RequiredEnd.Default.style() }, - "M.OuterLabel.RequiredEnd.Success" to { TextField.M.OuterLabel.RequiredEnd.Success.style() }, - "M.OuterLabel.RequiredEnd.Warning" to { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, - "M.OuterLabel.RequiredEnd.Error" to { TextField.M.OuterLabel.RequiredEnd.Error.style() }, - "M.InnerLabel.Default" to { TextField.M.InnerLabel.Default.style() }, - "M.InnerLabel.Success" to { TextField.M.InnerLabel.Success.style() }, - "M.InnerLabel.Warning" to { TextField.M.InnerLabel.Warning.style() }, - "M.InnerLabel.Error" to { TextField.M.InnerLabel.Error.style() }, - "M.InnerLabel.RequiredStart.Default" to { TextField.M.InnerLabel.RequiredStart.Default.style() }, - "M.InnerLabel.RequiredStart.Success" to { TextField.M.InnerLabel.RequiredStart.Success.style() }, - "M.InnerLabel.RequiredStart.Warning" to { TextField.M.InnerLabel.RequiredStart.Warning.style() }, - "M.InnerLabel.RequiredStart.Error" to { TextField.M.InnerLabel.RequiredStart.Error.style() }, - "M.InnerLabel.RequiredEnd.Default" to { TextField.M.InnerLabel.RequiredEnd.Default.style() }, - "M.InnerLabel.RequiredEnd.Success" to { TextField.M.InnerLabel.RequiredEnd.Success.style() }, - "M.InnerLabel.RequiredEnd.Warning" to { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, - "M.InnerLabel.RequiredEnd.Error" to { TextField.M.InnerLabel.RequiredEnd.Error.style() }, - "L.Default" to { TextField.L.Default.style() }, - "L.Success" to { TextField.L.Success.style() }, - "L.Warning" to { TextField.L.Warning.style() }, - "L.Error" to { TextField.L.Error.style() }, - "L.RequiredStart.Default" to { TextField.L.RequiredStart.Default.style() }, - "L.RequiredStart.Success" to { TextField.L.RequiredStart.Success.style() }, - "L.RequiredStart.Warning" to { TextField.L.RequiredStart.Warning.style() }, - "L.RequiredStart.Error" to { TextField.L.RequiredStart.Error.style() }, - "L.RequiredEnd.Default" to { TextField.L.RequiredEnd.Default.style() }, - "L.RequiredEnd.Success" to { TextField.L.RequiredEnd.Success.style() }, - "L.RequiredEnd.Warning" to { TextField.L.RequiredEnd.Warning.style() }, - "L.RequiredEnd.Error" to { TextField.L.RequiredEnd.Error.style() }, - "L.OuterLabel.Default" to { TextField.L.OuterLabel.Default.style() }, - "L.OuterLabel.Success" to { TextField.L.OuterLabel.Success.style() }, - "L.OuterLabel.Warning" to { TextField.L.OuterLabel.Warning.style() }, - "L.OuterLabel.Error" to { TextField.L.OuterLabel.Error.style() }, - "L.OuterLabel.RequiredStart.Default" to { TextField.L.OuterLabel.RequiredStart.Default.style() }, - "L.OuterLabel.RequiredStart.Success" to { TextField.L.OuterLabel.RequiredStart.Success.style() }, - "L.OuterLabel.RequiredStart.Warning" to { TextField.L.OuterLabel.RequiredStart.Warning.style() }, - "L.OuterLabel.RequiredStart.Error" to { TextField.L.OuterLabel.RequiredStart.Error.style() }, - "L.OuterLabel.RequiredEnd.Default" to { TextField.L.OuterLabel.RequiredEnd.Default.style() }, - "L.OuterLabel.RequiredEnd.Success" to { TextField.L.OuterLabel.RequiredEnd.Success.style() }, - "L.OuterLabel.RequiredEnd.Warning" to { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, - "L.OuterLabel.RequiredEnd.Error" to { TextField.L.OuterLabel.RequiredEnd.Error.style() }, - "L.InnerLabel.Default" to { TextField.L.InnerLabel.Default.style() }, - "L.InnerLabel.Success" to { TextField.L.InnerLabel.Success.style() }, - "L.InnerLabel.Warning" to { TextField.L.InnerLabel.Warning.style() }, - "L.InnerLabel.Error" to { TextField.L.InnerLabel.Error.style() }, - "L.InnerLabel.RequiredStart.Default" to { TextField.L.InnerLabel.RequiredStart.Default.style() }, - "L.InnerLabel.RequiredStart.Success" to { TextField.L.InnerLabel.RequiredStart.Success.style() }, - "L.InnerLabel.RequiredStart.Warning" to { TextField.L.InnerLabel.RequiredStart.Warning.style() }, - "L.InnerLabel.RequiredStart.Error" to { TextField.L.InnerLabel.RequiredStart.Error.style() }, - "L.InnerLabel.RequiredEnd.Default" to { TextField.L.InnerLabel.RequiredEnd.Default.style() }, - "L.InnerLabel.RequiredEnd.Success" to { TextField.L.InnerLabel.RequiredEnd.Success.style() }, - "L.InnerLabel.RequiredEnd.Warning" to { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, - "L.InnerLabel.RequiredEnd.Error" to { TextField.L.InnerLabel.RequiredEnd.Error.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextSkeletonVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextSkeletonVariationsCompose.kt deleted file mode 100644 index 42697891e7..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTextSkeletonVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.textskeleton.Default -import com.sdds.stylessalute.styles.textskeleton.Lighter -import com.sdds.stylessalute.styles.textskeleton.TextSkeleton - -internal object StylesSaluteTextSkeletonVariationsCompose : ComposeStyleProvider() { - override val variations: Map TextSkeletonStyle> = - mapOf( - "Default" to { TextSkeleton.Default.style() }, - "Lighter" to { TextSkeleton.Lighter.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteToastVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteToastVariationsCompose.kt deleted file mode 100644 index d7067dad27..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteToastVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.toast.Pilled -import com.sdds.stylessalute.styles.toast.Rounded -import com.sdds.stylessalute.styles.toast.Toast - -internal object StylesSaluteToastVariationsCompose : ComposeStyleProvider() { - override val variations: Map ToastStyle> = - mapOf( - "Rounded" to { Toast.Rounded.style() }, - "Pilled" to { Toast.Pilled.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTooltipVariationsCompose.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTooltipVariationsCompose.kt deleted file mode 100644 index 8a9eb6e2fe..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/compose/StylesSaluteTooltipVariationsCompose.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.compose - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.playground.sandbox.core.integration.ComposeStyleProvider -import com.sdds.stylessalute.styles.tooltip.M -import com.sdds.stylessalute.styles.tooltip.S -import com.sdds.stylessalute.styles.tooltip.Tooltip - -internal object StylesSaluteTooltipVariationsCompose : ComposeStyleProvider() { - override val variations: Map TooltipStyle> = - mapOf( - "M" to { Tooltip.M.style() }, - "S" to { Tooltip.S.style() }, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionEndVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionEndVariationsView.kt deleted file mode 100644 index 934c14e306..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionStartVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionStartVariationsView.kt deleted file mode 100644 index 00a83548c8..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionEndVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionEndVariationsView.kt deleted file mode 100644 index 46ab6ae99f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionItemClearActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionEndH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionStartVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionStartVariationsView.kt deleted file mode 100644 index 9be73cb1ef..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemClearActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionItemClearActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemClearActionStartH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionEndVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionEndVariationsView.kt deleted file mode 100644 index 06fb3a9036..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionItemSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionEndH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionStartVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionStartVariationsView.kt deleted file mode 100644 index f90b8aa401..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionItemSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionItemSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionItemSolidActionStartH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionEndVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionEndVariationsView.kt deleted file mode 100644 index 2d6db058bc..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionEndVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionSolidActionEndVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionStartVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionStartVariationsView.kt deleted file mode 100644 index d16591d52b..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAccordionSolidActionStartVariationsView.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAccordionSolidActionStartVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartXs, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartL, - "H2" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartH2, - "H3" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartH3, - "H4" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartH4, - "H5" to DsR.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartH5, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarGroupVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarGroupVariationsView.kt deleted file mode 100644 index a1f0db95bf..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarGroupVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAvatarGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AvatarGroupS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarVariationsView.kt deleted file mode 100644 index 614fc2e898..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteAvatarVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteAvatarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xxl" to DsR.style.Salute_StylesSalute_ComponentOverlays_AvatarXxl, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_AvatarL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_AvatarM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_AvatarS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeClearVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeClearVariationsView.kt deleted file mode 100644 index cac654e82a..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeSolidVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeSolidVariationsView.kt deleted file mode 100644 index 1b79a27435..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeTransparentVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeTransparentVariationsView.kt deleted file mode 100644 index d56732f7f6..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonGroupVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonGroupVariationsView.kt deleted file mode 100644 index 796744d4e3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonGroupVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteBasicButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXs, - "Xs.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsWideDefault, - "Xs.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsDenseDefault, - "Xs.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsNoGapDefault, - "Xs.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsNoGapSegmented, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupS, - "S.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSWide, - "S.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSWideDefault, - "S.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSDense, - "S.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSDenseDefault, - "S.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSNoGapDefault, - "S.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSNoGapSegmented, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupM, - "M.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMWide, - "M.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMWideDefault, - "M.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMDense, - "M.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMDenseDefault, - "M.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMNoGapDefault, - "M.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMNoGapSegmented, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupL, - "L.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLWide, - "L.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLWideDefault, - "L.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLDense, - "L.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLDenseDefault, - "L.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLNoGapDefault, - "L.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonVariationsView.kt deleted file mode 100644 index b8439a0301..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteBasicButtonVariationsView.kt +++ /dev/null @@ -1,54 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteBasicButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLDefault, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLSecondary, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLAccent, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLPositive, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLNegative, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLWarning, - "L.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLClear, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLDark, - "L.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLBlack, - "L.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLWhite, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMDefault, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMSecondary, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMAccent, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMPositive, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMNegative, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMWarning, - "M.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMClear, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMDark, - "M.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMBlack, - "M.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMWhite, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSDefault, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSSecondary, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSAccent, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSPositive, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSNegative, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSWarning, - "S.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSClear, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSDark, - "S.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSBlack, - "S.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSWhite, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsDefault, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsSecondary, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsAccent, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsPositive, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsNegative, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsWarning, - "Xs.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsClear, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsDark, - "Xs.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsBlack, - "Xs.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsWhite, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCellVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCellVariationsView.kt deleted file mode 100644 index 0f1810ffdb..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCellVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteCellVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_CellL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_CellM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_CellS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_CellXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxGroupVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxGroupVariationsView.kt deleted file mode 100644 index 7c0bec3af3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxGroupVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteCheckBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxGroupM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxGroupS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxVariationsView.kt deleted file mode 100644 index 55341db450..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCheckBoxVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteCheckBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxMDefault, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CheckBoxSDefault, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupDenseVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupDenseVariationsView.kt deleted file mode 100644 index 6b25c84660..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLSecondary, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLPilledAccent, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLPilledSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMSecondary, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMPilledAccent, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseMPilledSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSSecondary, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSPilledAccent, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSPilledSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsSecondary, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsPilledAccent, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsPilledSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupWideVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupWideVariationsView.kt deleted file mode 100644 index c823ac69f7..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipGroupWideVariationsView.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLSecondary, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLPilledAccent, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideLPilledSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMSecondary, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMPilledAccent, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMPilledSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSSecondary, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSPilledAccent, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideSPilledSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsSecondary, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsPilledAccent, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideXsPilledSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipVariationsView.kt deleted file mode 100644 index 9b6fe5544b..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteChipVariationsView.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLSecondary, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLPilledAccent, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipLPilledSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMSecondary, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMPilledAccent, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipMPilledSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSSecondary, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSPilledAccent, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipSPilledSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsSecondary, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsPilledAccent, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ChipXsPilledSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCodeInputVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCodeInputVariationsView.kt deleted file mode 100644 index cd35e42db7..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCodeInputVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteCodeInputVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_CodeInputS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_CodeInputM, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_CodeInputL, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCounterVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCounterVariationsView.kt deleted file mode 100644 index 4f41f80fe4..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteCounterVariationsView.kt +++ /dev/null @@ -1,50 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteCounterVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLAccent, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLWarning, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLNegative, - "L.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLBlack, - "L.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterLWhite, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMAccent, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMWarning, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMNegative, - "M.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMBlack, - "M.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterMWhite, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSAccent, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSWarning, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSNegative, - "S.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSBlack, - "S.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterSWhite, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsAccent, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsWarning, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsNegative, - "Xs.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsBlack, - "Xs.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXsWhite, - "Xxs" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxs, - "Xxs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsDefault, - "Xxs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsAccent, - "Xxs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsPositive, - "Xxs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsWarning, - "Xxs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsNegative, - "Xxs.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsBlack, - "Xxs.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_CounterXxsWhite, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDividerVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDividerVariationsView.kt deleted file mode 100644 index c94a8a9ddc..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDividerVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDividerVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_Divider, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemNormalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemNormalVariationsView.kt deleted file mode 100644 index 299b5746cc..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemNormalVariationsView.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalLDefault, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalLPositive, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalLNegative, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalMDefault, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalMPositive, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalMNegative, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalSDefault, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalSPositive, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalSNegative, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalXsDefault, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalXsPositive, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemNormalXsNegative, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemTightVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemTightVariationsView.kt deleted file mode 100644 index c5a9306aa3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuItemTightVariationsView.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightLDefault, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightLPositive, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightLNegative, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightMDefault, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightMPositive, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightMNegative, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightSDefault, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightSPositive, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightSNegative, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightXsDefault, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightXsPositive, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuItemTightXsNegative, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListNormalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListNormalVariationsView.kt deleted file mode 100644 index 219bf67890..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListNormalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListNormalL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListNormalM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListNormalS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListNormalXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListTightVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListTightVariationsView.kt deleted file mode 100644 index 2741635e79..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuListTightVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListTightL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListTightM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListTightS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuListTightXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuNormalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuNormalVariationsView.kt deleted file mode 100644 index 49e35ca7ad..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuNormalVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuTightVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuTightVariationsView.kt deleted file mode 100644 index d57f31a838..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteDropdownMenuTightVariationsView.kt +++ /dev/null @@ -1,14 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteDropdownMenuTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuTightL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuTightM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuTightS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuTightXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupDenseVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupDenseVariationsView.kt deleted file mode 100644 index 6f249fd22f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupDenseVariationsView.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteEmbeddedChipGroupDenseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseLSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseMSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseSSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupDenseXsSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupWideVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupWideVariationsView.kt deleted file mode 100644 index 198cae516c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipGroupWideVariationsView.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteEmbeddedChipGroupWideVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideLSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideMSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideSSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipGroupWideXsSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipVariationsView.kt deleted file mode 100644 index fe39fe20a9..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteEmbeddedChipVariationsView.kt +++ /dev/null @@ -1,26 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteEmbeddedChipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipLAccent, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipLSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipMAccent, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipMSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipSAccent, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipSSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipXsAccent, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_EmbeddedChipXsSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeClearVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeClearVariationsView.kt deleted file mode 100644 index 6fb11bd41b..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeClearVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIconBadgeClearVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeSolidVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeSolidVariationsView.kt deleted file mode 100644 index 7f843a2ed5..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeSolidVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIconBadgeSolidVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeTransparentVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeTransparentVariationsView.kt deleted file mode 100644 index d80a86511b..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconBadgeTransparentVariationsView.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIconBadgeTransparentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLAccent, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLNegative, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLWarning, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLDark, - "L.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLLight, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledDefault, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledAccent, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledNegative, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledPositive, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledWarning, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledDark, - "L.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentLPilledLight, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMAccent, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMNegative, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMWarning, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMDark, - "M.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMLight, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledDefault, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledAccent, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledNegative, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledPositive, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledWarning, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledDark, - "M.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentMPilledLight, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSAccent, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSNegative, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSWarning, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSDark, - "S.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSLight, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledDefault, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledAccent, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledNegative, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledPositive, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledWarning, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledDark, - "S.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentSPilledLight, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsDefault, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsAccent, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsNegative, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPositive, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsWarning, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsDark, - "Xs.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsLight, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledDefault, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledAccent, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledNegative, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledPositive, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledWarning, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledDark, - "Xs.Pilled.Light" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsPilledLight, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonGroupVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonGroupVariationsView.kt deleted file mode 100644 index f1bae7578c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonGroupVariationsView.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIconButtonGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXs, - "Xs.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsWide, - "Xs.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsWideDefault, - "Xs.Wide.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsWidePilled, - "Xs.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsWideSegmented, - "Xs.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsDense, - "Xs.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsDenseDefault, - "Xs.Dense.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsDensePilled, - "Xs.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsDenseSegmented, - "Xs.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsNoGap, - "Xs.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsNoGapDefault, - "Xs.NoGap.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsNoGapPilled, - "Xs.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsNoGapSegmented, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupS, - "S.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSWide, - "S.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSWideDefault, - "S.Wide.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSWidePilled, - "S.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSWideSegmented, - "S.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSDense, - "S.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSDenseDefault, - "S.Dense.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSDensePilled, - "S.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSDenseSegmented, - "S.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSNoGap, - "S.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSNoGapDefault, - "S.NoGap.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSNoGapPilled, - "S.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSNoGapSegmented, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupM, - "M.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMWide, - "M.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMWideDefault, - "M.Wide.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMWidePilled, - "M.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMWideSegmented, - "M.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMDense, - "M.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMDenseDefault, - "M.Dense.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMDensePilled, - "M.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMDenseSegmented, - "M.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMNoGap, - "M.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMNoGapDefault, - "M.NoGap.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMNoGapPilled, - "M.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMNoGapSegmented, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupL, - "L.Wide" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLWide, - "L.Wide.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLWideDefault, - "L.Wide.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLWidePilled, - "L.Wide.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLWideSegmented, - "L.Dense" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLDense, - "L.Dense.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLDenseDefault, - "L.Dense.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLDensePilled, - "L.Dense.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLDenseSegmented, - "L.NoGap" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGap, - "L.NoGap.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGapDefault, - "L.NoGap.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGapPilled, - "L.NoGap.Segmented" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGapSegmented, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonVariationsView.kt deleted file mode 100644 index e6ba762fb9..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIconButtonVariationsView.kt +++ /dev/null @@ -1,98 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIconButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLDefault, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLSecondary, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLAccent, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPositive, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLNegative, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLWarning, - "L.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLClear, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLDark, - "L.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLBlack, - "L.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLWhite, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilled, - "L.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledDefault, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledSecondary, - "L.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledAccent, - "L.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledPositive, - "L.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledNegative, - "L.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledWarning, - "L.Pilled.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledClear, - "L.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledDark, - "L.Pilled.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledBlack, - "L.Pilled.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledWhite, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMDefault, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMSecondary, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMAccent, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPositive, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMNegative, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMWarning, - "M.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMClear, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMDark, - "M.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMBlack, - "M.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMWhite, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilled, - "M.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledDefault, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledSecondary, - "M.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledAccent, - "M.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledPositive, - "M.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledNegative, - "M.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledWarning, - "M.Pilled.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledClear, - "M.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledDark, - "M.Pilled.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledBlack, - "M.Pilled.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonMPilledWhite, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSDefault, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSSecondary, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSAccent, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPositive, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSNegative, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSWarning, - "S.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSClear, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSDark, - "S.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSBlack, - "S.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSWhite, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilled, - "S.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledDefault, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledSecondary, - "S.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledAccent, - "S.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledPositive, - "S.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledNegative, - "S.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledWarning, - "S.Pilled.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledClear, - "S.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledDark, - "S.Pilled.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledBlack, - "S.Pilled.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPilledWhite, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsDefault, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsSecondary, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsAccent, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPositive, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsNegative, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsWarning, - "Xs.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsClear, - "Xs.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsDark, - "Xs.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsBlack, - "Xs.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsWhite, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilled, - "Xs.Pilled.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledDefault, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledSecondary, - "Xs.Pilled.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledAccent, - "Xs.Pilled.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledPositive, - "Xs.Pilled.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledNegative, - "Xs.Pilled.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledWarning, - "Xs.Pilled.Clear" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledClear, - "Xs.Pilled.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledDark, - "Xs.Pilled.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledBlack, - "Xs.Pilled.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledWhite, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIndicatorVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIndicatorVariationsView.kt deleted file mode 100644 index b098ff17da..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteIndicatorVariationsView.kt +++ /dev/null @@ -1,40 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteIndicatorVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLDefault, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLAccent, - "L.Inactive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLInactive, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLPositive, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLWarning, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLNegative, - "L.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLDark, - "L.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLBlack, - "L.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorLWhite, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMAccent, - "M.Inactive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMInactive, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMPositive, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMWarning, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMNegative, - "M.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMDark, - "M.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMBlack, - "M.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorMWhite, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSAccent, - "S.Inactive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSInactive, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSPositive, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSWarning, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSNegative, - "S.Dark" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSDark, - "S.Black" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSBlack, - "S.White" to DsR.style.Salute_StylesSalute_ComponentOverlays_IndicatorSWhite, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteLinkButtonVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteLinkButtonVariationsView.kt deleted file mode 100644 index d1b58d4ce7..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteLinkButtonVariationsView.kt +++ /dev/null @@ -1,38 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteLinkButtonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLDefault, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLSecondary, - "L.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLAccent, - "L.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLPositive, - "L.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLNegative, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLWarning, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMDefault, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMSecondary, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMAccent, - "M.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMPositive, - "M.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMNegative, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMWarning, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSDefault, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSSecondary, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSAccent, - "S.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSPositive, - "S.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSNegative, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSWarning, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsDefault, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsSecondary, - "Xs.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsAccent, - "Xs.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsPositive, - "Xs.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsNegative, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsWarning, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemNormalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemNormalVariationsView.kt deleted file mode 100644 index dd31d34ad1..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteListItemNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemNormalXl, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemNormalL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemNormalM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemNormalS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemNormalXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemTightVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemTightVariationsView.kt deleted file mode 100644 index 1c2c8764f6..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListItemTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteListItemTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemTightXl, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemTightL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemTightM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemTightS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListItemTightXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListNormalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListNormalVariationsView.kt deleted file mode 100644 index 6c403bb37c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListNormalVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteListNormalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListNormalXl, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListNormalL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListNormalM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListNormalS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListNormalXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListTightVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListTightVariationsView.kt deleted file mode 100644 index 90e5750f12..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteListTightVariationsView.kt +++ /dev/null @@ -1,15 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteListTightVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xl" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListTightXl, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListTightL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListTightM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListTightS, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_ListTightXs, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteModalVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteModalVariationsView.kt deleted file mode 100644 index 6818fcca05..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteModalVariationsView.kt +++ /dev/null @@ -1,11 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteModalVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_Modal, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationCompactVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationCompactVariationsView.kt deleted file mode 100644 index 215da7054c..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationCompactVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteNotificationCompactVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationContentVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationContentVariationsView.kt deleted file mode 100644 index abe7a8f1b4..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationContentVariationsView.kt +++ /dev/null @@ -1,46 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteNotificationContentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "ButtonStretch" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretch, - "ButtonStretch.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchDefault, - "ButtonStretch.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchPositive, - "ButtonStretch.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchNegative, - "ButtonStretch.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchWarning, - "ButtonStretch.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchInfo, - "ButtonStretch.IconTop" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTop, - "ButtonStretch.IconTop.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopDefault, - "ButtonStretch.IconTop.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopPositive, - "ButtonStretch.IconTop.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopNegative, - "ButtonStretch.IconTop.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopWarning, - "ButtonStretch.IconTop.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopInfo, - "ButtonStretch.IconStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStart, - "ButtonStretch.IconStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartDefault, - "ButtonStretch.IconStart.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartPositive, - "ButtonStretch.IconStart.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartNegative, - "ButtonStretch.IconStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartWarning, - "ButtonStretch.IconStart.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartInfo, - "NoButtonStretch" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretch, - "NoButtonStretch.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchDefault, - "NoButtonStretch.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchPositive, - "NoButtonStretch.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchNegative, - "NoButtonStretch.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchWarning, - "NoButtonStretch.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchInfo, - "NoButtonStretch.IconTop" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTop, - "NoButtonStretch.IconTop.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTopDefault, - "NoButtonStretch.IconTop.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTopPositive, - "NoButtonStretch.IconTop.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTopNegative, - "NoButtonStretch.IconTop.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTopWarning, - "NoButtonStretch.IconTop.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconTopInfo, - "NoButtonStretch.IconStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStart, - "NoButtonStretch.IconStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStartDefault, - "NoButtonStretch.IconStart.Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStartPositive, - "NoButtonStretch.IconStart.Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStartNegative, - "NoButtonStretch.IconStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStartWarning, - "NoButtonStretch.IconStart.Info" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationContentNoButtonStretchIconStartInfo, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationLooseVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationLooseVariationsView.kt deleted file mode 100644 index 3d7bb0a771..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteNotificationLooseVariationsView.kt +++ /dev/null @@ -1,13 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteNotificationLooseVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationLooseL, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationLooseM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_NotificationLooseS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSalutePopoverVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSalutePopoverVariationsView.kt deleted file mode 100644 index a5e1982526..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSalutePopoverVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSalutePopoverVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault, - "M.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverMAccent, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverSDefault, - "S.Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_PopoverSAccent, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteProgressBarVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteProgressBarVariationsView.kt deleted file mode 100644 index e6711d64c8..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteProgressBarVariationsView.kt +++ /dev/null @@ -1,17 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteProgressBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarDefault, - ".Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarSecondary, - ".Accent" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarAccent, - ".Gradient" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarGradient, - ".Negative" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarNegative, - ".Positive" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarPositive, - ".Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_ProgressBarWarning, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxGroupVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxGroupVariationsView.kt deleted file mode 100644 index b678e2ee2f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxGroupVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteRadioBoxGroupVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxVariationsView.kt deleted file mode 100644 index 6fa4c73d5f..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRadioBoxVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteRadioBoxVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_RadioBoxM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_RadioBoxS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRectSkeletonVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRectSkeletonVariationsView.kt deleted file mode 100644 index 413c43fc4a..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteRectSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteRectSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_RectSkeletonDefault, - ".Lighter" to DsR.style.Salute_StylesSalute_ComponentOverlays_RectSkeletonLighter, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteScrollBarVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteScrollBarVariationsView.kt deleted file mode 100644 index a5c05dd0f6..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteScrollBarVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteScrollBarVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_ScrollBarS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_ScrollBarM, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentItemVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentItemVariationsView.kt deleted file mode 100644 index 0daac053b3..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentItemVariationsView.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteSegmentItemVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemL, - "L.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPrimary, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLSecondary, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPilled, - "L.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPilledSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemM, - "M.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMPrimary, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMSecondary, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMPilled, - "M.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMPilledSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemS, - "S.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemSPrimary, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemSSecondary, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemSPilled, - "S.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemSPilledSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXs, - "Xs.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsPrimary, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsSecondary, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsPilled, - "Xs.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsPilledSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentVariationsView.kt deleted file mode 100644 index f3f3138205..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSegmentVariationsView.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteSegmentVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentL, - "L.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentLPrimary, - "L.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentLSecondary, - "L.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentLPilled, - "L.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentLPilledPrimary, - "L.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentLPilledSecondary, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentM, - "M.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentMPrimary, - "M.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentMSecondary, - "M.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentMPilled, - "M.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentMPilledPrimary, - "M.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentMPilledSecondary, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentS, - "S.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentSPrimary, - "S.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentSSecondary, - "S.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentSPilled, - "S.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentSPilledPrimary, - "S.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentSPilledSecondary, - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXs, - "Xs.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXsPrimary, - "Xs.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXsSecondary, - "Xs.Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXsPilled, - "Xs.Pilled.Primary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXsPilledPrimary, - "Xs.Pilled.Secondary" to DsR.style.Salute_StylesSalute_ComponentOverlays_SegmentXsPilledSecondary, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSwitchVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSwitchVariationsView.kt deleted file mode 100644 index ab1af1f7ce..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteSwitchVariationsView.kt +++ /dev/null @@ -1,16 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteSwitchVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchL, - "L.ToggleS" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchLToggleS, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchM, - "M.ToggleS" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchMToggleS, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchS, - "S.ToggleS" to DsR.style.Salute_StylesSalute_ComponentOverlays_SwitchSToggleS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextAreaVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextAreaVariationsView.kt deleted file mode 100644 index 7051bab54e..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextAreaVariationsView.kt +++ /dev/null @@ -1,142 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteTextAreaVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsDefault, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsWarning, - "Xs.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsError, - "Xs.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredStartDefault, - "Xs.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredEndDefault, - "Xs.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelDefault, - "Xs.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabelRequiredEndError, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSDefault, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSWarning, - "S.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSError, - "S.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredStartDefault, - "S.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredStartError, - "S.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredEndDefault, - "S.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSRequiredEndError, - "S.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelDefault, - "S.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelDefault, - "S.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEndError, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMDefault, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMWarning, - "M.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMError, - "M.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredStartDefault, - "M.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredStartError, - "M.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredEndDefault, - "M.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMRequiredEndError, - "M.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelDefault, - "M.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelDefault, - "M.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabelRequiredEndError, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLDefault, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLWarning, - "L.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLError, - "L.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredStartDefault, - "L.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredStartError, - "L.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredEndDefault, - "L.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLRequiredEndError, - "L.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelDefault, - "L.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelDefault, - "L.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextFieldVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextFieldVariationsView.kt deleted file mode 100644 index 63f35eadff..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextFieldVariationsView.kt +++ /dev/null @@ -1,175 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteTextFieldVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Xs" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXs, - "Xs.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsDefault, - "Xs.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsSuccess, - "Xs.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsWarning, - "Xs.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsError, - "Xs.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStart, - "Xs.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStartDefault, - "Xs.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStartSuccess, - "Xs.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStartWarning, - "Xs.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStartError, - "Xs.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredEnd, - "Xs.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredEndDefault, - "Xs.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredEndSuccess, - "Xs.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredEndWarning, - "Xs.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredEndError, - "Xs.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabel, - "Xs.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelDefault, - "Xs.OuterLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelSuccess, - "Xs.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelWarning, - "Xs.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelError, - "Xs.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStart, - "Xs.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStartDefault, - "Xs.OuterLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStartSuccess, - "Xs.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStartWarning, - "Xs.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStartError, - "Xs.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredEnd, - "Xs.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredEndDefault, - "Xs.OuterLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredEndSuccess, - "Xs.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredEndWarning, - "Xs.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredEndError, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldS, - "S.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSDefault, - "S.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSSuccess, - "S.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSWarning, - "S.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSError, - "S.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredStart, - "S.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredStartDefault, - "S.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredStartSuccess, - "S.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredStartWarning, - "S.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredStartError, - "S.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredEnd, - "S.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredEndDefault, - "S.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredEndSuccess, - "S.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredEndWarning, - "S.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSRequiredEndError, - "S.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabel, - "S.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelDefault, - "S.OuterLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelSuccess, - "S.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelWarning, - "S.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelError, - "S.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredStart, - "S.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredStartDefault, - "S.OuterLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredStartSuccess, - "S.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredStartWarning, - "S.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredStartError, - "S.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEnd, - "S.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEndDefault, - "S.OuterLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEndSuccess, - "S.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEndWarning, - "S.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEndError, - "S.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabel, - "S.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelDefault, - "S.InnerLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelSuccess, - "S.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelWarning, - "S.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelError, - "S.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredStart, - "S.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredStartDefault, - "S.InnerLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredStartSuccess, - "S.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredStartWarning, - "S.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredStartError, - "S.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - "S.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEndDefault, - "S.InnerLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEndSuccess, - "S.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEndWarning, - "S.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEndError, - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldM, - "M.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMDefault, - "M.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMSuccess, - "M.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMWarning, - "M.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMError, - "M.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredStart, - "M.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredStartDefault, - "M.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredStartSuccess, - "M.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredStartWarning, - "M.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredStartError, - "M.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredEnd, - "M.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredEndDefault, - "M.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredEndSuccess, - "M.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredEndWarning, - "M.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMRequiredEndError, - "M.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabel, - "M.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelDefault, - "M.OuterLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelSuccess, - "M.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelWarning, - "M.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelError, - "M.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredStart, - "M.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredStartDefault, - "M.OuterLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredStartSuccess, - "M.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredStartWarning, - "M.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredStartError, - "M.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEnd, - "M.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEndDefault, - "M.OuterLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEndSuccess, - "M.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEndWarning, - "M.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEndError, - "M.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabel, - "M.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelDefault, - "M.InnerLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelSuccess, - "M.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelWarning, - "M.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelError, - "M.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredStart, - "M.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredStartDefault, - "M.InnerLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredStartSuccess, - "M.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredStartWarning, - "M.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredStartError, - "M.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredEnd, - "M.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredEndDefault, - "M.InnerLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredEndSuccess, - "M.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredEndWarning, - "M.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabelRequiredEndError, - "L" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldL, - "L.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - "L.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLSuccess, - "L.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLWarning, - "L.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLError, - "L.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredStart, - "L.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredStartDefault, - "L.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredStartSuccess, - "L.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredStartWarning, - "L.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredStartError, - "L.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredEnd, - "L.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredEndDefault, - "L.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredEndSuccess, - "L.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredEndWarning, - "L.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLRequiredEndError, - "L.OuterLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabel, - "L.OuterLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelDefault, - "L.OuterLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelSuccess, - "L.OuterLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelWarning, - "L.OuterLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelError, - "L.OuterLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - "L.OuterLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStartDefault, - "L.OuterLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStartSuccess, - "L.OuterLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStartWarning, - "L.OuterLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStartError, - "L.OuterLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredEnd, - "L.OuterLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredEndDefault, - "L.OuterLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredEndSuccess, - "L.OuterLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredEndWarning, - "L.OuterLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredEndError, - "L.InnerLabel" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabel, - "L.InnerLabel.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelDefault, - "L.InnerLabel.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelSuccess, - "L.InnerLabel.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelWarning, - "L.InnerLabel.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelError, - "L.InnerLabel.RequiredStart" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - "L.InnerLabel.RequiredStart.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStartDefault, - "L.InnerLabel.RequiredStart.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStartSuccess, - "L.InnerLabel.RequiredStart.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStartWarning, - "L.InnerLabel.RequiredStart.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStartError, - "L.InnerLabel.RequiredEnd" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredEnd, - "L.InnerLabel.RequiredEnd.Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredEndDefault, - "L.InnerLabel.RequiredEnd.Success" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredEndSuccess, - "L.InnerLabel.RequiredEnd.Warning" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredEndWarning, - "L.InnerLabel.RequiredEnd.Error" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredEndError, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextSkeletonVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextSkeletonVariationsView.kt deleted file mode 100644 index 96e2011132..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTextSkeletonVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteTextSkeletonVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - ".Default" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextSkeletonDefault, - ".Lighter" to DsR.style.Salute_StylesSalute_ComponentOverlays_TextSkeletonLighter, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteToastVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteToastVariationsView.kt deleted file mode 100644 index 80b55023e9..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteToastVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteToastVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "Rounded" to DsR.style.Salute_StylesSalute_ComponentOverlays_ToastRounded, - "Pilled" to DsR.style.Salute_StylesSalute_ComponentOverlays_ToastPilled, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTooltipVariationsView.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTooltipVariationsView.kt deleted file mode 100644 index f36fcd7878..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteTooltipVariationsView.kt +++ /dev/null @@ -1,12 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.ViewStyleProvider -import com.sdds.stylessalute.R as DsR - -internal object StylesSaluteTooltipVariationsView : ViewStyleProvider() { - override val variations: Map = - mapOf( - "M" to DsR.style.Salute_StylesSalute_ComponentOverlays_TooltipM, - "S" to DsR.style.Salute_StylesSalute_ComponentOverlays_TooltipS, - ) -} diff --git a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteViewComponents.kt b/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteViewComponents.kt deleted file mode 100644 index 01310625f4..0000000000 --- a/playground/sandbox-stylessalute-integration/src/main/kotlin/com/sdds/playground/sandbox/stylessalute/integration/view/StylesSaluteViewComponents.kt +++ /dev/null @@ -1,272 +0,0 @@ -package com.sdds.playground.sandbox.stylessalute.integration.view - -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView -import com.sdds.playground.sandbox.core.integration.component.ViewComponent - -/** - * Компоненты - */ -object StylesSaluteViewComponents : ComponentsProviderView() { - - override val generated: Map> = - listOf( - ViewComponent( - ComponentKey.Avatar, - mapOf( - "Avatar" to StylesSaluteAvatarVariationsView, - ), - ), - ViewComponent( - ComponentKey.AvatarGroup, - mapOf( - "AvatarGroup" to StylesSaluteAvatarGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Badge, - mapOf( - "BadgeClear" to StylesSaluteBadgeClearVariationsView, - "BadgeSolid" to StylesSaluteBadgeSolidVariationsView, - "BadgeTransparent" to StylesSaluteBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconBadge, - mapOf( - "IconBadgeClear" to StylesSaluteIconBadgeClearVariationsView, - "IconBadgeSolid" to StylesSaluteIconBadgeSolidVariationsView, - "IconBadgeTransparent" to StylesSaluteIconBadgeTransparentVariationsView, - ), - ), - ViewComponent( - ComponentKey.BasicButton, - mapOf( - "BasicButton" to StylesSaluteBasicButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.IconButton, - mapOf( - "IconButton" to StylesSaluteIconButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.LinkButton, - mapOf( - "LinkButton" to StylesSaluteLinkButtonVariationsView, - ), - ), - ViewComponent( - ComponentKey.Cell, - mapOf( - "Cell" to StylesSaluteCellVariationsView, - ), - ), - ViewComponent( - ComponentKey.CheckBox, - mapOf( - "CheckBox" to StylesSaluteCheckBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.CheckBoxGroup, - mapOf( - "CheckBoxGroup" to StylesSaluteCheckBoxGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Chip, - mapOf( - "Chip" to StylesSaluteChipVariationsView, - "EmbeddedChip" to StylesSaluteEmbeddedChipVariationsView, - ), - ), - ViewComponent( - ComponentKey.ChipGroup, - mapOf( - "ChipGroupDense" to StylesSaluteChipGroupDenseVariationsView, - "ChipGroupWide" to StylesSaluteChipGroupWideVariationsView, - "EmbeddedChipGroupDense" to StylesSaluteEmbeddedChipGroupDenseVariationsView, - "EmbeddedChipGroupWide" to StylesSaluteEmbeddedChipGroupWideVariationsView, - ), - ), - ViewComponent( - ComponentKey.Counter, - mapOf( - "Counter" to StylesSaluteCounterVariationsView, - ), - ), - ViewComponent( - ComponentKey.Divider, - mapOf( - "Divider" to StylesSaluteDividerVariationsView, - ), - ), - ViewComponent( - ComponentKey.Indicator, - mapOf( - "Indicator" to StylesSaluteIndicatorVariationsView, - ), - ), - ViewComponent( - ComponentKey.ProgressBar, - mapOf( - "ProgressBar" to StylesSaluteProgressBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.Popover, - mapOf( - "Popover" to StylesSalutePopoverVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBox, - mapOf( - "RadioBox" to StylesSaluteRadioBoxVariationsView, - ), - ), - ViewComponent( - ComponentKey.RadioBoxGroup, - mapOf( - "RadioBoxGroup" to StylesSaluteRadioBoxGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.Segment, - mapOf( - "Segment" to StylesSaluteSegmentVariationsView, - ), - ), - ViewComponent( - ComponentKey.SegmentItem, - mapOf( - "SegmentItem" to StylesSaluteSegmentItemVariationsView, - ), - ), - ViewComponent( - ComponentKey.Switch, - mapOf( - "Switch" to StylesSaluteSwitchVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextField, - mapOf( - "TextField" to StylesSaluteTextFieldVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextArea, - mapOf( - "TextArea" to StylesSaluteTextAreaVariationsView, - ), - ), - ViewComponent( - ComponentKey.Tooltip, - mapOf( - "Tooltip" to StylesSaluteTooltipVariationsView, - ), - ), - ViewComponent( - ComponentKey.Toast, - mapOf( - "Toast" to StylesSaluteToastVariationsView, - ), - ), - ViewComponent( - ComponentKey.Modal, - mapOf( - "Modal" to StylesSaluteModalVariationsView, - ), - ), - ViewComponent( - ComponentKey.RectSkeleton, - mapOf( - "RectSkeleton" to StylesSaluteRectSkeletonVariationsView, - ), - ), - ViewComponent( - ComponentKey.Notification, - mapOf( - "NotificationCompact" to StylesSaluteNotificationCompactVariationsView, - "NotificationLoose" to StylesSaluteNotificationLooseVariationsView, - ), - ), - ViewComponent( - ComponentKey.NotificationContent, - mapOf( - "NotificationContent" to StylesSaluteNotificationContentVariationsView, - ), - ), - ViewComponent( - ComponentKey.List, - mapOf( - "ListNormal" to StylesSaluteListNormalVariationsView, - "ListTight" to StylesSaluteListTightVariationsView, - "DropdownMenuListNormal" to StylesSaluteDropdownMenuListNormalVariationsView, - "DropdownMenuListTight" to StylesSaluteDropdownMenuListTightVariationsView, - ), - ), - ViewComponent( - ComponentKey.ListItem, - mapOf( - "ListItemNormal" to StylesSaluteListItemNormalVariationsView, - "ListItemTight" to StylesSaluteListItemTightVariationsView, - "DropdownMenuItemNormal" to StylesSaluteDropdownMenuItemNormalVariationsView, - "DropdownMenuItemTight" to StylesSaluteDropdownMenuItemTightVariationsView, - ), - ), - ViewComponent( - ComponentKey.TextSkeleton, - mapOf( - "TextSkeleton" to StylesSaluteTextSkeletonVariationsView, - ), - ), - ViewComponent( - ComponentKey.DropdownMenu, - mapOf( - "DropdownMenuTight" to StylesSaluteDropdownMenuTightVariationsView, - "DropdownMenuNormal" to StylesSaluteDropdownMenuNormalVariationsView, - ), - ), - ViewComponent( - ComponentKey.AccordionItem, - mapOf( - "AccordionItemSolidActionStart" to StylesSaluteAccordionItemSolidActionStartVariationsView, - "AccordionItemSolidActionEnd" to StylesSaluteAccordionItemSolidActionEndVariationsView, - "AccordionItemClearActionStart" to StylesSaluteAccordionItemClearActionStartVariationsView, - "AccordionItemClearActionEnd" to StylesSaluteAccordionItemClearActionEndVariationsView, - ), - ), - ViewComponent( - ComponentKey.Accordion, - mapOf( - "AccordionSolidActionStart" to StylesSaluteAccordionSolidActionStartVariationsView, - "AccordionSolidActionEnd" to StylesSaluteAccordionSolidActionEndVariationsView, - "AccordionClearActionStart" to StylesSaluteAccordionClearActionStartVariationsView, - "AccordionClearActionEnd" to StylesSaluteAccordionClearActionEndVariationsView, - ), - ), - ViewComponent( - ComponentKey.ScrollBar, - mapOf( - "ScrollBar" to StylesSaluteScrollBarVariationsView, - ), - ), - ViewComponent( - ComponentKey.ButtonGroup, - mapOf( - "BasicButtonGroup" to StylesSaluteBasicButtonGroupVariationsView, - "IconButtonGroup" to StylesSaluteIconButtonGroupVariationsView, - ), - ), - ViewComponent( - ComponentKey.CodeInput, - mapOf( - "CodeInput" to StylesSaluteCodeInputVariationsView, - ), - ), - ).associateBy { it.key } -} diff --git a/playground/settings.gradle.kts b/playground/settings.gradle.kts index 214b1270af..02117fd66b 100644 --- a/playground/settings.gradle.kts +++ b/playground/settings.gradle.kts @@ -21,17 +21,4 @@ dependencyResolutionManagement { rootProject.name = "playground" includeBuild("../build-system") includeBuild("../sdds-core") -includeBuild("../tokens") -include( - ":sandbox-compose", - ":theme-builder", - ":sandbox-core-integration", - ":sandbox-sdds-serv-integration", - ":sandbox-plasma-sd-service-integration", - ":sandbox-stylessalute-integration", - ":sandbox-plasma-stards-integration", - ":sandbox-plasma-giga-integration", - ":sandbox-plasma-giga-app-integration", - ":sandbox-plasma-homeds-integration", - ":sandbox-sdds-sbcom-integration", -) +include(":theme-builder",) diff --git a/sdds-core/settings.gradle.kts b/sdds-core/settings.gradle.kts index 07e23a3cb1..8ac1c3a3ed 100644 --- a/sdds-core/settings.gradle.kts +++ b/sdds-core/settings.gradle.kts @@ -26,8 +26,8 @@ include( ":plugin_theme_builder", ":uikit", ":uikit-compose", - ":uikit-fixtures", - ":uikit-compose-fixtures", +// ":uikit-fixtures", +// ":uikit-compose-fixtures", ":docs", ":docs-views", ":docs-compose", diff --git a/sdds-core/testing/build.gradle.kts b/sdds-core/testing/build.gradle.kts deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/sdds-core/uikit-compose-fixtures/build.gradle.kts b/sdds-core/uikit-compose-fixtures/build.gradle.kts deleted file mode 100644 index ddae52c269..0000000000 --- a/sdds-core/uikit-compose-fixtures/build.gradle.kts +++ /dev/null @@ -1,46 +0,0 @@ -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.testing-compose") - id("convention.maven-publish") - id("convention.core-fixtures") - alias(libs.plugins.ksp) -} - -group = "sdds-core" - -android { - namespace = "com.sdds.compose.uikit.fixtures" - buildFeatures { - viewBinding = true - } - testOptions { - unitTests { - isIncludeAndroidResources = true - } - } -} - -ksp { - arg("packageName", "com.sdds.compose.docs") - arg("sandbox.packageName", "com.sdds.compose.uikit.fixtures.stories") -} - -dependencies { - implementation(project(":uikit-compose")) - implementation(project(":icons")) - implementation(project(":docs")) - implementation(project(":docs-compose")) - implementation("integration-core:sandbox-core") - implementation("integration-core:sandbox-compose") - ksp(project(":docs-ksp")) - ksp("integration-core:sandbox-ksp") - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.compose.foundation) - implementation(libs.test.roborazzi) - implementation(libs.test.roborazzi.rule) - implementation(libs.base.koil.compose) - implementation(libs.base.test.unit.robolectric) - implementation(libs.base.test.ui.compose.jUnit4) - implementation(libs.test.roborazzi.compose) -} diff --git a/sdds-core/uikit-compose-fixtures/src/main/AndroidManifest.xml b/sdds-core/uikit-compose-fixtures/src/main/AndroidManifest.xml deleted file mode 100644 index 568741e54f..0000000000 --- a/sdds-core/uikit-compose-fixtures/src/main/AndroidManifest.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/sdds-core/uikit-compose-fixtures/src/main/res/drawable/il_avatar_test.xml b/sdds-core/uikit-compose-fixtures/src/main/res/drawable/il_avatar_test.xml deleted file mode 100644 index ca968df27a..0000000000 --- a/sdds-core/uikit-compose-fixtures/src/main/res/drawable/il_avatar_test.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/sdds-core/uikit-fixtures/build.gradle.kts b/sdds-core/uikit-fixtures/build.gradle.kts deleted file mode 100644 index 04a5a7aae3..0000000000 --- a/sdds-core/uikit-fixtures/build.gradle.kts +++ /dev/null @@ -1,51 +0,0 @@ -plugins { - id("convention.android-lib") - id("convention.maven-publish") - id("convention.core-fixtures") - id("kotlin-parcelize") - alias(libs.plugins.ksp) -} - -group = "sdds-core" - -android { - namespace = "com.sdds.uikit.fixtures" - buildFeatures { - viewBinding = true - } - testOptions { - unitTests { - isIncludeAndroidResources = true - } - } -} - -ksp { - arg("packageName", "com.sdds.docs") - arg("sandbox.packageName", "com.sdds.uikit.fixtures.stories") -} - -dependencies { - implementation(project(":uikit")) - implementation(project(":uikit-compose")) - implementation(project(":icons")) - implementation(project(":docs")) - implementation(project(":docs-views")) - ksp(project(":docs-ksp")) - implementation("integration-core:sandbox-core") - implementation("integration-core:sandbox-compose") - implementation("integration-core:sandbox-view") - ksp("integration-core:sandbox-ksp") - - implementation(libs.base.glide) - implementation(libs.base.androidX.appcompat) - implementation(libs.base.androidX.recyclerView) - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.constraintLayout) - implementation(libs.base.android.material) - implementation(libs.base.test.unit.jUnit) - implementation(libs.test.roborazzi) - implementation(libs.test.roborazzi.rule) - implementation(libs.base.test.unit.robolectric) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/sdds-core/uikit-fixtures/src/main/AndroidManifest.xml b/sdds-core/uikit-fixtures/src/main/AndroidManifest.xml deleted file mode 100644 index 568741e54f..0000000000 --- a/sdds-core/uikit-fixtures/src/main/AndroidManifest.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/Utils.kt b/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/Utils.kt deleted file mode 100644 index c342c6b9e1..0000000000 --- a/sdds-core/uikit-fixtures/src/main/kotlin/com/sdds/uikit/fixtures/Utils.kt +++ /dev/null @@ -1,21 +0,0 @@ -package com.sdds.uikit.fixtures - -import android.app.Activity -import android.content.Context -import android.content.ContextWrapper -import com.sdds.uikit.colorFromAttr - -internal fun Context.getTextColorPrimary(): Int { - return colorFromAttr(R.attr.testingTextColorPrimary) -} - -internal inline fun Context.findActivity(): T? { - if (this is T) return this - - var ctx = this - while (ctx is ContextWrapper) { - if (ctx is T) return ctx - ctx = ctx.baseContext - } - return null -} diff --git a/tokens/plasma-stards-compose/app/build.gradle.kts b/tokens/plasma-stards-compose/app/build.gradle.kts new file mode 100644 index 0000000000..c4ed968f0f --- /dev/null +++ b/tokens/plasma-stards-compose/app/build.gradle.kts @@ -0,0 +1,19 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.compose") + id("convention.auto-bump") +} + +android { + namespace = "com.sdkit.star.designsystem.compose.sandbox" +} + +dependencies { + implementation(project(":plasma-stards-compose:integration")) + implementation(project(":plasma-stards-compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:uikit-compose-fixtures") + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/plasma-stards-compose/app/src/main/AndroidManifest.xml b/tokens/plasma-stards-compose/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..bffc60334a --- /dev/null +++ b/tokens/plasma-stards-compose/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/plasma-stards-compose/app/src/main/kotlin/com/sdkit/star/designsystem/compose/sandbox/AppActivity.kt b/tokens/plasma-stards-compose/app/src/main/kotlin/com/sdkit/star/designsystem/compose/sandbox/AppActivity.kt new file mode 100644 index 0000000000..737b6052ce --- /dev/null +++ b/tokens/plasma-stards-compose/app/src/main/kotlin/com/sdkit/star/designsystem/compose/sandbox/AppActivity.kt @@ -0,0 +1,26 @@ +package com.sdkit.star.designsystem.compose.sandbox + +import android.os.Bundle +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.compose.uikit.fixtures.stories.registerCoreStories +import com.sdkit.star.designsystem.integration.registerTheme + +/** + * Главная активность приложения, интегрированная с Sandbox-окружением для демонстрации компонентов. + * + * Наследуется от [SandboxActivity], которая предоставляет базовую инфраструктуру + * для отображения сторибука с компонентами. В этой активности происходит + * инициализация и регистрация всех доступных историй компонентов перед + * запуском основного интерфейса. + * + * @see SandboxActivity + * @see registerCoreStories + */ +class AppActivity : SandboxActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + registerCoreStories() + registerTheme() + } +} diff --git a/playground/sandbox-compose/src/main/res/drawable/app_banner.png b/tokens/plasma-stards-compose/app/src/main/res/drawable/app_banner.png similarity index 100% rename from playground/sandbox-compose/src/main/res/drawable/app_banner.png rename to tokens/plasma-stards-compose/app/src/main/res/drawable/app_banner.png diff --git a/playground/sandbox-compose/src/main/res/drawable/app_bg.png b/tokens/plasma-stards-compose/app/src/main/res/drawable/app_bg.png similarity index 100% rename from playground/sandbox-compose/src/main/res/drawable/app_bg.png rename to tokens/plasma-stards-compose/app/src/main/res/drawable/app_bg.png diff --git a/playground/sandbox-compose/src/main/res/drawable/ic_launcher.png b/tokens/plasma-stards-compose/app/src/main/res/drawable/ic_launcher.png similarity index 100% rename from playground/sandbox-compose/src/main/res/drawable/ic_launcher.png rename to tokens/plasma-stards-compose/app/src/main/res/drawable/ic_launcher.png diff --git a/playground/sandbox-compose/src/main/res/drawable/ic_launcher_round.png b/tokens/plasma-stards-compose/app/src/main/res/drawable/ic_launcher_round.png similarity index 100% rename from playground/sandbox-compose/src/main/res/drawable/ic_launcher_round.png rename to tokens/plasma-stards-compose/app/src/main/res/drawable/ic_launcher_round.png diff --git a/tokens/plasma-stards-compose/app/src/main/res/values/strings.xml b/tokens/plasma-stards-compose/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..b9077a813d --- /dev/null +++ b/tokens/plasma-stards-compose/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Plasma StarDS + \ No newline at end of file diff --git a/tokens/plasma-stards-compose/build.gradle.kts b/tokens/plasma-stards-compose/build.gradle.kts index 7d598b10f9..59cb263517 100644 --- a/tokens/plasma-stards-compose/build.gradle.kts +++ b/tokens/plasma-stards-compose/build.gradle.kts @@ -48,7 +48,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") + testImplementation("integration-core:uikit-compose-fixtures") implementation(libs.sdds.uikit.compose) implementation(icons.sdds.icons) implementation(libs.base.androidX.compose.foundation) diff --git a/tokens/plasma-stards-compose/integration/build.gradle.kts b/tokens/plasma-stards-compose/integration/build.gradle.kts new file mode 100644 index 0000000000..df0cd92365 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/build.gradle.kts @@ -0,0 +1,21 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-compose") + id("convention.compose") +} + +android { + namespace = "com.sdkit.star.designsystem.compose.integration" +} + +dependencies { + implementation(project(":plasma-stards-compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation(libs.sdds.uikit.compose) + implementation(icons.sdds.icons) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/plasma-stards-compose/integration/gradle.properties b/tokens/plasma-stards-compose/integration/gradle.properties new file mode 100644 index 0000000000..5adff472a3 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/gradle.properties @@ -0,0 +1,3 @@ +integration.compose.config-path=../tokens/plasma-stards-compose/config-info-compose.json +integration.compose.package-name=com.sdkit.star.designsystem.integration +integration.compose.scheme=V2 \ No newline at end of file diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarGroupVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarGroupVariationsCompose.kt new file mode 100644 index 0000000000..4cd8bd3dad --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.avatargroup.AvatarGroup +import com.sdkit.star.designsystem.styles.avatargroup.S + +internal object PlasmaStardsAvatarGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { AvatarGroup.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarVariationsCompose.kt new file mode 100644 index 0000000000..b0eb98751f --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsAvatarVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.avatar.Avatar +import com.sdkit.star.designsystem.styles.avatar.L +import com.sdkit.star.designsystem.styles.avatar.M +import com.sdkit.star.designsystem.styles.avatar.S +import com.sdkit.star.designsystem.styles.avatar.Xxl + +internal object PlasmaStardsAvatarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl" to ComposeStyleReference { Avatar.Xxl.style() }, + "L" to ComposeStyleReference { Avatar.L.style() }, + "M" to ComposeStyleReference { Avatar.M.style() }, + "S" to ComposeStyleReference { Avatar.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeSolidVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..1e00ce377c --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.badge.Accent +import com.sdkit.star.designsystem.styles.badge.BadgeSolid +import com.sdkit.star.designsystem.styles.badge.Dark +import com.sdkit.star.designsystem.styles.badge.Default +import com.sdkit.star.designsystem.styles.badge.L +import com.sdkit.star.designsystem.styles.badge.Light +import com.sdkit.star.designsystem.styles.badge.M +import com.sdkit.star.designsystem.styles.badge.Negative +import com.sdkit.star.designsystem.styles.badge.Pilled +import com.sdkit.star.designsystem.styles.badge.Positive +import com.sdkit.star.designsystem.styles.badge.S +import com.sdkit.star.designsystem.styles.badge.Warning +import com.sdkit.star.designsystem.styles.badge.Xs + +internal object PlasmaStardsBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeTransparentVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..e3d1171b55 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.badge.Accent +import com.sdkit.star.designsystem.styles.badge.BadgeTransparent +import com.sdkit.star.designsystem.styles.badge.Dark +import com.sdkit.star.designsystem.styles.badge.Default +import com.sdkit.star.designsystem.styles.badge.L +import com.sdkit.star.designsystem.styles.badge.Light +import com.sdkit.star.designsystem.styles.badge.M +import com.sdkit.star.designsystem.styles.badge.Negative +import com.sdkit.star.designsystem.styles.badge.Pilled +import com.sdkit.star.designsystem.styles.badge.Positive +import com.sdkit.star.designsystem.styles.badge.S +import com.sdkit.star.designsystem.styles.badge.Warning +import com.sdkit.star.designsystem.styles.badge.Xs + +internal object PlasmaStardsBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonGroupVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..e54a4a4249 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonGroupVariationsCompose.kt @@ -0,0 +1,69 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.buttongroup.BasicButtonGroup +import com.sdkit.star.designsystem.styles.buttongroup.Default +import com.sdkit.star.designsystem.styles.buttongroup.Dense +import com.sdkit.star.designsystem.styles.buttongroup.L +import com.sdkit.star.designsystem.styles.buttongroup.M +import com.sdkit.star.designsystem.styles.buttongroup.NoGap +import com.sdkit.star.designsystem.styles.buttongroup.S +import com.sdkit.star.designsystem.styles.buttongroup.Segmented +import com.sdkit.star.designsystem.styles.buttongroup.Wide +import com.sdkit.star.designsystem.styles.buttongroup.Xs + +internal object PlasmaStardsBasicButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { BasicButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { BasicButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { BasicButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { BasicButtonGroup.S.Wide.Default.style() }, + "S.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { BasicButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { BasicButtonGroup.S.Dense.Default.style() }, + "S.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { BasicButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { BasicButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { BasicButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { BasicButtonGroup.M.Wide.Default.style() }, + "M.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { BasicButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { BasicButtonGroup.M.Dense.Default.style() }, + "M.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { BasicButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { BasicButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { BasicButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { BasicButtonGroup.L.Wide.Default.style() }, + "L.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { BasicButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { BasicButtonGroup.L.Dense.Default.style() }, + "L.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { BasicButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonVariationsCompose.kt new file mode 100644 index 0000000000..1fd4fdce7d --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsBasicButtonVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.basicbutton.BasicButton +import com.sdkit.star.designsystem.styles.basicbutton.Clear +import com.sdkit.star.designsystem.styles.basicbutton.Default +import com.sdkit.star.designsystem.styles.basicbutton.L +import com.sdkit.star.designsystem.styles.basicbutton.M +import com.sdkit.star.designsystem.styles.basicbutton.S +import com.sdkit.star.designsystem.styles.basicbutton.Xs + +internal object PlasmaStardsBasicButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BasicButton.L.Default.style() }, + "L.Clear" to ComposeStyleReference { BasicButton.L.Clear.style() }, + "M.Default" to ComposeStyleReference { BasicButton.M.Default.style() }, + "M.Clear" to ComposeStyleReference { BasicButton.M.Clear.style() }, + "S.Default" to ComposeStyleReference { BasicButton.S.Default.style() }, + "S.Clear" to ComposeStyleReference { BasicButton.S.Clear.style() }, + "Xs.Default" to ComposeStyleReference { BasicButton.Xs.Default.style() }, + "Xs.Clear" to ComposeStyleReference { BasicButton.Xs.Clear.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCellVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCellVariationsCompose.kt new file mode 100644 index 0000000000..4b7d8d6675 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCellVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CellStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.cell.Cell +import com.sdkit.star.designsystem.styles.cell.L +import com.sdkit.star.designsystem.styles.cell.M +import com.sdkit.star.designsystem.styles.cell.S +import com.sdkit.star.designsystem.styles.cell.Xs + +internal object PlasmaStardsCellVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Cell.L.style() }, + "M" to ComposeStyleReference { Cell.M.style() }, + "S" to ComposeStyleReference { Cell.S.style() }, + "Xs" to ComposeStyleReference { Cell.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCheckBoxVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCheckBoxVariationsCompose.kt new file mode 100644 index 0000000000..2ba352e5d6 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCheckBoxVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.checkbox.CheckBox +import com.sdkit.star.designsystem.styles.checkbox.Default +import com.sdkit.star.designsystem.styles.checkbox.L +import com.sdkit.star.designsystem.styles.checkbox.M +import com.sdkit.star.designsystem.styles.checkbox.Negative +import com.sdkit.star.designsystem.styles.checkbox.S + +internal object PlasmaStardsCheckBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { CheckBox.L.Default.style() }, + "L.Negative" to ComposeStyleReference { CheckBox.L.Negative.style() }, + "M.Default" to ComposeStyleReference { CheckBox.M.Default.style() }, + "M.Negative" to ComposeStyleReference { CheckBox.M.Negative.style() }, + "S.Default" to ComposeStyleReference { CheckBox.S.Default.style() }, + "S.Negative" to ComposeStyleReference { CheckBox.S.Negative.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupDenseVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..3f8a4e8d76 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupDenseVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.chipgroup.Accent +import com.sdkit.star.designsystem.styles.chipgroup.ChipGroupDense +import com.sdkit.star.designsystem.styles.chipgroup.Default +import com.sdkit.star.designsystem.styles.chipgroup.L +import com.sdkit.star.designsystem.styles.chipgroup.M +import com.sdkit.star.designsystem.styles.chipgroup.Negative +import com.sdkit.star.designsystem.styles.chipgroup.Pilled +import com.sdkit.star.designsystem.styles.chipgroup.Positive +import com.sdkit.star.designsystem.styles.chipgroup.S +import com.sdkit.star.designsystem.styles.chipgroup.Secondary +import com.sdkit.star.designsystem.styles.chipgroup.Warning +import com.sdkit.star.designsystem.styles.chipgroup.Xs + +internal object PlasmaStardsChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupDense.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupDense.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupDense.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupDense.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupDense.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupDense.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupWideVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..57fff88dcd --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipGroupWideVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.chipgroup.Accent +import com.sdkit.star.designsystem.styles.chipgroup.ChipGroupWide +import com.sdkit.star.designsystem.styles.chipgroup.Default +import com.sdkit.star.designsystem.styles.chipgroup.L +import com.sdkit.star.designsystem.styles.chipgroup.M +import com.sdkit.star.designsystem.styles.chipgroup.Negative +import com.sdkit.star.designsystem.styles.chipgroup.Pilled +import com.sdkit.star.designsystem.styles.chipgroup.Positive +import com.sdkit.star.designsystem.styles.chipgroup.S +import com.sdkit.star.designsystem.styles.chipgroup.Secondary +import com.sdkit.star.designsystem.styles.chipgroup.Warning +import com.sdkit.star.designsystem.styles.chipgroup.Xs + +internal object PlasmaStardsChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupWide.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupWide.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupWide.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupWide.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupWide.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupWide.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipVariationsCompose.kt new file mode 100644 index 0000000000..bbf46ac1ed --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsChipVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.chip.Accent +import com.sdkit.star.designsystem.styles.chip.Chip +import com.sdkit.star.designsystem.styles.chip.Default +import com.sdkit.star.designsystem.styles.chip.L +import com.sdkit.star.designsystem.styles.chip.M +import com.sdkit.star.designsystem.styles.chip.Negative +import com.sdkit.star.designsystem.styles.chip.Pilled +import com.sdkit.star.designsystem.styles.chip.Positive +import com.sdkit.star.designsystem.styles.chip.S +import com.sdkit.star.designsystem.styles.chip.Secondary +import com.sdkit.star.designsystem.styles.chip.Warning +import com.sdkit.star.designsystem.styles.chip.Xs + +internal object PlasmaStardsChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Chip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Chip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { Chip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { Chip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { Chip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { Chip.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { Chip.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Chip.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { Chip.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { Chip.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Chip.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { Chip.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { Chip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Chip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { Chip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { Chip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { Chip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { Chip.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { Chip.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Chip.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { Chip.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { Chip.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Chip.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { Chip.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { Chip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Chip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { Chip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { Chip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { Chip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { Chip.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { Chip.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Chip.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { Chip.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { Chip.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Chip.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { Chip.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { Chip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Chip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { Chip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { Chip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { Chip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { Chip.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { Chip.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Chip.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { Chip.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { Chip.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Chip.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { Chip.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCircularProgressBarVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCircularProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..127df6c686 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCircularProgressBarVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CircularProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.circularprogressbar.Accent +import com.sdkit.star.designsystem.styles.circularprogressbar.CircularProgressBar +import com.sdkit.star.designsystem.styles.circularprogressbar.Default +import com.sdkit.star.designsystem.styles.circularprogressbar.Gradient +import com.sdkit.star.designsystem.styles.circularprogressbar.Info +import com.sdkit.star.designsystem.styles.circularprogressbar.L +import com.sdkit.star.designsystem.styles.circularprogressbar.M +import com.sdkit.star.designsystem.styles.circularprogressbar.Negative +import com.sdkit.star.designsystem.styles.circularprogressbar.Positive +import com.sdkit.star.designsystem.styles.circularprogressbar.S +import com.sdkit.star.designsystem.styles.circularprogressbar.Secondary +import com.sdkit.star.designsystem.styles.circularprogressbar.Warning +import com.sdkit.star.designsystem.styles.circularprogressbar.Xl +import com.sdkit.star.designsystem.styles.circularprogressbar.Xs +import com.sdkit.star.designsystem.styles.circularprogressbar.Xxl +import com.sdkit.star.designsystem.styles.circularprogressbar.Xxs + +internal object PlasmaStardsCircularProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { CircularProgressBar.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { CircularProgressBar.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { CircularProgressBar.Xxl.Accent.style() }, + "Xxl.Gradient" to ComposeStyleReference { CircularProgressBar.Xxl.Gradient.style() }, + "Xxl.Info" to ComposeStyleReference { CircularProgressBar.Xxl.Info.style() }, + "Xxl.Negative" to ComposeStyleReference { CircularProgressBar.Xxl.Negative.style() }, + "Xxl.Positive" to ComposeStyleReference { CircularProgressBar.Xxl.Positive.style() }, + "Xxl.Warning" to ComposeStyleReference { CircularProgressBar.Xxl.Warning.style() }, + "Xl.Default" to ComposeStyleReference { CircularProgressBar.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { CircularProgressBar.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { CircularProgressBar.Xl.Accent.style() }, + "Xl.Gradient" to ComposeStyleReference { CircularProgressBar.Xl.Gradient.style() }, + "Xl.Info" to ComposeStyleReference { CircularProgressBar.Xl.Info.style() }, + "Xl.Negative" to ComposeStyleReference { CircularProgressBar.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { CircularProgressBar.Xl.Positive.style() }, + "Xl.Warning" to ComposeStyleReference { CircularProgressBar.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { CircularProgressBar.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { CircularProgressBar.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { CircularProgressBar.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { CircularProgressBar.L.Gradient.style() }, + "L.Info" to ComposeStyleReference { CircularProgressBar.L.Info.style() }, + "L.Negative" to ComposeStyleReference { CircularProgressBar.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { CircularProgressBar.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { CircularProgressBar.L.Warning.style() }, + "M.Default" to ComposeStyleReference { CircularProgressBar.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { CircularProgressBar.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { CircularProgressBar.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { CircularProgressBar.M.Gradient.style() }, + "M.Info" to ComposeStyleReference { CircularProgressBar.M.Info.style() }, + "M.Negative" to ComposeStyleReference { CircularProgressBar.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { CircularProgressBar.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { CircularProgressBar.M.Warning.style() }, + "S.Default" to ComposeStyleReference { CircularProgressBar.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { CircularProgressBar.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { CircularProgressBar.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { CircularProgressBar.S.Gradient.style() }, + "S.Info" to ComposeStyleReference { CircularProgressBar.S.Info.style() }, + "S.Negative" to ComposeStyleReference { CircularProgressBar.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { CircularProgressBar.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { CircularProgressBar.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { CircularProgressBar.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { CircularProgressBar.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { CircularProgressBar.Xs.Accent.style() }, + "Xs.Gradient" to ComposeStyleReference { CircularProgressBar.Xs.Gradient.style() }, + "Xs.Info" to ComposeStyleReference { CircularProgressBar.Xs.Info.style() }, + "Xs.Negative" to ComposeStyleReference { CircularProgressBar.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { CircularProgressBar.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { CircularProgressBar.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { CircularProgressBar.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { CircularProgressBar.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { CircularProgressBar.Xxs.Accent.style() }, + "Xxs.Gradient" to ComposeStyleReference { CircularProgressBar.Xxs.Gradient.style() }, + "Xxs.Info" to ComposeStyleReference { CircularProgressBar.Xxs.Info.style() }, + "Xxs.Negative" to ComposeStyleReference { CircularProgressBar.Xxs.Negative.style() }, + "Xxs.Positive" to ComposeStyleReference { CircularProgressBar.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { CircularProgressBar.Xxs.Warning.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCodeInputVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCodeInputVariationsCompose.kt new file mode 100644 index 0000000000..bd04cab32f --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCodeInputVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeInputStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.codeinput.CodeInput +import com.sdkit.star.designsystem.styles.codeinput.L +import com.sdkit.star.designsystem.styles.codeinput.M +import com.sdkit.star.designsystem.styles.codeinput.S + +internal object PlasmaStardsCodeInputVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { CodeInput.S.style() }, + "M" to ComposeStyleReference { CodeInput.M.style() }, + "L" to ComposeStyleReference { CodeInput.L.style() }, + ) +} diff --git a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsComposeComponents.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsComposeComponents.kt similarity index 82% rename from playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsComposeComponents.kt rename to tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsComposeComponents.kt index eb89b9f308..656de0cdce 100644 --- a/playground/sandbox-plasma-stards-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/stards/integration/compose/PlasmaStardsComposeComponents.kt +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsComposeComponents.kt @@ -1,267 +1,273 @@ -package com.sdds.playground.sandbox.plasma.stards.integration.compose +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent +package com.sdkit.star.designsystem.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object PlasmaStardsComposeComponents : ComponentsProviderCompose() { +object PlasmaStardsComposeComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ComposeComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to PlasmaStardsAvatarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AvatarGroup, mapOf( "AvatarGroup" to PlasmaStardsAvatarGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Badge, mapOf( "BadgeSolid" to PlasmaStardsBadgeSolidVariationsCompose, "BadgeTransparent" to PlasmaStardsBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconBadge, mapOf( "IconBadgeSolid" to PlasmaStardsIconBadgeSolidVariationsCompose, "IconBadgeTransparent" to PlasmaStardsIconBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to PlasmaStardsBasicButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to PlasmaStardsIconButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Cell, mapOf( "Cell" to PlasmaStardsCellVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to PlasmaStardsCheckBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to PlasmaStardsChipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroupDense" to PlasmaStardsChipGroupDenseVariationsCompose, "ChipGroupWide" to PlasmaStardsChipGroupWideVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to PlasmaStardsCounterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to PlasmaStardsDividerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to PlasmaStardsIndicatorVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Overlay, mapOf( "Overlay" to PlasmaStardsOverlayVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ProgressBar, mapOf( "ProgressBar" to PlasmaStardsProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to PlasmaStardsCircularProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to PlasmaStardsPopoverVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to PlasmaStardsRadioBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBoxGroup, mapOf( "RadioBoxGroup" to PlasmaStardsRadioBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to PlasmaStardsSegmentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to PlasmaStardsSegmentItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to PlasmaStardsSwitchVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to PlasmaStardsTextFieldVariationsCompose, "TextFieldClear" to PlasmaStardsTextFieldClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextArea, mapOf( "TextArea" to PlasmaStardsTextAreaVariationsCompose, "TextAreaClear" to PlasmaStardsTextAreaClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to PlasmaStardsTooltipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Notification, mapOf( "NotificationCompact" to PlasmaStardsNotificationCompactVariationsCompose, "NotificationLoose" to PlasmaStardsNotificationLooseVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NotificationContent, mapOf( "NotificationContent" to PlasmaStardsNotificationContentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.List, mapOf( "List" to PlasmaStardsListVariationsCompose, "DropdownMenuList" to PlasmaStardsDropdownMenuListVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ListItem, mapOf( "ListItem" to PlasmaStardsListItemVariationsCompose, "DropdownMenuItem" to PlasmaStardsDropdownMenuItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to PlasmaStardsSpinnerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to PlasmaStardsLoaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenu" to PlasmaStardsDropdownMenuVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to PlasmaStardsScrollBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Wheel, mapOf( "Wheel" to PlasmaStardsWheelVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Image, mapOf( "Image" to PlasmaStardsImageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to PlasmaStardsBasicButtonGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeInput, mapOf( "CodeInput" to PlasmaStardsCodeInputVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Drawer, mapOf( "Drawer" to PlasmaStardsDrawerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.PaginationDots, mapOf( "PaginationDotsHorizontal" to PlasmaStardsPaginationDotsHorizontalVariationsCompose, "PaginationDotsVertical" to PlasmaStardsPaginationDotsVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to PlasmaStardsRectSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextSkeleton, mapOf( "TextSkeletonBody" to PlasmaStardsTextSkeletonBodyVariationsCompose, @@ -270,7 +276,7 @@ object PlasmaStardsComposeComponents : ComponentsProviderCompose() { "TextSkeletonText" to PlasmaStardsTextSkeletonTextVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to PlasmaStardsModalVariationsCompose, diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCounterVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCounterVariationsCompose.kt new file mode 100644 index 0000000000..4588c54207 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsCounterVariationsCompose.kt @@ -0,0 +1,67 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CounterStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.counter.Accent +import com.sdkit.star.designsystem.styles.counter.Black +import com.sdkit.star.designsystem.styles.counter.Counter +import com.sdkit.star.designsystem.styles.counter.Default +import com.sdkit.star.designsystem.styles.counter.L +import com.sdkit.star.designsystem.styles.counter.M +import com.sdkit.star.designsystem.styles.counter.Negative +import com.sdkit.star.designsystem.styles.counter.Positive +import com.sdkit.star.designsystem.styles.counter.S +import com.sdkit.star.designsystem.styles.counter.Warning +import com.sdkit.star.designsystem.styles.counter.White +import com.sdkit.star.designsystem.styles.counter.Xs +import com.sdkit.star.designsystem.styles.counter.Xxs + +internal object PlasmaStardsCounterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Counter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Counter.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Counter.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Counter.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Counter.L.Negative.style() }, + "L.Black" to ComposeStyleReference { Counter.L.Black.style() }, + "L.White" to ComposeStyleReference { Counter.L.White.style() }, + "M.Default" to ComposeStyleReference { Counter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Counter.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Counter.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Counter.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Counter.M.Negative.style() }, + "M.Black" to ComposeStyleReference { Counter.M.Black.style() }, + "M.White" to ComposeStyleReference { Counter.M.White.style() }, + "S.Default" to ComposeStyleReference { Counter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Counter.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Counter.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Counter.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Counter.S.Negative.style() }, + "S.Black" to ComposeStyleReference { Counter.S.Black.style() }, + "S.White" to ComposeStyleReference { Counter.S.White.style() }, + "Xs.Default" to ComposeStyleReference { Counter.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Counter.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Counter.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { Counter.Xs.Warning.style() }, + "Xs.Negative" to ComposeStyleReference { Counter.Xs.Negative.style() }, + "Xs.Black" to ComposeStyleReference { Counter.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { Counter.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { Counter.Xxs.Default.style() }, + "Xxs.Accent" to ComposeStyleReference { Counter.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Counter.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { Counter.Xxs.Warning.style() }, + "Xxs.Negative" to ComposeStyleReference { Counter.Xxs.Negative.style() }, + "Xxs.Black" to ComposeStyleReference { Counter.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { Counter.Xxs.White.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDividerVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDividerVariationsCompose.kt new file mode 100644 index 0000000000..b10fdb77f8 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDividerVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DividerStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.divider.Default +import com.sdkit.star.designsystem.styles.divider.Divider + +internal object PlasmaStardsDividerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Divider.Default.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDrawerVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDrawerVariationsCompose.kt new file mode 100644 index 0000000000..aca6fe1f16 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDrawerVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.drawer.Drawer +import com.sdkit.star.designsystem.styles.drawer.HasBackground +import com.sdkit.star.designsystem.styles.drawer.NoBackground + +internal object PlasmaStardsDrawerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "HasBackground" to ComposeStyleReference { Drawer.HasBackground.style() }, + "NoBackground" to ComposeStyleReference { Drawer.NoBackground.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuItemVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuItemVariationsCompose.kt new file mode 100644 index 0000000000..e6d06f7eda --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuItemVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.listitem.Default +import com.sdkit.star.designsystem.styles.listitem.DropdownMenuItem +import com.sdkit.star.designsystem.styles.listitem.L +import com.sdkit.star.designsystem.styles.listitem.M +import com.sdkit.star.designsystem.styles.listitem.Negative +import com.sdkit.star.designsystem.styles.listitem.Positive +import com.sdkit.star.designsystem.styles.listitem.S +import com.sdkit.star.designsystem.styles.listitem.Xl +import com.sdkit.star.designsystem.styles.listitem.Xs + +internal object PlasmaStardsDropdownMenuItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItem.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItem.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItem.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItem.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItem.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItem.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItem.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItem.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItem.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItem.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItem.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItem.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItem.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItem.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItem.Xs.Negative.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuListVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuListVariationsCompose.kt new file mode 100644 index 0000000000..7284df0b39 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuListVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.list.DropdownMenuList +import com.sdkit.star.designsystem.styles.list.L +import com.sdkit.star.designsystem.styles.list.M +import com.sdkit.star.designsystem.styles.list.S +import com.sdkit.star.designsystem.styles.list.Xl +import com.sdkit.star.designsystem.styles.list.Xs + +internal object PlasmaStardsDropdownMenuListVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuList.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuList.L.style() }, + "M" to ComposeStyleReference { DropdownMenuList.M.style() }, + "S" to ComposeStyleReference { DropdownMenuList.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuList.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuVariationsCompose.kt new file mode 100644 index 0000000000..3aceb0d620 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsDropdownMenuVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.dropdownmenu.DropdownMenu +import com.sdkit.star.designsystem.styles.dropdownmenu.L +import com.sdkit.star.designsystem.styles.dropdownmenu.M +import com.sdkit.star.designsystem.styles.dropdownmenu.S +import com.sdkit.star.designsystem.styles.dropdownmenu.Xl +import com.sdkit.star.designsystem.styles.dropdownmenu.Xs + +internal object PlasmaStardsDropdownMenuVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenu.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenu.L.style() }, + "M" to ComposeStyleReference { DropdownMenu.M.style() }, + "S" to ComposeStyleReference { DropdownMenu.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenu.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeSolidVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..17cd89078d --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.iconbadge.Accent +import com.sdkit.star.designsystem.styles.iconbadge.Dark +import com.sdkit.star.designsystem.styles.iconbadge.Default +import com.sdkit.star.designsystem.styles.iconbadge.IconBadgeSolid +import com.sdkit.star.designsystem.styles.iconbadge.L +import com.sdkit.star.designsystem.styles.iconbadge.Light +import com.sdkit.star.designsystem.styles.iconbadge.M +import com.sdkit.star.designsystem.styles.iconbadge.Negative +import com.sdkit.star.designsystem.styles.iconbadge.Pilled +import com.sdkit.star.designsystem.styles.iconbadge.Positive +import com.sdkit.star.designsystem.styles.iconbadge.S +import com.sdkit.star.designsystem.styles.iconbadge.Warning +import com.sdkit.star.designsystem.styles.iconbadge.Xs + +internal object PlasmaStardsIconBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeTransparentVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..ebe3ea46c3 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.iconbadge.Accent +import com.sdkit.star.designsystem.styles.iconbadge.Dark +import com.sdkit.star.designsystem.styles.iconbadge.Default +import com.sdkit.star.designsystem.styles.iconbadge.IconBadgeTransparent +import com.sdkit.star.designsystem.styles.iconbadge.L +import com.sdkit.star.designsystem.styles.iconbadge.Light +import com.sdkit.star.designsystem.styles.iconbadge.M +import com.sdkit.star.designsystem.styles.iconbadge.Negative +import com.sdkit.star.designsystem.styles.iconbadge.Pilled +import com.sdkit.star.designsystem.styles.iconbadge.Positive +import com.sdkit.star.designsystem.styles.iconbadge.S +import com.sdkit.star.designsystem.styles.iconbadge.Warning +import com.sdkit.star.designsystem.styles.iconbadge.Xs + +internal object PlasmaStardsIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconButtonVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconButtonVariationsCompose.kt new file mode 100644 index 0000000000..fe11fdf5af --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIconButtonVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.iconbutton.Clear +import com.sdkit.star.designsystem.styles.iconbutton.Default +import com.sdkit.star.designsystem.styles.iconbutton.IconButton +import com.sdkit.star.designsystem.styles.iconbutton.L +import com.sdkit.star.designsystem.styles.iconbutton.M +import com.sdkit.star.designsystem.styles.iconbutton.Pilled +import com.sdkit.star.designsystem.styles.iconbutton.S +import com.sdkit.star.designsystem.styles.iconbutton.Xs + +internal object PlasmaStardsIconButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconButton.L.Default.style() }, + "L.Clear" to ComposeStyleReference { IconButton.L.Clear.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconButton.L.Pilled.Default.style() }, + "L.Pilled.Clear" to ComposeStyleReference { IconButton.L.Pilled.Clear.style() }, + "M.Default" to ComposeStyleReference { IconButton.M.Default.style() }, + "M.Clear" to ComposeStyleReference { IconButton.M.Clear.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconButton.M.Pilled.Default.style() }, + "M.Pilled.Clear" to ComposeStyleReference { IconButton.M.Pilled.Clear.style() }, + "S.Default" to ComposeStyleReference { IconButton.S.Default.style() }, + "S.Clear" to ComposeStyleReference { IconButton.S.Clear.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconButton.S.Pilled.Default.style() }, + "S.Pilled.Clear" to ComposeStyleReference { IconButton.S.Pilled.Clear.style() }, + "Xs.Default" to ComposeStyleReference { IconButton.Xs.Default.style() }, + "Xs.Clear" to ComposeStyleReference { IconButton.Xs.Clear.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconButton.Xs.Pilled.Default.style() }, + "Xs.Pilled.Clear" to ComposeStyleReference { IconButton.Xs.Pilled.Clear.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsImageVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsImageVariationsCompose.kt new file mode 100644 index 0000000000..835d13f0a2 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsImageVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ImageStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.image.Image +import com.sdkit.star.designsystem.styles.image.Ratio16x9 +import com.sdkit.star.designsystem.styles.image.Ratio1x1 +import com.sdkit.star.designsystem.styles.image.Ratio1x2 +import com.sdkit.star.designsystem.styles.image.Ratio2x1 +import com.sdkit.star.designsystem.styles.image.Ratio3x4 +import com.sdkit.star.designsystem.styles.image.Ratio4x3 +import com.sdkit.star.designsystem.styles.image.Ratio9x16 + +internal object PlasmaStardsImageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Ratio12" to ComposeStyleReference { Image.Ratio1x2.style() }, + "Ratio916" to ComposeStyleReference { Image.Ratio9x16.style() }, + "Ratio34" to ComposeStyleReference { Image.Ratio3x4.style() }, + "Ratio21" to ComposeStyleReference { Image.Ratio2x1.style() }, + "Ratio169" to ComposeStyleReference { Image.Ratio16x9.style() }, + "Ratio43" to ComposeStyleReference { Image.Ratio4x3.style() }, + "Ratio11" to ComposeStyleReference { Image.Ratio1x1.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIndicatorVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIndicatorVariationsCompose.kt new file mode 100644 index 0000000000..9e5347da61 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsIndicatorVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.IndicatorStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.indicator.Accent +import com.sdkit.star.designsystem.styles.indicator.Black +import com.sdkit.star.designsystem.styles.indicator.Dark +import com.sdkit.star.designsystem.styles.indicator.Default +import com.sdkit.star.designsystem.styles.indicator.Inactive +import com.sdkit.star.designsystem.styles.indicator.Indicator +import com.sdkit.star.designsystem.styles.indicator.L +import com.sdkit.star.designsystem.styles.indicator.M +import com.sdkit.star.designsystem.styles.indicator.Negative +import com.sdkit.star.designsystem.styles.indicator.Positive +import com.sdkit.star.designsystem.styles.indicator.S +import com.sdkit.star.designsystem.styles.indicator.Warning +import com.sdkit.star.designsystem.styles.indicator.White + +internal object PlasmaStardsIndicatorVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Indicator.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Indicator.L.Accent.style() }, + "L.Inactive" to ComposeStyleReference { Indicator.L.Inactive.style() }, + "L.Positive" to ComposeStyleReference { Indicator.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Indicator.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Indicator.L.Negative.style() }, + "L.Dark" to ComposeStyleReference { Indicator.L.Dark.style() }, + "L.Black" to ComposeStyleReference { Indicator.L.Black.style() }, + "L.White" to ComposeStyleReference { Indicator.L.White.style() }, + "M.Default" to ComposeStyleReference { Indicator.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Indicator.M.Accent.style() }, + "M.Inactive" to ComposeStyleReference { Indicator.M.Inactive.style() }, + "M.Positive" to ComposeStyleReference { Indicator.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Indicator.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Indicator.M.Negative.style() }, + "M.Dark" to ComposeStyleReference { Indicator.M.Dark.style() }, + "M.Black" to ComposeStyleReference { Indicator.M.Black.style() }, + "M.White" to ComposeStyleReference { Indicator.M.White.style() }, + "S.Default" to ComposeStyleReference { Indicator.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Indicator.S.Accent.style() }, + "S.Inactive" to ComposeStyleReference { Indicator.S.Inactive.style() }, + "S.Positive" to ComposeStyleReference { Indicator.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Indicator.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Indicator.S.Negative.style() }, + "S.Dark" to ComposeStyleReference { Indicator.S.Dark.style() }, + "S.Black" to ComposeStyleReference { Indicator.S.Black.style() }, + "S.White" to ComposeStyleReference { Indicator.S.White.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListItemVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListItemVariationsCompose.kt new file mode 100644 index 0000000000..a664520f8f --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListItemVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.listitem.L +import com.sdkit.star.designsystem.styles.listitem.ListItem +import com.sdkit.star.designsystem.styles.listitem.M +import com.sdkit.star.designsystem.styles.listitem.S +import com.sdkit.star.designsystem.styles.listitem.Xs + +internal object PlasmaStardsListItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ListItem.L.style() }, + "M" to ComposeStyleReference { ListItem.M.style() }, + "S" to ComposeStyleReference { ListItem.S.style() }, + "Xs" to ComposeStyleReference { ListItem.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListVariationsCompose.kt new file mode 100644 index 0000000000..2265679399 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsListVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.list.L +import com.sdkit.star.designsystem.styles.list.List +import com.sdkit.star.designsystem.styles.list.M +import com.sdkit.star.designsystem.styles.list.S +import com.sdkit.star.designsystem.styles.list.Xs + +internal object PlasmaStardsListVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { List.L.style() }, + "M" to ComposeStyleReference { List.M.style() }, + "S" to ComposeStyleReference { List.S.style() }, + "Xs" to ComposeStyleReference { List.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsLoaderVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsLoaderVariationsCompose.kt new file mode 100644 index 0000000000..f269230268 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsLoaderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.LoaderStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.loader.Default +import com.sdkit.star.designsystem.styles.loader.Loader + +internal object PlasmaStardsLoaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Loader.Default.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsModalVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsModalVariationsCompose.kt new file mode 100644 index 0000000000..afa281e655 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsModalVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.modal.Default +import com.sdkit.star.designsystem.styles.modal.Modal + +internal object PlasmaStardsModalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Modal.Default.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationCompactVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationCompactVariationsCompose.kt new file mode 100644 index 0000000000..3f44ac3a5a --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationCompactVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.notification.L +import com.sdkit.star.designsystem.styles.notification.M +import com.sdkit.star.designsystem.styles.notification.NotificationCompact +import com.sdkit.star.designsystem.styles.notification.S + +internal object PlasmaStardsNotificationCompactVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationCompact.L.style() }, + "M" to ComposeStyleReference { NotificationCompact.M.style() }, + "S" to ComposeStyleReference { NotificationCompact.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationContentVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationContentVariationsCompose.kt new file mode 100644 index 0000000000..1e452e8749 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationContentVariationsCompose.kt @@ -0,0 +1,89 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationContentStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.notificationcontent.ButtonStretch +import com.sdkit.star.designsystem.styles.notificationcontent.Default +import com.sdkit.star.designsystem.styles.notificationcontent.IconStart +import com.sdkit.star.designsystem.styles.notificationcontent.IconTop +import com.sdkit.star.designsystem.styles.notificationcontent.Info +import com.sdkit.star.designsystem.styles.notificationcontent.Negative +import com.sdkit.star.designsystem.styles.notificationcontent.NoButtonStretch +import com.sdkit.star.designsystem.styles.notificationcontent.NotificationContent +import com.sdkit.star.designsystem.styles.notificationcontent.Positive +import com.sdkit.star.designsystem.styles.notificationcontent.Warning + +internal object PlasmaStardsNotificationContentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonStretch.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.Default.style() }, + "ButtonStretch.Positive" to ComposeStyleReference { NotificationContent.ButtonStretch.Positive.style() }, + "ButtonStretch.Negative" to ComposeStyleReference { NotificationContent.ButtonStretch.Negative.style() }, + "ButtonStretch.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.Warning.style() }, + "ButtonStretch.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.Info.style() }, + "ButtonStretch.IconTop.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Default.style() }, + "ButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Positive.style() + }, + "ButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Negative.style() + }, + "ButtonStretch.IconTop.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Warning.style() }, + "ButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Info.style() }, + "ButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Default.style() + }, + "ButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Positive.style() + }, + "ButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Negative.style() + }, + "ButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Warning.style() + }, + "ButtonStretch.IconStart.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconStart.Info.style() }, + "NoButtonStretch.Default" to ComposeStyleReference { NotificationContent.NoButtonStretch.Default.style() }, + "NoButtonStretch.Positive" to ComposeStyleReference { NotificationContent.NoButtonStretch.Positive.style() }, + "NoButtonStretch.Negative" to ComposeStyleReference { NotificationContent.NoButtonStretch.Negative.style() }, + "NoButtonStretch.Warning" to ComposeStyleReference { NotificationContent.NoButtonStretch.Warning.style() }, + "NoButtonStretch.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.Info.style() }, + "NoButtonStretch.IconTop.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Default.style() + }, + "NoButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Positive.style() + }, + "NoButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Negative.style() + }, + "NoButtonStretch.IconTop.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Warning.style() + }, + "NoButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.IconTop.Info.style() }, + "NoButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Default.style() + }, + "NoButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Positive.style() + }, + "NoButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Negative.style() + }, + "NoButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Warning.style() + }, + "NoButtonStretch.IconStart.Info" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Info.style() + }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationLooseVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationLooseVariationsCompose.kt new file mode 100644 index 0000000000..cf5cf1502a --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsNotificationLooseVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.notification.L +import com.sdkit.star.designsystem.styles.notification.M +import com.sdkit.star.designsystem.styles.notification.NotificationLoose +import com.sdkit.star.designsystem.styles.notification.S + +internal object PlasmaStardsNotificationLooseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationLoose.L.style() }, + "M" to ComposeStyleReference { NotificationLoose.M.style() }, + "S" to ComposeStyleReference { NotificationLoose.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsOverlayVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsOverlayVariationsCompose.kt new file mode 100644 index 0000000000..fcba875785 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsOverlayVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.OverlayStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.overlay.Default +import com.sdkit.star.designsystem.styles.overlay.Overlay + +internal object PlasmaStardsOverlayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Overlay.Default.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..daa1c738db --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsHorizontalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.paginationdots.ActiveTypeLine +import com.sdkit.star.designsystem.styles.paginationdots.M +import com.sdkit.star.designsystem.styles.paginationdots.PaginationDotsHorizontal +import com.sdkit.star.designsystem.styles.paginationdots.S + +internal object PlasmaStardsPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsHorizontal.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsHorizontal.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt new file mode 100644 index 0000000000..0af42ec9fc --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPaginationDotsVerticalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.paginationdots.ActiveTypeLine +import com.sdkit.star.designsystem.styles.paginationdots.M +import com.sdkit.star.designsystem.styles.paginationdots.PaginationDotsVertical +import com.sdkit.star.designsystem.styles.paginationdots.S + +internal object PlasmaStardsPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsVertical.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsVertical.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPopoverVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPopoverVariationsCompose.kt new file mode 100644 index 0000000000..b1a6965245 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsPopoverVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PopoverStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.popover.Accent +import com.sdkit.star.designsystem.styles.popover.Default +import com.sdkit.star.designsystem.styles.popover.M +import com.sdkit.star.designsystem.styles.popover.Popover +import com.sdkit.star.designsystem.styles.popover.S + +internal object PlasmaStardsPopoverVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { Popover.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Popover.M.Accent.style() }, + "S.Default" to ComposeStyleReference { Popover.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Popover.S.Accent.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsProgressBarVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..adfb801867 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsProgressBarVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.progressbar.Accent +import com.sdkit.star.designsystem.styles.progressbar.Default +import com.sdkit.star.designsystem.styles.progressbar.Gradient +import com.sdkit.star.designsystem.styles.progressbar.Info +import com.sdkit.star.designsystem.styles.progressbar.Negative +import com.sdkit.star.designsystem.styles.progressbar.Positive +import com.sdkit.star.designsystem.styles.progressbar.ProgressBar +import com.sdkit.star.designsystem.styles.progressbar.Secondary +import com.sdkit.star.designsystem.styles.progressbar.Warning + +internal object PlasmaStardsProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ProgressBar.Default.style() }, + "Secondary" to ComposeStyleReference { ProgressBar.Secondary.style() }, + "Accent" to ComposeStyleReference { ProgressBar.Accent.style() }, + "Gradient" to ComposeStyleReference { ProgressBar.Gradient.style() }, + "Info" to ComposeStyleReference { ProgressBar.Info.style() }, + "Negative" to ComposeStyleReference { ProgressBar.Negative.style() }, + "Positive" to ComposeStyleReference { ProgressBar.Positive.style() }, + "Warning" to ComposeStyleReference { ProgressBar.Warning.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxGroupVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..4aa2641355 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxGroupVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.radioboxgroup.M +import com.sdkit.star.designsystem.styles.radioboxgroup.RadioBoxGroup +import com.sdkit.star.designsystem.styles.radioboxgroup.S + +internal object PlasmaStardsRadioBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { RadioBoxGroup.M.style() }, + "S" to ComposeStyleReference { RadioBoxGroup.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxVariationsCompose.kt new file mode 100644 index 0000000000..c8481d444b --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRadioBoxVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.radiobox.L +import com.sdkit.star.designsystem.styles.radiobox.M +import com.sdkit.star.designsystem.styles.radiobox.RadioBox +import com.sdkit.star.designsystem.styles.radiobox.S + +internal object PlasmaStardsRadioBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { RadioBox.L.style() }, + "M" to ComposeStyleReference { RadioBox.M.style() }, + "S" to ComposeStyleReference { RadioBox.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRectSkeletonVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRectSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..ea8300d01e --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRectSkeletonVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RectSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.rectskeleton.Default +import com.sdkit.star.designsystem.styles.rectskeleton.RectSkeleton + +internal object PlasmaStardsRectSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RectSkeleton.Default.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRegisterTheme.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRegisterTheme.kt new file mode 100644 index 0000000000..efe3b3a093 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsRegisterTheme.kt @@ -0,0 +1,41 @@ +package com.sdkit.star.designsystem.integration + +import androidx.compose.foundation.isSystemInDarkTheme +import com.sdds.compose.sandbox.ComposeTheme +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.sandbox.ComponentProvider +import com.sdds.sandbox.ComponentProviderUtils.plus +import com.sdds.sandbox.ThemeManager +import com.sdkit.star.designsystem.theme.StarDsTheme +import com.sdkit.star.designsystem.theme.darkStarDsColors +import com.sdkit.star.designsystem.theme.darkStarDsGradients +import com.sdkit.star.designsystem.theme.lightStarDsColors +import com.sdkit.star.designsystem.theme.lightStarDsGradients +import com.sdkit.star.designsystem.theme.subthemes.Default +import com.sdkit.star.designsystem.theme.subthemes.Inverse +import com.sdkit.star.designsystem.theme.subthemes.OnDark +import com.sdkit.star.designsystem.theme.subthemes.OnLight + +fun SandboxActivity.registerTheme(componentProvider: ComponentProvider = ComponentProvider.Empty) { + val theme = ComposeTheme( + displayName = "PlasmaStards", + components = PlasmaStardsComposeComponents + componentProvider, + themeWrapper = { + val isDark = isSystemInDarkTheme() + StarDsTheme( + colors = if (isDark) darkStarDsColors() else lightStarDsColors(), + gradients = if (isDark) darkStarDsGradients() else lightStarDsGradients(), + ) { + it() + } + }, + subthemes = mapOf( + SubTheme.DEFAULT to { StarDsTheme.Default(content = it) }, + SubTheme.ON_LIGHT to { StarDsTheme.OnLight(content = it) }, + SubTheme.ON_DARK to { StarDsTheme.OnDark(content = it) }, + SubTheme.INVERSE to { StarDsTheme.Inverse(content = it) }, + ), + ) + ThemeManager.updateTheme(theme) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsScrollBarVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsScrollBarVariationsCompose.kt new file mode 100644 index 0000000000..97557c948e --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsScrollBarVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ScrollBarStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.scrollbar.M +import com.sdkit.star.designsystem.styles.scrollbar.S +import com.sdkit.star.designsystem.styles.scrollbar.ScrollBar + +internal object PlasmaStardsScrollBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { ScrollBar.S.style() }, + "M" to ComposeStyleReference { ScrollBar.M.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentItemVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentItemVariationsCompose.kt new file mode 100644 index 0000000000..ce8786db71 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentItemVariationsCompose.kt @@ -0,0 +1,48 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentItemStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.segmentitem.L +import com.sdkit.star.designsystem.styles.segmentitem.M +import com.sdkit.star.designsystem.styles.segmentitem.Pilled +import com.sdkit.star.designsystem.styles.segmentitem.Primary +import com.sdkit.star.designsystem.styles.segmentitem.S +import com.sdkit.star.designsystem.styles.segmentitem.Secondary +import com.sdkit.star.designsystem.styles.segmentitem.SegmentItem +import com.sdkit.star.designsystem.styles.segmentitem.Xl +import com.sdkit.star.designsystem.styles.segmentitem.Xs + +internal object PlasmaStardsSegmentItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { SegmentItem.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { SegmentItem.Xl.Secondary.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Secondary.style() }, + "L.Primary" to ComposeStyleReference { SegmentItem.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { SegmentItem.L.Secondary.style() }, + "L.Pilled.Primary" to ComposeStyleReference { SegmentItem.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { SegmentItem.L.Pilled.Secondary.style() }, + "M.Primary" to ComposeStyleReference { SegmentItem.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { SegmentItem.M.Secondary.style() }, + "M.Pilled.Primary" to ComposeStyleReference { SegmentItem.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { SegmentItem.M.Pilled.Secondary.style() }, + "S.Primary" to ComposeStyleReference { SegmentItem.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { SegmentItem.S.Secondary.style() }, + "S.Pilled.Primary" to ComposeStyleReference { SegmentItem.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { SegmentItem.S.Pilled.Secondary.style() }, + "Xs.Primary" to ComposeStyleReference { SegmentItem.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { SegmentItem.Xs.Secondary.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Secondary.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentVariationsCompose.kt new file mode 100644 index 0000000000..72040432de --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSegmentVariationsCompose.kt @@ -0,0 +1,48 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.segment.L +import com.sdkit.star.designsystem.styles.segment.M +import com.sdkit.star.designsystem.styles.segment.Pilled +import com.sdkit.star.designsystem.styles.segment.Primary +import com.sdkit.star.designsystem.styles.segment.S +import com.sdkit.star.designsystem.styles.segment.Secondary +import com.sdkit.star.designsystem.styles.segment.Segment +import com.sdkit.star.designsystem.styles.segment.Xl +import com.sdkit.star.designsystem.styles.segment.Xs + +internal object PlasmaStardsSegmentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { Segment.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { Segment.Xl.Secondary.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { Segment.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { Segment.Xl.Pilled.Secondary.style() }, + "L.Primary" to ComposeStyleReference { Segment.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { Segment.L.Secondary.style() }, + "L.Pilled.Primary" to ComposeStyleReference { Segment.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Segment.L.Pilled.Secondary.style() }, + "M.Primary" to ComposeStyleReference { Segment.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { Segment.M.Secondary.style() }, + "M.Pilled.Primary" to ComposeStyleReference { Segment.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Segment.M.Pilled.Secondary.style() }, + "S.Primary" to ComposeStyleReference { Segment.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { Segment.S.Secondary.style() }, + "S.Pilled.Primary" to ComposeStyleReference { Segment.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Segment.S.Pilled.Secondary.style() }, + "Xs.Primary" to ComposeStyleReference { Segment.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { Segment.Xs.Secondary.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { Segment.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Segment.Xs.Pilled.Secondary.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSpinnerVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSpinnerVariationsCompose.kt new file mode 100644 index 0000000000..f38f75dbec --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSpinnerVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SpinnerStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.spinner.Accent +import com.sdkit.star.designsystem.styles.spinner.Default +import com.sdkit.star.designsystem.styles.spinner.Info +import com.sdkit.star.designsystem.styles.spinner.L +import com.sdkit.star.designsystem.styles.spinner.M +import com.sdkit.star.designsystem.styles.spinner.Negative +import com.sdkit.star.designsystem.styles.spinner.Positive +import com.sdkit.star.designsystem.styles.spinner.S +import com.sdkit.star.designsystem.styles.spinner.Scalable +import com.sdkit.star.designsystem.styles.spinner.Secondary +import com.sdkit.star.designsystem.styles.spinner.Spinner +import com.sdkit.star.designsystem.styles.spinner.Warning +import com.sdkit.star.designsystem.styles.spinner.Xl +import com.sdkit.star.designsystem.styles.spinner.Xs +import com.sdkit.star.designsystem.styles.spinner.Xxl +import com.sdkit.star.designsystem.styles.spinner.Xxs + +internal object PlasmaStardsSpinnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { Spinner.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { Spinner.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { Spinner.Xxl.Accent.style() }, + "Xxl.Positive" to ComposeStyleReference { Spinner.Xxl.Positive.style() }, + "Xxl.Negative" to ComposeStyleReference { Spinner.Xxl.Negative.style() }, + "Xxl.Warning" to ComposeStyleReference { Spinner.Xxl.Warning.style() }, + "Xxl.Info" to ComposeStyleReference { Spinner.Xxl.Info.style() }, + "Xl.Default" to ComposeStyleReference { Spinner.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { Spinner.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Spinner.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { Spinner.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { Spinner.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { Spinner.Xl.Warning.style() }, + "Xl.Info" to ComposeStyleReference { Spinner.Xl.Info.style() }, + "L.Default" to ComposeStyleReference { Spinner.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { Spinner.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Spinner.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Spinner.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { Spinner.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { Spinner.L.Warning.style() }, + "L.Info" to ComposeStyleReference { Spinner.L.Info.style() }, + "M.Default" to ComposeStyleReference { Spinner.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { Spinner.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Spinner.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Spinner.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { Spinner.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { Spinner.M.Warning.style() }, + "M.Info" to ComposeStyleReference { Spinner.M.Info.style() }, + "S.Default" to ComposeStyleReference { Spinner.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { Spinner.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Spinner.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Spinner.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { Spinner.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { Spinner.S.Warning.style() }, + "S.Info" to ComposeStyleReference { Spinner.S.Info.style() }, + "Xs.Default" to ComposeStyleReference { Spinner.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { Spinner.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Spinner.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Spinner.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { Spinner.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { Spinner.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { Spinner.Xs.Info.style() }, + "Xxs.Default" to ComposeStyleReference { Spinner.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { Spinner.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { Spinner.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Spinner.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { Spinner.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { Spinner.Xxs.Warning.style() }, + "Xxs.Info" to ComposeStyleReference { Spinner.Xxs.Info.style() }, + "Scalable.Default" to ComposeStyleReference { Spinner.Scalable.Default.style() }, + "Scalable.Secondary" to ComposeStyleReference { Spinner.Scalable.Secondary.style() }, + "Scalable.Accent" to ComposeStyleReference { Spinner.Scalable.Accent.style() }, + "Scalable.Positive" to ComposeStyleReference { Spinner.Scalable.Positive.style() }, + "Scalable.Negative" to ComposeStyleReference { Spinner.Scalable.Negative.style() }, + "Scalable.Warning" to ComposeStyleReference { Spinner.Scalable.Warning.style() }, + "Scalable.Info" to ComposeStyleReference { Spinner.Scalable.Info.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSwitchVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSwitchVariationsCompose.kt new file mode 100644 index 0000000000..2b0f3da52a --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsSwitchVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SwitchStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.switcher.HasBackground +import com.sdkit.star.designsystem.styles.switcher.L +import com.sdkit.star.designsystem.styles.switcher.M +import com.sdkit.star.designsystem.styles.switcher.S +import com.sdkit.star.designsystem.styles.switcher.Switch + +internal object PlasmaStardsSwitchVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Switch.L.style() }, + "L.HasBackground" to ComposeStyleReference { Switch.L.HasBackground.style() }, + "M" to ComposeStyleReference { Switch.M.style() }, + "M.HasBackground" to ComposeStyleReference { Switch.M.HasBackground.style() }, + "S" to ComposeStyleReference { Switch.S.style() }, + "S.HasBackground" to ComposeStyleReference { Switch.S.HasBackground.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaClearVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaClearVariationsCompose.kt new file mode 100644 index 0000000000..b88fd3921f --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaClearVariationsCompose.kt @@ -0,0 +1,50 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textarea.Default +import com.sdkit.star.designsystem.styles.textarea.Error +import com.sdkit.star.designsystem.styles.textarea.InnerLabel +import com.sdkit.star.designsystem.styles.textarea.L +import com.sdkit.star.designsystem.styles.textarea.M +import com.sdkit.star.designsystem.styles.textarea.OuterLabel +import com.sdkit.star.designsystem.styles.textarea.S +import com.sdkit.star.designsystem.styles.textarea.TextAreaClear +import com.sdkit.star.designsystem.styles.textarea.Xs + +internal object PlasmaStardsTextAreaClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextAreaClear.Xs.Default.style() }, + "Xs.Error" to ComposeStyleReference { TextAreaClear.Xs.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Error.style() }, + "S.Default" to ComposeStyleReference { TextAreaClear.S.Default.style() }, + "S.Error" to ComposeStyleReference { TextAreaClear.S.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Error.style() }, + "M.Default" to ComposeStyleReference { TextAreaClear.M.Default.style() }, + "M.Error" to ComposeStyleReference { TextAreaClear.M.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Error.style() }, + "L.Default" to ComposeStyleReference { TextAreaClear.L.Default.style() }, + "L.Error" to ComposeStyleReference { TextAreaClear.L.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Error.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaVariationsCompose.kt new file mode 100644 index 0000000000..4fada78813 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextAreaVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textarea.Default +import com.sdkit.star.designsystem.styles.textarea.Error +import com.sdkit.star.designsystem.styles.textarea.InnerLabel +import com.sdkit.star.designsystem.styles.textarea.M +import com.sdkit.star.designsystem.styles.textarea.OuterLabel +import com.sdkit.star.designsystem.styles.textarea.S +import com.sdkit.star.designsystem.styles.textarea.TextArea +import com.sdkit.star.designsystem.styles.textarea.Xs + +internal object PlasmaStardsTextAreaVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextArea.Xs.Default.style() }, + "Xs.Error" to ComposeStyleReference { TextArea.Xs.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.Error.style() }, + "S.Default" to ComposeStyleReference { TextArea.S.Default.style() }, + "S.Error" to ComposeStyleReference { TextArea.S.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextArea.S.OuterLabel.Default.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextArea.S.OuterLabel.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextArea.S.InnerLabel.Default.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextArea.S.InnerLabel.Error.style() }, + "M.Default" to ComposeStyleReference { TextArea.M.Default.style() }, + "M.Error" to ComposeStyleReference { TextArea.M.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextArea.M.OuterLabel.Default.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextArea.M.OuterLabel.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextArea.M.InnerLabel.Default.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextArea.M.InnerLabel.Error.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldClearVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldClearVariationsCompose.kt new file mode 100644 index 0000000000..d9faa50a58 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldClearVariationsCompose.kt @@ -0,0 +1,50 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textfield.Default +import com.sdkit.star.designsystem.styles.textfield.Error +import com.sdkit.star.designsystem.styles.textfield.InnerLabel +import com.sdkit.star.designsystem.styles.textfield.L +import com.sdkit.star.designsystem.styles.textfield.M +import com.sdkit.star.designsystem.styles.textfield.OuterLabel +import com.sdkit.star.designsystem.styles.textfield.S +import com.sdkit.star.designsystem.styles.textfield.TextFieldClear +import com.sdkit.star.designsystem.styles.textfield.Xs + +internal object PlasmaStardsTextFieldClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextFieldClear.Xs.Default.style() }, + "Xs.Error" to ComposeStyleReference { TextFieldClear.Xs.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Error.style() }, + "S.Default" to ComposeStyleReference { TextFieldClear.S.Default.style() }, + "S.Error" to ComposeStyleReference { TextFieldClear.S.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Error.style() }, + "M.Default" to ComposeStyleReference { TextFieldClear.M.Default.style() }, + "M.Error" to ComposeStyleReference { TextFieldClear.M.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Error.style() }, + "L.Default" to ComposeStyleReference { TextFieldClear.L.Default.style() }, + "L.Error" to ComposeStyleReference { TextFieldClear.L.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Error.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldVariationsCompose.kt new file mode 100644 index 0000000000..e366e63e6b --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextFieldVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textfield.Default +import com.sdkit.star.designsystem.styles.textfield.Error +import com.sdkit.star.designsystem.styles.textfield.InnerLabel +import com.sdkit.star.designsystem.styles.textfield.M +import com.sdkit.star.designsystem.styles.textfield.OuterLabel +import com.sdkit.star.designsystem.styles.textfield.S +import com.sdkit.star.designsystem.styles.textfield.TextField +import com.sdkit.star.designsystem.styles.textfield.Xs + +internal object PlasmaStardsTextFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextField.Xs.Default.style() }, + "Xs.Error" to ComposeStyleReference { TextField.Xs.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.Error.style() }, + "S.Default" to ComposeStyleReference { TextField.S.Default.style() }, + "S.Error" to ComposeStyleReference { TextField.S.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextField.S.OuterLabel.Default.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextField.S.OuterLabel.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextField.S.InnerLabel.Default.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextField.S.InnerLabel.Error.style() }, + "M.Default" to ComposeStyleReference { TextField.M.Default.style() }, + "M.Error" to ComposeStyleReference { TextField.M.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextField.M.OuterLabel.Default.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextField.M.OuterLabel.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextField.M.InnerLabel.Default.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextField.M.InnerLabel.Error.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonBodyVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonBodyVariationsCompose.kt new file mode 100644 index 0000000000..ea8aaf2d1a --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonBodyVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textskeleton.L +import com.sdkit.star.designsystem.styles.textskeleton.M +import com.sdkit.star.designsystem.styles.textskeleton.S +import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonBody +import com.sdkit.star.designsystem.styles.textskeleton.Xs +import com.sdkit.star.designsystem.styles.textskeleton.Xxs + +internal object PlasmaStardsTextSkeletonBodyVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { TextSkeletonBody.L.style() }, + "M" to ComposeStyleReference { TextSkeletonBody.M.style() }, + "S" to ComposeStyleReference { TextSkeletonBody.S.style() }, + "Xs" to ComposeStyleReference { TextSkeletonBody.Xs.style() }, + "Xxs" to ComposeStyleReference { TextSkeletonBody.Xxs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt new file mode 100644 index 0000000000..7cae628b87 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonDisplayVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textskeleton.L +import com.sdkit.star.designsystem.styles.textskeleton.M +import com.sdkit.star.designsystem.styles.textskeleton.S +import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonDisplay + +internal object PlasmaStardsTextSkeletonDisplayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { TextSkeletonDisplay.L.style() }, + "M" to ComposeStyleReference { TextSkeletonDisplay.M.style() }, + "S" to ComposeStyleReference { TextSkeletonDisplay.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt new file mode 100644 index 0000000000..ced56a2b36 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonHeaderVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textskeleton.H1 +import com.sdkit.star.designsystem.styles.textskeleton.H2 +import com.sdkit.star.designsystem.styles.textskeleton.H3 +import com.sdkit.star.designsystem.styles.textskeleton.H4 +import com.sdkit.star.designsystem.styles.textskeleton.H5 +import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonHeader + +internal object PlasmaStardsTextSkeletonHeaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "H1" to ComposeStyleReference { TextSkeletonHeader.H1.style() }, + "H2" to ComposeStyleReference { TextSkeletonHeader.H2.style() }, + "H3" to ComposeStyleReference { TextSkeletonHeader.H3.style() }, + "H4" to ComposeStyleReference { TextSkeletonHeader.H4.style() }, + "H5" to ComposeStyleReference { TextSkeletonHeader.H5.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonTextVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonTextVariationsCompose.kt new file mode 100644 index 0000000000..c3332b9a13 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTextSkeletonTextVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.textskeleton.L +import com.sdkit.star.designsystem.styles.textskeleton.M +import com.sdkit.star.designsystem.styles.textskeleton.S +import com.sdkit.star.designsystem.styles.textskeleton.TextSkeletonText +import com.sdkit.star.designsystem.styles.textskeleton.Xs + +internal object PlasmaStardsTextSkeletonTextVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { TextSkeletonText.L.style() }, + "M" to ComposeStyleReference { TextSkeletonText.M.style() }, + "S" to ComposeStyleReference { TextSkeletonText.S.style() }, + "Xs" to ComposeStyleReference { TextSkeletonText.Xs.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTooltipVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTooltipVariationsCompose.kt new file mode 100644 index 0000000000..4a6798687c --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsTooltipVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TooltipStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.tooltip.M +import com.sdkit.star.designsystem.styles.tooltip.S +import com.sdkit.star.designsystem.styles.tooltip.Tooltip + +internal object PlasmaStardsTooltipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { Tooltip.M.style() }, + "S" to ComposeStyleReference { Tooltip.S.style() }, + ) +} diff --git a/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsWheelVariationsCompose.kt b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsWheelVariationsCompose.kt new file mode 100644 index 0000000000..2e3fa20359 --- /dev/null +++ b/tokens/plasma-stards-compose/integration/src/main/kotlin/com/sdkit/star/designsystem/integration/PlasmaStardsWheelVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdkit.star.designsystem.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.WheelStyle +import com.sdds.compose.uikit.style.style +import com.sdkit.star.designsystem.styles.wheel.CenterAlign +import com.sdkit.star.designsystem.styles.wheel.H1 +import com.sdkit.star.designsystem.styles.wheel.LeftAlign +import com.sdkit.star.designsystem.styles.wheel.MixedAlign +import com.sdkit.star.designsystem.styles.wheel.RightAlign +import com.sdkit.star.designsystem.styles.wheel.Wheel + +internal object PlasmaStardsWheelVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "H1" to ComposeStyleReference { Wheel.H1.style() }, + "H1.RightAlign" to ComposeStyleReference { Wheel.H1.RightAlign.style() }, + "H1.CenterAlign" to ComposeStyleReference { Wheel.H1.CenterAlign.style() }, + "H1.LeftAlign" to ComposeStyleReference { Wheel.H1.LeftAlign.style() }, + "H1.MixedAlign" to ComposeStyleReference { Wheel.H1.MixedAlign.style() }, + ) +} diff --git a/tokens/plasma-stards-view/app/build.gradle.kts b/tokens/plasma-stards-view/app/build.gradle.kts index 1294e974f2..1926914847 100644 --- a/tokens/plasma-stards-view/app/build.gradle.kts +++ b/tokens/plasma-stards-view/app/build.gradle.kts @@ -13,6 +13,6 @@ dependencies { implementation("integration-core:sandbox-core") implementation("integration-core:sandbox-compose") implementation("integration-core:sandbox-view") - implementation("sdds-core:uikit-fixtures") + implementation("integration-core:uikit-fixtures") implementation(libs.sdds.uikit.compose) } diff --git a/tokens/plasma-stards-view/build.gradle.kts b/tokens/plasma-stards-view/build.gradle.kts index f066aa7e16..27f8e287d1 100644 --- a/tokens/plasma-stards-view/build.gradle.kts +++ b/tokens/plasma-stards-view/build.gradle.kts @@ -53,7 +53,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-fixtures") + testImplementation("integration-core:uikit-fixtures") implementation(icons.sdds.icons) implementation(libs.sdds.uikit) implementation(libs.base.androidX.core) diff --git a/tokens/plasma.giga.app.compose/README.md b/tokens/plasma.giga.app.compose/README.md deleted file mode 100644 index f0b360f6a3..0000000000 --- a/tokens/plasma.giga.app.compose/README.md +++ /dev/null @@ -1,102 +0,0 @@ -## Быстрый старт -1. Добавить в build.gradle файл следующие зависимости -```kotlin - implementation("io.github.salute-developers:plasma-giga-app-compose:$gigaVersion") - implementation("io.github.salute-developers:sdds-uikit-compose:$uikitVersion") -``` - -Дополнительно, если Вам нужен набор иконок: -```kotlin - implementation("io.github.salute-developers:sdds-icons:$iconsVersion") -``` - -2. Добавить в тему вашего приложения тему `PlasmaGigaAppTheme`, например: -```kotlin -private val DarkColors = darkPlasmaGigaAppColors() -private val LightColors = lightPlasmaGigaAppColors() -private val DarkGradients = darkPlasmaGigaAppGradients() -private val LightGradients = lightPlasmaGigaAppGradients() - -/** - * Тема приложения - */ -@Composable -fun YourAppTheme( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - PlasmaGigaAppTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - content = content, - ) -} -``` - -3. Done - -## Как использовать токены цвета и градиента -Токены цвета делятся на несколько логических групп, согласно назначению элемента: `text`, `surface`, `background` и `outline`. - -Эти группы в свою очередь делятся на подтемы: -- `Default` - По умолчанию, значения токенов меняются в зависимости от темы -- `OnDark` - Статические значения токенов из тёмной темы, не меняются при переключении темы, -- `OnLight` - Статические значения токенов из светлой темы, не меняются при переключении темы, -- `Inverse` Инвертированные значения токенов подтемы `Default`. - -Токены цвета представляют из себя экземпляры класса `androidx.compose.ui.graphics.Color`, токены градиента - экземпляры класса `List`, т.к. градиенты могут быть многослойными. -Чтобы применить многослойный бэкграунд можно использовать модификатор `Modifier.compositeGradient()`. -Для применения градиента к тексту используется первый слой токена градиента, например, `PlasmaGigaAppTheme.gradients.textDefaultAccentGradient.first()`. - -### Структура именования токена цвета -``` -область применения + подтема + название состояния -``` - -Например, -- Figma токену с названием `🌕 Surfaces Default/Accent/surfaceAccent` в коде будет соответствовать аттрибут `PlasmaGigaAppTheme.colors.surfaceDefaultAccent`. -- Figma токену c названием `🌕 Surfaces Default/Transparent/surfaceTransparentSecondary` в коде будет соответствовать аттрибут `PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary` - ->Использовать токены цвета и градиентов необходимо через объект `com.sdds.plasma.giga.theme.PlasmaGigaAppTheme`. - -## Как использовать токены скруглений -Токены скруглений представляют из себя экземпляры класса `androidx.compose.foundation.shape.CornerBasedShape`. А значит их можно использовать везде, где ожидается экземпляр класса `androidx.compose.ui.graphics.Shape` - например, `Modifier.shape()`, `Modifier.background()`, `Modifier.clip()` и т.д. - Большинство компонентов из `sdds-uikit-compose` также поддерживают установку аттрибута `shape` в стилях. - -Использовать токены скруглений необходимо через объект `com.sdds.plasma.giga.theme.PlasmaGigaAppTheme`. - -Токены скруглений разделяются на группы согласно размеру скругления: Xxs, Xs, S, M, L, Xl, Xxl и Rounded. Токен скругления в фигма имеет следующую структуру названия: -``` -CornerRadius/cR<название размера> -``` - -Допускаются также вычисляемые значения: -``` -CornerRadius/calc:[cR<название размера> - 2] -``` - -Т.е. Figma токену `CornerRadius/cRm` будет соответствовать в коде аттрибут `PlasmaGigaAppTheme.shapes.shapeRoundM`. - -А Figma токену `CornerRadius/calc:[cRl - 2]` будет соответствовать в коде аттрибут с дополнительным вызововов функции `PlasmaGigaAppTheme.shapes.shapeRoundL.adjustBy((-2).dp)`. - - -## Как использовать токены начертаний: -В Figma токены типографики делятся на группы: `Display`, `Body`, `Header`, `Text`. -И на подгруппы: `Large Screens`, `Medium Screens`, `Small Screens`. - -## Структура названия токена начертания -``` -Группа + Подгруппа + Уникальное название токена -``` - -Figma токену с названием `Body/BodyL B` будет соответствовать в коде аттрибут `PlasmaGigaAppTheme.typography.bodyLBold`. - ->Важно отметить, что выбор подгруппы `Large Screens`, `Medium Screens`, `Small Screens` происходит автоматически. - - -## Как использовать стилизованные компоненты -TBD diff --git a/tokens/plasma.giga.app.compose/build.gradle.kts b/tokens/plasma.giga.app.compose/build.gradle.kts deleted file mode 100644 index a62bdcb8d0..0000000000 --- a/tokens/plasma.giga.app.compose/build.gradle.kts +++ /dev/null @@ -1,45 +0,0 @@ -import com.sdds.plugin.themebuilder.OutputLocation.SRC -import com.sdds.plugin.themebuilder.ThemeBuilderMode.THEME -import utils.componentsName -import utils.componentsVersion -import utils.themeAlias -import utils.themeName -import utils.themeResPrefix -import utils.themeVersion - -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.maven-publish") - id("convention.auto-bump") - id("convention.testing-compose") - id(libs.plugins.themebuilder.get().pluginId) - alias(libs.plugins.roborazzi) - id("convention.docusaurus") -} - -android { - namespace = "com.sdds.plasma.giga.app.compose" - resourcePrefix = themeResPrefix -} - -themeBuilder { - themeSource(name = themeName, version = themeVersion, alias = themeAlias) - componentSource(name = componentsName, version = componentsVersion, alias = themeAlias) - compose() - ktPackage(ktPackage = "com.sdds.plasma.giga.app") - mode(THEME) - outputLocation(SRC) - autoGenerate(false) - dimensions { - variableFonts(true) - } -} - -dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") - implementation(libs.sdds.uikit.compose) - implementation(icons.sdds.icons) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/tokens/plasma.giga.app.compose/config-info-compose.json b/tokens/plasma.giga.app.compose/config-info-compose.json deleted file mode 100644 index 1c7f3b1acc..0000000000 --- a/tokens/plasma.giga.app.compose/config-info-compose.json +++ /dev/null @@ -1,9565 +0,0 @@ -{ - "name": "plasma_giga_app", - "packageName": "com.sdds.plasma.giga.app", - "components": [ - { - "key": "avatar", - "coreName": "Avatar", - "styleName": "Avatar", - "variations": [ - { - "name": "xxl", - "composeReference": "Avatar.Xxl" - }, - { - "name": "l", - "composeReference": "Avatar.L" - }, - { - "name": "m", - "composeReference": "Avatar.M" - }, - { - "name": "s", - "composeReference": "Avatar.S" - } - ] - }, - { - "key": "avatar-group", - "coreName": "AvatarGroup", - "styleName": "AvatarGroup", - "variations": [ - { - "name": "s", - "composeReference": "AvatarGroup.S" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeClear", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeClear.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeClear.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeClear.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeClear.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeClear.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeClear.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeClear.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeClear.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeClear.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeClear.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeClear.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeClear.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeClear.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeClear.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeClear.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeClear.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeClear.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeClear.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeClear.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeClear.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeClear.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeClear.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeClear.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeClear.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeClear.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeClear.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeClear.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeClear.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeClear.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeClear.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeClear.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeClear.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeClear.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeClear.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeClear.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeClear.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeClear.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeClear.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeClear.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeClear.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeClear.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeClear.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeClear.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeClear.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeClear.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeClear.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeClear.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeClear.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeClear.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeClear.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeClear.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeClear.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeClear.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeClear.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeClear.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeClear.Xs.Pilled.Light" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeSolid", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeSolid.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeSolid.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeSolid.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeSolid.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeSolid.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeSolid.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeSolid.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeSolid.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeSolid.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeSolid.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeSolid.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeSolid.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeSolid.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeSolid.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeSolid.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeSolid.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeSolid.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeSolid.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeSolid.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeSolid.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeSolid.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeSolid.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeSolid.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeSolid.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeSolid.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeSolid.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeSolid.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeSolid.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeSolid.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeSolid.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeSolid.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeSolid.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeSolid.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeSolid.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeSolid.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeSolid.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeSolid.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeSolid.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeSolid.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeSolid.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeSolid.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeSolid.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeSolid.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeSolid.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeSolid.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeSolid.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeSolid.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeSolid.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeSolid.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeSolid.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeSolid.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeSolid.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeSolid.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeSolid.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeSolid.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeSolid.Xs.Pilled.Light" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeTransparent", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeTransparent.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeTransparent.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeTransparent.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeTransparent.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeTransparent.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeTransparent.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeTransparent.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeTransparent.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeTransparent.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeTransparent.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeTransparent.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeTransparent.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeTransparent.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeTransparent.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeTransparent.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeTransparent.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeTransparent.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeTransparent.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeTransparent.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeTransparent.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeTransparent.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeTransparent.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeTransparent.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeTransparent.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeTransparent.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeTransparent.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeTransparent.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeTransparent.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeTransparent.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeTransparent.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeTransparent.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeTransparent.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeTransparent.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeTransparent.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeTransparent.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeTransparent.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeTransparent.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeTransparent.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeTransparent.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeTransparent.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeTransparent.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeTransparent.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeTransparent.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeTransparent.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeTransparent.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeTransparent.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeTransparent.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeTransparent.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeTransparent.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeTransparent.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeTransparent.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeTransparent.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeTransparent.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeTransparent.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeTransparent.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeTransparent.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeClear", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeClear.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeClear.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeClear.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeClear.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeClear.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeClear.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeClear.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeClear.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeClear.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeClear.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeClear.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeClear.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeClear.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeClear.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeClear.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeClear.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeClear.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeClear.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeClear.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeClear.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeClear.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeClear.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeClear.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeClear.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeClear.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeClear.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeClear.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeClear.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeClear.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeClear.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeClear.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeClear.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeClear.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeClear.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeClear.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeClear.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeClear.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeClear.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeClear.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeClear.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeClear.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeClear.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeClear.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeClear.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeClear.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeClear.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeClear.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeClear.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeClear.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeClear.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeClear.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeClear.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeClear.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeClear.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeClear.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeClear.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeSolid", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeSolid.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeSolid.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeSolid.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeSolid.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeSolid.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeSolid.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeSolid.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeSolid.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeSolid.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeSolid.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeSolid.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeSolid.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeSolid.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeSolid.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeSolid.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeSolid.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeSolid.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeSolid.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeSolid.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeSolid.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeSolid.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeSolid.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeSolid.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeSolid.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeSolid.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeSolid.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeSolid.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeSolid.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeSolid.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeSolid.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeSolid.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeSolid.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeSolid.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeSolid.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeSolid.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeSolid.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeSolid.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeSolid.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeSolid.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeSolid.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeSolid.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeSolid.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeSolid.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeSolid.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeSolid.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeSolid.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeSolid.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeSolid.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeSolid.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeSolid.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeSolid.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeSolid.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeSolid.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeSolid.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeSolid.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeSolid.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeTransparent", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeTransparent.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeTransparent.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeTransparent.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeTransparent.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeTransparent.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeTransparent.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeTransparent.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeTransparent.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeTransparent.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeTransparent.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeTransparent.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeTransparent.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeTransparent.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeTransparent.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeTransparent.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeTransparent.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeTransparent.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeTransparent.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeTransparent.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeTransparent.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeTransparent.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeTransparent.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeTransparent.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeTransparent.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeTransparent.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeTransparent.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeTransparent.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeTransparent.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeTransparent.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeTransparent.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeTransparent.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeTransparent.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeTransparent.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeTransparent.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeTransparent.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeTransparent.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeTransparent.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeTransparent.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeTransparent.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeTransparent.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeTransparent.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeTransparent.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeTransparent.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeTransparent.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeTransparent.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeTransparent.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeTransparent.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeTransparent.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeTransparent.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Light" - } - ] - }, - { - "key": "basic-button", - "coreName": "BasicButton", - "styleName": "BasicButton", - "variations": [ - { - "name": "xl.default", - "composeReference": "BasicButton.Xl.Default" - }, - { - "name": "xl.secondary", - "composeReference": "BasicButton.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "BasicButton.Xl.Accent" - }, - { - "name": "xl.positive", - "composeReference": "BasicButton.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "BasicButton.Xl.Negative" - }, - { - "name": "xl.warning", - "composeReference": "BasicButton.Xl.Warning" - }, - { - "name": "xl.clear", - "composeReference": "BasicButton.Xl.Clear" - }, - { - "name": "xl.dark", - "composeReference": "BasicButton.Xl.Dark" - }, - { - "name": "xl.black", - "composeReference": "BasicButton.Xl.Black" - }, - { - "name": "xl.white", - "composeReference": "BasicButton.Xl.White" - }, - { - "name": "l.default", - "composeReference": "BasicButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "BasicButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "BasicButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "BasicButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "BasicButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "BasicButton.L.Warning" - }, - { - "name": "l.clear", - "composeReference": "BasicButton.L.Clear" - }, - { - "name": "l.dark", - "composeReference": "BasicButton.L.Dark" - }, - { - "name": "l.black", - "composeReference": "BasicButton.L.Black" - }, - { - "name": "l.white", - "composeReference": "BasicButton.L.White" - }, - { - "name": "m.default", - "composeReference": "BasicButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "BasicButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "BasicButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "BasicButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "BasicButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "BasicButton.M.Warning" - }, - { - "name": "m.clear", - "composeReference": "BasicButton.M.Clear" - }, - { - "name": "m.dark", - "composeReference": "BasicButton.M.Dark" - }, - { - "name": "m.black", - "composeReference": "BasicButton.M.Black" - }, - { - "name": "m.white", - "composeReference": "BasicButton.M.White" - }, - { - "name": "s.default", - "composeReference": "BasicButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "BasicButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "BasicButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "BasicButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "BasicButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "BasicButton.S.Warning" - }, - { - "name": "s.clear", - "composeReference": "BasicButton.S.Clear" - }, - { - "name": "s.dark", - "composeReference": "BasicButton.S.Dark" - }, - { - "name": "s.black", - "composeReference": "BasicButton.S.Black" - }, - { - "name": "s.white", - "composeReference": "BasicButton.S.White" - }, - { - "name": "xs.default", - "composeReference": "BasicButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "BasicButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "BasicButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "BasicButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "BasicButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "BasicButton.Xs.Warning" - }, - { - "name": "xs.clear", - "composeReference": "BasicButton.Xs.Clear" - }, - { - "name": "xs.dark", - "composeReference": "BasicButton.Xs.Dark" - }, - { - "name": "xs.black", - "composeReference": "BasicButton.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "BasicButton.Xs.White" - }, - { - "name": "xxs.default", - "composeReference": "BasicButton.Xxs.Default" - }, - { - "name": "xxs.secondary", - "composeReference": "BasicButton.Xxs.Secondary" - }, - { - "name": "xxs.accent", - "composeReference": "BasicButton.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "BasicButton.Xxs.Positive" - }, - { - "name": "xxs.negative", - "composeReference": "BasicButton.Xxs.Negative" - }, - { - "name": "xxs.warning", - "composeReference": "BasicButton.Xxs.Warning" - }, - { - "name": "xxs.clear", - "composeReference": "BasicButton.Xxs.Clear" - }, - { - "name": "xxs.dark", - "composeReference": "BasicButton.Xxs.Dark" - }, - { - "name": "xxs.black", - "composeReference": "BasicButton.Xxs.Black" - }, - { - "name": "xxs.white", - "composeReference": "BasicButton.Xxs.White" - } - ] - }, - { - "key": "icon-button", - "coreName": "IconButton", - "styleName": "IconButton", - "variations": [ - { - "name": "xl.default", - "composeReference": "IconButton.Xl.Default" - }, - { - "name": "xl.secondary", - "composeReference": "IconButton.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "IconButton.Xl.Accent" - }, - { - "name": "xl.positive", - "composeReference": "IconButton.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "IconButton.Xl.Negative" - }, - { - "name": "xl.warning", - "composeReference": "IconButton.Xl.Warning" - }, - { - "name": "xl.clear", - "composeReference": "IconButton.Xl.Clear" - }, - { - "name": "xl.dark", - "composeReference": "IconButton.Xl.Dark" - }, - { - "name": "xl.black", - "composeReference": "IconButton.Xl.Black" - }, - { - "name": "xl.white", - "composeReference": "IconButton.Xl.White" - }, - { - "name": "xl.pilled.default", - "composeReference": "IconButton.Xl.Pilled.Default" - }, - { - "name": "xl.pilled.secondary", - "composeReference": "IconButton.Xl.Pilled.Secondary" - }, - { - "name": "xl.pilled.accent", - "composeReference": "IconButton.Xl.Pilled.Accent" - }, - { - "name": "xl.pilled.positive", - "composeReference": "IconButton.Xl.Pilled.Positive" - }, - { - "name": "xl.pilled.negative", - "composeReference": "IconButton.Xl.Pilled.Negative" - }, - { - "name": "xl.pilled.warning", - "composeReference": "IconButton.Xl.Pilled.Warning" - }, - { - "name": "xl.pilled.clear", - "composeReference": "IconButton.Xl.Pilled.Clear" - }, - { - "name": "xl.pilled.dark", - "composeReference": "IconButton.Xl.Pilled.Dark" - }, - { - "name": "xl.pilled.black", - "composeReference": "IconButton.Xl.Pilled.Black" - }, - { - "name": "xl.pilled.white", - "composeReference": "IconButton.Xl.Pilled.White" - }, - { - "name": "l.default", - "composeReference": "IconButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "IconButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "IconButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "IconButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "IconButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "IconButton.L.Warning" - }, - { - "name": "l.clear", - "composeReference": "IconButton.L.Clear" - }, - { - "name": "l.dark", - "composeReference": "IconButton.L.Dark" - }, - { - "name": "l.black", - "composeReference": "IconButton.L.Black" - }, - { - "name": "l.white", - "composeReference": "IconButton.L.White" - }, - { - "name": "l.pilled.default", - "composeReference": "IconButton.L.Pilled.Default" - }, - { - "name": "l.pilled.secondary", - "composeReference": "IconButton.L.Pilled.Secondary" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconButton.L.Pilled.Accent" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconButton.L.Pilled.Positive" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconButton.L.Pilled.Negative" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconButton.L.Pilled.Warning" - }, - { - "name": "l.pilled.clear", - "composeReference": "IconButton.L.Pilled.Clear" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconButton.L.Pilled.Dark" - }, - { - "name": "l.pilled.black", - "composeReference": "IconButton.L.Pilled.Black" - }, - { - "name": "l.pilled.white", - "composeReference": "IconButton.L.Pilled.White" - }, - { - "name": "m.default", - "composeReference": "IconButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "IconButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "IconButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "IconButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "IconButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "IconButton.M.Warning" - }, - { - "name": "m.clear", - "composeReference": "IconButton.M.Clear" - }, - { - "name": "m.dark", - "composeReference": "IconButton.M.Dark" - }, - { - "name": "m.black", - "composeReference": "IconButton.M.Black" - }, - { - "name": "m.white", - "composeReference": "IconButton.M.White" - }, - { - "name": "m.pilled.default", - "composeReference": "IconButton.M.Pilled.Default" - }, - { - "name": "m.pilled.secondary", - "composeReference": "IconButton.M.Pilled.Secondary" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconButton.M.Pilled.Accent" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconButton.M.Pilled.Positive" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconButton.M.Pilled.Negative" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconButton.M.Pilled.Warning" - }, - { - "name": "m.pilled.clear", - "composeReference": "IconButton.M.Pilled.Clear" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconButton.M.Pilled.Dark" - }, - { - "name": "m.pilled.black", - "composeReference": "IconButton.M.Pilled.Black" - }, - { - "name": "m.pilled.white", - "composeReference": "IconButton.M.Pilled.White" - }, - { - "name": "s.default", - "composeReference": "IconButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "IconButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "IconButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "IconButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "IconButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "IconButton.S.Warning" - }, - { - "name": "s.clear", - "composeReference": "IconButton.S.Clear" - }, - { - "name": "s.dark", - "composeReference": "IconButton.S.Dark" - }, - { - "name": "s.black", - "composeReference": "IconButton.S.Black" - }, - { - "name": "s.white", - "composeReference": "IconButton.S.White" - }, - { - "name": "s.pilled.default", - "composeReference": "IconButton.S.Pilled.Default" - }, - { - "name": "s.pilled.secondary", - "composeReference": "IconButton.S.Pilled.Secondary" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconButton.S.Pilled.Accent" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconButton.S.Pilled.Positive" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconButton.S.Pilled.Negative" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconButton.S.Pilled.Warning" - }, - { - "name": "s.pilled.clear", - "composeReference": "IconButton.S.Pilled.Clear" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconButton.S.Pilled.Dark" - }, - { - "name": "s.pilled.black", - "composeReference": "IconButton.S.Pilled.Black" - }, - { - "name": "s.pilled.white", - "composeReference": "IconButton.S.Pilled.White" - }, - { - "name": "xs.default", - "composeReference": "IconButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "IconButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "IconButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "IconButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "IconButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "IconButton.Xs.Warning" - }, - { - "name": "xs.clear", - "composeReference": "IconButton.Xs.Clear" - }, - { - "name": "xs.dark", - "composeReference": "IconButton.Xs.Dark" - }, - { - "name": "xs.black", - "composeReference": "IconButton.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "IconButton.Xs.White" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconButton.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "IconButton.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconButton.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconButton.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconButton.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconButton.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.clear", - "composeReference": "IconButton.Xs.Pilled.Clear" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconButton.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.black", - "composeReference": "IconButton.Xs.Pilled.Black" - }, - { - "name": "xs.pilled.white", - "composeReference": "IconButton.Xs.Pilled.White" - }, - { - "name": "xxs.default", - "composeReference": "IconButton.Xxs.Default" - }, - { - "name": "xxs.secondary", - "composeReference": "IconButton.Xxs.Secondary" - }, - { - "name": "xxs.accent", - "composeReference": "IconButton.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "IconButton.Xxs.Positive" - }, - { - "name": "xxs.negative", - "composeReference": "IconButton.Xxs.Negative" - }, - { - "name": "xxs.warning", - "composeReference": "IconButton.Xxs.Warning" - }, - { - "name": "xxs.clear", - "composeReference": "IconButton.Xxs.Clear" - }, - { - "name": "xxs.dark", - "composeReference": "IconButton.Xxs.Dark" - }, - { - "name": "xxs.black", - "composeReference": "IconButton.Xxs.Black" - }, - { - "name": "xxs.white", - "composeReference": "IconButton.Xxs.White" - }, - { - "name": "xxs.pilled.default", - "composeReference": "IconButton.Xxs.Pilled.Default" - }, - { - "name": "xxs.pilled.secondary", - "composeReference": "IconButton.Xxs.Pilled.Secondary" - }, - { - "name": "xxs.pilled.accent", - "composeReference": "IconButton.Xxs.Pilled.Accent" - }, - { - "name": "xxs.pilled.positive", - "composeReference": "IconButton.Xxs.Pilled.Positive" - }, - { - "name": "xxs.pilled.negative", - "composeReference": "IconButton.Xxs.Pilled.Negative" - }, - { - "name": "xxs.pilled.warning", - "composeReference": "IconButton.Xxs.Pilled.Warning" - }, - { - "name": "xxs.pilled.clear", - "composeReference": "IconButton.Xxs.Pilled.Clear" - }, - { - "name": "xxs.pilled.dark", - "composeReference": "IconButton.Xxs.Pilled.Dark" - }, - { - "name": "xxs.pilled.black", - "composeReference": "IconButton.Xxs.Pilled.Black" - }, - { - "name": "xxs.pilled.white", - "composeReference": "IconButton.Xxs.Pilled.White" - } - ] - }, - { - "key": "link-button", - "coreName": "LinkButton", - "styleName": "LinkButton", - "variations": [ - { - "name": "xl.default", - "composeReference": "LinkButton.Xl.Default" - }, - { - "name": "xl.secondary", - "composeReference": "LinkButton.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "LinkButton.Xl.Accent" - }, - { - "name": "xl.positive", - "composeReference": "LinkButton.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "LinkButton.Xl.Negative" - }, - { - "name": "xl.warning", - "composeReference": "LinkButton.Xl.Warning" - }, - { - "name": "l.default", - "composeReference": "LinkButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "LinkButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "LinkButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "LinkButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "LinkButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "LinkButton.L.Warning" - }, - { - "name": "m.default", - "composeReference": "LinkButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "LinkButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "LinkButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "LinkButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "LinkButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "LinkButton.M.Warning" - }, - { - "name": "s.default", - "composeReference": "LinkButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "LinkButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "LinkButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "LinkButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "LinkButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "LinkButton.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "LinkButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "LinkButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "LinkButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "LinkButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "LinkButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "LinkButton.Xs.Warning" - }, - { - "name": "xxs.default", - "composeReference": "LinkButton.Xxs.Default" - }, - { - "name": "xxs.secondary", - "composeReference": "LinkButton.Xxs.Secondary" - }, - { - "name": "xxs.accent", - "composeReference": "LinkButton.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "LinkButton.Xxs.Positive" - }, - { - "name": "xxs.negative", - "composeReference": "LinkButton.Xxs.Negative" - }, - { - "name": "xxs.warning", - "composeReference": "LinkButton.Xxs.Warning" - } - ] - }, - { - "key": "bottom-sheet", - "coreName": "BottomSheet", - "styleName": "ModalBottomSheet", - "variations": [ - { - "name": "Default", - "composeReference": "ModalBottomSheet.Default" - } - ] - }, - { - "key": "card", - "coreName": "Card", - "styleName": "CardSolid", - "variations": [ - { - "name": "l", - "composeReference": "CardSolid.L" - }, - { - "name": "m", - "composeReference": "CardSolid.M" - }, - { - "name": "s", - "composeReference": "CardSolid.S" - } - ] - }, - { - "key": "card", - "coreName": "Card", - "styleName": "CardClear", - "variations": [ - { - "name": "l", - "composeReference": "CardClear.L" - }, - { - "name": "m", - "composeReference": "CardClear.M" - }, - { - "name": "s", - "composeReference": "CardClear.S" - } - ] - }, - { - "key": "cell", - "coreName": "Cell", - "styleName": "Cell", - "variations": [ - { - "name": "l", - "composeReference": "Cell.L" - }, - { - "name": "m", - "composeReference": "Cell.M" - }, - { - "name": "s", - "composeReference": "Cell.S" - }, - { - "name": "xs", - "composeReference": "Cell.Xs" - } - ] - }, - { - "key": "check-box", - "coreName": "CheckBox", - "styleName": "CheckBox", - "variations": [ - { - "name": "l.default", - "composeReference": "CheckBox.L.Default" - }, - { - "name": "l.negative", - "composeReference": "CheckBox.L.Negative" - }, - { - "name": "m.default", - "composeReference": "CheckBox.M.Default" - }, - { - "name": "m.negative", - "composeReference": "CheckBox.M.Negative" - }, - { - "name": "s.default", - "composeReference": "CheckBox.S.Default" - }, - { - "name": "s.negative", - "composeReference": "CheckBox.S.Negative" - } - ] - }, - { - "key": "check-box-group", - "coreName": "CheckBoxGroup", - "styleName": "CheckBoxGroup", - "variations": [ - { - "name": "l", - "composeReference": "CheckBoxGroup.L" - }, - { - "name": "m", - "composeReference": "CheckBoxGroup.M" - }, - { - "name": "s", - "composeReference": "CheckBoxGroup.S" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "Chip", - "variations": [ - { - "name": "l.default", - "composeReference": "Chip.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Chip.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "Chip.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "Chip.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "Chip.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "Chip.L.Warning" - }, - { - "name": "l.pilled.default", - "composeReference": "Chip.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "Chip.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "Chip.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "Chip.L.Pilled.Positive" - }, - { - "name": "l.pilled.secondary", - "composeReference": "Chip.L.Pilled.Secondary" - }, - { - "name": "l.pilled.warning", - "composeReference": "Chip.L.Pilled.Warning" - }, - { - "name": "m.default", - "composeReference": "Chip.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Chip.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "Chip.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "Chip.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "Chip.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "Chip.M.Warning" - }, - { - "name": "m.pilled.default", - "composeReference": "Chip.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "Chip.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "Chip.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "Chip.M.Pilled.Positive" - }, - { - "name": "m.pilled.secondary", - "composeReference": "Chip.M.Pilled.Secondary" - }, - { - "name": "m.pilled.warning", - "composeReference": "Chip.M.Pilled.Warning" - }, - { - "name": "s.default", - "composeReference": "Chip.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Chip.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "Chip.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "Chip.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "Chip.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "Chip.S.Warning" - }, - { - "name": "s.pilled.default", - "composeReference": "Chip.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "Chip.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "Chip.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "Chip.S.Pilled.Positive" - }, - { - "name": "s.pilled.secondary", - "composeReference": "Chip.S.Pilled.Secondary" - }, - { - "name": "s.pilled.warning", - "composeReference": "Chip.S.Pilled.Warning" - }, - { - "name": "xs.default", - "composeReference": "Chip.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "Chip.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "Chip.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "Chip.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "Chip.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "Chip.Xs.Warning" - }, - { - "name": "xs.pilled.default", - "composeReference": "Chip.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "Chip.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "Chip.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "Chip.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "Chip.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.warning", - "composeReference": "Chip.Xs.Pilled.Warning" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "EmbeddedChip", - "variations": [ - { - "name": "xl.default", - "composeReference": "EmbeddedChip.Xl.Default" - }, - { - "name": "xl.accent", - "composeReference": "EmbeddedChip.Xl.Accent" - }, - { - "name": "xl.negative", - "composeReference": "EmbeddedChip.Xl.Negative" - }, - { - "name": "xl.positive", - "composeReference": "EmbeddedChip.Xl.Positive" - }, - { - "name": "xl.secondary", - "composeReference": "EmbeddedChip.Xl.Secondary" - }, - { - "name": "xl.warning", - "composeReference": "EmbeddedChip.Xl.Warning" - }, - { - "name": "l.default", - "composeReference": "EmbeddedChip.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChip.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "EmbeddedChip.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "EmbeddedChip.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChip.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "EmbeddedChip.L.Warning" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChip.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChip.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "EmbeddedChip.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "EmbeddedChip.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChip.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "EmbeddedChip.M.Warning" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChip.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChip.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "EmbeddedChip.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "EmbeddedChip.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChip.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "EmbeddedChip.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChip.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChip.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "EmbeddedChip.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "EmbeddedChip.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChip.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "EmbeddedChip.Xs.Warning" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupDense", - "variations": [ - { - "name": "l.default", - "composeReference": "ChipGroupDense.L.Default" - }, - { - "name": "l.accent", - "composeReference": "ChipGroupDense.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "ChipGroupDense.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "ChipGroupDense.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "ChipGroupDense.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "ChipGroupDense.L.Warning" - }, - { - "name": "l.pilled.default", - "composeReference": "ChipGroupDense.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "ChipGroupDense.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "ChipGroupDense.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "ChipGroupDense.L.Pilled.Positive" - }, - { - "name": "l.pilled.secondary", - "composeReference": "ChipGroupDense.L.Pilled.Secondary" - }, - { - "name": "l.pilled.warning", - "composeReference": "ChipGroupDense.L.Pilled.Warning" - }, - { - "name": "m.default", - "composeReference": "ChipGroupDense.M.Default" - }, - { - "name": "m.accent", - "composeReference": "ChipGroupDense.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "ChipGroupDense.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "ChipGroupDense.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "ChipGroupDense.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "ChipGroupDense.M.Warning" - }, - { - "name": "m.pilled.default", - "composeReference": "ChipGroupDense.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "ChipGroupDense.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "ChipGroupDense.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "ChipGroupDense.M.Pilled.Positive" - }, - { - "name": "m.pilled.secondary", - "composeReference": "ChipGroupDense.M.Pilled.Secondary" - }, - { - "name": "m.pilled.warning", - "composeReference": "ChipGroupDense.M.Pilled.Warning" - }, - { - "name": "s.default", - "composeReference": "ChipGroupDense.S.Default" - }, - { - "name": "s.accent", - "composeReference": "ChipGroupDense.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "ChipGroupDense.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "ChipGroupDense.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "ChipGroupDense.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "ChipGroupDense.S.Warning" - }, - { - "name": "s.pilled.default", - "composeReference": "ChipGroupDense.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "ChipGroupDense.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "ChipGroupDense.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "ChipGroupDense.S.Pilled.Positive" - }, - { - "name": "s.pilled.secondary", - "composeReference": "ChipGroupDense.S.Pilled.Secondary" - }, - { - "name": "s.pilled.warning", - "composeReference": "ChipGroupDense.S.Pilled.Warning" - }, - { - "name": "xs.default", - "composeReference": "ChipGroupDense.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "ChipGroupDense.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "ChipGroupDense.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "ChipGroupDense.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "ChipGroupDense.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "ChipGroupDense.Xs.Warning" - }, - { - "name": "xs.pilled.default", - "composeReference": "ChipGroupDense.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "ChipGroupDense.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "ChipGroupDense.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "ChipGroupDense.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "ChipGroupDense.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.warning", - "composeReference": "ChipGroupDense.Xs.Pilled.Warning" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupWide", - "variations": [ - { - "name": "l.default", - "composeReference": "ChipGroupWide.L.Default" - }, - { - "name": "l.accent", - "composeReference": "ChipGroupWide.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "ChipGroupWide.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "ChipGroupWide.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "ChipGroupWide.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "ChipGroupWide.L.Warning" - }, - { - "name": "l.pilled.default", - "composeReference": "ChipGroupWide.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "ChipGroupWide.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "ChipGroupWide.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "ChipGroupWide.L.Pilled.Positive" - }, - { - "name": "l.pilled.secondary", - "composeReference": "ChipGroupWide.L.Pilled.Secondary" - }, - { - "name": "l.pilled.warning", - "composeReference": "ChipGroupWide.L.Pilled.Warning" - }, - { - "name": "m.default", - "composeReference": "ChipGroupWide.M.Default" - }, - { - "name": "m.accent", - "composeReference": "ChipGroupWide.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "ChipGroupWide.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "ChipGroupWide.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "ChipGroupWide.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "ChipGroupWide.M.Warning" - }, - { - "name": "m.pilled.default", - "composeReference": "ChipGroupWide.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "ChipGroupWide.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "ChipGroupWide.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "ChipGroupWide.M.Pilled.Positive" - }, - { - "name": "m.pilled.secondary", - "composeReference": "ChipGroupWide.M.Pilled.Secondary" - }, - { - "name": "m.pilled.warning", - "composeReference": "ChipGroupWide.M.Pilled.Warning" - }, - { - "name": "s.default", - "composeReference": "ChipGroupWide.S.Default" - }, - { - "name": "s.accent", - "composeReference": "ChipGroupWide.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "ChipGroupWide.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "ChipGroupWide.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "ChipGroupWide.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "ChipGroupWide.S.Warning" - }, - { - "name": "s.pilled.default", - "composeReference": "ChipGroupWide.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "ChipGroupWide.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "ChipGroupWide.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "ChipGroupWide.S.Pilled.Positive" - }, - { - "name": "s.pilled.secondary", - "composeReference": "ChipGroupWide.S.Pilled.Secondary" - }, - { - "name": "s.pilled.warning", - "composeReference": "ChipGroupWide.S.Pilled.Warning" - }, - { - "name": "xs.default", - "composeReference": "ChipGroupWide.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "ChipGroupWide.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "ChipGroupWide.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "ChipGroupWide.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "ChipGroupWide.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "ChipGroupWide.Xs.Warning" - }, - { - "name": "xs.pilled.default", - "composeReference": "ChipGroupWide.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "ChipGroupWide.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "ChipGroupWide.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "ChipGroupWide.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "ChipGroupWide.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.warning", - "composeReference": "ChipGroupWide.Xs.Pilled.Warning" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupDense", - "variations": [ - { - "name": "xl.default", - "composeReference": "EmbeddedChipGroupDense.Xl.Default" - }, - { - "name": "xl.accent", - "composeReference": "EmbeddedChipGroupDense.Xl.Accent" - }, - { - "name": "xl.negative", - "composeReference": "EmbeddedChipGroupDense.Xl.Negative" - }, - { - "name": "xl.positive", - "composeReference": "EmbeddedChipGroupDense.Xl.Positive" - }, - { - "name": "xl.secondary", - "composeReference": "EmbeddedChipGroupDense.Xl.Secondary" - }, - { - "name": "xl.warning", - "composeReference": "EmbeddedChipGroupDense.Xl.Warning" - }, - { - "name": "l.default", - "composeReference": "EmbeddedChipGroupDense.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChipGroupDense.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "EmbeddedChipGroupDense.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "EmbeddedChipGroupDense.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChipGroupDense.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "EmbeddedChipGroupDense.L.Warning" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChipGroupDense.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChipGroupDense.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "EmbeddedChipGroupDense.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "EmbeddedChipGroupDense.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChipGroupDense.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "EmbeddedChipGroupDense.M.Warning" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChipGroupDense.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChipGroupDense.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "EmbeddedChipGroupDense.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "EmbeddedChipGroupDense.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChipGroupDense.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "EmbeddedChipGroupDense.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChipGroupDense.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChipGroupDense.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "EmbeddedChipGroupDense.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "EmbeddedChipGroupDense.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChipGroupDense.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "EmbeddedChipGroupDense.Xs.Warning" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupWide", - "variations": [ - { - "name": "xl.default", - "composeReference": "EmbeddedChipGroupWide.Xl.Default" - }, - { - "name": "xl.accent", - "composeReference": "EmbeddedChipGroupWide.Xl.Accent" - }, - { - "name": "xl.negative", - "composeReference": "EmbeddedChipGroupWide.Xl.Negative" - }, - { - "name": "xl.positive", - "composeReference": "EmbeddedChipGroupWide.Xl.Positive" - }, - { - "name": "xl.secondary", - "composeReference": "EmbeddedChipGroupWide.Xl.Secondary" - }, - { - "name": "xl.warning", - "composeReference": "EmbeddedChipGroupWide.Xl.Warning" - }, - { - "name": "l.default", - "composeReference": "EmbeddedChipGroupWide.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChipGroupWide.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "EmbeddedChipGroupWide.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "EmbeddedChipGroupWide.L.Positive" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChipGroupWide.L.Secondary" - }, - { - "name": "l.warning", - "composeReference": "EmbeddedChipGroupWide.L.Warning" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChipGroupWide.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChipGroupWide.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "EmbeddedChipGroupWide.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "EmbeddedChipGroupWide.M.Positive" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChipGroupWide.M.Secondary" - }, - { - "name": "m.warning", - "composeReference": "EmbeddedChipGroupWide.M.Warning" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChipGroupWide.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChipGroupWide.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "EmbeddedChipGroupWide.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "EmbeddedChipGroupWide.S.Positive" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChipGroupWide.S.Secondary" - }, - { - "name": "s.warning", - "composeReference": "EmbeddedChipGroupWide.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChipGroupWide.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChipGroupWide.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "EmbeddedChipGroupWide.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "EmbeddedChipGroupWide.Xs.Positive" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChipGroupWide.Xs.Secondary" - }, - { - "name": "xs.warning", - "composeReference": "EmbeddedChipGroupWide.Xs.Warning" - } - ] - }, - { - "key": "counter", - "coreName": "Counter", - "styleName": "Counter", - "variations": [ - { - "name": "l.default", - "composeReference": "Counter.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Counter.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "Counter.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "Counter.L.Warning" - }, - { - "name": "l.negative", - "composeReference": "Counter.L.Negative" - }, - { - "name": "l.black", - "composeReference": "Counter.L.Black" - }, - { - "name": "l.white", - "composeReference": "Counter.L.White" - }, - { - "name": "m.default", - "composeReference": "Counter.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Counter.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "Counter.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "Counter.M.Warning" - }, - { - "name": "m.negative", - "composeReference": "Counter.M.Negative" - }, - { - "name": "m.black", - "composeReference": "Counter.M.Black" - }, - { - "name": "m.white", - "composeReference": "Counter.M.White" - }, - { - "name": "s.default", - "composeReference": "Counter.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Counter.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "Counter.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "Counter.S.Warning" - }, - { - "name": "s.negative", - "composeReference": "Counter.S.Negative" - }, - { - "name": "s.black", - "composeReference": "Counter.S.Black" - }, - { - "name": "s.white", - "composeReference": "Counter.S.White" - }, - { - "name": "xs.default", - "composeReference": "Counter.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "Counter.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "Counter.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "Counter.Xs.Warning" - }, - { - "name": "xs.negative", - "composeReference": "Counter.Xs.Negative" - }, - { - "name": "xs.black", - "composeReference": "Counter.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "Counter.Xs.White" - }, - { - "name": "xxs.default", - "composeReference": "Counter.Xxs.Default" - }, - { - "name": "xxs.accent", - "composeReference": "Counter.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "Counter.Xxs.Positive" - }, - { - "name": "xxs.warning", - "composeReference": "Counter.Xxs.Warning" - }, - { - "name": "xxs.negative", - "composeReference": "Counter.Xxs.Negative" - }, - { - "name": "xxs.black", - "composeReference": "Counter.Xxs.Black" - }, - { - "name": "xxs.white", - "composeReference": "Counter.Xxs.White" - } - ] - }, - { - "key": "divider", - "coreName": "Divider", - "styleName": "Divider", - "variations": [ - { - "name": "Default", - "composeReference": "Divider.Default" - } - ] - }, - { - "key": "indicator", - "coreName": "Indicator", - "styleName": "Indicator", - "variations": [ - { - "name": "l.default", - "composeReference": "Indicator.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Indicator.L.Accent" - }, - { - "name": "l.inactive", - "composeReference": "Indicator.L.Inactive" - }, - { - "name": "l.positive", - "composeReference": "Indicator.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "Indicator.L.Warning" - }, - { - "name": "l.negative", - "composeReference": "Indicator.L.Negative" - }, - { - "name": "l.black", - "composeReference": "Indicator.L.Black" - }, - { - "name": "l.white", - "composeReference": "Indicator.L.White" - }, - { - "name": "m.default", - "composeReference": "Indicator.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Indicator.M.Accent" - }, - { - "name": "m.inactive", - "composeReference": "Indicator.M.Inactive" - }, - { - "name": "m.positive", - "composeReference": "Indicator.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "Indicator.M.Warning" - }, - { - "name": "m.negative", - "composeReference": "Indicator.M.Negative" - }, - { - "name": "m.black", - "composeReference": "Indicator.M.Black" - }, - { - "name": "m.white", - "composeReference": "Indicator.M.White" - }, - { - "name": "s.default", - "composeReference": "Indicator.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Indicator.S.Accent" - }, - { - "name": "s.inactive", - "composeReference": "Indicator.S.Inactive" - }, - { - "name": "s.positive", - "composeReference": "Indicator.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "Indicator.S.Warning" - }, - { - "name": "s.negative", - "composeReference": "Indicator.S.Negative" - }, - { - "name": "s.black", - "composeReference": "Indicator.S.Black" - }, - { - "name": "s.white", - "composeReference": "Indicator.S.White" - } - ] - }, - { - "key": "overlay", - "coreName": "Overlay", - "styleName": "Overlay", - "variations": [ - { - "name": "Default", - "composeReference": "Overlay.Default" - } - ] - }, - { - "key": "progress-bar", - "coreName": "ProgressBar", - "styleName": "ProgressBar", - "variations": [ - { - "name": "default", - "composeReference": "ProgressBar.Default" - }, - { - "name": "secondary", - "composeReference": "ProgressBar.Secondary" - }, - { - "name": "accent", - "composeReference": "ProgressBar.Accent" - }, - { - "name": "gradient", - "composeReference": "ProgressBar.Gradient" - }, - { - "name": "info", - "composeReference": "ProgressBar.Info" - }, - { - "name": "negative", - "composeReference": "ProgressBar.Negative" - }, - { - "name": "positive", - "composeReference": "ProgressBar.Positive" - }, - { - "name": "warning", - "composeReference": "ProgressBar.Warning" - } - ] - }, - { - "key": "circular-progress-bar", - "coreName": "CircularProgressBar", - "styleName": "CircularProgressBar", - "variations": [ - { - "name": "xxl.default", - "composeReference": "CircularProgressBar.Xxl.Default" - }, - { - "name": "xxl.secondary", - "composeReference": "CircularProgressBar.Xxl.Secondary" - }, - { - "name": "xxl.accent", - "composeReference": "CircularProgressBar.Xxl.Accent" - }, - { - "name": "xxl.gradient", - "composeReference": "CircularProgressBar.Xxl.Gradient" - }, - { - "name": "xxl.info", - "composeReference": "CircularProgressBar.Xxl.Info" - }, - { - "name": "xxl.negative", - "composeReference": "CircularProgressBar.Xxl.Negative" - }, - { - "name": "xxl.positive", - "composeReference": "CircularProgressBar.Xxl.Positive" - }, - { - "name": "xxl.warning", - "composeReference": "CircularProgressBar.Xxl.Warning" - }, - { - "name": "xl.default", - "composeReference": "CircularProgressBar.Xl.Default" - }, - { - "name": "xl.secondary", - "composeReference": "CircularProgressBar.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "CircularProgressBar.Xl.Accent" - }, - { - "name": "xl.gradient", - "composeReference": "CircularProgressBar.Xl.Gradient" - }, - { - "name": "xl.info", - "composeReference": "CircularProgressBar.Xl.Info" - }, - { - "name": "xl.negative", - "composeReference": "CircularProgressBar.Xl.Negative" - }, - { - "name": "xl.positive", - "composeReference": "CircularProgressBar.Xl.Positive" - }, - { - "name": "xl.warning", - "composeReference": "CircularProgressBar.Xl.Warning" - }, - { - "name": "l.default", - "composeReference": "CircularProgressBar.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "CircularProgressBar.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "CircularProgressBar.L.Accent" - }, - { - "name": "l.gradient", - "composeReference": "CircularProgressBar.L.Gradient" - }, - { - "name": "l.info", - "composeReference": "CircularProgressBar.L.Info" - }, - { - "name": "l.negative", - "composeReference": "CircularProgressBar.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "CircularProgressBar.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "CircularProgressBar.L.Warning" - }, - { - "name": "m.default", - "composeReference": "CircularProgressBar.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "CircularProgressBar.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "CircularProgressBar.M.Accent" - }, - { - "name": "m.gradient", - "composeReference": "CircularProgressBar.M.Gradient" - }, - { - "name": "m.info", - "composeReference": "CircularProgressBar.M.Info" - }, - { - "name": "m.negative", - "composeReference": "CircularProgressBar.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "CircularProgressBar.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "CircularProgressBar.M.Warning" - }, - { - "name": "s.default", - "composeReference": "CircularProgressBar.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "CircularProgressBar.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "CircularProgressBar.S.Accent" - }, - { - "name": "s.gradient", - "composeReference": "CircularProgressBar.S.Gradient" - }, - { - "name": "s.info", - "composeReference": "CircularProgressBar.S.Info" - }, - { - "name": "s.negative", - "composeReference": "CircularProgressBar.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "CircularProgressBar.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "CircularProgressBar.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "CircularProgressBar.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "CircularProgressBar.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "CircularProgressBar.Xs.Accent" - }, - { - "name": "xs.gradient", - "composeReference": "CircularProgressBar.Xs.Gradient" - }, - { - "name": "xs.info", - "composeReference": "CircularProgressBar.Xs.Info" - }, - { - "name": "xs.negative", - "composeReference": "CircularProgressBar.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "CircularProgressBar.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "CircularProgressBar.Xs.Warning" - }, - { - "name": "xxs.default", - "composeReference": "CircularProgressBar.Xxs.Default" - }, - { - "name": "xxs.secondary", - "composeReference": "CircularProgressBar.Xxs.Secondary" - }, - { - "name": "xxs.accent", - "composeReference": "CircularProgressBar.Xxs.Accent" - }, - { - "name": "xxs.gradient", - "composeReference": "CircularProgressBar.Xxs.Gradient" - }, - { - "name": "xxs.info", - "composeReference": "CircularProgressBar.Xxs.Info" - }, - { - "name": "xxs.negative", - "composeReference": "CircularProgressBar.Xxs.Negative" - }, - { - "name": "xxs.positive", - "composeReference": "CircularProgressBar.Xxs.Positive" - }, - { - "name": "xxs.warning", - "composeReference": "CircularProgressBar.Xxs.Warning" - } - ] - }, - { - "key": "popover", - "coreName": "Popover", - "styleName": "Popover", - "variations": [ - { - "name": "m.default", - "composeReference": "Popover.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Popover.M.Accent" - }, - { - "name": "s.default", - "composeReference": "Popover.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Popover.S.Accent" - } - ] - }, - { - "key": "radio-box", - "coreName": "RadioBox", - "styleName": "RadioBox", - "variations": [ - { - "name": "l", - "composeReference": "RadioBox.L" - }, - { - "name": "m", - "composeReference": "RadioBox.M" - }, - { - "name": "s", - "composeReference": "RadioBox.S" - } - ] - }, - { - "key": "radio-box-group", - "coreName": "RadioBoxGroup", - "styleName": "RadioBoxGroup", - "variations": [ - { - "name": "m", - "composeReference": "RadioBoxGroup.M" - }, - { - "name": "s", - "composeReference": "RadioBoxGroup.S" - } - ] - }, - { - "key": "segment", - "coreName": "Segment", - "styleName": "Segment", - "variations": [ - { - "name": "xl.primary", - "composeReference": "Segment.Xl.Primary" - }, - { - "name": "xl.secondary", - "composeReference": "Segment.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "Segment.Xl.Accent" - }, - { - "name": "xl.pilled.primary", - "composeReference": "Segment.Xl.Pilled.Primary" - }, - { - "name": "xl.pilled.secondary", - "composeReference": "Segment.Xl.Pilled.Secondary" - }, - { - "name": "xl.pilled.accent", - "composeReference": "Segment.Xl.Pilled.Accent" - }, - { - "name": "l.primary", - "composeReference": "Segment.L.Primary" - }, - { - "name": "l.secondary", - "composeReference": "Segment.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "Segment.L.Accent" - }, - { - "name": "l.pilled.primary", - "composeReference": "Segment.L.Pilled.Primary" - }, - { - "name": "l.pilled.secondary", - "composeReference": "Segment.L.Pilled.Secondary" - }, - { - "name": "l.pilled.accent", - "composeReference": "Segment.L.Pilled.Accent" - }, - { - "name": "m.primary", - "composeReference": "Segment.M.Primary" - }, - { - "name": "m.secondary", - "composeReference": "Segment.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "Segment.M.Accent" - }, - { - "name": "m.pilled.primary", - "composeReference": "Segment.M.Pilled.Primary" - }, - { - "name": "m.pilled.secondary", - "composeReference": "Segment.M.Pilled.Secondary" - }, - { - "name": "m.pilled.accent", - "composeReference": "Segment.M.Pilled.Accent" - }, - { - "name": "s.primary", - "composeReference": "Segment.S.Primary" - }, - { - "name": "s.secondary", - "composeReference": "Segment.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "Segment.S.Accent" - }, - { - "name": "s.pilled.primary", - "composeReference": "Segment.S.Pilled.Primary" - }, - { - "name": "s.pilled.secondary", - "composeReference": "Segment.S.Pilled.Secondary" - }, - { - "name": "s.pilled.accent", - "composeReference": "Segment.S.Pilled.Accent" - }, - { - "name": "xs.primary", - "composeReference": "Segment.Xs.Primary" - }, - { - "name": "xs.secondary", - "composeReference": "Segment.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "Segment.Xs.Accent" - }, - { - "name": "xs.pilled.primary", - "composeReference": "Segment.Xs.Pilled.Primary" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "Segment.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.accent", - "composeReference": "Segment.Xs.Pilled.Accent" - } - ] - }, - { - "key": "segment-item", - "coreName": "SegmentItem", - "styleName": "SegmentItem", - "variations": [ - { - "name": "xl.primary", - "composeReference": "SegmentItem.Xl.Primary" - }, - { - "name": "xl.secondary", - "composeReference": "SegmentItem.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "SegmentItem.Xl.Accent" - }, - { - "name": "xl.pilled.primary", - "composeReference": "SegmentItem.Xl.Pilled.Primary" - }, - { - "name": "xl.pilled.secondary", - "composeReference": "SegmentItem.Xl.Pilled.Secondary" - }, - { - "name": "xl.pilled.accent", - "composeReference": "SegmentItem.Xl.Pilled.Accent" - }, - { - "name": "l.primary", - "composeReference": "SegmentItem.L.Primary" - }, - { - "name": "l.secondary", - "composeReference": "SegmentItem.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "SegmentItem.L.Accent" - }, - { - "name": "l.pilled.primary", - "composeReference": "SegmentItem.L.Pilled.Primary" - }, - { - "name": "l.pilled.secondary", - "composeReference": "SegmentItem.L.Pilled.Secondary" - }, - { - "name": "l.pilled.accent", - "composeReference": "SegmentItem.L.Pilled.Accent" - }, - { - "name": "m.primary", - "composeReference": "SegmentItem.M.Primary" - }, - { - "name": "m.secondary", - "composeReference": "SegmentItem.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "SegmentItem.M.Accent" - }, - { - "name": "m.pilled.primary", - "composeReference": "SegmentItem.M.Pilled.Primary" - }, - { - "name": "m.pilled.secondary", - "composeReference": "SegmentItem.M.Pilled.Secondary" - }, - { - "name": "m.pilled.accent", - "composeReference": "SegmentItem.M.Pilled.Accent" - }, - { - "name": "s.primary", - "composeReference": "SegmentItem.S.Primary" - }, - { - "name": "s.secondary", - "composeReference": "SegmentItem.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "SegmentItem.S.Accent" - }, - { - "name": "s.pilled.primary", - "composeReference": "SegmentItem.S.Pilled.Primary" - }, - { - "name": "s.pilled.secondary", - "composeReference": "SegmentItem.S.Pilled.Secondary" - }, - { - "name": "s.pilled.accent", - "composeReference": "SegmentItem.S.Pilled.Accent" - }, - { - "name": "xs.primary", - "composeReference": "SegmentItem.Xs.Primary" - }, - { - "name": "xs.secondary", - "composeReference": "SegmentItem.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "SegmentItem.Xs.Accent" - }, - { - "name": "xs.pilled.primary", - "composeReference": "SegmentItem.Xs.Pilled.Primary" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "SegmentItem.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.accent", - "composeReference": "SegmentItem.Xs.Pilled.Accent" - } - ] - }, - { - "key": "switch", - "coreName": "Switch", - "styleName": "Switch", - "variations": [ - { - "name": "l", - "composeReference": "Switch.L" - }, - { - "name": "l.toggle-s", - "composeReference": "Switch.L.ToggleS" - }, - { - "name": "m", - "composeReference": "Switch.M" - }, - { - "name": "m.toggle-s", - "composeReference": "Switch.M.ToggleS" - }, - { - "name": "s", - "composeReference": "Switch.S" - }, - { - "name": "s.toggle-s", - "composeReference": "Switch.S.ToggleS" - } - ] - }, - { - "key": "text-field", - "coreName": "TextField", - "styleName": "TextField", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextField.Xs.Default" - }, - { - "name": "xs.success", - "composeReference": "TextField.Xs.Success" - }, - { - "name": "xs.warning", - "composeReference": "TextField.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextField.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextField.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.success", - "composeReference": "TextField.Xs.RequiredStart.Success" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextField.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextField.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextField.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.success", - "composeReference": "TextField.Xs.RequiredEnd.Success" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextField.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextField.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextField.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.success", - "composeReference": "TextField.Xs.OuterLabel.Success" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextField.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextField.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.success", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Success" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.success", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextField.S.Default" - }, - { - "name": "s.success", - "composeReference": "TextField.S.Success" - }, - { - "name": "s.warning", - "composeReference": "TextField.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextField.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextField.S.RequiredStart.Default" - }, - { - "name": "s.required-start.success", - "composeReference": "TextField.S.RequiredStart.Success" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextField.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextField.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextField.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.success", - "composeReference": "TextField.S.RequiredEnd.Success" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextField.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextField.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextField.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.success", - "composeReference": "TextField.S.OuterLabel.Success" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextField.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextField.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.success", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Success" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.success", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Success" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextField.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.success", - "composeReference": "TextField.S.InnerLabel.Success" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextField.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextField.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.success", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Success" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.success", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Success" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextField.M.Default" - }, - { - "name": "m.success", - "composeReference": "TextField.M.Success" - }, - { - "name": "m.warning", - "composeReference": "TextField.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextField.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextField.M.RequiredStart.Default" - }, - { - "name": "m.required-start.success", - "composeReference": "TextField.M.RequiredStart.Success" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextField.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextField.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextField.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.success", - "composeReference": "TextField.M.RequiredEnd.Success" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextField.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextField.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextField.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.success", - "composeReference": "TextField.M.OuterLabel.Success" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextField.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextField.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.success", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Success" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.success", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Success" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextField.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.success", - "composeReference": "TextField.M.InnerLabel.Success" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextField.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextField.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.success", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Success" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.success", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Success" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextField.L.Default" - }, - { - "name": "l.success", - "composeReference": "TextField.L.Success" - }, - { - "name": "l.warning", - "composeReference": "TextField.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextField.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextField.L.RequiredStart.Default" - }, - { - "name": "l.required-start.success", - "composeReference": "TextField.L.RequiredStart.Success" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextField.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextField.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextField.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.success", - "composeReference": "TextField.L.RequiredEnd.Success" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextField.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextField.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextField.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.success", - "composeReference": "TextField.L.OuterLabel.Success" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextField.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextField.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.success", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Success" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.success", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Success" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextField.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.success", - "composeReference": "TextField.L.InnerLabel.Success" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextField.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextField.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.success", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Success" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.success", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Success" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Error" - }, - { - "name": "xl.default", - "composeReference": "TextField.Xl.Default" - }, - { - "name": "xl.success", - "composeReference": "TextField.Xl.Success" - }, - { - "name": "xl.warning", - "composeReference": "TextField.Xl.Warning" - }, - { - "name": "xl.error", - "composeReference": "TextField.Xl.Error" - }, - { - "name": "xl.required-start.default", - "composeReference": "TextField.Xl.RequiredStart.Default" - }, - { - "name": "xl.required-start.success", - "composeReference": "TextField.Xl.RequiredStart.Success" - }, - { - "name": "xl.required-start.warning", - "composeReference": "TextField.Xl.RequiredStart.Warning" - }, - { - "name": "xl.required-start.error", - "composeReference": "TextField.Xl.RequiredStart.Error" - }, - { - "name": "xl.required-end.default", - "composeReference": "TextField.Xl.RequiredEnd.Default" - }, - { - "name": "xl.required-end.success", - "composeReference": "TextField.Xl.RequiredEnd.Success" - }, - { - "name": "xl.required-end.warning", - "composeReference": "TextField.Xl.RequiredEnd.Warning" - }, - { - "name": "xl.required-end.error", - "composeReference": "TextField.Xl.RequiredEnd.Error" - }, - { - "name": "xl.outer-label.default", - "composeReference": "TextField.Xl.OuterLabel.Default" - }, - { - "name": "xl.outer-label.success", - "composeReference": "TextField.Xl.OuterLabel.Success" - }, - { - "name": "xl.outer-label.warning", - "composeReference": "TextField.Xl.OuterLabel.Warning" - }, - { - "name": "xl.outer-label.error", - "composeReference": "TextField.Xl.OuterLabel.Error" - }, - { - "name": "xl.outer-label.required-start.default", - "composeReference": "TextField.Xl.OuterLabel.RequiredStart.Default" - }, - { - "name": "xl.outer-label.required-start.success", - "composeReference": "TextField.Xl.OuterLabel.RequiredStart.Success" - }, - { - "name": "xl.outer-label.required-start.warning", - "composeReference": "TextField.Xl.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xl.outer-label.required-start.error", - "composeReference": "TextField.Xl.OuterLabel.RequiredStart.Error" - }, - { - "name": "xl.outer-label.required-end.default", - "composeReference": "TextField.Xl.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xl.outer-label.required-end.success", - "composeReference": "TextField.Xl.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xl.outer-label.required-end.warning", - "composeReference": "TextField.Xl.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xl.outer-label.required-end.error", - "composeReference": "TextField.Xl.OuterLabel.RequiredEnd.Error" - }, - { - "name": "xl.inner-label.default", - "composeReference": "TextField.Xl.InnerLabel.Default" - }, - { - "name": "xl.inner-label.success", - "composeReference": "TextField.Xl.InnerLabel.Success" - }, - { - "name": "xl.inner-label.warning", - "composeReference": "TextField.Xl.InnerLabel.Warning" - }, - { - "name": "xl.inner-label.error", - "composeReference": "TextField.Xl.InnerLabel.Error" - }, - { - "name": "xl.inner-label.required-start.default", - "composeReference": "TextField.Xl.InnerLabel.RequiredStart.Default" - }, - { - "name": "xl.inner-label.required-start.success", - "composeReference": "TextField.Xl.InnerLabel.RequiredStart.Success" - }, - { - "name": "xl.inner-label.required-start.warning", - "composeReference": "TextField.Xl.InnerLabel.RequiredStart.Warning" - }, - { - "name": "xl.inner-label.required-start.error", - "composeReference": "TextField.Xl.InnerLabel.RequiredStart.Error" - }, - { - "name": "xl.inner-label.required-end.default", - "composeReference": "TextField.Xl.InnerLabel.RequiredEnd.Default" - }, - { - "name": "xl.inner-label.required-end.success", - "composeReference": "TextField.Xl.InnerLabel.RequiredEnd.Success" - }, - { - "name": "xl.inner-label.required-end.warning", - "composeReference": "TextField.Xl.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "xl.inner-label.required-end.error", - "composeReference": "TextField.Xl.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-field", - "coreName": "TextField", - "styleName": "TextFieldClear", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextFieldClear.Xs.Default" - }, - { - "name": "xs.success", - "composeReference": "TextFieldClear.Xs.Success" - }, - { - "name": "xs.warning", - "composeReference": "TextFieldClear.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextFieldClear.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextFieldClear.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.success", - "composeReference": "TextFieldClear.Xs.RequiredStart.Success" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextFieldClear.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextFieldClear.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.success", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Success" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.Success" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Success" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextFieldClear.S.Default" - }, - { - "name": "s.success", - "composeReference": "TextFieldClear.S.Success" - }, - { - "name": "s.warning", - "composeReference": "TextFieldClear.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextFieldClear.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextFieldClear.S.RequiredStart.Default" - }, - { - "name": "s.required-start.success", - "composeReference": "TextFieldClear.S.RequiredStart.Success" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextFieldClear.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextFieldClear.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextFieldClear.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.success", - "composeReference": "TextFieldClear.S.RequiredEnd.Success" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextFieldClear.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextFieldClear.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextFieldClear.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.success", - "composeReference": "TextFieldClear.S.OuterLabel.Success" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextFieldClear.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextFieldClear.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.success", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Success" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.success", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Success" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextFieldClear.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.success", - "composeReference": "TextFieldClear.S.InnerLabel.Success" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextFieldClear.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextFieldClear.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.success", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Success" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.success", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Success" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextFieldClear.M.Default" - }, - { - "name": "m.success", - "composeReference": "TextFieldClear.M.Success" - }, - { - "name": "m.warning", - "composeReference": "TextFieldClear.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextFieldClear.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextFieldClear.M.RequiredStart.Default" - }, - { - "name": "m.required-start.success", - "composeReference": "TextFieldClear.M.RequiredStart.Success" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextFieldClear.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextFieldClear.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextFieldClear.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.success", - "composeReference": "TextFieldClear.M.RequiredEnd.Success" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextFieldClear.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextFieldClear.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextFieldClear.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.success", - "composeReference": "TextFieldClear.M.OuterLabel.Success" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextFieldClear.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextFieldClear.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.success", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Success" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.success", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Success" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextFieldClear.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.success", - "composeReference": "TextFieldClear.M.InnerLabel.Success" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextFieldClear.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextFieldClear.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.success", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Success" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.success", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Success" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextFieldClear.L.Default" - }, - { - "name": "l.success", - "composeReference": "TextFieldClear.L.Success" - }, - { - "name": "l.warning", - "composeReference": "TextFieldClear.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextFieldClear.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextFieldClear.L.RequiredStart.Default" - }, - { - "name": "l.required-start.success", - "composeReference": "TextFieldClear.L.RequiredStart.Success" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextFieldClear.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextFieldClear.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextFieldClear.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.success", - "composeReference": "TextFieldClear.L.RequiredEnd.Success" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextFieldClear.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextFieldClear.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextFieldClear.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.success", - "composeReference": "TextFieldClear.L.OuterLabel.Success" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextFieldClear.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextFieldClear.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.success", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Success" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.success", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Success" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextFieldClear.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.success", - "composeReference": "TextFieldClear.L.InnerLabel.Success" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextFieldClear.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextFieldClear.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.success", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Success" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.success", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Success" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Error" - }, - { - "name": "xl.default", - "composeReference": "TextFieldClear.Xl.Default" - }, - { - "name": "xl.success", - "composeReference": "TextFieldClear.Xl.Success" - }, - { - "name": "xl.warning", - "composeReference": "TextFieldClear.Xl.Warning" - }, - { - "name": "xl.error", - "composeReference": "TextFieldClear.Xl.Error" - }, - { - "name": "xl.required-start.default", - "composeReference": "TextFieldClear.Xl.RequiredStart.Default" - }, - { - "name": "xl.required-start.success", - "composeReference": "TextFieldClear.Xl.RequiredStart.Success" - }, - { - "name": "xl.required-start.warning", - "composeReference": "TextFieldClear.Xl.RequiredStart.Warning" - }, - { - "name": "xl.required-start.error", - "composeReference": "TextFieldClear.Xl.RequiredStart.Error" - }, - { - "name": "xl.required-end.default", - "composeReference": "TextFieldClear.Xl.RequiredEnd.Default" - }, - { - "name": "xl.required-end.success", - "composeReference": "TextFieldClear.Xl.RequiredEnd.Success" - }, - { - "name": "xl.required-end.warning", - "composeReference": "TextFieldClear.Xl.RequiredEnd.Warning" - }, - { - "name": "xl.required-end.error", - "composeReference": "TextFieldClear.Xl.RequiredEnd.Error" - }, - { - "name": "xl.outer-label.default", - "composeReference": "TextFieldClear.Xl.OuterLabel.Default" - }, - { - "name": "xl.outer-label.success", - "composeReference": "TextFieldClear.Xl.OuterLabel.Success" - }, - { - "name": "xl.outer-label.warning", - "composeReference": "TextFieldClear.Xl.OuterLabel.Warning" - }, - { - "name": "xl.outer-label.error", - "composeReference": "TextFieldClear.Xl.OuterLabel.Error" - }, - { - "name": "xl.outer-label.required-start.default", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredStart.Default" - }, - { - "name": "xl.outer-label.required-start.success", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredStart.Success" - }, - { - "name": "xl.outer-label.required-start.warning", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xl.outer-label.required-start.error", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredStart.Error" - }, - { - "name": "xl.outer-label.required-end.default", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xl.outer-label.required-end.success", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xl.outer-label.required-end.warning", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xl.outer-label.required-end.error", - "composeReference": "TextFieldClear.Xl.OuterLabel.RequiredEnd.Error" - }, - { - "name": "xl.inner-label.default", - "composeReference": "TextFieldClear.Xl.InnerLabel.Default" - }, - { - "name": "xl.inner-label.success", - "composeReference": "TextFieldClear.Xl.InnerLabel.Success" - }, - { - "name": "xl.inner-label.warning", - "composeReference": "TextFieldClear.Xl.InnerLabel.Warning" - }, - { - "name": "xl.inner-label.error", - "composeReference": "TextFieldClear.Xl.InnerLabel.Error" - }, - { - "name": "xl.inner-label.required-start.default", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredStart.Default" - }, - { - "name": "xl.inner-label.required-start.success", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredStart.Success" - }, - { - "name": "xl.inner-label.required-start.warning", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredStart.Warning" - }, - { - "name": "xl.inner-label.required-start.error", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredStart.Error" - }, - { - "name": "xl.inner-label.required-end.default", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredEnd.Default" - }, - { - "name": "xl.inner-label.required-end.success", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredEnd.Success" - }, - { - "name": "xl.inner-label.required-end.warning", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "xl.inner-label.required-end.error", - "composeReference": "TextFieldClear.Xl.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-area", - "coreName": "TextArea", - "styleName": "TextArea", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextArea.Xs.Default" - }, - { - "name": "xs.warning", - "composeReference": "TextArea.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextArea.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextArea.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextArea.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextArea.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextArea.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextArea.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextArea.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextArea.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextArea.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextArea.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextArea.S.Default" - }, - { - "name": "s.warning", - "composeReference": "TextArea.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextArea.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextArea.S.RequiredStart.Default" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextArea.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextArea.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextArea.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextArea.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextArea.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextArea.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextArea.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextArea.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextArea.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextArea.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextArea.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextArea.M.Default" - }, - { - "name": "m.warning", - "composeReference": "TextArea.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextArea.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextArea.M.RequiredStart.Default" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextArea.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextArea.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextArea.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextArea.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextArea.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextArea.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextArea.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextArea.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextArea.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextArea.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextArea.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextArea.L.Default" - }, - { - "name": "l.warning", - "composeReference": "TextArea.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextArea.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextArea.L.RequiredStart.Default" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextArea.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextArea.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextArea.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextArea.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextArea.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextArea.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextArea.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextArea.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextArea.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextArea.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextArea.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Error" - }, - { - "name": "xl.default", - "composeReference": "TextArea.Xl.Default" - }, - { - "name": "xl.warning", - "composeReference": "TextArea.Xl.Warning" - }, - { - "name": "xl.error", - "composeReference": "TextArea.Xl.Error" - }, - { - "name": "xl.required-start.default", - "composeReference": "TextArea.Xl.RequiredStart.Default" - }, - { - "name": "xl.required-start.warning", - "composeReference": "TextArea.Xl.RequiredStart.Warning" - }, - { - "name": "xl.required-start.error", - "composeReference": "TextArea.Xl.RequiredStart.Error" - }, - { - "name": "xl.required-end.default", - "composeReference": "TextArea.Xl.RequiredEnd.Default" - }, - { - "name": "xl.required-end.warning", - "composeReference": "TextArea.Xl.RequiredEnd.Warning" - }, - { - "name": "xl.required-end.error", - "composeReference": "TextArea.Xl.RequiredEnd.Error" - }, - { - "name": "xl.outer-label.default", - "composeReference": "TextArea.Xl.OuterLabel.Default" - }, - { - "name": "xl.outer-label.warning", - "composeReference": "TextArea.Xl.OuterLabel.Warning" - }, - { - "name": "xl.outer-label.error", - "composeReference": "TextArea.Xl.OuterLabel.Error" - }, - { - "name": "xl.outer-label.required-start.default", - "composeReference": "TextArea.Xl.OuterLabel.RequiredStart.Default" - }, - { - "name": "xl.outer-label.required-start.warning", - "composeReference": "TextArea.Xl.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xl.outer-label.required-start.error", - "composeReference": "TextArea.Xl.OuterLabel.RequiredStart.Error" - }, - { - "name": "xl.outer-label.required-end.default", - "composeReference": "TextArea.Xl.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xl.outer-label.required-end.warning", - "composeReference": "TextArea.Xl.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xl.outer-label.required-end.error", - "composeReference": "TextArea.Xl.OuterLabel.RequiredEnd.Error" - }, - { - "name": "xl.inner-label.default", - "composeReference": "TextArea.Xl.InnerLabel.Default" - }, - { - "name": "xl.inner-label.warning", - "composeReference": "TextArea.Xl.InnerLabel.Warning" - }, - { - "name": "xl.inner-label.error", - "composeReference": "TextArea.Xl.InnerLabel.Error" - }, - { - "name": "xl.inner-label.required-start.default", - "composeReference": "TextArea.Xl.InnerLabel.RequiredStart.Default" - }, - { - "name": "xl.inner-label.required-start.warning", - "composeReference": "TextArea.Xl.InnerLabel.RequiredStart.Warning" - }, - { - "name": "xl.inner-label.required-start.error", - "composeReference": "TextArea.Xl.InnerLabel.RequiredStart.Error" - }, - { - "name": "xl.inner-label.required-end.default", - "composeReference": "TextArea.Xl.InnerLabel.RequiredEnd.Default" - }, - { - "name": "xl.inner-label.required-end.warning", - "composeReference": "TextArea.Xl.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "xl.inner-label.required-end.error", - "composeReference": "TextArea.Xl.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-area", - "coreName": "TextArea", - "styleName": "TextAreaClear", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextAreaClear.Xs.Default" - }, - { - "name": "xs.warning", - "composeReference": "TextAreaClear.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextAreaClear.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextAreaClear.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextAreaClear.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextAreaClear.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextAreaClear.S.Default" - }, - { - "name": "s.warning", - "composeReference": "TextAreaClear.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextAreaClear.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextAreaClear.S.RequiredStart.Default" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextAreaClear.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextAreaClear.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextAreaClear.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextAreaClear.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextAreaClear.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextAreaClear.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextAreaClear.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextAreaClear.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextAreaClear.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextAreaClear.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextAreaClear.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextAreaClear.M.Default" - }, - { - "name": "m.warning", - "composeReference": "TextAreaClear.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextAreaClear.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextAreaClear.M.RequiredStart.Default" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextAreaClear.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextAreaClear.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextAreaClear.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextAreaClear.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextAreaClear.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextAreaClear.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextAreaClear.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextAreaClear.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextAreaClear.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextAreaClear.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextAreaClear.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextAreaClear.L.Default" - }, - { - "name": "l.warning", - "composeReference": "TextAreaClear.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextAreaClear.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextAreaClear.L.RequiredStart.Default" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextAreaClear.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextAreaClear.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextAreaClear.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextAreaClear.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextAreaClear.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextAreaClear.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextAreaClear.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextAreaClear.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextAreaClear.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextAreaClear.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextAreaClear.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Error" - }, - { - "name": "xl.default", - "composeReference": "TextAreaClear.Xl.Default" - }, - { - "name": "xl.warning", - "composeReference": "TextAreaClear.Xl.Warning" - }, - { - "name": "xl.error", - "composeReference": "TextAreaClear.Xl.Error" - }, - { - "name": "xl.required-start.default", - "composeReference": "TextAreaClear.Xl.RequiredStart.Default" - }, - { - "name": "xl.required-start.warning", - "composeReference": "TextAreaClear.Xl.RequiredStart.Warning" - }, - { - "name": "xl.required-start.error", - "composeReference": "TextAreaClear.Xl.RequiredStart.Error" - }, - { - "name": "xl.required-end.default", - "composeReference": "TextAreaClear.Xl.RequiredEnd.Default" - }, - { - "name": "xl.required-end.warning", - "composeReference": "TextAreaClear.Xl.RequiredEnd.Warning" - }, - { - "name": "xl.required-end.error", - "composeReference": "TextAreaClear.Xl.RequiredEnd.Error" - }, - { - "name": "xl.outer-label.default", - "composeReference": "TextAreaClear.Xl.OuterLabel.Default" - }, - { - "name": "xl.outer-label.warning", - "composeReference": "TextAreaClear.Xl.OuterLabel.Warning" - }, - { - "name": "xl.outer-label.error", - "composeReference": "TextAreaClear.Xl.OuterLabel.Error" - }, - { - "name": "xl.outer-label.required-start.default", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredStart.Default" - }, - { - "name": "xl.outer-label.required-start.warning", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xl.outer-label.required-start.error", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredStart.Error" - }, - { - "name": "xl.outer-label.required-end.default", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xl.outer-label.required-end.warning", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xl.outer-label.required-end.error", - "composeReference": "TextAreaClear.Xl.OuterLabel.RequiredEnd.Error" - }, - { - "name": "xl.inner-label.default", - "composeReference": "TextAreaClear.Xl.InnerLabel.Default" - }, - { - "name": "xl.inner-label.warning", - "composeReference": "TextAreaClear.Xl.InnerLabel.Warning" - }, - { - "name": "xl.inner-label.error", - "composeReference": "TextAreaClear.Xl.InnerLabel.Error" - }, - { - "name": "xl.inner-label.required-start.default", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredStart.Default" - }, - { - "name": "xl.inner-label.required-start.warning", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredStart.Warning" - }, - { - "name": "xl.inner-label.required-start.error", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredStart.Error" - }, - { - "name": "xl.inner-label.required-end.default", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredEnd.Default" - }, - { - "name": "xl.inner-label.required-end.warning", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "xl.inner-label.required-end.error", - "composeReference": "TextAreaClear.Xl.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "tooltip", - "coreName": "Tooltip", - "styleName": "Tooltip", - "variations": [ - { - "name": "m", - "composeReference": "Tooltip.M" - }, - { - "name": "s", - "composeReference": "Tooltip.S" - } - ] - }, - { - "key": "toast", - "coreName": "Toast", - "styleName": "Toast", - "variations": [ - { - "name": "rounded.default", - "composeReference": "Toast.Rounded.Default" - }, - { - "name": "rounded.positive", - "composeReference": "Toast.Rounded.Positive" - }, - { - "name": "rounded.negative", - "composeReference": "Toast.Rounded.Negative" - }, - { - "name": "pilled.default", - "composeReference": "Toast.Pilled.Default" - }, - { - "name": "pilled.positive", - "composeReference": "Toast.Pilled.Positive" - }, - { - "name": "pilled.negative", - "composeReference": "Toast.Pilled.Negative" - } - ] - }, - { - "key": "modal", - "coreName": "Modal", - "styleName": "Modal", - "variations": [ - { - "name": "Default", - "composeReference": "Modal.Default" - } - ] - }, - { - "key": "rect-skeleton", - "coreName": "RectSkeleton", - "styleName": "RectSkeleton", - "variations": [ - { - "name": "default", - "composeReference": "RectSkeleton.Default" - }, - { - "name": "lighter", - "composeReference": "RectSkeleton.Lighter" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationCompact", - "variations": [ - { - "name": "l", - "composeReference": "NotificationCompact.L" - }, - { - "name": "m", - "composeReference": "NotificationCompact.M" - }, - { - "name": "s", - "composeReference": "NotificationCompact.S" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationLoose", - "variations": [ - { - "name": "l", - "composeReference": "NotificationLoose.L" - }, - { - "name": "m", - "composeReference": "NotificationLoose.M" - }, - { - "name": "s", - "composeReference": "NotificationLoose.S" - } - ] - }, - { - "key": "notification-content", - "coreName": "NotificationContent", - "styleName": "NotificationContent", - "variations": [ - { - "name": "button-stretch.default", - "composeReference": "NotificationContent.ButtonStretch.Default" - }, - { - "name": "button-stretch.positive", - "composeReference": "NotificationContent.ButtonStretch.Positive" - }, - { - "name": "button-stretch.negative", - "composeReference": "NotificationContent.ButtonStretch.Negative" - }, - { - "name": "button-stretch.warning", - "composeReference": "NotificationContent.ButtonStretch.Warning" - }, - { - "name": "button-stretch.info", - "composeReference": "NotificationContent.ButtonStretch.Info" - }, - { - "name": "button-stretch.icon-top.default", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Default" - }, - { - "name": "button-stretch.icon-top.positive", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Positive" - }, - { - "name": "button-stretch.icon-top.negative", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Negative" - }, - { - "name": "button-stretch.icon-top.warning", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Warning" - }, - { - "name": "button-stretch.icon-top.info", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Info" - }, - { - "name": "button-stretch.icon-start.default", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Default" - }, - { - "name": "button-stretch.icon-start.positive", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Positive" - }, - { - "name": "button-stretch.icon-start.negative", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Negative" - }, - { - "name": "button-stretch.icon-start.warning", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Warning" - }, - { - "name": "button-stretch.icon-start.info", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Info" - }, - { - "name": "no-button-stretch.default", - "composeReference": "NotificationContent.NoButtonStretch.Default" - }, - { - "name": "no-button-stretch.positive", - "composeReference": "NotificationContent.NoButtonStretch.Positive" - }, - { - "name": "no-button-stretch.negative", - "composeReference": "NotificationContent.NoButtonStretch.Negative" - }, - { - "name": "no-button-stretch.warning", - "composeReference": "NotificationContent.NoButtonStretch.Warning" - }, - { - "name": "no-button-stretch.info", - "composeReference": "NotificationContent.NoButtonStretch.Info" - }, - { - "name": "no-button-stretch.icon-top.default", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Default" - }, - { - "name": "no-button-stretch.icon-top.positive", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Positive" - }, - { - "name": "no-button-stretch.icon-top.negative", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Negative" - }, - { - "name": "no-button-stretch.icon-top.warning", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Warning" - }, - { - "name": "no-button-stretch.icon-top.info", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Info" - }, - { - "name": "no-button-stretch.icon-start.default", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Default" - }, - { - "name": "no-button-stretch.icon-start.positive", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Positive" - }, - { - "name": "no-button-stretch.icon-start.negative", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Negative" - }, - { - "name": "no-button-stretch.icon-start.warning", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Warning" - }, - { - "name": "no-button-stretch.icon-start.info", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Info" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "ListNormal", - "variations": [ - { - "name": "xl", - "composeReference": "ListNormal.Xl" - }, - { - "name": "l", - "composeReference": "ListNormal.L" - }, - { - "name": "m", - "composeReference": "ListNormal.M" - }, - { - "name": "s", - "composeReference": "ListNormal.S" - }, - { - "name": "xs", - "composeReference": "ListNormal.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "ListItemNormal", - "variations": [ - { - "name": "xl", - "composeReference": "ListItemNormal.Xl" - }, - { - "name": "l", - "composeReference": "ListItemNormal.L" - }, - { - "name": "m", - "composeReference": "ListItemNormal.M" - }, - { - "name": "s", - "composeReference": "ListItemNormal.S" - }, - { - "name": "xs", - "composeReference": "ListItemNormal.Xs" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "ListTight", - "variations": [ - { - "name": "xl", - "composeReference": "ListTight.Xl" - }, - { - "name": "l", - "composeReference": "ListTight.L" - }, - { - "name": "m", - "composeReference": "ListTight.M" - }, - { - "name": "s", - "composeReference": "ListTight.S" - }, - { - "name": "xs", - "composeReference": "ListTight.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "ListItemTight", - "variations": [ - { - "name": "xl", - "composeReference": "ListItemTight.Xl" - }, - { - "name": "l", - "composeReference": "ListItemTight.L" - }, - { - "name": "m", - "composeReference": "ListItemTight.M" - }, - { - "name": "s", - "composeReference": "ListItemTight.S" - }, - { - "name": "xs", - "composeReference": "ListItemTight.Xs" - } - ] - }, - { - "key": "spinner", - "coreName": "Spinner", - "styleName": "Spinner", - "variations": [ - { - "name": "xxl.default", - "composeReference": "Spinner.Xxl.Default" - }, - { - "name": "xxl.secondary", - "composeReference": "Spinner.Xxl.Secondary" - }, - { - "name": "xxl.accent", - "composeReference": "Spinner.Xxl.Accent" - }, - { - "name": "xxl.positive", - "composeReference": "Spinner.Xxl.Positive" - }, - { - "name": "xxl.negative", - "composeReference": "Spinner.Xxl.Negative" - }, - { - "name": "xxl.warning", - "composeReference": "Spinner.Xxl.Warning" - }, - { - "name": "xxl.info", - "composeReference": "Spinner.Xxl.Info" - }, - { - "name": "xl.default", - "composeReference": "Spinner.Xl.Default" - }, - { - "name": "xl.secondary", - "composeReference": "Spinner.Xl.Secondary" - }, - { - "name": "xl.accent", - "composeReference": "Spinner.Xl.Accent" - }, - { - "name": "xl.positive", - "composeReference": "Spinner.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "Spinner.Xl.Negative" - }, - { - "name": "xl.warning", - "composeReference": "Spinner.Xl.Warning" - }, - { - "name": "xl.info", - "composeReference": "Spinner.Xl.Info" - }, - { - "name": "l.default", - "composeReference": "Spinner.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "Spinner.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "Spinner.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "Spinner.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "Spinner.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "Spinner.L.Warning" - }, - { - "name": "l.info", - "composeReference": "Spinner.L.Info" - }, - { - "name": "m.default", - "composeReference": "Spinner.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "Spinner.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "Spinner.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "Spinner.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "Spinner.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "Spinner.M.Warning" - }, - { - "name": "m.info", - "composeReference": "Spinner.M.Info" - }, - { - "name": "s.default", - "composeReference": "Spinner.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "Spinner.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "Spinner.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "Spinner.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "Spinner.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "Spinner.S.Warning" - }, - { - "name": "s.info", - "composeReference": "Spinner.S.Info" - }, - { - "name": "xs.default", - "composeReference": "Spinner.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "Spinner.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "Spinner.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "Spinner.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "Spinner.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "Spinner.Xs.Warning" - }, - { - "name": "xs.info", - "composeReference": "Spinner.Xs.Info" - }, - { - "name": "xxs.default", - "composeReference": "Spinner.Xxs.Default" - }, - { - "name": "xxs.secondary", - "composeReference": "Spinner.Xxs.Secondary" - }, - { - "name": "xxs.accent", - "composeReference": "Spinner.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "Spinner.Xxs.Positive" - }, - { - "name": "xxs.negative", - "composeReference": "Spinner.Xxs.Negative" - }, - { - "name": "xxs.warning", - "composeReference": "Spinner.Xxs.Warning" - }, - { - "name": "xxs.info", - "composeReference": "Spinner.Xxs.Info" - }, - { - "name": "scalable.default", - "composeReference": "Spinner.Scalable.Default" - }, - { - "name": "scalable.secondary", - "composeReference": "Spinner.Scalable.Secondary" - }, - { - "name": "scalable.accent", - "composeReference": "Spinner.Scalable.Accent" - }, - { - "name": "scalable.positive", - "composeReference": "Spinner.Scalable.Positive" - }, - { - "name": "scalable.negative", - "composeReference": "Spinner.Scalable.Negative" - }, - { - "name": "scalable.warning", - "composeReference": "Spinner.Scalable.Warning" - }, - { - "name": "scalable.info", - "composeReference": "Spinner.Scalable.Info" - } - ] - }, - { - "key": "text-skeleton", - "coreName": "TextSkeleton", - "styleName": "TextSkeleton", - "variations": [ - { - "name": "default", - "composeReference": "TextSkeleton.Default" - }, - { - "name": "lighter", - "composeReference": "TextSkeleton.Lighter" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "DropdownMenuListNormal", - "variations": [ - { - "name": "xl", - "composeReference": "DropdownMenuListNormal.Xl" - }, - { - "name": "l", - "composeReference": "DropdownMenuListNormal.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuListNormal.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuListNormal.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuListNormal.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "DropdownMenuItemNormal", - "variations": [ - { - "name": "xl.default", - "composeReference": "DropdownMenuItemNormal.Xl.Default" - }, - { - "name": "xl.positive", - "composeReference": "DropdownMenuItemNormal.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "DropdownMenuItemNormal.Xl.Negative" - }, - { - "name": "l.default", - "composeReference": "DropdownMenuItemNormal.L.Default" - }, - { - "name": "l.positive", - "composeReference": "DropdownMenuItemNormal.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "DropdownMenuItemNormal.L.Negative" - }, - { - "name": "m.default", - "composeReference": "DropdownMenuItemNormal.M.Default" - }, - { - "name": "m.positive", - "composeReference": "DropdownMenuItemNormal.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "DropdownMenuItemNormal.M.Negative" - }, - { - "name": "s.default", - "composeReference": "DropdownMenuItemNormal.S.Default" - }, - { - "name": "s.positive", - "composeReference": "DropdownMenuItemNormal.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "DropdownMenuItemNormal.S.Negative" - }, - { - "name": "xs.default", - "composeReference": "DropdownMenuItemNormal.Xs.Default" - }, - { - "name": "xs.positive", - "composeReference": "DropdownMenuItemNormal.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "DropdownMenuItemNormal.Xs.Negative" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "DropdownMenuListTight", - "variations": [ - { - "name": "xl", - "composeReference": "DropdownMenuListTight.Xl" - }, - { - "name": "l", - "composeReference": "DropdownMenuListTight.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuListTight.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuListTight.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuListTight.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "DropdownMenuItemTight", - "variations": [ - { - "name": "xl.default", - "composeReference": "DropdownMenuItemTight.Xl.Default" - }, - { - "name": "xl.positive", - "composeReference": "DropdownMenuItemTight.Xl.Positive" - }, - { - "name": "xl.negative", - "composeReference": "DropdownMenuItemTight.Xl.Negative" - }, - { - "name": "l.default", - "composeReference": "DropdownMenuItemTight.L.Default" - }, - { - "name": "l.positive", - "composeReference": "DropdownMenuItemTight.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "DropdownMenuItemTight.L.Negative" - }, - { - "name": "m.default", - "composeReference": "DropdownMenuItemTight.M.Default" - }, - { - "name": "m.positive", - "composeReference": "DropdownMenuItemTight.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "DropdownMenuItemTight.M.Negative" - }, - { - "name": "s.default", - "composeReference": "DropdownMenuItemTight.S.Default" - }, - { - "name": "s.positive", - "composeReference": "DropdownMenuItemTight.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "DropdownMenuItemTight.S.Negative" - }, - { - "name": "xs.default", - "composeReference": "DropdownMenuItemTight.Xs.Default" - }, - { - "name": "xs.positive", - "composeReference": "DropdownMenuItemTight.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "DropdownMenuItemTight.Xs.Negative" - } - ] - }, - { - "key": "loader", - "coreName": "Loader", - "styleName": "Loader", - "variations": [ - { - "name": "Default", - "composeReference": "Loader.Default" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuTight", - "variations": [ - { - "name": "xl", - "composeReference": "DropdownMenuTight.Xl" - }, - { - "name": "l", - "composeReference": "DropdownMenuTight.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuTight.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuTight.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuTight.Xs" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuNormal", - "variations": [ - { - "name": "xl", - "composeReference": "DropdownMenuNormal.Xl" - }, - { - "name": "l", - "composeReference": "DropdownMenuNormal.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuNormal.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuNormal.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuNormal.Xs" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemSolidActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemSolidActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemSolidActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionItemSolidActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionItemSolidActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemSolidActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemSolidActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemSolidActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemSolidActionStart.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemSolidActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemSolidActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemSolidActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionItemSolidActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionItemSolidActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemSolidActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemSolidActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemSolidActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemSolidActionEnd.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemClearActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemClearActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemClearActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionItemClearActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionItemClearActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemClearActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemClearActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemClearActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemClearActionStart.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemClearActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemClearActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemClearActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionItemClearActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionItemClearActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemClearActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemClearActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemClearActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemClearActionEnd.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionSolidActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionSolidActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionSolidActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionSolidActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionSolidActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionSolidActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionSolidActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionSolidActionStart.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionSolidActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionSolidActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionSolidActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionSolidActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionSolidActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionSolidActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionSolidActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionSolidActionEnd.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionClearActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionClearActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionClearActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionClearActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionClearActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionClearActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionClearActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionClearActionStart.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionClearActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionClearActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionClearActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionClearActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionClearActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionClearActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionClearActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionClearActionEnd.H5" - } - ] - }, - { - "key": "scroll-bar", - "coreName": "ScrollBar", - "styleName": "ScrollBar", - "variations": [ - { - "name": "s", - "composeReference": "ScrollBar.S" - }, - { - "name": "m", - "composeReference": "ScrollBar.M" - } - ] - }, - { - "key": "image", - "coreName": "Image", - "styleName": "Image", - "variations": [ - { - "name": "ratio_1_2", - "composeReference": "Image.Ratio1x2" - }, - { - "name": "ratio_9_16", - "composeReference": "Image.Ratio9x16" - }, - { - "name": "ratio_3_4", - "composeReference": "Image.Ratio3x4" - }, - { - "name": "ratio_2_1", - "composeReference": "Image.Ratio2x1" - }, - { - "name": "ratio_16_9", - "composeReference": "Image.Ratio16x9" - }, - { - "name": "ratio_4_3", - "composeReference": "Image.Ratio4x3" - }, - { - "name": "ratio_1_1", - "composeReference": "Image.Ratio1x1" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "BasicButtonGroup", - "variations": [ - { - "name": "xxs", - "composeReference": "BasicButtonGroup.Xxs" - }, - { - "name": "xxs.wide", - "composeReference": "BasicButtonGroup.Xxs.Wide" - }, - { - "name": "xxs.wide.default", - "composeReference": "BasicButtonGroup.Xxs.Wide.Default" - }, - { - "name": "xxs.wide.segmented", - "composeReference": "BasicButtonGroup.Xxs.Wide.Segmented" - }, - { - "name": "xxs.dense", - "composeReference": "BasicButtonGroup.Xxs.Dense" - }, - { - "name": "xxs.dense.default", - "composeReference": "BasicButtonGroup.Xxs.Dense.Default" - }, - { - "name": "xxs.dense.segmented", - "composeReference": "BasicButtonGroup.Xxs.Dense.Segmented" - }, - { - "name": "xxs.no-gap", - "composeReference": "BasicButtonGroup.Xxs.NoGap" - }, - { - "name": "xxs.no-gap.default", - "composeReference": "BasicButtonGroup.Xxs.NoGap.Default" - }, - { - "name": "xxs.no-gap.segmented", - "composeReference": "BasicButtonGroup.Xxs.NoGap.Segmented" - }, - { - "name": "xs", - "composeReference": "BasicButtonGroup.Xs" - }, - { - "name": "xs.wide", - "composeReference": "BasicButtonGroup.Xs.Wide" - }, - { - "name": "xs.wide.default", - "composeReference": "BasicButtonGroup.Xs.Wide.Default" - }, - { - "name": "xs.wide.segmented", - "composeReference": "BasicButtonGroup.Xs.Wide.Segmented" - }, - { - "name": "xs.dense", - "composeReference": "BasicButtonGroup.Xs.Dense" - }, - { - "name": "xs.dense.default", - "composeReference": "BasicButtonGroup.Xs.Dense.Default" - }, - { - "name": "xs.dense.segmented", - "composeReference": "BasicButtonGroup.Xs.Dense.Segmented" - }, - { - "name": "xs.no-gap", - "composeReference": "BasicButtonGroup.Xs.NoGap" - }, - { - "name": "xs.no-gap.default", - "composeReference": "BasicButtonGroup.Xs.NoGap.Default" - }, - { - "name": "xs.no-gap.segmented", - "composeReference": "BasicButtonGroup.Xs.NoGap.Segmented" - }, - { - "name": "s", - "composeReference": "BasicButtonGroup.S" - }, - { - "name": "s.wide", - "composeReference": "BasicButtonGroup.S.Wide" - }, - { - "name": "s.wide.default", - "composeReference": "BasicButtonGroup.S.Wide.Default" - }, - { - "name": "s.wide.segmented", - "composeReference": "BasicButtonGroup.S.Wide.Segmented" - }, - { - "name": "s.dense", - "composeReference": "BasicButtonGroup.S.Dense" - }, - { - "name": "s.dense.default", - "composeReference": "BasicButtonGroup.S.Dense.Default" - }, - { - "name": "s.dense.segmented", - "composeReference": "BasicButtonGroup.S.Dense.Segmented" - }, - { - "name": "s.no-gap", - "composeReference": "BasicButtonGroup.S.NoGap" - }, - { - "name": "s.no-gap.default", - "composeReference": "BasicButtonGroup.S.NoGap.Default" - }, - { - "name": "s.no-gap.segmented", - "composeReference": "BasicButtonGroup.S.NoGap.Segmented" - }, - { - "name": "m", - "composeReference": "BasicButtonGroup.M" - }, - { - "name": "m.wide", - "composeReference": "BasicButtonGroup.M.Wide" - }, - { - "name": "m.wide.default", - "composeReference": "BasicButtonGroup.M.Wide.Default" - }, - { - "name": "m.wide.segmented", - "composeReference": "BasicButtonGroup.M.Wide.Segmented" - }, - { - "name": "m.dense", - "composeReference": "BasicButtonGroup.M.Dense" - }, - { - "name": "m.dense.default", - "composeReference": "BasicButtonGroup.M.Dense.Default" - }, - { - "name": "m.dense.segmented", - "composeReference": "BasicButtonGroup.M.Dense.Segmented" - }, - { - "name": "m.no-gap", - "composeReference": "BasicButtonGroup.M.NoGap" - }, - { - "name": "m.no-gap.default", - "composeReference": "BasicButtonGroup.M.NoGap.Default" - }, - { - "name": "m.no-gap.segmented", - "composeReference": "BasicButtonGroup.M.NoGap.Segmented" - }, - { - "name": "l", - "composeReference": "BasicButtonGroup.L" - }, - { - "name": "l.wide", - "composeReference": "BasicButtonGroup.L.Wide" - }, - { - "name": "l.wide.default", - "composeReference": "BasicButtonGroup.L.Wide.Default" - }, - { - "name": "l.wide.segmented", - "composeReference": "BasicButtonGroup.L.Wide.Segmented" - }, - { - "name": "l.dense", - "composeReference": "BasicButtonGroup.L.Dense" - }, - { - "name": "l.dense.default", - "composeReference": "BasicButtonGroup.L.Dense.Default" - }, - { - "name": "l.dense.segmented", - "composeReference": "BasicButtonGroup.L.Dense.Segmented" - }, - { - "name": "l.no-gap", - "composeReference": "BasicButtonGroup.L.NoGap" - }, - { - "name": "l.no-gap.default", - "composeReference": "BasicButtonGroup.L.NoGap.Default" - }, - { - "name": "l.no-gap.segmented", - "composeReference": "BasicButtonGroup.L.NoGap.Segmented" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "IconButtonGroup", - "variations": [ - { - "name": "xs", - "composeReference": "IconButtonGroup.Xs" - }, - { - "name": "xs.wide", - "composeReference": "IconButtonGroup.Xs.Wide" - }, - { - "name": "xs.wide.default", - "composeReference": "IconButtonGroup.Xs.Wide.Default" - }, - { - "name": "xs.wide.pilled", - "composeReference": "IconButtonGroup.Xs.Wide.Pilled" - }, - { - "name": "xs.wide.segmented", - "composeReference": "IconButtonGroup.Xs.Wide.Segmented" - }, - { - "name": "xs.dense", - "composeReference": "IconButtonGroup.Xs.Dense" - }, - { - "name": "xs.dense.default", - "composeReference": "IconButtonGroup.Xs.Dense.Default" - }, - { - "name": "xs.dense.pilled", - "composeReference": "IconButtonGroup.Xs.Dense.Pilled" - }, - { - "name": "xs.dense.segmented", - "composeReference": "IconButtonGroup.Xs.Dense.Segmented" - }, - { - "name": "xs.no-gap", - "composeReference": "IconButtonGroup.Xs.NoGap" - }, - { - "name": "xs.no-gap.default", - "composeReference": "IconButtonGroup.Xs.NoGap.Default" - }, - { - "name": "xs.no-gap.pilled", - "composeReference": "IconButtonGroup.Xs.NoGap.Pilled" - }, - { - "name": "xs.no-gap.segmented", - "composeReference": "IconButtonGroup.Xs.NoGap.Segmented" - }, - { - "name": "s", - "composeReference": "IconButtonGroup.S" - }, - { - "name": "s.wide", - "composeReference": "IconButtonGroup.S.Wide" - }, - { - "name": "s.wide.default", - "composeReference": "IconButtonGroup.S.Wide.Default" - }, - { - "name": "s.wide.pilled", - "composeReference": "IconButtonGroup.S.Wide.Pilled" - }, - { - "name": "s.wide.segmented", - "composeReference": "IconButtonGroup.S.Wide.Segmented" - }, - { - "name": "s.dense", - "composeReference": "IconButtonGroup.S.Dense" - }, - { - "name": "s.dense.default", - "composeReference": "IconButtonGroup.S.Dense.Default" - }, - { - "name": "s.dense.pilled", - "composeReference": "IconButtonGroup.S.Dense.Pilled" - }, - { - "name": "s.dense.segmented", - "composeReference": "IconButtonGroup.S.Dense.Segmented" - }, - { - "name": "s.no-gap", - "composeReference": "IconButtonGroup.S.NoGap" - }, - { - "name": "s.no-gap.default", - "composeReference": "IconButtonGroup.S.NoGap.Default" - }, - { - "name": "s.no-gap.pilled", - "composeReference": "IconButtonGroup.S.NoGap.Pilled" - }, - { - "name": "s.no-gap.segmented", - "composeReference": "IconButtonGroup.S.NoGap.Segmented" - }, - { - "name": "m", - "composeReference": "IconButtonGroup.M" - }, - { - "name": "m.wide", - "composeReference": "IconButtonGroup.M.Wide" - }, - { - "name": "m.wide.default", - "composeReference": "IconButtonGroup.M.Wide.Default" - }, - { - "name": "m.wide.pilled", - "composeReference": "IconButtonGroup.M.Wide.Pilled" - }, - { - "name": "m.wide.segmented", - "composeReference": "IconButtonGroup.M.Wide.Segmented" - }, - { - "name": "m.dense", - "composeReference": "IconButtonGroup.M.Dense" - }, - { - "name": "m.dense.default", - "composeReference": "IconButtonGroup.M.Dense.Default" - }, - { - "name": "m.dense.pilled", - "composeReference": "IconButtonGroup.M.Dense.Pilled" - }, - { - "name": "m.dense.segmented", - "composeReference": "IconButtonGroup.M.Dense.Segmented" - }, - { - "name": "m.no-gap", - "composeReference": "IconButtonGroup.M.NoGap" - }, - { - "name": "m.no-gap.default", - "composeReference": "IconButtonGroup.M.NoGap.Default" - }, - { - "name": "m.no-gap.pilled", - "composeReference": "IconButtonGroup.M.NoGap.Pilled" - }, - { - "name": "m.no-gap.segmented", - "composeReference": "IconButtonGroup.M.NoGap.Segmented" - }, - { - "name": "l", - "composeReference": "IconButtonGroup.L" - }, - { - "name": "l.wide", - "composeReference": "IconButtonGroup.L.Wide" - }, - { - "name": "l.wide.default", - "composeReference": "IconButtonGroup.L.Wide.Default" - }, - { - "name": "l.wide.pilled", - "composeReference": "IconButtonGroup.L.Wide.Pilled" - }, - { - "name": "l.wide.segmented", - "composeReference": "IconButtonGroup.L.Wide.Segmented" - }, - { - "name": "l.dense", - "composeReference": "IconButtonGroup.L.Dense" - }, - { - "name": "l.dense.default", - "composeReference": "IconButtonGroup.L.Dense.Default" - }, - { - "name": "l.dense.pilled", - "composeReference": "IconButtonGroup.L.Dense.Pilled" - }, - { - "name": "l.dense.segmented", - "composeReference": "IconButtonGroup.L.Dense.Segmented" - }, - { - "name": "l.no-gap", - "composeReference": "IconButtonGroup.L.NoGap" - }, - { - "name": "l.no-gap.default", - "composeReference": "IconButtonGroup.L.NoGap.Default" - }, - { - "name": "l.no-gap.pilled", - "composeReference": "IconButtonGroup.L.NoGap.Pilled" - }, - { - "name": "l.no-gap.segmented", - "composeReference": "IconButtonGroup.L.NoGap.Segmented" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarHasLabelClear", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarHasLabelClear.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarHasLabelClear.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarHasLabelClear.M.Accent" - }, - { - "name": "m.rounded.default", - "composeReference": "TabBarHasLabelClear.M.Rounded.Default" - }, - { - "name": "m.rounded.secondary", - "composeReference": "TabBarHasLabelClear.M.Rounded.Secondary" - }, - { - "name": "m.rounded.accent", - "composeReference": "TabBarHasLabelClear.M.Rounded.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarHasLabelClear.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarHasLabelClear.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarHasLabelClear.M.Shadow.Accent" - }, - { - "name": "m.shadow.rounded.default", - "composeReference": "TabBarHasLabelClear.M.Shadow.Rounded.Default" - }, - { - "name": "m.shadow.rounded.secondary", - "composeReference": "TabBarHasLabelClear.M.Shadow.Rounded.Secondary" - }, - { - "name": "m.shadow.rounded.accent", - "composeReference": "TabBarHasLabelClear.M.Shadow.Rounded.Accent" - }, - { - "name": "m.divider.default", - "composeReference": "TabBarHasLabelClear.M.Divider.Default" - }, - { - "name": "m.divider.secondary", - "composeReference": "TabBarHasLabelClear.M.Divider.Secondary" - }, - { - "name": "m.divider.accent", - "composeReference": "TabBarHasLabelClear.M.Divider.Accent" - }, - { - "name": "m.divider.rounded.default", - "composeReference": "TabBarHasLabelClear.M.Divider.Rounded.Default" - }, - { - "name": "m.divider.rounded.secondary", - "composeReference": "TabBarHasLabelClear.M.Divider.Rounded.Secondary" - }, - { - "name": "m.divider.rounded.accent", - "composeReference": "TabBarHasLabelClear.M.Divider.Rounded.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarHasLabelClear.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarHasLabelClear.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarHasLabelClear.L.Accent" - }, - { - "name": "l.rounded.default", - "composeReference": "TabBarHasLabelClear.L.Rounded.Default" - }, - { - "name": "l.rounded.secondary", - "composeReference": "TabBarHasLabelClear.L.Rounded.Secondary" - }, - { - "name": "l.rounded.accent", - "composeReference": "TabBarHasLabelClear.L.Rounded.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarHasLabelClear.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarHasLabelClear.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarHasLabelClear.L.Shadow.Accent" - }, - { - "name": "l.shadow.rounded.default", - "composeReference": "TabBarHasLabelClear.L.Shadow.Rounded.Default" - }, - { - "name": "l.shadow.rounded.secondary", - "composeReference": "TabBarHasLabelClear.L.Shadow.Rounded.Secondary" - }, - { - "name": "l.shadow.rounded.accent", - "composeReference": "TabBarHasLabelClear.L.Shadow.Rounded.Accent" - }, - { - "name": "l.divider.default", - "composeReference": "TabBarHasLabelClear.L.Divider.Default" - }, - { - "name": "l.divider.secondary", - "composeReference": "TabBarHasLabelClear.L.Divider.Secondary" - }, - { - "name": "l.divider.accent", - "composeReference": "TabBarHasLabelClear.L.Divider.Accent" - }, - { - "name": "l.divider.rounded.default", - "composeReference": "TabBarHasLabelClear.L.Divider.Rounded.Default" - }, - { - "name": "l.divider.rounded.secondary", - "composeReference": "TabBarHasLabelClear.L.Divider.Rounded.Secondary" - }, - { - "name": "l.divider.rounded.accent", - "composeReference": "TabBarHasLabelClear.L.Divider.Rounded.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarHasLabelSolid", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarHasLabelSolid.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarHasLabelSolid.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarHasLabelSolid.M.Accent" - }, - { - "name": "m.rounded.default", - "composeReference": "TabBarHasLabelSolid.M.Rounded.Default" - }, - { - "name": "m.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.M.Rounded.Secondary" - }, - { - "name": "m.rounded.accent", - "composeReference": "TabBarHasLabelSolid.M.Rounded.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Accent" - }, - { - "name": "m.shadow.rounded.default", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Rounded.Default" - }, - { - "name": "m.shadow.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Rounded.Secondary" - }, - { - "name": "m.shadow.rounded.accent", - "composeReference": "TabBarHasLabelSolid.M.Shadow.Rounded.Accent" - }, - { - "name": "m.divider.default", - "composeReference": "TabBarHasLabelSolid.M.Divider.Default" - }, - { - "name": "m.divider.secondary", - "composeReference": "TabBarHasLabelSolid.M.Divider.Secondary" - }, - { - "name": "m.divider.accent", - "composeReference": "TabBarHasLabelSolid.M.Divider.Accent" - }, - { - "name": "m.divider.rounded.default", - "composeReference": "TabBarHasLabelSolid.M.Divider.Rounded.Default" - }, - { - "name": "m.divider.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.M.Divider.Rounded.Secondary" - }, - { - "name": "m.divider.rounded.accent", - "composeReference": "TabBarHasLabelSolid.M.Divider.Rounded.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarHasLabelSolid.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarHasLabelSolid.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarHasLabelSolid.L.Accent" - }, - { - "name": "l.rounded.default", - "composeReference": "TabBarHasLabelSolid.L.Rounded.Default" - }, - { - "name": "l.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.L.Rounded.Secondary" - }, - { - "name": "l.rounded.accent", - "composeReference": "TabBarHasLabelSolid.L.Rounded.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Accent" - }, - { - "name": "l.shadow.rounded.default", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Rounded.Default" - }, - { - "name": "l.shadow.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Rounded.Secondary" - }, - { - "name": "l.shadow.rounded.accent", - "composeReference": "TabBarHasLabelSolid.L.Shadow.Rounded.Accent" - }, - { - "name": "l.divider.default", - "composeReference": "TabBarHasLabelSolid.L.Divider.Default" - }, - { - "name": "l.divider.secondary", - "composeReference": "TabBarHasLabelSolid.L.Divider.Secondary" - }, - { - "name": "l.divider.accent", - "composeReference": "TabBarHasLabelSolid.L.Divider.Accent" - }, - { - "name": "l.divider.rounded.default", - "composeReference": "TabBarHasLabelSolid.L.Divider.Rounded.Default" - }, - { - "name": "l.divider.rounded.secondary", - "composeReference": "TabBarHasLabelSolid.L.Divider.Rounded.Secondary" - }, - { - "name": "l.divider.rounded.accent", - "composeReference": "TabBarHasLabelSolid.L.Divider.Rounded.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarIslandHasLabelClear", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarIslandHasLabelClear.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarIslandHasLabelClear.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarIslandHasLabelClear.M.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarIslandHasLabelClear.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarIslandHasLabelClear.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarIslandHasLabelClear.M.Shadow.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarIslandHasLabelClear.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarIslandHasLabelClear.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarIslandHasLabelClear.L.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarIslandHasLabelClear.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarIslandHasLabelClear.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarIslandHasLabelClear.L.Shadow.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarIslandHasLabelSolid", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarIslandHasLabelSolid.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarIslandHasLabelSolid.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarIslandHasLabelSolid.M.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarIslandHasLabelSolid.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarIslandHasLabelSolid.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarIslandHasLabelSolid.M.Shadow.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarIslandHasLabelSolid.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarIslandHasLabelSolid.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarIslandHasLabelSolid.L.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarIslandHasLabelSolid.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarIslandHasLabelSolid.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarIslandHasLabelSolid.L.Shadow.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarClear", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarClear.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarClear.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarClear.M.Accent" - }, - { - "name": "m.rounded.default", - "composeReference": "TabBarClear.M.Rounded.Default" - }, - { - "name": "m.rounded.secondary", - "composeReference": "TabBarClear.M.Rounded.Secondary" - }, - { - "name": "m.rounded.accent", - "composeReference": "TabBarClear.M.Rounded.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarClear.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarClear.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarClear.M.Shadow.Accent" - }, - { - "name": "m.shadow.rounded.default", - "composeReference": "TabBarClear.M.Shadow.Rounded.Default" - }, - { - "name": "m.shadow.rounded.secondary", - "composeReference": "TabBarClear.M.Shadow.Rounded.Secondary" - }, - { - "name": "m.shadow.rounded.accent", - "composeReference": "TabBarClear.M.Shadow.Rounded.Accent" - }, - { - "name": "m.divider.default", - "composeReference": "TabBarClear.M.Divider.Default" - }, - { - "name": "m.divider.secondary", - "composeReference": "TabBarClear.M.Divider.Secondary" - }, - { - "name": "m.divider.accent", - "composeReference": "TabBarClear.M.Divider.Accent" - }, - { - "name": "m.divider.rounded.default", - "composeReference": "TabBarClear.M.Divider.Rounded.Default" - }, - { - "name": "m.divider.rounded.secondary", - "composeReference": "TabBarClear.M.Divider.Rounded.Secondary" - }, - { - "name": "m.divider.rounded.accent", - "composeReference": "TabBarClear.M.Divider.Rounded.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarClear.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarClear.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarClear.L.Accent" - }, - { - "name": "l.rounded.default", - "composeReference": "TabBarClear.L.Rounded.Default" - }, - { - "name": "l.rounded.secondary", - "composeReference": "TabBarClear.L.Rounded.Secondary" - }, - { - "name": "l.rounded.accent", - "composeReference": "TabBarClear.L.Rounded.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarClear.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarClear.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarClear.L.Shadow.Accent" - }, - { - "name": "l.shadow.rounded.default", - "composeReference": "TabBarClear.L.Shadow.Rounded.Default" - }, - { - "name": "l.shadow.rounded.secondary", - "composeReference": "TabBarClear.L.Shadow.Rounded.Secondary" - }, - { - "name": "l.shadow.rounded.accent", - "composeReference": "TabBarClear.L.Shadow.Rounded.Accent" - }, - { - "name": "l.divider.default", - "composeReference": "TabBarClear.L.Divider.Default" - }, - { - "name": "l.divider.secondary", - "composeReference": "TabBarClear.L.Divider.Secondary" - }, - { - "name": "l.divider.accent", - "composeReference": "TabBarClear.L.Divider.Accent" - }, - { - "name": "l.divider.rounded.default", - "composeReference": "TabBarClear.L.Divider.Rounded.Default" - }, - { - "name": "l.divider.rounded.secondary", - "composeReference": "TabBarClear.L.Divider.Rounded.Secondary" - }, - { - "name": "l.divider.rounded.accent", - "composeReference": "TabBarClear.L.Divider.Rounded.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarSolid", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarSolid.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarSolid.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarSolid.M.Accent" - }, - { - "name": "m.rounded.default", - "composeReference": "TabBarSolid.M.Rounded.Default" - }, - { - "name": "m.rounded.secondary", - "composeReference": "TabBarSolid.M.Rounded.Secondary" - }, - { - "name": "m.rounded.accent", - "composeReference": "TabBarSolid.M.Rounded.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarSolid.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarSolid.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarSolid.M.Shadow.Accent" - }, - { - "name": "m.shadow.rounded.default", - "composeReference": "TabBarSolid.M.Shadow.Rounded.Default" - }, - { - "name": "m.shadow.rounded.secondary", - "composeReference": "TabBarSolid.M.Shadow.Rounded.Secondary" - }, - { - "name": "m.shadow.rounded.accent", - "composeReference": "TabBarSolid.M.Shadow.Rounded.Accent" - }, - { - "name": "m.divider.default", - "composeReference": "TabBarSolid.M.Divider.Default" - }, - { - "name": "m.divider.secondary", - "composeReference": "TabBarSolid.M.Divider.Secondary" - }, - { - "name": "m.divider.accent", - "composeReference": "TabBarSolid.M.Divider.Accent" - }, - { - "name": "m.divider.rounded.default", - "composeReference": "TabBarSolid.M.Divider.Rounded.Default" - }, - { - "name": "m.divider.rounded.secondary", - "composeReference": "TabBarSolid.M.Divider.Rounded.Secondary" - }, - { - "name": "m.divider.rounded.accent", - "composeReference": "TabBarSolid.M.Divider.Rounded.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarSolid.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarSolid.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarSolid.L.Accent" - }, - { - "name": "l.rounded.default", - "composeReference": "TabBarSolid.L.Rounded.Default" - }, - { - "name": "l.rounded.secondary", - "composeReference": "TabBarSolid.L.Rounded.Secondary" - }, - { - "name": "l.rounded.accent", - "composeReference": "TabBarSolid.L.Rounded.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarSolid.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarSolid.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarSolid.L.Shadow.Accent" - }, - { - "name": "l.shadow.rounded.default", - "composeReference": "TabBarSolid.L.Shadow.Rounded.Default" - }, - { - "name": "l.shadow.rounded.secondary", - "composeReference": "TabBarSolid.L.Shadow.Rounded.Secondary" - }, - { - "name": "l.shadow.rounded.accent", - "composeReference": "TabBarSolid.L.Shadow.Rounded.Accent" - }, - { - "name": "l.divider.default", - "composeReference": "TabBarSolid.L.Divider.Default" - }, - { - "name": "l.divider.secondary", - "composeReference": "TabBarSolid.L.Divider.Secondary" - }, - { - "name": "l.divider.accent", - "composeReference": "TabBarSolid.L.Divider.Accent" - }, - { - "name": "l.divider.rounded.default", - "composeReference": "TabBarSolid.L.Divider.Rounded.Default" - }, - { - "name": "l.divider.rounded.secondary", - "composeReference": "TabBarSolid.L.Divider.Rounded.Secondary" - }, - { - "name": "l.divider.rounded.accent", - "composeReference": "TabBarSolid.L.Divider.Rounded.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarIslandClear", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarIslandClear.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarIslandClear.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarIslandClear.M.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarIslandClear.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarIslandClear.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarIslandClear.M.Shadow.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarIslandClear.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarIslandClear.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarIslandClear.L.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarIslandClear.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarIslandClear.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarIslandClear.L.Shadow.Accent" - } - ] - }, - { - "key": "tab-bar", - "coreName": "TabBar", - "styleName": "TabBarIslandSolid", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarIslandSolid.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "TabBarIslandSolid.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "TabBarIslandSolid.M.Accent" - }, - { - "name": "m.shadow.default", - "composeReference": "TabBarIslandSolid.M.Shadow.Default" - }, - { - "name": "m.shadow.secondary", - "composeReference": "TabBarIslandSolid.M.Shadow.Secondary" - }, - { - "name": "m.shadow.accent", - "composeReference": "TabBarIslandSolid.M.Shadow.Accent" - }, - { - "name": "l.default", - "composeReference": "TabBarIslandSolid.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "TabBarIslandSolid.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "TabBarIslandSolid.L.Accent" - }, - { - "name": "l.shadow.default", - "composeReference": "TabBarIslandSolid.L.Shadow.Default" - }, - { - "name": "l.shadow.secondary", - "composeReference": "TabBarIslandSolid.L.Shadow.Secondary" - }, - { - "name": "l.shadow.accent", - "composeReference": "TabBarIslandSolid.L.Shadow.Accent" - } - ] - }, - { - "key": "tab-bar-item", - "coreName": "TabBarItem", - "styleName": "TabBarItemClear", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarItemClear.M.Default" - }, - { - "name": "m.accent", - "composeReference": "TabBarItemClear.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "TabBarItemClear.M.Secondary" - }, - { - "name": "m.label.default", - "composeReference": "TabBarItemClear.M.Label.Default" - }, - { - "name": "m.label.accent", - "composeReference": "TabBarItemClear.M.Label.Accent" - }, - { - "name": "m.label.secondary", - "composeReference": "TabBarItemClear.M.Label.Secondary" - }, - { - "name": "l.default", - "composeReference": "TabBarItemClear.L.Default" - }, - { - "name": "l.accent", - "composeReference": "TabBarItemClear.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "TabBarItemClear.L.Secondary" - }, - { - "name": "l.label.default", - "composeReference": "TabBarItemClear.L.Label.Default" - }, - { - "name": "l.label.accent", - "composeReference": "TabBarItemClear.L.Label.Accent" - }, - { - "name": "l.label.secondary", - "composeReference": "TabBarItemClear.L.Label.Secondary" - } - ] - }, - { - "key": "tab-bar-item", - "coreName": "TabBarItem", - "styleName": "TabBarItemSolid", - "variations": [ - { - "name": "m.default", - "composeReference": "TabBarItemSolid.M.Default" - }, - { - "name": "m.accent", - "composeReference": "TabBarItemSolid.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "TabBarItemSolid.M.Secondary" - }, - { - "name": "m.label.default", - "composeReference": "TabBarItemSolid.M.Label.Default" - }, - { - "name": "m.label.accent", - "composeReference": "TabBarItemSolid.M.Label.Accent" - }, - { - "name": "m.label.secondary", - "composeReference": "TabBarItemSolid.M.Label.Secondary" - }, - { - "name": "l.default", - "composeReference": "TabBarItemSolid.L.Default" - }, - { - "name": "l.accent", - "composeReference": "TabBarItemSolid.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "TabBarItemSolid.L.Secondary" - }, - { - "name": "l.label.default", - "composeReference": "TabBarItemSolid.L.Label.Default" - }, - { - "name": "l.label.accent", - "composeReference": "TabBarItemSolid.L.Label.Accent" - }, - { - "name": "l.label.secondary", - "composeReference": "TabBarItemSolid.L.Label.Secondary" - } - ] - }, - { - "key": "code-field", - "coreName": "CodeField", - "styleName": "CodeField", - "variations": [ - { - "name": "l", - "composeReference": "CodeField.L" - }, - { - "name": "l.segmented", - "composeReference": "CodeField.L.Segmented" - }, - { - "name": "m", - "composeReference": "CodeField.M" - }, - { - "name": "m.segmented", - "composeReference": "CodeField.M.Segmented" - } - ] - }, - { - "key": "code-input", - "coreName": "CodeInput", - "styleName": "CodeInput", - "variations": [ - { - "name": "s", - "composeReference": "CodeInput.S" - }, - { - "name": "m", - "composeReference": "CodeInput.M" - }, - { - "name": "l", - "composeReference": "CodeInput.L" - } - ] - }, - { - "key": "drawer", - "coreName": "Drawer", - "styleName": "DrawerCloseNone", - "variations": [ - { - "name": "m", - "composeReference": "DrawerCloseNone.M" - }, - { - "name": "m.has-shadow", - "composeReference": "DrawerCloseNone.M.HasShadow" - } - ] - }, - { - "key": "drawer", - "coreName": "Drawer", - "styleName": "DrawerCloseInner", - "variations": [ - { - "name": "m", - "composeReference": "DrawerCloseInner.M" - }, - { - "name": "m.has-shadow", - "composeReference": "DrawerCloseInner.M.HasShadow" - } - ] - }, - { - "key": "drawer", - "coreName": "Drawer", - "styleName": "DrawerCloseOuter", - "variations": [ - { - "name": "m", - "composeReference": "DrawerCloseOuter.M" - }, - { - "name": "m.has-shadow", - "composeReference": "DrawerCloseOuter.M.HasShadow" - } - ] - }, - { - "key": "navigation-bar", - "coreName": "NavigationBar", - "styleName": "NavigationBarMainPage", - "variations": [ - { - "name": "no-background", - "composeReference": "NavigationBarMainPage.NoBackground" - }, - { - "name": "no-background.rounded", - "composeReference": "NavigationBarMainPage.NoBackground.Rounded" - }, - { - "name": "has-background", - "composeReference": "NavigationBarMainPage.HasBackground" - }, - { - "name": "has-background.rounded", - "composeReference": "NavigationBarMainPage.HasBackground.Rounded" - }, - { - "name": "has-background.shadow", - "composeReference": "NavigationBarMainPage.HasBackground.Shadow" - }, - { - "name": "has-background.shadow.rounded", - "composeReference": "NavigationBarMainPage.HasBackground.Shadow.Rounded" - } - ] - }, - { - "key": "navigation-bar", - "coreName": "NavigationBar", - "styleName": "NavigationBarInternalPage", - "variations": [ - { - "name": "no-background", - "composeReference": "NavigationBarInternalPage.NoBackground" - }, - { - "name": "no-background.rounded", - "composeReference": "NavigationBarInternalPage.NoBackground.Rounded" - }, - { - "name": "has-background", - "composeReference": "NavigationBarInternalPage.HasBackground" - }, - { - "name": "has-background.rounded", - "composeReference": "NavigationBarInternalPage.HasBackground.Rounded" - }, - { - "name": "has-background.shadow", - "composeReference": "NavigationBarInternalPage.HasBackground.Shadow" - }, - { - "name": "has-background.shadow.rounded", - "composeReference": "NavigationBarInternalPage.HasBackground.Shadow.Rounded" - } - ] - }, - { - "key": "autocomplete", - "coreName": "Autocomplete", - "styleName": "AutocompleteTight", - "variations": [ - { - "name": "xl", - "composeReference": "AutocompleteTight.Xl" - }, - { - "name": "l", - "composeReference": "AutocompleteTight.L" - }, - { - "name": "m", - "composeReference": "AutocompleteTight.M" - }, - { - "name": "s", - "composeReference": "AutocompleteTight.S" - }, - { - "name": "xs", - "composeReference": "AutocompleteTight.Xs" - } - ] - }, - { - "key": "autocomplete", - "coreName": "Autocomplete", - "styleName": "AutocompleteNormal", - "variations": [ - { - "name": "xl", - "composeReference": "AutocompleteNormal.Xl" - }, - { - "name": "l", - "composeReference": "AutocompleteNormal.L" - }, - { - "name": "m", - "composeReference": "AutocompleteNormal.M" - }, - { - "name": "s", - "composeReference": "AutocompleteNormal.S" - }, - { - "name": "xs", - "composeReference": "AutocompleteNormal.Xs" - } - ] - }, - { - "key": "dropdown-empty-state", - "coreName": "DropdownEmptyState", - "styleName": "DropdownEmptyState", - "variations": [ - { - "name": "xs", - "composeReference": "DropdownEmptyState.Xs" - }, - { - "name": "xs.has-button", - "composeReference": "DropdownEmptyState.Xs.HasButton" - }, - { - "name": "s", - "composeReference": "DropdownEmptyState.S" - }, - { - "name": "s.has-button", - "composeReference": "DropdownEmptyState.S.HasButton" - }, - { - "name": "m", - "composeReference": "DropdownEmptyState.M" - }, - { - "name": "m.has-button", - "composeReference": "DropdownEmptyState.M.HasButton" - }, - { - "name": "l", - "composeReference": "DropdownEmptyState.L" - }, - { - "name": "l.has-button", - "composeReference": "DropdownEmptyState.L.HasButton" - }, - { - "name": "xl", - "composeReference": "DropdownEmptyState.Xl" - }, - { - "name": "xl.has-button", - "composeReference": "DropdownEmptyState.Xl.HasButton" - } - ] - }, - { - "key": "file", - "coreName": "File", - "styleName": "FileCircularProgress", - "variations": [ - { - "name": "xs.default", - "composeReference": "FileCircularProgress.Xs.Default" - }, - { - "name": "xs.negative", - "composeReference": "FileCircularProgress.Xs.Negative" - }, - { - "name": "s.default", - "composeReference": "FileCircularProgress.S.Default" - }, - { - "name": "s.negative", - "composeReference": "FileCircularProgress.S.Negative" - }, - { - "name": "m.default", - "composeReference": "FileCircularProgress.M.Default" - }, - { - "name": "m.negative", - "composeReference": "FileCircularProgress.M.Negative" - }, - { - "name": "l.default", - "composeReference": "FileCircularProgress.L.Default" - }, - { - "name": "l.negative", - "composeReference": "FileCircularProgress.L.Negative" - } - ] - }, - { - "key": "file", - "coreName": "File", - "styleName": "FileLinearProgress", - "variations": [ - { - "name": "xs.default", - "composeReference": "FileLinearProgress.Xs.Default" - }, - { - "name": "xs.negative", - "composeReference": "FileLinearProgress.Xs.Negative" - }, - { - "name": "s.default", - "composeReference": "FileLinearProgress.S.Default" - }, - { - "name": "s.negative", - "composeReference": "FileLinearProgress.S.Negative" - }, - { - "name": "m.default", - "composeReference": "FileLinearProgress.M.Default" - }, - { - "name": "m.negative", - "composeReference": "FileLinearProgress.M.Negative" - }, - { - "name": "l.default", - "composeReference": "FileLinearProgress.L.Default" - }, - { - "name": "l.negative", - "composeReference": "FileLinearProgress.L.Negative" - } - ] - } - ] -} \ No newline at end of file diff --git a/tokens/plasma.giga.app.compose/docs/build.gradle.kts b/tokens/plasma.giga.app.compose/docs/build.gradle.kts deleted file mode 100644 index 7c94ab5d6a..0000000000 --- a/tokens/plasma.giga.app.compose/docs/build.gradle.kts +++ /dev/null @@ -1,15 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.documentation-compose") - id("convention.testing-compose") -} - -android { - namespace = "com.sdds.plasma.giga.app.compose.docs" -} - -dependencies { - implementation(project(":plasma.giga.app.compose")) - implementation(libs.sdds.uikit.compose) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/tokens/plasma.giga.app.compose/docs/gradle.properties b/tokens/plasma.giga.app.compose/docs/gradle.properties deleted file mode 100644 index 6963d817d3..0000000000 --- a/tokens/plasma.giga.app.compose/docs/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -docs-theme-name=Plasma Giga App -docs-theme-codeReference=PlasmaGigaAppTheme -docs-theme-prefix=PlasmaGigaApp \ No newline at end of file diff --git a/tokens/plasma.giga.app.compose/docs/override-docs/versionsArchived.json b/tokens/plasma.giga.app.compose/docs/override-docs/versionsArchived.json deleted file mode 100644 index c0cf694785..0000000000 --- a/tokens/plasma.giga.app.compose/docs/override-docs/versionsArchived.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "0.9.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.9.0/", - "0.10.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.10.0/", - "0.11.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.11.0/", - "0.12.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.12.0/", - "0.13.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.13.0/", - "0.14.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.14.0/", - "0.15.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.15.0/", - "0.16.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.16.0/", - "0.17.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.17.0/", - "0.18.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.18.0/", - "0.19.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.19.0/", - "0.20.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.20.0/", - "0.21.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.21.0/", - "0.22.0": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.22.0/", - "0.22.1": "https://plasma.sberdevices.ru/compose/plasma-giga-app-compose/0.22.1/" -} \ No newline at end of file diff --git a/tokens/plasma.giga.app.compose/gradle.properties b/tokens/plasma.giga.app.compose/gradle.properties deleted file mode 100644 index f6843dc9a0..0000000000 --- a/tokens/plasma.giga.app.compose/gradle.properties +++ /dev/null @@ -1,16 +0,0 @@ -nexus.artifactId=plasma-giga-app-compose -nexus.snapshot=false -nexus.description=plasma-giga-app library for compose framework -versionMajor=0 -versionMinor=22 -versionPatch=1 - -summary.key=plasmaGigaApp - -theme-version=0.7.0-alpha -components-version=0.11.0 - -components-name=plasma_giga_app -theme-name=plasma_giga_app -theme-alias=PlasmaGigaApp -theme-resPrefix=giga_app_cmp diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png deleted file mode 100644 index 412ef8866a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png deleted file mode 100644 index c9d26e23f6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png deleted file mode 100644 index c1865b4627..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png deleted file mode 100644 index 793abd4f30..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png deleted file mode 100644 index eb95646bd6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png deleted file mode 100644 index 7a3e26bd36..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png deleted file mode 100644 index 53b72a35f7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png deleted file mode 100644 index 68216cf231..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png deleted file mode 100644 index cf2276915d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png deleted file mode 100644 index 885095c26d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png deleted file mode 100644 index 94bc716ea7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png deleted file mode 100644 index b99cd24883..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png deleted file mode 100644 index d37ed5c3f7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png deleted file mode 100644 index e9f58fe551..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png deleted file mode 100644 index 7eb1e85202..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png deleted file mode 100644 index 0bfcb2f55b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png deleted file mode 100644 index 9ae34c7abb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png deleted file mode 100644 index 588f563046..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png deleted file mode 100644 index 03bf37b67b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png deleted file mode 100644 index 99d2156f02..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png deleted file mode 100644 index de2e1f9f8a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png deleted file mode 100644 index 72a4366878..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png deleted file mode 100644 index 7601679e3b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png deleted file mode 100644 index 32c660e671..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_dark.png deleted file mode 100644 index 6d836b3c64..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_light.png deleted file mode 100644 index 4b84285ba9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarGroupSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png deleted file mode 100644 index 7caa58d289..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png deleted file mode 100644 index bd78c98fde..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png deleted file mode 100644 index 5895e8aeed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png deleted file mode 100644 index ab44dd562e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png deleted file mode 100644 index cbd24e19be..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png deleted file mode 100644 index f705fc1fa2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png deleted file mode 100644 index 34c715c25b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png deleted file mode 100644 index 603243e60d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_dark.png deleted file mode 100644 index f76996bb59..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_light.png deleted file mode 100644 index 6733fcf449..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png deleted file mode 100644 index ef6a24952b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png deleted file mode 100644 index 3eeff33135..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png deleted file mode 100644 index cdc2b8938e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png deleted file mode 100644 index f8fa55f9e5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png deleted file mode 100644 index bdc0992793..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png deleted file mode 100644 index 7fcce0b5a2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png deleted file mode 100644 index 4a705e2151..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png deleted file mode 100644 index df3f2c6ad6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_dark.png deleted file mode 100644 index 7658fb0190..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_light.png deleted file mode 100644 index 8fac3990a3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testAvatarSizeXxl_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png deleted file mode 100644 index 603c189eb5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png deleted file mode 100644 index 57dcc27092..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png deleted file mode 100644 index 299bbd6b49..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png deleted file mode 100644 index 1d582330ee..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png deleted file mode 100644 index c29dae57cb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png deleted file mode 100644 index 41ab8702ed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_dark.png deleted file mode 100644 index 631cfe0af2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_light.png deleted file mode 100644 index 03a2e8c726..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png deleted file mode 100644 index 6d2d146761..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png deleted file mode 100644 index 17444d1555..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_dark.png deleted file mode 100644 index 3e6fd06c3e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_light.png deleted file mode 100644 index a48da462d3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMDark_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png deleted file mode 100644 index 02d3f7d00a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png deleted file mode 100644 index 6877ebf779..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_dark.png deleted file mode 100644 index ad6f796c57..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_light.png deleted file mode 100644 index 3fe1a6407d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSLight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png deleted file mode 100644 index 45eda0ae15..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png deleted file mode 100644 index 27db373b9c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png deleted file mode 100644 index 2689363ae9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png deleted file mode 100644 index 7cc5b64116..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png deleted file mode 100644 index 3d52c9ce71..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_light.png deleted file mode 100644 index 619a810dcb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBadgeSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png deleted file mode 100644 index 8078fcb47b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_light.png deleted file mode 100644 index be583188bc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetFooterAuto_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png deleted file mode 100644 index 0d61810a76..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png deleted file mode 100644 index 526f684590..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png deleted file mode 100644 index 1ba9b43185..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png deleted file mode 100644 index 82071838c7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png deleted file mode 100644 index cebf1fd088..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png deleted file mode 100644 index be7225a264..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png deleted file mode 100644 index a47b839270..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png deleted file mode 100644 index 30c5b45fac..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png deleted file mode 100644 index 8588cc0346..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png deleted file mode 100644 index 84f90c3045..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png deleted file mode 100644 index ea9135c5c4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png deleted file mode 100644 index cd49fb1148..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png deleted file mode 100644 index 4aec4a62f8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png deleted file mode 100644 index df0c27b4ba..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png deleted file mode 100644 index 84fbdf9a16..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png deleted file mode 100644 index f22b6efc3d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png deleted file mode 100644 index 319356a779..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png deleted file mode 100644 index f7336a695f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_dark.png deleted file mode 100644 index ad7f99db76..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_light.png deleted file mode 100644 index eaeaedf84d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonGroupXxsNoGapSegmentedMaxAmount_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_dark.png deleted file mode 100644 index a6b3272ae4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_light.png deleted file mode 100644 index 0ea3af0003..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_dark.png deleted file mode 100644 index 9b5db711af..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_light.png deleted file mode 100644 index 6b088ecd32..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png deleted file mode 100644 index 5d472dd5d6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_light.png deleted file mode 100644 index 52d95f9f88..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLIsLoading_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_dark.png deleted file mode 100644 index 204873fb58..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_light.png deleted file mode 100644 index 38c291881a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_dark.png deleted file mode 100644 index 9e7930faf1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_light.png deleted file mode 100644 index 1102e96e62..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeLWhite_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_dark.png deleted file mode 100644 index 0af3a9dd08..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_light.png deleted file mode 100644 index 67980e8bdf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png deleted file mode 100644 index 53186475b4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png deleted file mode 100644 index c6ce3f4ade..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_dark.png deleted file mode 100644 index 386d3e304f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_light.png deleted file mode 100644 index 1f93bc09b4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSLongText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_dark.png deleted file mode 100644 index 38acbb0e6b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_light.png deleted file mode 100644 index 65ff233b34..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeSWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_dark.png deleted file mode 100644 index b4057fec13..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_light.png deleted file mode 100644 index 33faefb4a7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXSNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_dark.png deleted file mode 100644 index 27d76e9d54..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_light.png deleted file mode 100644 index d95cafe96b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_dark.png deleted file mode 100644 index b48213e16c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_light.png deleted file mode 100644 index 10240d6d3c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_dark.png deleted file mode 100644 index f053f9cfb2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_light.png deleted file mode 100644 index bbbef14d22..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testButtonSizeXxsDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_dark.png deleted file mode 100644 index bc439de963..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_light.png deleted file mode 100644 index 98436e9569..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLClearVertical_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_dark.png deleted file mode 100644 index d5f2cd695c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_light.png deleted file mode 100644 index e213794c1a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeLSolidHorizontal_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_dark.png deleted file mode 100644 index 83d4ef4a56..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_light.png deleted file mode 100644 index 463cacaf89..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMClearHorizontal_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_dark.png deleted file mode 100644 index ef93dec6af..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_light.png deleted file mode 100644 index c290a1915c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeMSolidVertical_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_dark.png deleted file mode 100644 index 4c0bb27b91..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_light.png deleted file mode 100644 index e4ba7cf5d5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSClearVertical_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_dark.png deleted file mode 100644 index a1de3566b2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_light.png deleted file mode 100644 index 5bf5dc24c2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCardSizeSSolidHorizontal_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png deleted file mode 100644 index 2cfd4e8790..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png deleted file mode 100644 index 3b27b8dddb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_dark.png deleted file mode 100644 index 944db5231c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_light.png deleted file mode 100644 index 825576dbbd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellMAvatarIcon_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png deleted file mode 100644 index eeb3628e81..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png deleted file mode 100644 index a7b13231b0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png deleted file mode 100644 index d197dd8064..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png deleted file mode 100644 index b5e70e3475..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png deleted file mode 100644 index 3c6c545660..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png deleted file mode 100644 index a136486405..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png deleted file mode 100644 index 5c605f7ee6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png deleted file mode 100644 index 76fbd4b620..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png deleted file mode 100644 index 28db26e469..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png deleted file mode 100644 index c97484aa68..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png deleted file mode 100644 index a100f32ec8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png deleted file mode 100644 index b63cd77a79..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png deleted file mode 100644 index ef1069dab3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png deleted file mode 100644 index 66138d8092..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png deleted file mode 100644 index 72925145f0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png deleted file mode 100644 index a178996ab8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png deleted file mode 100644 index 718d55c345..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png deleted file mode 100644 index 14f571b15f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png deleted file mode 100644 index fd270d86d6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png deleted file mode 100644 index 0f3988de5c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png deleted file mode 100644 index cb33dc90f4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png deleted file mode 100644 index 591227ad82..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_dark.png deleted file mode 100644 index c7e19f05bf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_light.png deleted file mode 100644 index f05605d64d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegativeUnchecked_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_dark.png deleted file mode 100644 index 19cfc7915a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_light.png deleted file mode 100644 index cf6585e006..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeLNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png deleted file mode 100644 index f110a19100..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png deleted file mode 100644 index 9744b3a948..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_dark.png deleted file mode 100644 index b2dcd837cc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_light.png deleted file mode 100644 index 5408cf599d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png deleted file mode 100644 index 001a3262bb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png deleted file mode 100644 index b4b4263b7b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png deleted file mode 100644 index 1c31ec69ea..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png deleted file mode 100644 index 9a1587e1bd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png deleted file mode 100644 index 3bb58980c1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png deleted file mode 100644 index e9bb43ae12..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_dark.png deleted file mode 100644 index 7ff9eb994f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_light.png deleted file mode 100644 index 1cd58a01af..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_dark.png deleted file mode 100644 index f70356699a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_light.png deleted file mode 100644 index 5270c0ecf5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeLDense_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png deleted file mode 100644 index 4c9ed0aa7c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png deleted file mode 100644 index 8e967fd6d4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png deleted file mode 100644 index 02584bf39b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png deleted file mode 100644 index 8615e94365..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png deleted file mode 100644 index c8636d822e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png deleted file mode 100644 index 7c96f9c5c1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_dark.png deleted file mode 100644 index be60fce711..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_light.png deleted file mode 100644 index 95d076d7d8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png deleted file mode 100644 index 3c66997eb2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png deleted file mode 100644 index e3822a6b75..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_dark.png deleted file mode 100644 index d7daeca07e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_light.png deleted file mode 100644 index 6dc7fce123..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeSAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png deleted file mode 100644 index 60296b1ed2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_light.png deleted file mode 100644 index c7b952d4b8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testChipSizeXSContentLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_dark.png deleted file mode 100644 index da0deb8c65..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_light.png deleted file mode 100644 index ca985039d0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressLAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_dark.png deleted file mode 100644 index 4d32e1797f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_light.png deleted file mode 100644 index bdd2c11c24..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressMGradient_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_dark.png deleted file mode 100644 index 2e731d7d63..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_light.png deleted file mode 100644 index bfdb84ecb4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressSInfo_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_dark.png deleted file mode 100644 index 3d49c7bdc8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_light.png deleted file mode 100644 index 9a3407f009..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXlSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_dark.png deleted file mode 100644 index c401ca0404..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_light.png deleted file mode 100644 index d49ab8193b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXsPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_dark.png deleted file mode 100644 index 1fbc9aa260..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_light.png deleted file mode 100644 index 8a87d55d1c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_dark.png deleted file mode 100644 index 60315f4dfa..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_light.png deleted file mode 100644 index a6cf67eaaf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxlNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_dark.png deleted file mode 100644 index 00db5e88ab..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_light.png deleted file mode 100644 index 718f1b025e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCircularProgressXxsWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_dark.png deleted file mode 100644 index c079a57a74..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_light.png deleted file mode 100644 index d08d585d30..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldLongText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_dark.png deleted file mode 100644 index b23f628387..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_light.png deleted file mode 100644 index cfdc6278d6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLCodeLengthSixNoCaption_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_dark.png deleted file mode 100644 index c0a6377d44..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_light.png deleted file mode 100644 index d33e946532..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLDefaultCodeLengthFour_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_dark.png deleted file mode 100644 index d0f824934b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_light.png deleted file mode 100644 index fb1be19158..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLHiddenCode_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_dark.png deleted file mode 100644 index 98fbc0ccae..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_light.png deleted file mode 100644 index 994ff54314..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputCorrectCode_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_dark.png deleted file mode 100644 index f30fddcff3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_light.png deleted file mode 100644 index fccd09ffb4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputLetter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_dark.png deleted file mode 100644 index 138f3677ce..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_light.png deleted file mode 100644 index a30668c07e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeLInputWrongCode_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_dark.png deleted file mode 100644 index a017077007..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_light.png deleted file mode 100644 index 240d7dfa2a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmentedCodeLengthSix_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_dark.png deleted file mode 100644 index 0d8d1cece9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_light.png deleted file mode 100644 index 883a395964..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeFieldSizeMSegmented_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png deleted file mode 100644 index 7ce9a9db16..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_light.png deleted file mode 100644 index a1af90a406..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputCorrectNumber_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png deleted file mode 100644 index aa826aa08c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png deleted file mode 100644 index 06dfb4d208..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png deleted file mode 100644 index 3155cdfde5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png deleted file mode 100644 index 919c6476f3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png deleted file mode 100644 index 214dad224e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png deleted file mode 100644 index f59fc365e5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png deleted file mode 100644 index e05dfb58c7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_light.png deleted file mode 100644 index 1ec4a07f04..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeMHidden_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png deleted file mode 100644 index 7d639be9cb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png deleted file mode 100644 index f5b11c6f12..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png deleted file mode 100644 index dba1a4acd0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png deleted file mode 100644 index a1bd3b5d27..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_dark.png deleted file mode 100644 index aece6c4de8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_light.png deleted file mode 100644 index 82a02a44d3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCodeInputWrongCode_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_dark.png deleted file mode 100644 index e7ea79b3db..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_light.png deleted file mode 100644 index 66ce7de09a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_dark.png deleted file mode 100644 index aa55e1dbed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_light.png deleted file mode 100644 index cd77a56a81..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeLWhite_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_dark.png deleted file mode 100644 index eed5c1af74..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_light.png deleted file mode 100644 index 6ded642e49..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeMAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_dark.png deleted file mode 100644 index 0c80bd5f45..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_light.png deleted file mode 100644 index 436459ff01..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeSPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_dark.png deleted file mode 100644 index 88573babf3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_light.png deleted file mode 100644 index f5bbb0f968..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png deleted file mode 100644 index 7d22ef8718..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_light.png deleted file mode 100644 index c61498bf88..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testCounterSizeXxsNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_dark.png deleted file mode 100644 index 4b052dfe8c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_light.png deleted file mode 100644 index 59bcd1f508..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDividerDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_dark.png deleted file mode 100644 index 01e50fcaf6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_light.png deleted file mode 100644 index aaad2e7478..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseIconAbsolute_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_dark.png deleted file mode 100644 index 8baceb7c10..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_light.png deleted file mode 100644 index 9ada8ba17c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseInnerMStartHeader_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_dark.png deleted file mode 100644 index 2fa759ce53..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_light.png deleted file mode 100644 index 87f1b70a12..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseNoneEndStartHeaderFooter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_dark.png deleted file mode 100644 index 3537eb16d7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_light.png deleted file mode 100644 index 0b177663ff..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerCloseOuterMShadowTopEndFooterHasOverlay_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_dark.png deleted file mode 100644 index bc8e4e636f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_light.png deleted file mode 100644 index 957595a0d2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerHasPeakOffSet_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_dark.png deleted file mode 100644 index 6ea3498ba3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_light.png deleted file mode 100644 index f461694b95..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDrawerNoShadowBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png deleted file mode 100644 index 0000bc6bbf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png deleted file mode 100644 index c9e80b7bad..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png deleted file mode 100644 index 36b5631328..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png deleted file mode 100644 index 5a4b11eb27..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png deleted file mode 100644 index f18a43ce46..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png deleted file mode 100644 index fd711193d5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png deleted file mode 100644 index e44ae94a8a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png deleted file mode 100644 index be765bf5f5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_dark.png deleted file mode 100644 index 8880aa26e0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_light.png deleted file mode 100644 index 9d13b63dc5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenLooseBottomCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_dark.png deleted file mode 100644 index 62a64e82dd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_light.png deleted file mode 100644 index 38dca37a3c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlAmountTenStrictCenterEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_dark.png deleted file mode 100644 index 6855c81bac..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_light.png deleted file mode 100644 index 87770cd608..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlHasDisclosureTopStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_dark.png deleted file mode 100644 index 833dfb9b75..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_light.png deleted file mode 100644 index d30563739a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXlLooseTopEndDivider_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png deleted file mode 100644 index 223ddfc762..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png deleted file mode 100644 index 933be43d87..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_dark.png deleted file mode 100644 index 08df9fc327..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_light.png deleted file mode 100644 index c6c9ebc100..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingHasImageNoDesc_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_dark.png deleted file mode 100644 index a9626449f3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_light.png deleted file mode 100644 index 718f32c808..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLDefaultIsLoadingStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_dark.png deleted file mode 100644 index e8a14b8837..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_light.png deleted file mode 100644 index 684db6947a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressLNegativeIsLoadingEndLongText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_dark.png deleted file mode 100644 index 870081ef55..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_light.png deleted file mode 100644 index b3871cdf19..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileCircularProgressSDefaultHasImageEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_dark.png deleted file mode 100644 index f9fec6071d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_light.png deleted file mode 100644 index 0f8d50a5e1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressMNegativeIsLoadingHasImageEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_dark.png deleted file mode 100644 index 976ff9c81c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_light.png deleted file mode 100644 index dc41d6aac0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testFileLinearProgressXsNegativeIsLoadingStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png deleted file mode 100644 index 6aeba6baed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png deleted file mode 100644 index 08b137267f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png deleted file mode 100644 index 3e8f51d553..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png deleted file mode 100644 index 9d7c702c1f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png deleted file mode 100644 index f7ada08dd0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png deleted file mode 100644 index a1faf6a973..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png deleted file mode 100644 index d947636a50..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png deleted file mode 100644 index c3f124c69a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png deleted file mode 100644 index a851fbb96c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png deleted file mode 100644 index 1560a55b81..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png deleted file mode 100644 index bce88b1ffb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png deleted file mode 100644 index 9d3307a1e9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png deleted file mode 100644 index 9f34d761e3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png deleted file mode 100644 index 057adebd1a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png deleted file mode 100644 index c30b436db9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png deleted file mode 100644 index 5b3e92ae54..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png deleted file mode 100644 index 55ff62a97a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png deleted file mode 100644 index 6dee3af8eb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png deleted file mode 100644 index dce6fc518c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png deleted file mode 100644 index c3fc26cbed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png deleted file mode 100644 index 98a875e80f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png deleted file mode 100644 index 330386d6ed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_dark.png deleted file mode 100644 index 196f2a1729..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_light.png deleted file mode 100644 index 9e629722ef..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_dark.png deleted file mode 100644 index 86f54f38c7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_light.png deleted file mode 100644 index b68cdac28b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_dark.png deleted file mode 100644 index df2489bf9e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_light.png deleted file mode 100644 index 3358664746..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLIsLoading_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_dark.png deleted file mode 100644 index 1e0af791f0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_light.png deleted file mode 100644 index 9535666808..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_dark.png deleted file mode 100644 index 196f2a1729..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_light.png deleted file mode 100644 index 931190aba5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonLWhite_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_dark.png deleted file mode 100644 index 90c0f104fc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_light.png deleted file mode 100644 index 4a93800ac4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_dark.png deleted file mode 100644 index be58d72215..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_light.png deleted file mode 100644 index 62245f1460..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonMClear_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_dark.png deleted file mode 100644 index 51faebdfff..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_light.png deleted file mode 100644 index 75592ae25c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_dark.png deleted file mode 100644 index b1c3a73bb0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_light.png deleted file mode 100644 index 02b8d2916b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonSWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_dark.png deleted file mode 100644 index 9121499d08..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_light.png deleted file mode 100644 index cc396701db..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXSNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_dark.png deleted file mode 100644 index ab80897a13..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_light.png deleted file mode 100644 index f18b8b33d7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_dark.png deleted file mode 100644 index d8c35a2320..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_light.png deleted file mode 100644 index 3e5680d964..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXs_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_dark.png deleted file mode 100644 index f104b264a9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_light.png deleted file mode 100644 index 5232b11fbc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIconButtonXxsDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_dark.png deleted file mode 100644 index 72bcb5481d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_light.png deleted file mode 100644 index 72bcb5481d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio16x9_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_dark.png deleted file mode 100644 index 4cbeb72b6d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_light.png deleted file mode 100644 index 4cbeb72b6d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x1_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_dark.png deleted file mode 100644 index 6c97f2a6c2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_light.png deleted file mode 100644 index 6c97f2a6c2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio1x2_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_dark.png deleted file mode 100644 index bbc7c658d4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_light.png deleted file mode 100644 index bbc7c658d4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio2x1_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_dark.png deleted file mode 100644 index ec08e6bf18..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_light.png deleted file mode 100644 index ec08e6bf18..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio3x4_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_dark.png deleted file mode 100644 index f672db878b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_light.png deleted file mode 100644 index f672db878b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio4x3_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_dark.png deleted file mode 100644 index 0a57a1277c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_light.png deleted file mode 100644 index 0a57a1277c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testImageRatio9x16_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png deleted file mode 100644 index aef3a366ff..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_light.png deleted file mode 100644 index 6c82200765..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png deleted file mode 100644 index 2a8cb04a6f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_light.png deleted file mode 100644 index 5e96ba4133..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png deleted file mode 100644 index 24c3517f1b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_light.png deleted file mode 100644 index cc8bf80052..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png deleted file mode 100644 index 4f2b14662e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_light.png deleted file mode 100644 index c4fb65f702..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeLWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png deleted file mode 100644 index be4469f0f9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_light.png deleted file mode 100644 index 2a1b150292..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeMAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png deleted file mode 100644 index 2a60e2c138..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_light.png deleted file mode 100644 index a55781521b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testIndicatorSizeSInactive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png deleted file mode 100644 index bf14b328f5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png deleted file mode 100644 index 4fde14d613..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png deleted file mode 100644 index 0761971729..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png deleted file mode 100644 index 726fdd8809..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png deleted file mode 100644 index fae4acb996..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png deleted file mode 100644 index 2a0b466c71..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png deleted file mode 100644 index 1ae3ca7266..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png deleted file mode 100644 index 744574ff51..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png deleted file mode 100644 index bbced13b63..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png deleted file mode 100644 index 08c8ffa189..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png deleted file mode 100644 index 8116062948..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png deleted file mode 100644 index 2efb758b7b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png deleted file mode 100644 index 4ff38f4f88..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png deleted file mode 100644 index 2423605f55..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_dark.png deleted file mode 100644 index 041bb7bf43..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_light.png deleted file mode 100644 index fc594fa83c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_dark.png deleted file mode 100644 index 9720e62e25..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_light.png deleted file mode 100644 index 7778a72249..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLinkButtonSizeXxsDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_dark.png deleted file mode 100644 index da1b0d8f38..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_light.png deleted file mode 100644 index f919c82207..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalLAmountThree_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_dark.png deleted file mode 100644 index acddd5e57e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_light.png deleted file mode 100644 index 3ddbcc7f2f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalMAmountThree_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_dark.png deleted file mode 100644 index f397300f1f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_light.png deleted file mode 100644 index c4d4e7afe2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalSAmountThree_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png deleted file mode 100644 index c5ea340d99..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png deleted file mode 100644 index e33a285d7c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png deleted file mode 100644 index c5737d7701..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png deleted file mode 100644 index b2a9c79ea0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png deleted file mode 100644 index 125c190112..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png deleted file mode 100644 index 44b7f5f028..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_dark.png deleted file mode 100644 index 8ac4cf1cbf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_light.png deleted file mode 100644 index bb1291de24..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderProgress_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_dark.png deleted file mode 100644 index 802ee6467e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_light.png deleted file mode 100644 index c524fe9b17..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testLoaderSpinner_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png deleted file mode 100644 index 9ae9be433d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png deleted file mode 100644 index 32fa64d3b6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png deleted file mode 100644 index 2a39c06ce0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png deleted file mode 100644 index 6fa42ef58e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_dark.png deleted file mode 100644 index 2bab5f8d8e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_light.png deleted file mode 100644 index b37e755ab6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundRounded_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_dark.png deleted file mode 100644 index 2055b865e2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_light.png deleted file mode 100644 index 0a4ca64c6c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadowRounded_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_dark.png deleted file mode 100644 index 5f9bdd9cf4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_light.png deleted file mode 100644 index 3e70ffacfb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackgroundShadow_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_dark.png deleted file mode 100644 index dce3cc0cc0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_light.png deleted file mode 100644 index 2098b46842..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarHasBackground_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_dark.png deleted file mode 100644 index 34f3e5c623..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_light.png deleted file mode 100644 index d9a9bd83b5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarMainPageNoBackGround_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_dark.png deleted file mode 100644 index 1f6648b9e8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_light.png deleted file mode 100644 index 620af13e57..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavBarNoBackgroundRounded_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_dark.png deleted file mode 100644 index 0170d76bca..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_light.png deleted file mode 100644 index 1c6e1cabf1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNavigationBarInlineRelative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png deleted file mode 100644 index 615e5ef3e1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png deleted file mode 100644 index 2c69dc8e44..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png deleted file mode 100644 index 644e76b587..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png deleted file mode 100644 index 1c25cf2286..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png deleted file mode 100644 index 1b4e6c83e0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png deleted file mode 100644 index f8f0746767..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png deleted file mode 100644 index 15ef31b3ef..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png deleted file mode 100644 index 68cd8a20fd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png deleted file mode 100644 index ddca5e7428..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png deleted file mode 100644 index 8ad9aabedf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png deleted file mode 100644 index 4ab34087dd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png deleted file mode 100644 index 32eebc8a1a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png deleted file mode 100644 index 947002d349..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png deleted file mode 100644 index a72d730a81..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png deleted file mode 100644 index e5c98b8b3d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png deleted file mode 100644 index 5638a3202f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png deleted file mode 100644 index 9a0fd388fc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png deleted file mode 100644 index 2c24803d6e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png deleted file mode 100644 index 4bf39e654d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png deleted file mode 100644 index 5be6fd772e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_dark.png deleted file mode 100644 index 901dc991cf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_light.png deleted file mode 100644 index 25e6f32fed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_dark.png deleted file mode 100644 index 11794e281c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_light.png deleted file mode 100644 index a198dd0b16..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationContentWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png deleted file mode 100644 index fdd1d3d345..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png deleted file mode 100644 index 1dc2d01e21..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png deleted file mode 100644 index 0c3dffaaf0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png deleted file mode 100644 index b07d15b9cc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png deleted file mode 100644 index 8ffae4463e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png deleted file mode 100644 index 19aae63798..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png deleted file mode 100644 index 0cd6556781..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png deleted file mode 100644 index d6c9f4d740..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png deleted file mode 100644 index f3d7bb5532..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png deleted file mode 100644 index 50839d79dc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png deleted file mode 100644 index b4d5a644a4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png deleted file mode 100644 index aae37f61a7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png deleted file mode 100644 index 29d135fe16..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png deleted file mode 100644 index 38150dbe79..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png deleted file mode 100644 index 6a66840721..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png deleted file mode 100644 index 740c885a98..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png deleted file mode 100644 index 1ba0a489ad..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png deleted file mode 100644 index 7c01ba8681..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png deleted file mode 100644 index c4fe7bfc7c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png deleted file mode 100644 index bbe19cdff8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png deleted file mode 100644 index 54e3518c5c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png deleted file mode 100644 index 507b5f0c84..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png deleted file mode 100644 index 72cd52e14b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png deleted file mode 100644 index 9d943cd0f1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png deleted file mode 100644 index d48fc88818..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png deleted file mode 100644 index 3e683d7cf5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_dark.png deleted file mode 100644 index 257769cda0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_light.png deleted file mode 100644 index 46c3ea7088..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png deleted file mode 100644 index 31a6855960..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png deleted file mode 100644 index 768fae197b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_dark.png deleted file mode 100644 index b5edf3379c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_light.png deleted file mode 100644 index 5d4d03a98d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_dark.png deleted file mode 100644 index b8e58ad96c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_light.png deleted file mode 100644 index 0182383ac0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarGradientAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_dark.png deleted file mode 100644 index 1fedd27ebf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_light.png deleted file mode 100644 index 47b372a9c3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_dark.png deleted file mode 100644 index 3d8870b2e6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_light.png deleted file mode 100644 index efa21d6b89..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_dark.png deleted file mode 100644 index 858ed6497e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_light.png deleted file mode 100644 index c9373ce15d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_dark.png deleted file mode 100644 index be882fb2dc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_light.png deleted file mode 100644 index 833b46b819..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testProgressBarWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_dark.png deleted file mode 100644 index 6b370cfa0c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_light.png deleted file mode 100644 index 6dd96af6a7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png deleted file mode 100644 index 88231c80ed..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png deleted file mode 100644 index 2ae49cede6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png deleted file mode 100644 index 6c14658c35..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png deleted file mode 100644 index 7f4d7a2c62..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png deleted file mode 100644 index 5d40d7d17d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png deleted file mode 100644 index c5124ec0cc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png deleted file mode 100644 index be750f0c9a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png deleted file mode 100644 index 3a842dfd19..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png deleted file mode 100644 index 8ac002c562..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png deleted file mode 100644 index 38da6462af..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_dark.png deleted file mode 100644 index 69adaf60d1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_light.png deleted file mode 100644 index ef2dbb2a43..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_dark.png deleted file mode 100644 index 60480de424..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_light.png deleted file mode 100644 index b380e01f94..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRadioBoxSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_dark.png deleted file mode 100644 index f361d87ffa..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_light.png deleted file mode 100644 index b6e7fa1320..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeletonLighter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_dark.png deleted file mode 100644 index 99956e0e58..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_light.png deleted file mode 100644 index c9789a148f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testRectSkeleton_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_dark.png deleted file mode 100644 index a2246012a5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_light.png deleted file mode 100644 index 928da2f8a1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_dark.png deleted file mode 100644 index c8603e101e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_light.png deleted file mode 100644 index 68975cbffa..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testScrollBarS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_dark.png deleted file mode 100644 index 5183ef3696..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_light.png deleted file mode 100644 index 776da572cc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_dark.png deleted file mode 100644 index 0c35c68d65..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_light.png deleted file mode 100644 index 03b826bfe2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png deleted file mode 100644 index 195f838365..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png deleted file mode 100644 index 050ebac51d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png deleted file mode 100644 index dd480dbd1c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png deleted file mode 100644 index a24d763b13..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_dark.png deleted file mode 100644 index 21f710ccf3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_light.png deleted file mode 100644 index 7e4cd8a128..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_dark.png deleted file mode 100644 index b414be4bc6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_light.png deleted file mode 100644 index f445e89028..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentItemSizeXs_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_dark.png deleted file mode 100644 index 72ac81d72d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_light.png deleted file mode 100644 index 7dee4be1d0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentOrientationVertical_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_dark.png deleted file mode 100644 index c347fc7b9d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_light.png deleted file mode 100644 index bb14b36c75..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeLCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_dark.png deleted file mode 100644 index 6b043eace3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_light.png deleted file mode 100644 index 7142537977..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeL_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_dark.png deleted file mode 100644 index 98a979ecfd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_light.png deleted file mode 100644 index ae2b30c4b2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeM_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_dark.png deleted file mode 100644 index 1ea5e8f8c4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_light.png deleted file mode 100644 index 106e6df9dc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeSStretch_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_dark.png deleted file mode 100644 index f731eb7728..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_light.png deleted file mode 100644 index cf94f07070..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_dark.png deleted file mode 100644 index 5e1f1ebe33..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_light.png deleted file mode 100644 index 12a0b76fd1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSegmentSizeXs_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_dark.png deleted file mode 100644 index f63c58c082..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_light.png deleted file mode 100644 index d647e07ae4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerLAccent_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_dark.png deleted file mode 100644 index c445da34b9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_light.png deleted file mode 100644 index 6f1f3ccbc2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerMPositive_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_dark.png deleted file mode 100644 index a44e4edf11..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_light.png deleted file mode 100644 index 8214c46d9e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerSNegative_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_dark.png deleted file mode 100644 index 7fbf119426..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_light.png deleted file mode 100644 index 2a49cea39c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerScalableDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_dark.png deleted file mode 100644 index be493010a3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_light.png deleted file mode 100644 index 70390e21cf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXlSecondary_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_dark.png deleted file mode 100644 index a850ff07ce..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_light.png deleted file mode 100644 index b056214f69..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXsWarning_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_dark.png deleted file mode 100644 index 35bed96c91..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_light.png deleted file mode 100644 index cd13d949db..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_dark.png deleted file mode 100644 index 95f3f61837..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_light.png deleted file mode 100644 index a7944b0b85..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSpinnerXxsInfo_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_dark.png deleted file mode 100644 index 7ad5985913..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_light.png deleted file mode 100644 index b8ed573d96..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchLToggleS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_dark.png deleted file mode 100644 index 5b173c6fb8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_light.png deleted file mode 100644 index 996590b342..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOffDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_dark.png deleted file mode 100644 index 4fd56e6989..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_light.png deleted file mode 100644 index 8f37d32ca7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOff_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_dark.png deleted file mode 100644 index 6dc1e92c8c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_light.png deleted file mode 100644 index 05bf1d15fb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOnDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_dark.png deleted file mode 100644 index 353f0ce81b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_light.png deleted file mode 100644 index f1ba7bec3f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchOn_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_dark.png deleted file mode 100644 index ba1d16d0fd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_light.png deleted file mode 100644 index f71d065bbb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchSToggleS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_dark.png deleted file mode 100644 index c710f931fc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_light.png deleted file mode 100644 index 9cd55b2794..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testSwitchS_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_dark.png deleted file mode 100644 index bf22d8b802..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_light.png deleted file mode 100644 index 9e5bc2b189..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDefaultNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_dark.png deleted file mode 100644 index 03d7ad9a27..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_light.png deleted file mode 100644 index 8ad03d5bad..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerAccentCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_dark.png deleted file mode 100644 index 9ce43d26f2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_light.png deleted file mode 100644 index bb3ac6b3e6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedDefaultExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_dark.png deleted file mode 100644 index 36b5fe05c2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_light.png deleted file mode 100644 index 31aa6ba70f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearLDividerRoundedSecondaryExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_dark.png deleted file mode 100644 index 6e935d8f1e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_light.png deleted file mode 100644 index 140d12e652..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarClearMRoundedSecondaryCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_dark.png deleted file mode 100644 index c926a01d7c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_light.png deleted file mode 100644 index 32cfb6b8af..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarCustomWeight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_dark.png deleted file mode 100644 index 6b3b1bede4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_light.png deleted file mode 100644 index 3d8d5c5841..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearLRoundedAccentCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_dark.png deleted file mode 100644 index 319fc51932..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_light.png deleted file mode 100644 index 2b44dc2766..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelClearMSecondaryCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_dark.png deleted file mode 100644 index 2fa0296c47..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_light.png deleted file mode 100644 index dfbc0175ca..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLAccentIndicator_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_dark.png deleted file mode 100644 index 8fb489714e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_light.png deleted file mode 100644 index 8bdae6038d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarHasLabelSolidLDividerDefaultCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_dark.png deleted file mode 100644 index 160d1ac014..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_light.png deleted file mode 100644 index aebb4be1a3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandClearLShadowDefaultExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_dark.png deleted file mode 100644 index 8423f698e1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_light.png deleted file mode 100644 index 3fcc9b7792..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelClearLShadowSecondaryCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_dark.png deleted file mode 100644 index d2b6428ef5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_light.png deleted file mode 100644 index 32b28bddf9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandHasLabelSolidShadowAccentCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_dark.png deleted file mode 100644 index 65cc429bf2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_light.png deleted file mode 100644 index 6fb02beccd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarIslandSolidLDefaultCountSixCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_dark.png deleted file mode 100644 index f606897ae2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_light.png deleted file mode 100644 index 3c8f5e2faa..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidDividerRoundedAccentExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_dark.png deleted file mode 100644 index 9bf55bb1c5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_light.png deleted file mode 100644 index bd8333918b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerRoundedAccentExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_dark.png deleted file mode 100644 index 79773b0ce4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_light.png deleted file mode 100644 index 6f7800eef7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLDividerSecondaryCounter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_dark.png deleted file mode 100644 index e57c1951f2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_light.png deleted file mode 100644 index 8f4127108c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidLRoundedDefaultIndicator_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_dark.png deleted file mode 100644 index 97d94e48e1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_light.png deleted file mode 100644 index 98402cabe9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedDefaultExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_dark.png deleted file mode 100644 index 74f2b0cdab..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_light.png deleted file mode 100644 index 97e4c86665..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTabBarSolidShadowRoundedSecondaryExtraNone_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png deleted file mode 100644 index a1491dc70d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png deleted file mode 100644 index 410287845b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png deleted file mode 100644 index 77c01ef8f5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png deleted file mode 100644 index 8197275729..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png deleted file mode 100644 index a29f428f7a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png deleted file mode 100644 index 04dd85efd9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png deleted file mode 100644 index e331f04975..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png deleted file mode 100644 index c820d22401..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png deleted file mode 100644 index 92c2d59fbb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png deleted file mode 100644 index 71fa85cf0d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png deleted file mode 100644 index 87d4d75862..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png deleted file mode 100644 index 67a68aab1f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_dark.png deleted file mode 100644 index 0eee634e9b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_light.png deleted file mode 100644 index 2725866a77..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png deleted file mode 100644 index c3343e87ea..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png deleted file mode 100644 index 4ecb8cd5ce..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png deleted file mode 100644 index ee434a8559..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png deleted file mode 100644 index 49195fa347..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_dark.png deleted file mode 100644 index 36cb44ba2b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_light.png deleted file mode 100644 index ab6231ca87..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaLReadOnly_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png deleted file mode 100644 index e4ed7772dc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png deleted file mode 100644 index a69a673390..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png deleted file mode 100644 index a25177ef90..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png deleted file mode 100644 index 9e0ea51f9a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png deleted file mode 100644 index 8e63bc0e94..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png deleted file mode 100644 index 5279fc98e7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png deleted file mode 100644 index fc4c6ecd33..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png deleted file mode 100644 index 3ccfcf279a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png deleted file mode 100644 index dac697f4bf..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png deleted file mode 100644 index 426809d7f9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png deleted file mode 100644 index d083902631..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png deleted file mode 100644 index f1b06cc77f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_dark.png deleted file mode 100644 index 088abde945..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_light.png deleted file mode 100644 index 8ac75a7321..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSLongText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png deleted file mode 100644 index df2bb5fcb1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png deleted file mode 100644 index 8a9d671ba7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png deleted file mode 100644 index be92b5685d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png deleted file mode 100644 index 9f95fc3c58..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png deleted file mode 100644 index e0bfd387b8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png deleted file mode 100644 index f0a3a1432f..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_dark.png deleted file mode 100644 index 47c70e1839..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_light.png deleted file mode 100644 index 5edb74d3a4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png deleted file mode 100644 index d92fccaddd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png deleted file mode 100644 index 90a8bef6f3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png deleted file mode 100644 index 05fc7bb481..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png deleted file mode 100644 index 083a612e7b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png deleted file mode 100644 index dc3a01439c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png deleted file mode 100644 index c9200cf591..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png deleted file mode 100644 index 56a1b12911..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png deleted file mode 100644 index daa3d2756d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png deleted file mode 100644 index d432584f86..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png deleted file mode 100644 index 11e248e770..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png deleted file mode 100644 index 04027bfee9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png deleted file mode 100644 index 51e25396bd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png deleted file mode 100644 index bdc9b6cd74..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png deleted file mode 100644 index 586fd1b65c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png deleted file mode 100644 index bdf6c6927a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png deleted file mode 100644 index f9a756869e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_dark.png deleted file mode 100644 index caf3d20643..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_light.png deleted file mode 100644 index 7f85743fec..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldClearXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_dark.png deleted file mode 100644 index 9632ce05ad..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_light.png deleted file mode 100644 index d5e53179ac..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldFocused_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png deleted file mode 100644 index 541add7bad..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png deleted file mode 100644 index f489878cc1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png deleted file mode 100644 index 1e526bab50..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png deleted file mode 100644 index 3ef9553336..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_dark.png deleted file mode 100644 index 6537fd7cf5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_light.png deleted file mode 100644 index 43ef923517..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLDisabled_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_dark.png deleted file mode 100644 index 7d0001e0e8..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_light.png deleted file mode 100644 index 8a27f56133..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLInputText_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png deleted file mode 100644 index 5970dcc20b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png deleted file mode 100644 index 6bacc9c8dd..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png deleted file mode 100644 index 012e27985d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png deleted file mode 100644 index d49f2c4c8b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png deleted file mode 100644 index b95e9a6f84..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png deleted file mode 100644 index 8a2522e392..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png deleted file mode 100644 index 49d62c5311..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png deleted file mode 100644 index 38188ee039..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png deleted file mode 100644 index 8a3fe644f0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png deleted file mode 100644 index a711b50c51..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png deleted file mode 100644 index e2d3b13f89..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png deleted file mode 100644 index 68583ccd2c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png deleted file mode 100644 index a5b3804c6b..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png deleted file mode 100644 index f4a434395e..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_dark.png deleted file mode 100644 index e6865b3347..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_light.png deleted file mode 100644 index dfe6dca618..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldReadOnly_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png deleted file mode 100644 index 1b416f479d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png deleted file mode 100644 index 4fb7e0b56a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png deleted file mode 100644 index aada476a11..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png deleted file mode 100644 index 36d0fb6cc3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png deleted file mode 100644 index 2d33e6d050..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_light.png deleted file mode 100644 index 8c00d6679c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldTBTANoValue_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png deleted file mode 100644 index 22b7d8c2b1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_light.png deleted file mode 100644 index edba6e43fb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSErrorInner_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png deleted file mode 100644 index c72193bba5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png deleted file mode 100644 index 6b270f264d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_dark.png deleted file mode 100644 index 505abba7df..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_light.png deleted file mode 100644 index 0fd352d257..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextFieldXlDefault_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png deleted file mode 100644 index 940625cfe6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png deleted file mode 100644 index 9fb421a85d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png deleted file mode 100644 index a313f4dba6..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png deleted file mode 100644 index 2afbe857f7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png deleted file mode 100644 index d059134a54..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png deleted file mode 100644 index 0d5bc64a91..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png deleted file mode 100644 index dc905ea4e2..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png deleted file mode 100644 index ab55486c67..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png deleted file mode 100644 index 1ac1d549c3..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png deleted file mode 100644 index df57251bc7..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png deleted file mode 100644 index 85ecfa3304..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png deleted file mode 100644 index 2631e4b976..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png deleted file mode 100644 index c631cb47b5..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png deleted file mode 100644 index 81efdaad63..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png deleted file mode 100644 index c1ff572d76..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png deleted file mode 100644 index db9f8c80a0..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png deleted file mode 100644 index f22db99a07..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png deleted file mode 100644 index e4e0272c52..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png deleted file mode 100644 index 3b34102c07..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png deleted file mode 100644 index f41842428c..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png deleted file mode 100644 index 6e30ff8ecb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png deleted file mode 100644 index 0c876bfad1..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png deleted file mode 100644 index b83f11341d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png deleted file mode 100644 index 9917ce6684..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png deleted file mode 100644 index 71036fc434..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png deleted file mode 100644 index daea2fd152..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png deleted file mode 100644 index 00f61eecb9..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png deleted file mode 100644 index 9fea2a08bb..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png deleted file mode 100644 index ab2e9d96cc..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png deleted file mode 100644 index 5d66533466..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png deleted file mode 100644 index 6a75745187..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png deleted file mode 100644 index 1ea8fece89..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png deleted file mode 100644 index dc57a26b0a..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png deleted file mode 100644 index 83470658db..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png deleted file mode 100644 index b2c11d877d..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png deleted file mode 100644 index 3afa9695c4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png deleted file mode 100644 index f8bb33dd37..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png deleted file mode 100644 index 19e78fc2de..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png deleted file mode 100644 index 678e6fad05..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png deleted file mode 100644 index 172ece49d4..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png deleted file mode 100644 index fc0081d715..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png deleted file mode 100644 index 61dbfda483..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png deleted file mode 100644 index 7623937867..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png b/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png deleted file mode 100644 index 96756b8762..0000000000 Binary files a/tokens/plasma.giga.app.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/src/main/AndroidManifest.xml b/tokens/plasma.giga.app.compose/src/main/AndroidManifest.xml deleted file mode 100644 index 10728cc703..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/AndroidManifest.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEnd.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEnd.kt deleted file mode 100644 index c7f0b8b002..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionClearActionEnd - */ -public object AccordionClearActionEnd diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEndStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEndStyles.kt deleted file mode 100644 index 42e6d27a1e..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionEndStyles.kt +++ /dev/null @@ -1,193 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionClearActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionClearActionEndXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionClearActionEndS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionClearActionEndM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionClearActionEndL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val AccordionClearActionEnd.Xs: WrapperAccordionClearActionEndXs - @Composable - @JvmName("WrapperAccordionClearActionEndXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.Xs.style()) - .dimensions { - itemSpacing(4.0.dp) - } - .wrap(::WrapperAccordionClearActionEndXs) - -public val AccordionClearActionEnd.S: WrapperAccordionClearActionEndS - @Composable - @JvmName("WrapperAccordionClearActionEndS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.S.style()) - .dimensions { - itemSpacing(6.0.dp) - } - .wrap(::WrapperAccordionClearActionEndS) - -public val AccordionClearActionEnd.M: WrapperAccordionClearActionEndM - @Composable - @JvmName("WrapperAccordionClearActionEndM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.M.style()) - .dimensions { - itemSpacing(8.0.dp) - } - .wrap(::WrapperAccordionClearActionEndM) - -public val AccordionClearActionEnd.L: WrapperAccordionClearActionEndL - @Composable - @JvmName("WrapperAccordionClearActionEndL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.L.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionEndL) - -public val AccordionClearActionEnd.H2: WrapperAccordionClearActionEndH2 - @Composable - @JvmName("WrapperAccordionClearActionEndH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H2.style()) - .dimensions { - itemSpacing(16.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH2) - -public val AccordionClearActionEnd.H3: WrapperAccordionClearActionEndH3 - @Composable - @JvmName("WrapperAccordionClearActionEndH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H3.style()) - .dimensions { - itemSpacing(14.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH3) - -public val AccordionClearActionEnd.H4: WrapperAccordionClearActionEndH4 - @Composable - @JvmName("WrapperAccordionClearActionEndH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H4.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH4) - -public val AccordionClearActionEnd.H5: WrapperAccordionClearActionEndH5 - @Composable - @JvmName("WrapperAccordionClearActionEndH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H5.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStart.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStart.kt deleted file mode 100644 index 573590d737..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionClearActionStart - */ -public object AccordionClearActionStart diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStartStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStartStyles.kt deleted file mode 100644 index 30ee0717b3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionClearActionStartStyles.kt +++ /dev/null @@ -1,193 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionClearActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionClearActionStartXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionClearActionStartS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionClearActionStartM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionClearActionStartL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val AccordionClearActionStart.Xs: WrapperAccordionClearActionStartXs - @Composable - @JvmName("WrapperAccordionClearActionStartXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.Xs.style()) - .dimensions { - itemSpacing(4.0.dp) - } - .wrap(::WrapperAccordionClearActionStartXs) - -public val AccordionClearActionStart.S: WrapperAccordionClearActionStartS - @Composable - @JvmName("WrapperAccordionClearActionStartS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.S.style()) - .dimensions { - itemSpacing(6.0.dp) - } - .wrap(::WrapperAccordionClearActionStartS) - -public val AccordionClearActionStart.M: WrapperAccordionClearActionStartM - @Composable - @JvmName("WrapperAccordionClearActionStartM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.M.style()) - .dimensions { - itemSpacing(8.0.dp) - } - .wrap(::WrapperAccordionClearActionStartM) - -public val AccordionClearActionStart.L: WrapperAccordionClearActionStartL - @Composable - @JvmName("WrapperAccordionClearActionStartL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.L.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionStartL) - -public val AccordionClearActionStart.H2: WrapperAccordionClearActionStartH2 - @Composable - @JvmName("WrapperAccordionClearActionStartH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H2.style()) - .dimensions { - itemSpacing(16.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH2) - -public val AccordionClearActionStart.H3: WrapperAccordionClearActionStartH3 - @Composable - @JvmName("WrapperAccordionClearActionStartH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H3.style()) - .dimensions { - itemSpacing(14.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH3) - -public val AccordionClearActionStart.H4: WrapperAccordionClearActionStartH4 - @Composable - @JvmName("WrapperAccordionClearActionStartH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H4.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH4) - -public val AccordionClearActionStart.H5: WrapperAccordionClearActionStartH5 - @Composable - @JvmName("WrapperAccordionClearActionStartH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H5.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEnd.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEnd.kt deleted file mode 100644 index 6d3e363c3a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionSolidActionEnd - */ -public object AccordionSolidActionEnd diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEndStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEndStyles.kt deleted file mode 100644 index 73e414cd14..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionEndStyles.kt +++ /dev/null @@ -1,169 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionSolidActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionSolidActionEndXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionSolidActionEndS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionSolidActionEndM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionSolidActionEndL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dimensions { - itemSpacing(2.0.dp) - } - -public val AccordionSolidActionEnd.Xs: WrapperAccordionSolidActionEndXs - @Composable - @JvmName("WrapperAccordionSolidActionEndXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.Xs.style()) - .wrap(::WrapperAccordionSolidActionEndXs) - -public val AccordionSolidActionEnd.S: WrapperAccordionSolidActionEndS - @Composable - @JvmName("WrapperAccordionSolidActionEndS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.S.style()) - .wrap(::WrapperAccordionSolidActionEndS) - -public val AccordionSolidActionEnd.M: WrapperAccordionSolidActionEndM - @Composable - @JvmName("WrapperAccordionSolidActionEndM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.M.style()) - .wrap(::WrapperAccordionSolidActionEndM) - -public val AccordionSolidActionEnd.L: WrapperAccordionSolidActionEndL - @Composable - @JvmName("WrapperAccordionSolidActionEndL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.L.style()) - .wrap(::WrapperAccordionSolidActionEndL) - -public val AccordionSolidActionEnd.H2: WrapperAccordionSolidActionEndH2 - @Composable - @JvmName("WrapperAccordionSolidActionEndH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H2.style()) - .wrap(::WrapperAccordionSolidActionEndH2) - -public val AccordionSolidActionEnd.H3: WrapperAccordionSolidActionEndH3 - @Composable - @JvmName("WrapperAccordionSolidActionEndH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H3.style()) - .wrap(::WrapperAccordionSolidActionEndH3) - -public val AccordionSolidActionEnd.H4: WrapperAccordionSolidActionEndH4 - @Composable - @JvmName("WrapperAccordionSolidActionEndH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H4.style()) - .wrap(::WrapperAccordionSolidActionEndH4) - -public val AccordionSolidActionEnd.H5: WrapperAccordionSolidActionEndH5 - @Composable - @JvmName("WrapperAccordionSolidActionEndH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H5.style()) - .wrap(::WrapperAccordionSolidActionEndH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStart.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStart.kt deleted file mode 100644 index cfbdd4f88d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionSolidActionStart - */ -public object AccordionSolidActionStart diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStartStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStartStyles.kt deleted file mode 100644 index 9fd660ee8a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordion/AccordionSolidActionStartStyles.kt +++ /dev/null @@ -1,169 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.plasma.giga.app.styles.accordionitem.H2 -import com.sdds.plasma.giga.app.styles.accordionitem.H3 -import com.sdds.plasma.giga.app.styles.accordionitem.H4 -import com.sdds.plasma.giga.app.styles.accordionitem.H5 -import com.sdds.plasma.giga.app.styles.accordionitem.L -import com.sdds.plasma.giga.app.styles.accordionitem.M -import com.sdds.plasma.giga.app.styles.accordionitem.S -import com.sdds.plasma.giga.app.styles.accordionitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionSolidActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionSolidActionStartXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionSolidActionStartS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionSolidActionStartM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionSolidActionStartL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dimensions { - itemSpacing(2.0.dp) - } - -public val AccordionSolidActionStart.Xs: WrapperAccordionSolidActionStartXs - @Composable - @JvmName("WrapperAccordionSolidActionStartXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.Xs.style()) - .wrap(::WrapperAccordionSolidActionStartXs) - -public val AccordionSolidActionStart.S: WrapperAccordionSolidActionStartS - @Composable - @JvmName("WrapperAccordionSolidActionStartS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.S.style()) - .wrap(::WrapperAccordionSolidActionStartS) - -public val AccordionSolidActionStart.M: WrapperAccordionSolidActionStartM - @Composable - @JvmName("WrapperAccordionSolidActionStartM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.M.style()) - .wrap(::WrapperAccordionSolidActionStartM) - -public val AccordionSolidActionStart.L: WrapperAccordionSolidActionStartL - @Composable - @JvmName("WrapperAccordionSolidActionStartL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.L.style()) - .wrap(::WrapperAccordionSolidActionStartL) - -public val AccordionSolidActionStart.H2: WrapperAccordionSolidActionStartH2 - @Composable - @JvmName("WrapperAccordionSolidActionStartH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H2.style()) - .wrap(::WrapperAccordionSolidActionStartH2) - -public val AccordionSolidActionStart.H3: WrapperAccordionSolidActionStartH3 - @Composable - @JvmName("WrapperAccordionSolidActionStartH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H3.style()) - .wrap(::WrapperAccordionSolidActionStartH3) - -public val AccordionSolidActionStart.H4: WrapperAccordionSolidActionStartH4 - @Composable - @JvmName("WrapperAccordionSolidActionStartH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H4.style()) - .wrap(::WrapperAccordionSolidActionStartH4) - -public val AccordionSolidActionStart.H5: WrapperAccordionSolidActionStartH5 - @Composable - @JvmName("WrapperAccordionSolidActionStartH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H5.style()) - .wrap(::WrapperAccordionSolidActionStartH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEnd.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEnd.kt deleted file mode 100644 index 4406241190..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemClearActionEnd - */ -public object AccordionItemClearActionEnd diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEndStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEndStyles.kt deleted file mode 100644 index 7d5f62dbd2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionEndStyles.kt +++ /dev/null @@ -1,244 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemClearActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .iconPlacement(AccordionIconPlacement.End) - .iconRotation(90.0f) - -public val AccordionItemClearActionEnd.Xs: WrapperAccordionItemClearActionEndXs - @Composable - @JvmName("WrapperAccordionItemClearActionEndXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndXs) - -public val AccordionItemClearActionEnd.S: WrapperAccordionItemClearActionEndS - @Composable - @JvmName("WrapperAccordionItemClearActionEndS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodySBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndS) - -public val AccordionItemClearActionEnd.M: WrapperAccordionItemClearActionEndM - @Composable - @JvmName("WrapperAccordionItemClearActionEndM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndM) - -public val AccordionItemClearActionEnd.L: WrapperAccordionItemClearActionEndL - @Composable - @JvmName("WrapperAccordionItemClearActionEndL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(16.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndL) - -public val AccordionItemClearActionEnd.H2: WrapperAccordionItemClearActionEndH2 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemClearActionEndH2) - -public val AccordionItemClearActionEnd.H3: WrapperAccordionItemClearActionEndH3 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH3Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemClearActionEndH3) - -public val AccordionItemClearActionEnd.H4: WrapperAccordionItemClearActionEndH4 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH4Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndH4) - -public val AccordionItemClearActionEnd.H5: WrapperAccordionItemClearActionEndH5 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH5Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStart.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStart.kt deleted file mode 100644 index c24fc48d2c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemClearActionStart - */ -public object AccordionItemClearActionStart diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStartStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStartStyles.kt deleted file mode 100644 index 2f46dff8bc..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemClearActionStartStyles.kt +++ /dev/null @@ -1,247 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemClearActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - iconPadding(4.0.dp) - } - .iconPlacement(AccordionIconPlacement.Start) - .iconRotation(180.0f) - -public val AccordionItemClearActionStart.Xs: WrapperAccordionItemClearActionStartXs - @Composable - @JvmName("WrapperAccordionItemClearActionStartXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartXs) - -public val AccordionItemClearActionStart.S: WrapperAccordionItemClearActionStartS - @Composable - @JvmName("WrapperAccordionItemClearActionStartS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodySBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartS) - -public val AccordionItemClearActionStart.M: WrapperAccordionItemClearActionStartM - @Composable - @JvmName("WrapperAccordionItemClearActionStartM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartM) - -public val AccordionItemClearActionStart.L: WrapperAccordionItemClearActionStartL - @Composable - @JvmName("WrapperAccordionItemClearActionStartL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(16.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartL) - -public val AccordionItemClearActionStart.H2: WrapperAccordionItemClearActionStartH2 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(32.0.dp) - contentPaddingBottom(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemClearActionStartH2) - -public val AccordionItemClearActionStart.H3: WrapperAccordionItemClearActionStartH3 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH3Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(30.0.dp) - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemClearActionStartH3) - -public val AccordionItemClearActionStart.H4: WrapperAccordionItemClearActionStartH4 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH4Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartH4) - -public val AccordionItemClearActionStart.H5: WrapperAccordionItemClearActionStartH5 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(PlasmaGigaAppTheme.typography.headerH5Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEnd.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEnd.kt deleted file mode 100644 index 40cb32cefc..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemSolidActionEnd - */ -public object AccordionItemSolidActionEnd diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEndStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEndStyles.kt deleted file mode 100644 index 1b4fdc73c3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionEndStyles.kt +++ /dev/null @@ -1,288 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemSolidActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .iconPlacement(AccordionIconPlacement.End) - .iconRotation(90.0f) - -public val AccordionItemSolidActionEnd.Xs: WrapperAccordionItemSolidActionEndXs - @Composable - @JvmName("WrapperAccordionItemSolidActionEndXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(10.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndXs) - -public val AccordionItemSolidActionEnd.S: WrapperAccordionItemSolidActionEndS - @Composable - @JvmName("WrapperAccordionItemSolidActionEndS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodySBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(14.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndS) - -public val AccordionItemSolidActionEnd.M: WrapperAccordionItemSolidActionEndM - @Composable - @JvmName("WrapperAccordionItemSolidActionEndM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(18.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(16.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndM) - -public val AccordionItemSolidActionEnd.L: WrapperAccordionItemSolidActionEndL - @Composable - @JvmName("WrapperAccordionItemSolidActionEndL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndL) - -public val AccordionItemSolidActionEnd.H2: WrapperAccordionItemSolidActionEndH2 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(20.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemSolidActionEndH2) - -public val AccordionItemSolidActionEnd.H3: WrapperAccordionItemSolidActionEndH3 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.headerH3Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(18.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemSolidActionEndH3) - -public val AccordionItemSolidActionEnd.H4: WrapperAccordionItemSolidActionEndH4 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.headerH4Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(14.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(14.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndH4) - -public val AccordionItemSolidActionEnd.H5: WrapperAccordionItemSolidActionEndH5 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.headerH5Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStart.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStart.kt deleted file mode 100644 index d34c8dffbc..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemSolidActionStart - */ -public object AccordionItemSolidActionStart diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStartStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStartStyles.kt deleted file mode 100644 index 5fa18da8e9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/accordionitem/AccordionItemSolidActionStartStyles.kt +++ /dev/null @@ -1,283 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemSolidActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - iconPadding(4.0.dp) - } - .iconPlacement(AccordionIconPlacement.Start) - .iconRotation(180.0f) - -public val AccordionItemSolidActionStart.Xs: WrapperAccordionItemSolidActionStartXs - @Composable - @JvmName("WrapperAccordionItemSolidActionStartXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(32.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(10.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartXs) - -public val AccordionItemSolidActionStart.S: WrapperAccordionItemSolidActionStartS - @Composable - @JvmName("WrapperAccordionItemSolidActionStartS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodySBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(36.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartS) - -public val AccordionItemSolidActionStart.M: WrapperAccordionItemSolidActionStartM - @Composable - @JvmName("WrapperAccordionItemSolidActionStartM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(40.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(16.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartM) - -public val AccordionItemSolidActionStart.L: WrapperAccordionItemSolidActionStartL - @Composable - @JvmName("WrapperAccordionItemSolidActionStartL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(42.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartL) - -public val AccordionItemSolidActionStart.H2: WrapperAccordionItemSolidActionStartH2 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(52.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(20.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemSolidActionStartH2) - -public val AccordionItemSolidActionStart.H3: WrapperAccordionItemSolidActionStartH3 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.headerH3Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(48.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemSolidActionStartH3) - -public val AccordionItemSolidActionStart.H4: WrapperAccordionItemSolidActionStartH4 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.headerH4Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(36.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(14.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartH4) - -public val AccordionItemSolidActionStart.H5: WrapperAccordionItemSolidActionStartH5 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.headerH5Bold) - .contentTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartH5) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormal.kt deleted file mode 100644 index 0008a7a9c1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.autocomplete - -/** - * Вспомогательный объект для описания API и стиля компонента AutocompleteNormal - */ -public object AutocompleteNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormalStyles.kt deleted file mode 100644 index 6ca8f39adb..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteNormalStyles.kt +++ /dev/null @@ -1,126 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.autocomplete - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.AutocompleteStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.plasma.giga.app.styles.dropdownmenu.L -import com.sdds.plasma.giga.app.styles.dropdownmenu.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.S -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xs -import com.sdds.plasma.giga.app.styles.textfield.Default -import com.sdds.plasma.giga.app.styles.textfield.L -import com.sdds.plasma.giga.app.styles.textfield.M -import com.sdds.plasma.giga.app.styles.textfield.S -import com.sdds.plasma.giga.app.styles.textfield.TextField -import com.sdds.plasma.giga.app.styles.textfield.Xl -import com.sdds.plasma.giga.app.styles.textfield.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAutocompleteNormal : - BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperAutocompleteNormalXl( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAutocompleteNormalL( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAutocompleteNormalM( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAutocompleteNormalS( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAutocompleteNormalXs( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteNormal - -private val AutocompleteStyleBuilder.invariantProps: AutocompleteStyleBuilder - @Composable - get() = this - -public val AutocompleteNormal.Xl: WrapperAutocompleteNormalXl - @Composable - @JvmName("WrapperAutocompleteNormalXl") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.Xl.Default.style()) - .dropdownStyle(DropdownMenuNormal.Xl.style()) - .wrap(::WrapperAutocompleteNormalXl) - -public val AutocompleteNormal.L: WrapperAutocompleteNormalL - @Composable - @JvmName("WrapperAutocompleteNormalL") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.L.Default.style()) - .dropdownStyle(DropdownMenuNormal.L.style()) - .wrap(::WrapperAutocompleteNormalL) - -public val AutocompleteNormal.M: WrapperAutocompleteNormalM - @Composable - @JvmName("WrapperAutocompleteNormalM") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.M.Default.style()) - .dropdownStyle(DropdownMenuNormal.M.style()) - .wrap(::WrapperAutocompleteNormalM) - -public val AutocompleteNormal.S: WrapperAutocompleteNormalS - @Composable - @JvmName("WrapperAutocompleteNormalS") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.S.Default.style()) - .dropdownStyle(DropdownMenuNormal.S.style()) - .wrap(::WrapperAutocompleteNormalS) - -public val AutocompleteNormal.Xs: WrapperAutocompleteNormalXs - @Composable - @JvmName("WrapperAutocompleteNormalXs") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.Xs.Default.style()) - .dropdownStyle(DropdownMenuNormal.Xs.style()) - .wrap(::WrapperAutocompleteNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTight.kt deleted file mode 100644 index f0ad6560d2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.autocomplete - -/** - * Вспомогательный объект для описания API и стиля компонента AutocompleteTight - */ -public object AutocompleteTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTightStyles.kt deleted file mode 100644 index 0faf23973e..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/autocomplete/AutocompleteTightStyles.kt +++ /dev/null @@ -1,126 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.autocomplete - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.AutocompleteStyle -import com.sdds.compose.uikit.AutocompleteStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuTight -import com.sdds.plasma.giga.app.styles.dropdownmenu.L -import com.sdds.plasma.giga.app.styles.dropdownmenu.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.S -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xs -import com.sdds.plasma.giga.app.styles.textfield.Default -import com.sdds.plasma.giga.app.styles.textfield.L -import com.sdds.plasma.giga.app.styles.textfield.M -import com.sdds.plasma.giga.app.styles.textfield.S -import com.sdds.plasma.giga.app.styles.textfield.TextField -import com.sdds.plasma.giga.app.styles.textfield.Xl -import com.sdds.plasma.giga.app.styles.textfield.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAutocompleteTight : - BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperAutocompleteTightXl( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAutocompleteTightL( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAutocompleteTightM( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAutocompleteTightS( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAutocompleteTightXs( - public override val builder: AutocompleteStyleBuilder, -) : WrapperAutocompleteTight - -private val AutocompleteStyleBuilder.invariantProps: AutocompleteStyleBuilder - @Composable - get() = this - -public val AutocompleteTight.Xl: WrapperAutocompleteTightXl - @Composable - @JvmName("WrapperAutocompleteTightXl") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.Xl.Default.style()) - .dropdownStyle(DropdownMenuTight.Xl.style()) - .wrap(::WrapperAutocompleteTightXl) - -public val AutocompleteTight.L: WrapperAutocompleteTightL - @Composable - @JvmName("WrapperAutocompleteTightL") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.L.Default.style()) - .dropdownStyle(DropdownMenuTight.L.style()) - .wrap(::WrapperAutocompleteTightL) - -public val AutocompleteTight.M: WrapperAutocompleteTightM - @Composable - @JvmName("WrapperAutocompleteTightM") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.M.Default.style()) - .dropdownStyle(DropdownMenuTight.M.style()) - .wrap(::WrapperAutocompleteTightM) - -public val AutocompleteTight.S: WrapperAutocompleteTightS - @Composable - @JvmName("WrapperAutocompleteTightS") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.S.Default.style()) - .dropdownStyle(DropdownMenuTight.S.style()) - .wrap(::WrapperAutocompleteTightS) - -public val AutocompleteTight.Xs: WrapperAutocompleteTightXs - @Composable - @JvmName("WrapperAutocompleteTightXs") - get() = AutocompleteStyle.builder(this) - .invariantProps - .textFieldStyle(TextField.Xs.Default.style()) - .dropdownStyle(DropdownMenuTight.Xs.style()) - .wrap(::WrapperAutocompleteTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/Avatar.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/Avatar.kt deleted file mode 100644 index 4633f31fb0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/Avatar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.avatar - -/** - * Вспомогательный объект для описания API и стиля компонента Avatar - */ -public object Avatar diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/AvatarStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/AvatarStyles.kt deleted file mode 100644 index c3d186b184..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatar/AvatarStyles.kt +++ /dev/null @@ -1,207 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.avatar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AvatarStatus -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.AvatarStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.modify -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.badge.Accent -import com.sdds.plasma.giga.app.styles.badge.BadgeSolid -import com.sdds.plasma.giga.app.styles.badge.L -import com.sdds.plasma.giga.app.styles.badge.Pilled -import com.sdds.plasma.giga.app.styles.badge.S -import com.sdds.plasma.giga.app.styles.badge.Xs -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.L -import com.sdds.plasma.giga.app.styles.counter.Negative -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.counter.Xxs -import com.sdds.plasma.giga.app.styles.indicator.Indicator -import com.sdds.plasma.giga.app.styles.indicator.L -import com.sdds.plasma.giga.app.styles.indicator.M -import com.sdds.plasma.giga.app.styles.indicator.S -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAvatar : BuilderWrapper - -/** - * Обертка для вариации Xxl - */ -@JvmInline -public value class WrapperAvatarXxl( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAvatarL( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAvatarM( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAvatarS( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -private val AvatarStyleBuilder.invariantProps: AvatarStyleBuilder - @Composable - get() = this - .shape(CircleShape) - .colors { - backgroundColor( - PlasmaGigaAppTheme.gradients.surfaceDefaultAccentGradient.asLayered(0.2f).asStatefulValue(), - ) - textColor( - PlasmaGigaAppTheme.gradients.textDefaultAccentGradient.asLayered().asStatefulValue(), - ) - } - -public val Avatar.Xxl: WrapperAvatarXxl - @Composable - @JvmName("WrapperAvatarXxl") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(88.0.dp) - height(88.0.dp) - statusOffsetX(1.0.dp) - statusOffsetY(7.0.dp) - } - .textStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .badgeStyle(BadgeSolid.L.Pilled.Accent.style()) - .counterStyle(Counter.L.Negative.style()) - .statusStyle( - Indicator.L.modify { - color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarXxl) - -public val Avatar.L: WrapperAvatarL - @Composable - @JvmName("WrapperAvatarL") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(48.0.dp) - height(48.0.dp) - statusOffsetX(1.0.dp) - statusOffsetY(3.0.dp) - } - .textStyle(PlasmaGigaAppTheme.typography.headerH4Bold) - .badgeStyle(BadgeSolid.S.Pilled.Accent.style()) - .counterStyle(Counter.S.Negative.style()) - .statusStyle( - Indicator.M.modify { - color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarL) - -public val Avatar.M: WrapperAvatarM - @Composable - @JvmName("WrapperAvatarM") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(36.0.dp) - height(36.0.dp) - statusOffsetX(0.0.dp) - statusOffsetY(2.0.dp) - } - .textStyle(PlasmaGigaAppTheme.typography.bodySBold) - .badgeStyle(BadgeSolid.Xs.Pilled.Accent.style()) - .counterStyle(Counter.Xs.Negative.style()) - .statusStyle( - Indicator.M.modify { - color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarM) - -public val Avatar.S: WrapperAvatarS - @Composable - @JvmName("WrapperAvatarS") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(24.0.dp) - height(24.0.dp) - statusOffsetX(0.0.dp) - statusOffsetY(0.0.dp) - } - .textStyle(PlasmaGigaAppTheme.typography.bodyXxsBold) - .counterStyle(Counter.Xxs.Negative.style()) - .statusStyle( - Indicator.S.modify { - color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroup.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroup.kt deleted file mode 100644 index 21142e67a9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.avatargroup - -/** - * Вспомогательный объект для описания API и стиля компонента AvatarGroup - */ -public object AvatarGroup diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroupStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroupStyles.kt deleted file mode 100644 index caf0f20919..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/avatargroup/AvatarGroupStyles.kt +++ /dev/null @@ -1,50 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.avatargroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.AvatarGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.avatar.Avatar -import com.sdds.plasma.giga.app.styles.avatar.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAvatarGroup : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAvatarGroupS( - public override val builder: AvatarGroupStyleBuilder, -) : WrapperAvatarGroup - -private val AvatarGroupStyleBuilder.invariantProps: AvatarGroupStyleBuilder - @Composable - get() = this - -public val AvatarGroup.S: WrapperAvatarGroupS - @Composable - @JvmName("WrapperAvatarGroupS") - get() = AvatarGroupStyle.builder(this) - .invariantProps - .dimensions { - itemSpacing(2.0.dp) - itemOffset(16.0.dp) - } - .avatarStyle(Avatar.S.style()) - .wrap(::WrapperAvatarGroupS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClear.kt deleted file mode 100644 index d0598151c2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeClear - */ -public object BadgeClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClearStyles.kt deleted file mode 100644 index 2b86defc72..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeClearStyles.kt +++ /dev/null @@ -1,328 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeClearView : WrapperBadgeClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeClearTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeClearL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeClearLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeClearM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeClearMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeClearS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeClearSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeClearXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeClearXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -public val WrapperBadgeClearView.Default: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Accent: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Negative: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Positive: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Warning: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Dark: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Light: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val BadgeClear.L: WrapperBadgeClearL - @Composable - @JvmName("WrapperBadgeClearL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeClearL) - -public val WrapperBadgeClearL.Pilled: WrapperBadgeClearLPilled - @Composable - @JvmName("WrapperBadgeClearLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearLPilled) - -public val BadgeClear.M: WrapperBadgeClearM - @Composable - @JvmName("WrapperBadgeClearM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeClearM) - -public val WrapperBadgeClearM.Pilled: WrapperBadgeClearMPilled - @Composable - @JvmName("WrapperBadgeClearMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearMPilled) - -public val BadgeClear.S: WrapperBadgeClearS - @Composable - @JvmName("WrapperBadgeClearS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeClearS) - -public val WrapperBadgeClearS.Pilled: WrapperBadgeClearSPilled - @Composable - @JvmName("WrapperBadgeClearSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearSPilled) - -public val BadgeClear.Xs: WrapperBadgeClearXs - @Composable - @JvmName("WrapperBadgeClearXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeClearXs) - -public val WrapperBadgeClearXs.Pilled: WrapperBadgeClearXsPilled - @Composable - @JvmName("WrapperBadgeClearXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolid.kt deleted file mode 100644 index 1026eda0a2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeSolid - */ -public object BadgeSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolidStyles.kt deleted file mode 100644 index 4b43d7d82f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeSolidStyles.kt +++ /dev/null @@ -1,344 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeSolidView : WrapperBadgeSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeSolidTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeSolidL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeSolidLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeSolidM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeSolidMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeSolidS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeSolidSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeSolidXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeSolidXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -public val WrapperBadgeSolidView.Default: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Accent: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Negative: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Positive: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Warning: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Dark: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Light: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - -public val BadgeSolid.L: WrapperBadgeSolidL - @Composable - @JvmName("WrapperBadgeSolidL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeSolidL) - -public val WrapperBadgeSolidL.Pilled: WrapperBadgeSolidLPilled - @Composable - @JvmName("WrapperBadgeSolidLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidLPilled) - -public val BadgeSolid.M: WrapperBadgeSolidM - @Composable - @JvmName("WrapperBadgeSolidM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeSolidM) - -public val WrapperBadgeSolidM.Pilled: WrapperBadgeSolidMPilled - @Composable - @JvmName("WrapperBadgeSolidMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidMPilled) - -public val BadgeSolid.S: WrapperBadgeSolidS - @Composable - @JvmName("WrapperBadgeSolidS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeSolidS) - -public val WrapperBadgeSolidS.Pilled: WrapperBadgeSolidSPilled - @Composable - @JvmName("WrapperBadgeSolidSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidSPilled) - -public val BadgeSolid.Xs: WrapperBadgeSolidXs - @Composable - @JvmName("WrapperBadgeSolidXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeSolidXs) - -public val WrapperBadgeSolidXs.Pilled: WrapperBadgeSolidXsPilled - @Composable - @JvmName("WrapperBadgeSolidXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparent.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparent.kt deleted file mode 100644 index bd94074bb7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeTransparent - */ -public object BadgeTransparent diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparentStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparentStyles.kt deleted file mode 100644 index 71aab7e045..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/badge/BadgeTransparentStyles.kt +++ /dev/null @@ -1,344 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeTransparent : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeTransparentView : WrapperBadgeTransparent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeTransparentTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparent - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeTransparentL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeTransparentLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeTransparentM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeTransparentMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeTransparentS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeTransparentSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeTransparentXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeTransparentXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -public val WrapperBadgeTransparentView.Default: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Accent: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentAccent.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Negative: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Positive: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPositive.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Warning: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentWarning.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Dark: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeep.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Light: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkTransparentSecondary.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - -public val BadgeTransparent.L: WrapperBadgeTransparentL - @Composable - @JvmName("WrapperBadgeTransparentL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeTransparentL) - -public val WrapperBadgeTransparentL.Pilled: WrapperBadgeTransparentLPilled - @Composable - @JvmName("WrapperBadgeTransparentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentLPilled) - -public val BadgeTransparent.M: WrapperBadgeTransparentM - @Composable - @JvmName("WrapperBadgeTransparentM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeTransparentM) - -public val WrapperBadgeTransparentM.Pilled: WrapperBadgeTransparentMPilled - @Composable - @JvmName("WrapperBadgeTransparentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentMPilled) - -public val BadgeTransparent.S: WrapperBadgeTransparentS - @Composable - @JvmName("WrapperBadgeTransparentS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeTransparentS) - -public val WrapperBadgeTransparentS.Pilled: WrapperBadgeTransparentSPilled - @Composable - @JvmName("WrapperBadgeTransparentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentSPilled) - -public val BadgeTransparent.Xs: WrapperBadgeTransparentXs - @Composable - @JvmName("WrapperBadgeTransparentXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeTransparentXs) - -public val WrapperBadgeTransparentXs.Pilled: WrapperBadgeTransparentXsPilled - @Composable - @JvmName("WrapperBadgeTransparentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButton.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButton.kt deleted file mode 100644 index 68bc841b8f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.basicbutton - -/** - * Вспомогательный объект для описания API и стиля компонента BasicButton - */ -public object BasicButton diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButtonStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButtonStyles.kt deleted file mode 100644 index 0a5c5b2a48..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/basicbutton/BasicButtonStyles.kt +++ /dev/null @@ -1,698 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.basicbutton - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BasicButtonStyleBuilder -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.basicButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBasicButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBasicButtonView : WrapperBasicButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBasicButtonTerminate( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButton - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperBasicButtonXl( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBasicButtonL( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBasicButtonM( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBasicButtonS( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBasicButtonXs( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperBasicButtonXxs( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -public val WrapperBasicButtonView.Default: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Secondary: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Accent: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Positive: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Negative: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Warning: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Clear: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .loadingAlpha(0.06f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Dark: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeep.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeepActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeepHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Black: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.White: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textOnLightSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -private val BasicButtonStyleBuilder.invariantProps: BasicButtonStyleBuilder - @Composable - get() = this - .shape(CircleShape) - .disableAlpha(0.4f) - -public val BasicButton.Xl: WrapperBasicButtonXl - @Composable - @JvmName("WrapperBasicButtonXl") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - height(64.0.dp) - paddingStart(28.0.dp) - paddingEnd(28.0.dp) - minWidth(106.0.dp) - iconSize(24.0.dp) - spinnerSize(24.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonXl) - -public val BasicButton.L: WrapperBasicButtonL - @Composable - @JvmName("WrapperBasicButtonL") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - height(56.0.dp) - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - minWidth(98.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonL) - -public val BasicButton.M: WrapperBasicButtonM - @Composable - @JvmName("WrapperBasicButtonM") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .dimensions { - height(48.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - minWidth(84.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(6.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonM) - -public val BasicButton.S: WrapperBasicButtonS - @Composable - @JvmName("WrapperBasicButtonS") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodySBold) - .dimensions { - height(40.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - minWidth(71.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(4.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonS) - -public val BasicButton.Xs: WrapperBasicButtonXs - @Composable - @JvmName("WrapperBasicButtonXs") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .dimensions { - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - minWidth(57.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - valueMargin(2.0.dp) - } - .wrap(::WrapperBasicButtonXs) - -public val BasicButton.Xxs: WrapperBasicButtonXxs - @Composable - @JvmName("WrapperBasicButtonXxs") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .dimensions { - height(24.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - minWidth(53.0.dp) - iconSize(12.0.dp) - spinnerSize(12.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - valueMargin(2.0.dp) - } - .wrap(::WrapperBasicButtonXxs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheet.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheet.kt deleted file mode 100644 index 467a89c442..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheet.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.bottomsheet - -/** - * Вспомогательный объект для описания API и стиля компонента ModalBottomSheet - */ -public object ModalBottomSheet diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheetStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheetStyles.kt deleted file mode 100644 index 055492a17d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/bottomsheet/ModalBottomSheetStyles.kt +++ /dev/null @@ -1,62 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.bottomsheet - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BottomSheetHandlePlacement -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.ModalBottomSheetStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperModalBottomSheet : - BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperModalBottomSheetDefault( - public override val builder: ModalBottomSheetStyleBuilder, -) : WrapperModalBottomSheet - -public val ModalBottomSheet.Default: WrapperModalBottomSheetDefault - @Composable - @JvmName("WrapperModalBottomSheetDefault") - get() = ModalBottomSheetStyle.builder(this) - .shape(PlasmaGigaAppTheme.shapes.roundXl) - .handleShape(CircleShape) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - handleHeight(4.0.dp) - handleWidth(48.0.dp) - handleOffset(6.0.dp) - } - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - handleColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - } - .handlePlacement(BottomSheetHandlePlacement.Auto) - .wrap(::WrapperModalBottomSheetDefault) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroup.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroup.kt deleted file mode 100644 index 9b365ae64a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.buttongroup - -/** - * Вспомогательный объект для описания API и стиля компонента BasicButtonGroup - */ -public object BasicButtonGroup diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroupStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroupStyles.kt deleted file mode 100644 index 75f21e3614..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/BasicButtonGroupStyles.kt +++ /dev/null @@ -1,848 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.buttongroup - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.ButtonGroupStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.basicbutton.S -import com.sdds.plasma.giga.app.styles.basicbutton.Xs -import com.sdds.plasma.giga.app.styles.basicbutton.Xxs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBasicButtonGroup : BuilderWrapper - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperBasicButtonGroupXxs( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsWide - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsDense - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XxsNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXxsNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBasicButtonGroupXs( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWide - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDense - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBasicButtonGroupS( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWide - */ -@JvmInline -public value class WrapperBasicButtonGroupSWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDense - */ -@JvmInline -public value class WrapperBasicButtonGroupSDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBasicButtonGroupM( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWide - */ -@JvmInline -public value class WrapperBasicButtonGroupMWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDense - */ -@JvmInline -public value class WrapperBasicButtonGroupMDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBasicButtonGroupL( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWide - */ -@JvmInline -public value class WrapperBasicButtonGroupLWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDense - */ -@JvmInline -public value class WrapperBasicButtonGroupLDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -private val ButtonGroupStyleBuilder.invariantProps: ButtonGroupStyleBuilder - @Composable - get() = this - -public val BasicButtonGroup.Xxs: WrapperBasicButtonGroupXxs - @Composable - @JvmName("WrapperBasicButtonGroupXxs") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.Xxs.Default.style()) - .wrap(::WrapperBasicButtonGroupXxs) - -public val WrapperBasicButtonGroupXxs.Wide: WrapperBasicButtonGroupXxsWide - @Composable - @JvmName("WrapperBasicButtonGroupXxsWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupXxsWide) - -public val WrapperBasicButtonGroupXxsWide.Default: WrapperBasicButtonGroupXxsWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupXxsWideDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsWideDefault) - -public val WrapperBasicButtonGroupXxsWide.Segmented: WrapperBasicButtonGroupXxsWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXxsWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsWideSegmented) - -public val WrapperBasicButtonGroupXxs.Dense: WrapperBasicButtonGroupXxsDense - @Composable - @JvmName("WrapperBasicButtonGroupXxsDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupXxsDense) - -public val WrapperBasicButtonGroupXxsDense.Default: WrapperBasicButtonGroupXxsDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupXxsDenseDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsDenseDefault) - -public val WrapperBasicButtonGroupXxsDense.Segmented: WrapperBasicButtonGroupXxsDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXxsDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsDenseSegmented) - -public val WrapperBasicButtonGroupXxs.NoGap: WrapperBasicButtonGroupXxsNoGap - @Composable - @JvmName("WrapperBasicButtonGroupXxsNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupXxsNoGap) - -public val WrapperBasicButtonGroupXxsNoGap.Default: WrapperBasicButtonGroupXxsNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupXxsNoGapDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsNoGapDefault) - -public val WrapperBasicButtonGroupXxsNoGap.Segmented: WrapperBasicButtonGroupXxsNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXxsNoGapSegmented") - get() = builder - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXxsNoGapSegmented) - -public val BasicButtonGroup.Xs: WrapperBasicButtonGroupXs - @Composable - @JvmName("WrapperBasicButtonGroupXs") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.Xs.Default.style()) - .wrap(::WrapperBasicButtonGroupXs) - -public val WrapperBasicButtonGroupXs.Wide: WrapperBasicButtonGroupXsWide - @Composable - @JvmName("WrapperBasicButtonGroupXsWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsWide) - -public val WrapperBasicButtonGroupXsWide.Default: WrapperBasicButtonGroupXsWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsWideDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsWideDefault) - -public val WrapperBasicButtonGroupXsWide.Segmented: WrapperBasicButtonGroupXsWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsWideSegmented) - -public val WrapperBasicButtonGroupXs.Dense: WrapperBasicButtonGroupXsDense - @Composable - @JvmName("WrapperBasicButtonGroupXsDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsDense) - -public val WrapperBasicButtonGroupXsDense.Default: WrapperBasicButtonGroupXsDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsDenseDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsDenseDefault) - -public val WrapperBasicButtonGroupXsDense.Segmented: WrapperBasicButtonGroupXsDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsDenseSegmented) - -public val WrapperBasicButtonGroupXs.NoGap: WrapperBasicButtonGroupXsNoGap - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsNoGap) - -public val WrapperBasicButtonGroupXsNoGap.Default: WrapperBasicButtonGroupXsNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGapDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsNoGapDefault) - -public val WrapperBasicButtonGroupXsNoGap.Segmented: WrapperBasicButtonGroupXsNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGapSegmented") - get() = builder - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupXsNoGapSegmented) - -public val BasicButtonGroup.S: WrapperBasicButtonGroupS - @Composable - @JvmName("WrapperBasicButtonGroupS") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.S.Default.style()) - .wrap(::WrapperBasicButtonGroupS) - -public val WrapperBasicButtonGroupS.Wide: WrapperBasicButtonGroupSWide - @Composable - @JvmName("WrapperBasicButtonGroupSWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupSWide) - -public val WrapperBasicButtonGroupSWide.Default: WrapperBasicButtonGroupSWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupSWideDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSWideDefault) - -public val WrapperBasicButtonGroupSWide.Segmented: WrapperBasicButtonGroupSWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSWideSegmented) - -public val WrapperBasicButtonGroupS.Dense: WrapperBasicButtonGroupSDense - @Composable - @JvmName("WrapperBasicButtonGroupSDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupSDense) - -public val WrapperBasicButtonGroupSDense.Default: WrapperBasicButtonGroupSDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupSDenseDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSDenseDefault) - -public val WrapperBasicButtonGroupSDense.Segmented: WrapperBasicButtonGroupSDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSDenseSegmented) - -public val WrapperBasicButtonGroupS.NoGap: WrapperBasicButtonGroupSNoGap - @Composable - @JvmName("WrapperBasicButtonGroupSNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupSNoGap) - -public val WrapperBasicButtonGroupSNoGap.Default: WrapperBasicButtonGroupSNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupSNoGapDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSNoGapDefault) - -public val WrapperBasicButtonGroupSNoGap.Segmented: WrapperBasicButtonGroupSNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSNoGapSegmented") - get() = builder - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupSNoGapSegmented) - -public val BasicButtonGroup.M: WrapperBasicButtonGroupM - @Composable - @JvmName("WrapperBasicButtonGroupM") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.M.Default.style()) - .wrap(::WrapperBasicButtonGroupM) - -public val WrapperBasicButtonGroupM.Wide: WrapperBasicButtonGroupMWide - @Composable - @JvmName("WrapperBasicButtonGroupMWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupMWide) - -public val WrapperBasicButtonGroupMWide.Default: WrapperBasicButtonGroupMWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupMWideDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMWideDefault) - -public val WrapperBasicButtonGroupMWide.Segmented: WrapperBasicButtonGroupMWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMWideSegmented) - -public val WrapperBasicButtonGroupM.Dense: WrapperBasicButtonGroupMDense - @Composable - @JvmName("WrapperBasicButtonGroupMDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupMDense) - -public val WrapperBasicButtonGroupMDense.Default: WrapperBasicButtonGroupMDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupMDenseDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMDenseDefault) - -public val WrapperBasicButtonGroupMDense.Segmented: WrapperBasicButtonGroupMDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMDenseSegmented) - -public val WrapperBasicButtonGroupM.NoGap: WrapperBasicButtonGroupMNoGap - @Composable - @JvmName("WrapperBasicButtonGroupMNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupMNoGap) - -public val WrapperBasicButtonGroupMNoGap.Default: WrapperBasicButtonGroupMNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupMNoGapDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMNoGapDefault) - -public val WrapperBasicButtonGroupMNoGap.Segmented: WrapperBasicButtonGroupMNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMNoGapSegmented") - get() = builder - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupMNoGapSegmented) - -public val BasicButtonGroup.L: WrapperBasicButtonGroupL - @Composable - @JvmName("WrapperBasicButtonGroupL") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.L.Default.style()) - .wrap(::WrapperBasicButtonGroupL) - -public val WrapperBasicButtonGroupL.Wide: WrapperBasicButtonGroupLWide - @Composable - @JvmName("WrapperBasicButtonGroupLWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupLWide) - -public val WrapperBasicButtonGroupLWide.Default: WrapperBasicButtonGroupLWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupLWideDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLWideDefault) - -public val WrapperBasicButtonGroupLWide.Segmented: WrapperBasicButtonGroupLWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLWideSegmented) - -public val WrapperBasicButtonGroupL.Dense: WrapperBasicButtonGroupLDense - @Composable - @JvmName("WrapperBasicButtonGroupLDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupLDense) - -public val WrapperBasicButtonGroupLDense.Default: WrapperBasicButtonGroupLDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupLDenseDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLDenseDefault) - -public val WrapperBasicButtonGroupLDense.Segmented: WrapperBasicButtonGroupLDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXs) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLDenseSegmented) - -public val WrapperBasicButtonGroupL.NoGap: WrapperBasicButtonGroupLNoGap - @Composable - @JvmName("WrapperBasicButtonGroupLNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupLNoGap) - -public val WrapperBasicButtonGroupLNoGap.Default: WrapperBasicButtonGroupLNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupLNoGapDefault") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLNoGapDefault) - -public val WrapperBasicButtonGroupLNoGap.Segmented: WrapperBasicButtonGroupLNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLNoGapSegmented") - get() = builder - .externalShape(CircleShape) - .wrap(::WrapperBasicButtonGroupLNoGapSegmented) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroup.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroup.kt deleted file mode 100644 index 549ed6377a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.buttongroup - -/** - * Вспомогательный объект для описания API и стиля компонента IconButtonGroup - */ -public object IconButtonGroup diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroupStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroupStyles.kt deleted file mode 100644 index d20f62ece1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/buttongroup/IconButtonGroupStyles.kt +++ /dev/null @@ -1,877 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.buttongroup - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.ButtonGroupStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.iconbutton.Default -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.L -import com.sdds.plasma.giga.app.styles.iconbutton.M -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconButtonGroup : BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconButtonGroupXs( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWide - */ -@JvmInline -public value class WrapperIconButtonGroupXsWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDense - */ -@JvmInline -public value class WrapperIconButtonGroupXsDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconButtonGroupS( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWide - */ -@JvmInline -public value class WrapperIconButtonGroupSWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupSWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDense - */ -@JvmInline -public value class WrapperIconButtonGroupSDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupSDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconButtonGroupM( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWide - */ -@JvmInline -public value class WrapperIconButtonGroupMWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupMWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDense - */ -@JvmInline -public value class WrapperIconButtonGroupMDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupMDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconButtonGroupL( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWide - */ -@JvmInline -public value class WrapperIconButtonGroupLWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupLWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDense - */ -@JvmInline -public value class WrapperIconButtonGroupLDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupLDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -private val ButtonGroupStyleBuilder.invariantProps: ButtonGroupStyleBuilder - @Composable - get() = this - -public val IconButtonGroup.Xs: WrapperIconButtonGroupXs - @Composable - @JvmName("WrapperIconButtonGroupXs") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.Xs.Default.style()) - .wrap(::WrapperIconButtonGroupXs) - -public val WrapperIconButtonGroupXs.Wide: WrapperIconButtonGroupXsWide - @Composable - @JvmName("WrapperIconButtonGroupXsWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupXsWide) - -public val WrapperIconButtonGroupXsWide.Default: WrapperIconButtonGroupXsWideDefault - @Composable - @JvmName("WrapperIconButtonGroupXsWideDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundS) - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsWideDefault) - -public val WrapperIconButtonGroupXsWide.Pilled: WrapperIconButtonGroupXsWidePilled - @Composable - @JvmName("WrapperIconButtonGroupXsWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsWidePilled) - -public val WrapperIconButtonGroupXsWide.Segmented: WrapperIconButtonGroupXsWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsWideSegmented) - -public val WrapperIconButtonGroupXs.Dense: WrapperIconButtonGroupXsDense - @Composable - @JvmName("WrapperIconButtonGroupXsDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupXsDense) - -public val WrapperIconButtonGroupXsDense.Default: WrapperIconButtonGroupXsDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupXsDenseDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundS) - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsDenseDefault) - -public val WrapperIconButtonGroupXsDense.Pilled: WrapperIconButtonGroupXsDensePilled - @Composable - @JvmName("WrapperIconButtonGroupXsDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsDensePilled) - -public val WrapperIconButtonGroupXsDense.Segmented: WrapperIconButtonGroupXsDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsDenseSegmented) - -public val WrapperIconButtonGroupXs.NoGap: WrapperIconButtonGroupXsNoGap - @Composable - @JvmName("WrapperIconButtonGroupXsNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupXsNoGap) - -public val WrapperIconButtonGroupXsNoGap.Default: WrapperIconButtonGroupXsNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundS) - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsNoGapDefault) - -public val WrapperIconButtonGroupXsNoGap.Pilled: WrapperIconButtonGroupXsNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsNoGapPilled) - -public val WrapperIconButtonGroupXsNoGap.Segmented: WrapperIconButtonGroupXsNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapSegmented") - get() = builder - .externalShape(PlasmaGigaAppTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsNoGapSegmented) - -public val IconButtonGroup.S: WrapperIconButtonGroupS - @Composable - @JvmName("WrapperIconButtonGroupS") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.S.Default.style()) - .wrap(::WrapperIconButtonGroupS) - -public val WrapperIconButtonGroupS.Wide: WrapperIconButtonGroupSWide - @Composable - @JvmName("WrapperIconButtonGroupSWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupSWide) - -public val WrapperIconButtonGroupSWide.Default: WrapperIconButtonGroupSWideDefault - @Composable - @JvmName("WrapperIconButtonGroupSWideDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSWideDefault) - -public val WrapperIconButtonGroupSWide.Pilled: WrapperIconButtonGroupSWidePilled - @Composable - @JvmName("WrapperIconButtonGroupSWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSWidePilled) - -public val WrapperIconButtonGroupSWide.Segmented: WrapperIconButtonGroupSWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupSWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSWideSegmented) - -public val WrapperIconButtonGroupS.Dense: WrapperIconButtonGroupSDense - @Composable - @JvmName("WrapperIconButtonGroupSDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupSDense) - -public val WrapperIconButtonGroupSDense.Default: WrapperIconButtonGroupSDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupSDenseDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSDenseDefault) - -public val WrapperIconButtonGroupSDense.Pilled: WrapperIconButtonGroupSDensePilled - @Composable - @JvmName("WrapperIconButtonGroupSDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSDensePilled) - -public val WrapperIconButtonGroupSDense.Segmented: WrapperIconButtonGroupSDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupSDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSDenseSegmented) - -public val WrapperIconButtonGroupS.NoGap: WrapperIconButtonGroupSNoGap - @Composable - @JvmName("WrapperIconButtonGroupSNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupSNoGap) - -public val WrapperIconButtonGroupSNoGap.Default: WrapperIconButtonGroupSNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupSNoGapDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSNoGapDefault) - -public val WrapperIconButtonGroupSNoGap.Pilled: WrapperIconButtonGroupSNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupSNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSNoGapPilled) - -public val WrapperIconButtonGroupSNoGap.Segmented: WrapperIconButtonGroupSNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupSNoGapSegmented") - get() = builder - .externalShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSNoGapSegmented) - -public val IconButtonGroup.M: WrapperIconButtonGroupM - @Composable - @JvmName("WrapperIconButtonGroupM") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.M.Default.style()) - .wrap(::WrapperIconButtonGroupM) - -public val WrapperIconButtonGroupM.Wide: WrapperIconButtonGroupMWide - @Composable - @JvmName("WrapperIconButtonGroupMWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupMWide) - -public val WrapperIconButtonGroupMWide.Default: WrapperIconButtonGroupMWideDefault - @Composable - @JvmName("WrapperIconButtonGroupMWideDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM) - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMWideDefault) - -public val WrapperIconButtonGroupMWide.Pilled: WrapperIconButtonGroupMWidePilled - @Composable - @JvmName("WrapperIconButtonGroupMWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMWidePilled) - -public val WrapperIconButtonGroupMWide.Segmented: WrapperIconButtonGroupMWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupMWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMWideSegmented) - -public val WrapperIconButtonGroupM.Dense: WrapperIconButtonGroupMDense - @Composable - @JvmName("WrapperIconButtonGroupMDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupMDense) - -public val WrapperIconButtonGroupMDense.Default: WrapperIconButtonGroupMDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupMDenseDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM) - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMDenseDefault) - -public val WrapperIconButtonGroupMDense.Pilled: WrapperIconButtonGroupMDensePilled - @Composable - @JvmName("WrapperIconButtonGroupMDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMDensePilled) - -public val WrapperIconButtonGroupMDense.Segmented: WrapperIconButtonGroupMDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupMDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXxs) - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMDenseSegmented) - -public val WrapperIconButtonGroupM.NoGap: WrapperIconButtonGroupMNoGap - @Composable - @JvmName("WrapperIconButtonGroupMNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupMNoGap) - -public val WrapperIconButtonGroupMNoGap.Default: WrapperIconButtonGroupMNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupMNoGapDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundM) - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMNoGapDefault) - -public val WrapperIconButtonGroupMNoGap.Pilled: WrapperIconButtonGroupMNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupMNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMNoGapPilled) - -public val WrapperIconButtonGroupMNoGap.Segmented: WrapperIconButtonGroupMNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupMNoGapSegmented") - get() = builder - .externalShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMNoGapSegmented) - -public val IconButtonGroup.L: WrapperIconButtonGroupL - @Composable - @JvmName("WrapperIconButtonGroupL") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.L.Default.style()) - .wrap(::WrapperIconButtonGroupL) - -public val WrapperIconButtonGroupL.Wide: WrapperIconButtonGroupLWide - @Composable - @JvmName("WrapperIconButtonGroupLWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupLWide) - -public val WrapperIconButtonGroupLWide.Default: WrapperIconButtonGroupLWideDefault - @Composable - @JvmName("WrapperIconButtonGroupLWideDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLWideDefault) - -public val WrapperIconButtonGroupLWide.Pilled: WrapperIconButtonGroupLWidePilled - @Composable - @JvmName("WrapperIconButtonGroupLWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLWidePilled) - -public val WrapperIconButtonGroupLWide.Segmented: WrapperIconButtonGroupLWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupLWideSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXs) - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLWideSegmented) - -public val WrapperIconButtonGroupL.Dense: WrapperIconButtonGroupLDense - @Composable - @JvmName("WrapperIconButtonGroupLDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupLDense) - -public val WrapperIconButtonGroupLDense.Default: WrapperIconButtonGroupLDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupLDenseDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLDenseDefault) - -public val WrapperIconButtonGroupLDense.Pilled: WrapperIconButtonGroupLDensePilled - @Composable - @JvmName("WrapperIconButtonGroupLDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLDensePilled) - -public val WrapperIconButtonGroupLDense.Segmented: WrapperIconButtonGroupLDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupLDenseSegmented") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundXs) - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLDenseSegmented) - -public val WrapperIconButtonGroupL.NoGap: WrapperIconButtonGroupLNoGap - @Composable - @JvmName("WrapperIconButtonGroupLNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupLNoGap) - -public val WrapperIconButtonGroupLNoGap.Default: WrapperIconButtonGroupLNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupLNoGapDefault") - get() = builder - .internalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLNoGapDefault) - -public val WrapperIconButtonGroupLNoGap.Pilled: WrapperIconButtonGroupLNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupLNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLNoGapPilled) - -public val WrapperIconButtonGroupLNoGap.Segmented: WrapperIconButtonGroupLNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupLNoGapSegmented") - get() = builder - .externalShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLNoGapSegmented) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClear.kt deleted file mode 100644 index 3b714a5d16..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.card - -/** - * Вспомогательный объект для описания API и стиля компонента CardClear - */ -public object CardClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClearStyles.kt deleted file mode 100644 index 42ee237569..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardClearStyles.kt +++ /dev/null @@ -1,104 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.card - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.CardStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCardClear : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCardClearL( - public override val builder: CardStyleBuilder, -) : WrapperCardClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCardClearM( - public override val builder: CardStyleBuilder, -) : WrapperCardClear - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCardClearS( - public override val builder: CardStyleBuilder, -) : WrapperCardClear - -private val CardStyleBuilder.invariantProps: CardStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val CardClear.L: WrapperCardClearL - @Composable - @JvmName("WrapperCardClearL") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .contentShape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - paddingTop(0.0.dp) - paddingBottom(0.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - } - .wrap(::WrapperCardClearL) - -public val CardClear.M: WrapperCardClearM - @Composable - @JvmName("WrapperCardClearM") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .contentShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - paddingTop(0.0.dp) - paddingBottom(0.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - } - .wrap(::WrapperCardClearM) - -public val CardClear.S: WrapperCardClearS - @Composable - @JvmName("WrapperCardClearS") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .contentShape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - paddingTop(0.0.dp) - paddingBottom(0.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - } - .wrap(::WrapperCardClearS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolid.kt deleted file mode 100644 index 2eea6d3add..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.card - -/** - * Вспомогательный объект для описания API и стиля компонента CardSolid - */ -public object CardSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolidStyles.kt deleted file mode 100644 index d99eec78f1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/card/CardSolidStyles.kt +++ /dev/null @@ -1,104 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.card - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.CardStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCardSolid : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCardSolidL( - public override val builder: CardStyleBuilder, -) : WrapperCardSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCardSolidM( - public override val builder: CardStyleBuilder, -) : WrapperCardSolid - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCardSolidS( - public override val builder: CardStyleBuilder, -) : WrapperCardSolid - -private val CardStyleBuilder.invariantProps: CardStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - -public val CardSolid.L: WrapperCardSolidL - @Composable - @JvmName("WrapperCardSolidL") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .contentShape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - } - .wrap(::WrapperCardSolidL) - -public val CardSolid.M: WrapperCardSolidM - @Composable - @JvmName("WrapperCardSolidM") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .contentShape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - paddingTop(10.0.dp) - paddingBottom(10.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - } - .wrap(::WrapperCardSolidM) - -public val CardSolid.S: WrapperCardSolidS - @Composable - @JvmName("WrapperCardSolidS") - get() = CardStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .contentShape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperCardSolidS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/Cell.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/Cell.kt deleted file mode 100644 index aac25924cb..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/Cell.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.cell - -/** - * Вспомогательный объект для описания API и стиля компонента Cell - */ -public object Cell diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/CellStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/CellStyles.kt deleted file mode 100644 index d9d1bf4665..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/cell/CellStyles.kt +++ /dev/null @@ -1,184 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.cell - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.CellStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.avatar.Avatar -import com.sdds.plasma.giga.app.styles.avatar.L -import com.sdds.plasma.giga.app.styles.avatar.M -import com.sdds.plasma.giga.app.styles.avatar.S -import com.sdds.plasma.giga.app.styles.checkbox.CheckBox -import com.sdds.plasma.giga.app.styles.checkbox.Default -import com.sdds.plasma.giga.app.styles.checkbox.M -import com.sdds.plasma.giga.app.styles.checkbox.S -import com.sdds.plasma.giga.app.styles.iconbutton.Clear -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.L -import com.sdds.plasma.giga.app.styles.iconbutton.M -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.styles.radiobox.M -import com.sdds.plasma.giga.app.styles.radiobox.RadioBox -import com.sdds.plasma.giga.app.styles.radiobox.S -import com.sdds.plasma.giga.app.styles.switcher.L -import com.sdds.plasma.giga.app.styles.switcher.M -import com.sdds.plasma.giga.app.styles.switcher.S -import com.sdds.plasma.giga.app.styles.switcher.Switch -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCell : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCellL( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCellM( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCellS( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperCellXs( - public override val builder: CellStyleBuilder, -) : WrapperCell - -private val CellStyleBuilder.invariantProps: CellStyleBuilder - @Composable - get() = this - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - disclosureTextColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - disclosureIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val Cell.L: WrapperCellL - @Composable - @JvmName("WrapperCellL") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureTextStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingStart(8.0.dp) - contentPaddingEnd(8.0.dp) - } - .avatarStyle(Avatar.L.style()) - .iconButtonStyle(IconButton.L.Clear.style()) - .checkBoxStyle(CheckBox.M.Default.style()) - .radioBoxStyle(RadioBox.M.style()) - .switchStyle(Switch.L.style()) - .wrap(::WrapperCellL) - -public val Cell.M: WrapperCellM - @Composable - @JvmName("WrapperCellM") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureTextStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingStart(8.0.dp) - contentPaddingEnd(8.0.dp) - } - .avatarStyle(Avatar.M.style()) - .iconButtonStyle(IconButton.M.Clear.style()) - .checkBoxStyle(CheckBox.M.Default.style()) - .radioBoxStyle(RadioBox.M.style()) - .switchStyle(Switch.M.style()) - .wrap(::WrapperCellM) - -public val Cell.S: WrapperCellS - @Composable - @JvmName("WrapperCellS") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .titleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingStart(6.0.dp) - contentPaddingEnd(6.0.dp) - } - .avatarStyle(Avatar.S.style()) - .iconButtonStyle(IconButton.S.Clear.style()) - .checkBoxStyle(CheckBox.S.Default.style()) - .radioBoxStyle(RadioBox.S.style()) - .switchStyle(Switch.S.style()) - .wrap(::WrapperCellS) - -public val Cell.Xs: WrapperCellXs - @Composable - @JvmName("WrapperCellXs") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureTextStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingStart(6.0.dp) - contentPaddingEnd(6.0.dp) - } - .avatarStyle(Avatar.S.style()) - .iconButtonStyle(IconButton.Xs.Clear.style()) - .checkBoxStyle(CheckBox.S.Default.style()) - .radioBoxStyle(RadioBox.S.style()) - .switchStyle(Switch.S.style()) - .wrap(::WrapperCellXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBox.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBox.kt deleted file mode 100644 index d52d9c4960..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBox.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.checkbox - -/** - * Вспомогательный объект для описания API и стиля компонента CheckBox - */ -public object CheckBox diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBoxStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBoxStyles.kt deleted file mode 100644 index b5992599d4..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkbox/CheckBoxStyles.kt +++ /dev/null @@ -1,277 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.checkbox - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CheckBoxStates -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.CheckBoxStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCheckBox : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperCheckBoxView : WrapperCheckBox - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperCheckBoxTerminate( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBox - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCheckBoxL( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBoxView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCheckBoxM( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBoxView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCheckBoxS( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBoxView - -public val WrapperCheckBoxView.Default: WrapperCheckBoxTerminate - @Composable - get() = builder - .colorValues { - toggleColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf(CheckBoxStates.Indeterminate) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - toggleIconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - toggleBorderColor( - PlasmaGigaAppTheme.colors.outlineDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - setOf( - InteractiveState.Focused, - CheckBoxStates.Indeterminate, - ) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - setOf(InteractiveState.Focused) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - setOf(CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultClear, - setOf(CheckBoxStates.Indeterminate) - to PlasmaGigaAppTheme.colors.surfaceDefaultClear, - ), - ) - } - .wrap(::WrapperCheckBoxTerminate) - -public val WrapperCheckBoxView.Negative: WrapperCheckBoxTerminate - @Composable - get() = builder - .colorValues { - toggleColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegative, - setOf(CheckBoxStates.Indeterminate) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegative, - ), - ) - toggleIconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - toggleBorderColor( - PlasmaGigaAppTheme.colors.outlineDefaultNegative.asInteractive( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.outlineDefaultNegative, - setOf( - InteractiveState.Focused, - CheckBoxStates.Indeterminate, - ) - to PlasmaGigaAppTheme.colors.outlineDefaultNegative, - setOf(InteractiveState.Focused) - to PlasmaGigaAppTheme.colors.outlineDefaultNegative, - setOf(CheckBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultClear, - setOf(CheckBoxStates.Indeterminate) - to PlasmaGigaAppTheme.colors.surfaceDefaultClear, - ), - ) - } - .wrap(::WrapperCheckBoxTerminate) - -private val CheckBoxStyleBuilder.invariantProps: CheckBoxStyleBuilder - @Composable - get() = this - .colorValues { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensionValues { - toggleBorderOffset( - 0.0.dp.asStatefulValue( - setOf(InteractiveState.Focused) to 3.0.dp, - setOf( - InteractiveState.Focused, - CheckBoxStates.Checked, - ) to 3.0.dp, - setOf( - InteractiveState.Focused, - CheckBoxStates.Indeterminate, - ) to 3.0.dp, - ), - ) - } - .disableAlpha(0.4f) - -public val CheckBox.L: WrapperCheckBoxL - @Composable - @JvmName("WrapperCheckBoxL") - get() = CheckBoxStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 6.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 2.0.dp, - ), - ) - toggleIconWidth( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 9.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 12.0.dp, - ), - ) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) to 1.0.dp, - setOf(InteractiveState.Focused, CheckBoxStates.Indeterminate) to 1.0.dp, - ), - ) - togglePadding(2.0.dp) - textPadding(12.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperCheckBoxL) - -public val CheckBox.M: WrapperCheckBoxM - @Composable - @JvmName("WrapperCheckBoxM") - get() = CheckBoxStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 6.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 2.0.dp, - ), - ) - toggleIconWidth( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 9.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 12.0.dp, - ), - ) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) to 1.0.dp, - setOf(InteractiveState.Focused, CheckBoxStates.Indeterminate) to 1.0.dp, - ), - ) - togglePadding(2.0.dp) - textPadding(12.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperCheckBoxM) - -public val CheckBox.S: WrapperCheckBoxS - @Composable - @JvmName("WrapperCheckBoxS") - get() = CheckBoxStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensionValues { - toggleWidth(16.0.dp) - toggleHeight(16.0.dp) - toggleIconHeight( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 4.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 2.0.dp, - ), - ) - toggleIconWidth( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 6.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 8.0.dp, - ), - ) - toggleBorderWidth( - 1.5.dp.asStatefulValue( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) to 1.0.dp, - setOf(InteractiveState.Focused, CheckBoxStates.Indeterminate) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(8.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperCheckBoxS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroup.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroup.kt deleted file mode 100644 index 003e50f4a2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.checkboxgroup - -/** - * Вспомогательный объект для описания API и стиля компонента CheckBoxGroup - */ -public object CheckBoxGroup diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroupStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroupStyles.kt deleted file mode 100644 index a3aefee586..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/checkboxgroup/CheckBoxGroupStyles.kt +++ /dev/null @@ -1,94 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.checkboxgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.CheckBoxGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.checkbox.CheckBox -import com.sdds.plasma.giga.app.styles.checkbox.Default -import com.sdds.plasma.giga.app.styles.checkbox.L -import com.sdds.plasma.giga.app.styles.checkbox.M -import com.sdds.plasma.giga.app.styles.checkbox.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCheckBoxGroup : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCheckBoxGroupL( - public override val builder: CheckBoxGroupStyleBuilder, -) : WrapperCheckBoxGroup - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCheckBoxGroupM( - public override val builder: CheckBoxGroupStyleBuilder, -) : WrapperCheckBoxGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCheckBoxGroupS( - public override val builder: CheckBoxGroupStyleBuilder, -) : WrapperCheckBoxGroup - -private val CheckBoxGroupStyleBuilder.invariantProps: CheckBoxGroupStyleBuilder - @Composable - get() = this - -public val CheckBoxGroup.L: WrapperCheckBoxGroupL - @Composable - @JvmName("WrapperCheckBoxGroupL") - get() = CheckBoxGroupStyle.builder(this) - .invariantProps - .checkBoxStyle(CheckBox.L.Default.style()) - .dimensions { - itemSpacing(14.0.dp) - itemOffset(36.0.dp) - } - .wrap(::WrapperCheckBoxGroupL) - -public val CheckBoxGroup.M: WrapperCheckBoxGroupM - @Composable - @JvmName("WrapperCheckBoxGroupM") - get() = CheckBoxGroupStyle.builder(this) - .invariantProps - .checkBoxStyle(CheckBox.M.Default.style()) - .dimensions { - itemSpacing(12.0.dp) - itemOffset(36.0.dp) - } - .wrap(::WrapperCheckBoxGroupM) - -public val CheckBoxGroup.S: WrapperCheckBoxGroupS - @Composable - @JvmName("WrapperCheckBoxGroupS") - get() = CheckBoxGroupStyle.builder(this) - .invariantProps - .checkBoxStyle(CheckBox.S.Default.style()) - .dimensions { - itemSpacing(10.0.dp) - itemOffset(24.0.dp) - } - .wrap(::WrapperCheckBoxGroupS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/Chip.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/Chip.kt deleted file mode 100644 index c60ed8403f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/Chip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chip - -/** - * Вспомогательный объект для описания API и стиля компонента Chip - */ -public object Chip diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/ChipStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/ChipStyles.kt deleted file mode 100644 index c4bc8447fa..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/ChipStyles.kt +++ /dev/null @@ -1,447 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chip - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.ChipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChip : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipView : WrapperChip - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipTerminate( - public override val builder: ChipStyleBuilder, -) : WrapperChip - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipL( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipLPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipM( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipMPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipS( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipSPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipXs( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipXsPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -public val WrapperChipView.Default: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Accent: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Negative: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Positive: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Secondary: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Warning: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -private val ChipStyleBuilder.invariantProps: ChipStyleBuilder - @Composable - get() = this - .disableAlpha(0.4f) - -public val Chip.L: WrapperChipL - @Composable - @JvmName("WrapperChipL") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - contentStartPadding(8.0.dp) - contentEndPadding(8.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperChipL) - -public val WrapperChipL.Pilled: WrapperChipLPilled - @Composable - @JvmName("WrapperChipLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipLPilled) - -public val Chip.M: WrapperChipM - @Composable - @JvmName("WrapperChipM") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(6.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperChipM) - -public val WrapperChipM.Pilled: WrapperChipMPilled - @Composable - @JvmName("WrapperChipMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipMPilled) - -public val Chip.S: WrapperChipS - @Composable - @JvmName("WrapperChipS") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - contentStartPadding(4.0.dp) - contentEndPadding(4.0.dp) - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - } - .wrap(::WrapperChipS) - -public val WrapperChipS.Pilled: WrapperChipSPilled - @Composable - @JvmName("WrapperChipSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipSPilled) - -public val Chip.Xs: WrapperChipXs - @Composable - @JvmName("WrapperChipXs") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - contentStartPadding(2.0.dp) - contentEndPadding(2.0.dp) - contentStartSize(12.0.dp) - contentEndSize(12.0.dp) - } - .wrap(::WrapperChipXs) - -public val WrapperChipXs.Pilled: WrapperChipXsPilled - @Composable - @JvmName("WrapperChipXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChip.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChip.kt deleted file mode 100644 index 85a666d2a1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chip - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChip - */ -public object EmbeddedChip diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChipStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChipStyles.kt deleted file mode 100644 index f2dbea578f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chip/EmbeddedChipStyles.kt +++ /dev/null @@ -1,412 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chip - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.ChipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChip : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipView : WrapperEmbeddedChip - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipTerminate( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChip - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperEmbeddedChipXl( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipL( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipM( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipS( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipXs( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -public val WrapperEmbeddedChipView.Default: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Accent: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Negative: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Positive: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Secondary: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Warning: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningHover, - ), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -private val ChipStyleBuilder.invariantProps: ChipStyleBuilder - @Composable - get() = this - .disableAlpha(0.4f) - -public val EmbeddedChip.Xl: WrapperEmbeddedChipXl - @Composable - @JvmName("WrapperEmbeddedChipXl") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - height(52.0.dp) - paddingStart(16.0.dp) - paddingEnd(12.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(6.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperEmbeddedChipXl) - -public val EmbeddedChip.L: WrapperEmbeddedChipL - @Composable - @JvmName("WrapperEmbeddedChipL") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -4.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - height(44.0.dp) - paddingStart(14.0.dp) - paddingEnd(12.0.dp) - contentStartPadding(8.0.dp) - contentEndPadding(8.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperEmbeddedChipL) - -public val EmbeddedChip.M: WrapperEmbeddedChipM - @Composable - @JvmName("WrapperEmbeddedChipM") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -6.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - height(36.0.dp) - paddingStart(12.0.dp) - paddingEnd(10.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(6.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperEmbeddedChipM) - -public val EmbeddedChip.S: WrapperEmbeddedChipS - @Composable - @JvmName("WrapperEmbeddedChipS") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -8.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - paddingStart(10.0.dp) - paddingEnd(8.0.dp) - contentStartPadding(4.0.dp) - contentEndPadding(4.0.dp) - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - } - .wrap(::WrapperEmbeddedChipS) - -public val EmbeddedChip.Xs: WrapperEmbeddedChipXs - @Composable - @JvmName("WrapperEmbeddedChipXs") - get() = ChipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS.adjustBy(all = -6.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - height(20.0.dp) - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - contentStartPadding(2.0.dp) - contentEndPadding(2.0.dp) - contentStartSize(12.0.dp) - contentEndSize(12.0.dp) - } - .wrap(::WrapperEmbeddedChipXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDense.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDense.kt deleted file mode 100644 index 32f14ad234..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDense.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента ChipGroupDense - */ -public object ChipGroupDense diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDenseStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDenseStyles.kt deleted file mode 100644 index 6e723354fc..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupDenseStyles.kt +++ /dev/null @@ -1,569 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Chip -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Pilled -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChipGroupDense : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseLView : WrapperChipGroupDense - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipGroupDenseTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDense - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipGroupDenseL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseLPilledView : WrapperChipGroupDenseLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipGroupDenseLPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseMView : WrapperChipGroupDense - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipGroupDenseM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseMPilledView : WrapperChipGroupDenseMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipGroupDenseMPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseSView : WrapperChipGroupDense - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipGroupDenseS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseSPilledView : WrapperChipGroupDenseSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipGroupDenseSPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseXsView : WrapperChipGroupDense - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipGroupDenseXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseXsPilledView : WrapperChipGroupDenseXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipGroupDenseXsPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseXsPilledView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(2.0.dp) - lineSpacing(2.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperChipGroupDenseLView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewDefault") - get() = builder - .chipStyle(Chip.L.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewAccent") - get() = builder - .chipStyle(Chip.L.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewNegative") - get() = builder - .chipStyle(Chip.L.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewPositive") - get() = builder - .chipStyle(Chip.L.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewSecondary") - get() = builder - .chipStyle(Chip.L.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewWarning") - get() = builder - .chipStyle(Chip.L.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.L: WrapperChipGroupDenseL - @Composable - @JvmName("WrapperChipGroupDenseL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseL) - -public val WrapperChipGroupDenseLPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewDefault") - get() = builder - .chipStyle(Chip.L.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewAccent") - get() = builder - .chipStyle(Chip.L.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewNegative") - get() = builder - .chipStyle(Chip.L.Pilled.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewPositive") - get() = builder - .chipStyle(Chip.L.Pilled.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewSecondary") - get() = builder - .chipStyle(Chip.L.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewWarning") - get() = builder - .chipStyle(Chip.L.Pilled.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseL.Pilled: WrapperChipGroupDenseLPilled - @Composable - @JvmName("WrapperChipGroupDenseLPilled") - get() = builder - .wrap(::WrapperChipGroupDenseLPilled) - -public val WrapperChipGroupDenseMView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewDefault") - get() = builder - .chipStyle(Chip.M.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewAccent") - get() = builder - .chipStyle(Chip.M.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewNegative") - get() = builder - .chipStyle(Chip.M.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewPositive") - get() = builder - .chipStyle(Chip.M.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewSecondary") - get() = builder - .chipStyle(Chip.M.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewWarning") - get() = builder - .chipStyle(Chip.M.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.M: WrapperChipGroupDenseM - @Composable - @JvmName("WrapperChipGroupDenseM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseM) - -public val WrapperChipGroupDenseMPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewDefault") - get() = builder - .chipStyle(Chip.M.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewAccent") - get() = builder - .chipStyle(Chip.M.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewNegative") - get() = builder - .chipStyle(Chip.M.Pilled.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewPositive") - get() = builder - .chipStyle(Chip.M.Pilled.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewSecondary") - get() = builder - .chipStyle(Chip.M.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewWarning") - get() = builder - .chipStyle(Chip.M.Pilled.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseM.Pilled: WrapperChipGroupDenseMPilled - @Composable - @JvmName("WrapperChipGroupDenseMPilled") - get() = builder - .wrap(::WrapperChipGroupDenseMPilled) - -public val WrapperChipGroupDenseSView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewDefault") - get() = builder - .chipStyle(Chip.S.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewAccent") - get() = builder - .chipStyle(Chip.S.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewNegative") - get() = builder - .chipStyle(Chip.S.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewPositive") - get() = builder - .chipStyle(Chip.S.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewSecondary") - get() = builder - .chipStyle(Chip.S.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewWarning") - get() = builder - .chipStyle(Chip.S.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.S: WrapperChipGroupDenseS - @Composable - @JvmName("WrapperChipGroupDenseS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseS) - -public val WrapperChipGroupDenseSPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewDefault") - get() = builder - .chipStyle(Chip.S.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewAccent") - get() = builder - .chipStyle(Chip.S.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewNegative") - get() = builder - .chipStyle(Chip.S.Pilled.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewPositive") - get() = builder - .chipStyle(Chip.S.Pilled.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewSecondary") - get() = builder - .chipStyle(Chip.S.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewWarning") - get() = builder - .chipStyle(Chip.S.Pilled.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseS.Pilled: WrapperChipGroupDenseSPilled - @Composable - @JvmName("WrapperChipGroupDenseSPilled") - get() = builder - .wrap(::WrapperChipGroupDenseSPilled) - -public val WrapperChipGroupDenseXsView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewDefault") - get() = builder - .chipStyle(Chip.Xs.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewAccent") - get() = builder - .chipStyle(Chip.Xs.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewNegative") - get() = builder - .chipStyle(Chip.Xs.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewPositive") - get() = builder - .chipStyle(Chip.Xs.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewWarning") - get() = builder - .chipStyle(Chip.Xs.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.Xs: WrapperChipGroupDenseXs - @Composable - @JvmName("WrapperChipGroupDenseXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseXs) - -public val WrapperChipGroupDenseXsPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewDefault") - get() = builder - .chipStyle(Chip.Xs.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewAccent") - get() = builder - .chipStyle(Chip.Xs.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Negative: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewNegative") - get() = builder - .chipStyle(Chip.Xs.Pilled.Negative.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Positive: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewPositive") - get() = builder - .chipStyle(Chip.Xs.Pilled.Positive.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Warning: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewWarning") - get() = builder - .chipStyle(Chip.Xs.Pilled.Warning.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXs.Pilled: WrapperChipGroupDenseXsPilled - @Composable - @JvmName("WrapperChipGroupDenseXsPilled") - get() = builder - .wrap(::WrapperChipGroupDenseXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWide.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWide.kt deleted file mode 100644 index 4eb4c3aaa0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWide.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента ChipGroupWide - */ -public object ChipGroupWide diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWideStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWideStyles.kt deleted file mode 100644 index c26b16a980..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/ChipGroupWideStyles.kt +++ /dev/null @@ -1,569 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Chip -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Pilled -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChipGroupWide : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideLView : WrapperChipGroupWide - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipGroupWideTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWide - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipGroupWideL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideLPilledView : WrapperChipGroupWideLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipGroupWideLPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideMView : WrapperChipGroupWide - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipGroupWideM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideMPilledView : WrapperChipGroupWideMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipGroupWideMPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideSView : WrapperChipGroupWide - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipGroupWideS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideSPilledView : WrapperChipGroupWideSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipGroupWideSPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideXsView : WrapperChipGroupWide - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipGroupWideXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideXsPilledView : WrapperChipGroupWideXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipGroupWideXsPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideXsPilledView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(8.0.dp) - lineSpacing(8.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperChipGroupWideLView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewDefault") - get() = builder - .chipStyle(Chip.L.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewAccent") - get() = builder - .chipStyle(Chip.L.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewNegative") - get() = builder - .chipStyle(Chip.L.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewPositive") - get() = builder - .chipStyle(Chip.L.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewSecondary") - get() = builder - .chipStyle(Chip.L.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewWarning") - get() = builder - .chipStyle(Chip.L.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.L: WrapperChipGroupWideL - @Composable - @JvmName("WrapperChipGroupWideL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideL) - -public val WrapperChipGroupWideLPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewDefault") - get() = builder - .chipStyle(Chip.L.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewAccent") - get() = builder - .chipStyle(Chip.L.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewNegative") - get() = builder - .chipStyle(Chip.L.Pilled.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewPositive") - get() = builder - .chipStyle(Chip.L.Pilled.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewSecondary") - get() = builder - .chipStyle(Chip.L.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewWarning") - get() = builder - .chipStyle(Chip.L.Pilled.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideL.Pilled: WrapperChipGroupWideLPilled - @Composable - @JvmName("WrapperChipGroupWideLPilled") - get() = builder - .wrap(::WrapperChipGroupWideLPilled) - -public val WrapperChipGroupWideMView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewDefault") - get() = builder - .chipStyle(Chip.M.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewAccent") - get() = builder - .chipStyle(Chip.M.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewNegative") - get() = builder - .chipStyle(Chip.M.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewPositive") - get() = builder - .chipStyle(Chip.M.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewSecondary") - get() = builder - .chipStyle(Chip.M.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewWarning") - get() = builder - .chipStyle(Chip.M.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.M: WrapperChipGroupWideM - @Composable - @JvmName("WrapperChipGroupWideM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideM) - -public val WrapperChipGroupWideMPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewDefault") - get() = builder - .chipStyle(Chip.M.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewAccent") - get() = builder - .chipStyle(Chip.M.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewNegative") - get() = builder - .chipStyle(Chip.M.Pilled.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewPositive") - get() = builder - .chipStyle(Chip.M.Pilled.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewSecondary") - get() = builder - .chipStyle(Chip.M.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewWarning") - get() = builder - .chipStyle(Chip.M.Pilled.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideM.Pilled: WrapperChipGroupWideMPilled - @Composable - @JvmName("WrapperChipGroupWideMPilled") - get() = builder - .wrap(::WrapperChipGroupWideMPilled) - -public val WrapperChipGroupWideSView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewDefault") - get() = builder - .chipStyle(Chip.S.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewAccent") - get() = builder - .chipStyle(Chip.S.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewNegative") - get() = builder - .chipStyle(Chip.S.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewPositive") - get() = builder - .chipStyle(Chip.S.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewSecondary") - get() = builder - .chipStyle(Chip.S.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewWarning") - get() = builder - .chipStyle(Chip.S.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.S: WrapperChipGroupWideS - @Composable - @JvmName("WrapperChipGroupWideS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideS) - -public val WrapperChipGroupWideSPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewDefault") - get() = builder - .chipStyle(Chip.S.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewAccent") - get() = builder - .chipStyle(Chip.S.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewNegative") - get() = builder - .chipStyle(Chip.S.Pilled.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewPositive") - get() = builder - .chipStyle(Chip.S.Pilled.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewSecondary") - get() = builder - .chipStyle(Chip.S.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewWarning") - get() = builder - .chipStyle(Chip.S.Pilled.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideS.Pilled: WrapperChipGroupWideSPilled - @Composable - @JvmName("WrapperChipGroupWideSPilled") - get() = builder - .wrap(::WrapperChipGroupWideSPilled) - -public val WrapperChipGroupWideXsView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewDefault") - get() = builder - .chipStyle(Chip.Xs.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewAccent") - get() = builder - .chipStyle(Chip.Xs.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewNegative") - get() = builder - .chipStyle(Chip.Xs.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewPositive") - get() = builder - .chipStyle(Chip.Xs.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewWarning") - get() = builder - .chipStyle(Chip.Xs.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.Xs: WrapperChipGroupWideXs - @Composable - @JvmName("WrapperChipGroupWideXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideXs) - -public val WrapperChipGroupWideXsPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewDefault") - get() = builder - .chipStyle(Chip.Xs.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewAccent") - get() = builder - .chipStyle(Chip.Xs.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Negative: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewNegative") - get() = builder - .chipStyle(Chip.Xs.Pilled.Negative.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Positive: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewPositive") - get() = builder - .chipStyle(Chip.Xs.Pilled.Positive.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Warning: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewWarning") - get() = builder - .chipStyle(Chip.Xs.Pilled.Warning.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXs.Pilled: WrapperChipGroupWideXsPilled - @Composable - @JvmName("WrapperChipGroupWideXsPilled") - get() = builder - .wrap(::WrapperChipGroupWideXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDense.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDense.kt deleted file mode 100644 index 2af2f25a77..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDense.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChipGroupDense - */ -public object EmbeddedChipGroupDense diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt deleted file mode 100644 index 75e7921583..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt +++ /dev/null @@ -1,379 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.EmbeddedChip -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xl -import com.sdds.plasma.giga.app.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChipGroupDense : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации xl - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseXlView : WrapperEmbeddedChipGroupDense - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseXl( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseXlView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseLView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseLView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseMView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseMView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseSView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseSView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseXsView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseXsView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(2.0.dp) - lineSpacing(2.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperEmbeddedChipGroupDenseXlView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xl.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXlView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xl.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXlView.Negative: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewNegative") - get() = builder - .chipStyle(EmbeddedChip.Xl.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXlView.Positive: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewPositive") - get() = builder - .chipStyle(EmbeddedChip.Xl.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXlView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xl.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXlView.Warning: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXlViewWarning") - get() = builder - .chipStyle(EmbeddedChip.Xl.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.Xl: WrapperEmbeddedChipGroupDenseXl - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXl") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseXl) - -public val WrapperEmbeddedChipGroupDenseLView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewDefault") - get() = builder - .chipStyle(EmbeddedChip.L.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewAccent") - get() = builder - .chipStyle(EmbeddedChip.L.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Negative: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewNegative") - get() = builder - .chipStyle(EmbeddedChip.L.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Positive: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewPositive") - get() = builder - .chipStyle(EmbeddedChip.L.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.L.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Warning: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewWarning") - get() = builder - .chipStyle(EmbeddedChip.L.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.L: WrapperEmbeddedChipGroupDenseL - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseL) - -public val WrapperEmbeddedChipGroupDenseMView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewDefault") - get() = builder - .chipStyle(EmbeddedChip.M.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewAccent") - get() = builder - .chipStyle(EmbeddedChip.M.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Negative: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewNegative") - get() = builder - .chipStyle(EmbeddedChip.M.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Positive: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewPositive") - get() = builder - .chipStyle(EmbeddedChip.M.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.M.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Warning: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewWarning") - get() = builder - .chipStyle(EmbeddedChip.M.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.M: WrapperEmbeddedChipGroupDenseM - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseM) - -public val WrapperEmbeddedChipGroupDenseSView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewDefault") - get() = builder - .chipStyle(EmbeddedChip.S.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewAccent") - get() = builder - .chipStyle(EmbeddedChip.S.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Negative: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewNegative") - get() = builder - .chipStyle(EmbeddedChip.S.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Positive: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewPositive") - get() = builder - .chipStyle(EmbeddedChip.S.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.S.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Warning: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewWarning") - get() = builder - .chipStyle(EmbeddedChip.S.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.S: WrapperEmbeddedChipGroupDenseS - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseS) - -public val WrapperEmbeddedChipGroupDenseXsView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xs.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xs.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Negative: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewNegative") - get() = builder - .chipStyle(EmbeddedChip.Xs.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Positive: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewPositive") - get() = builder - .chipStyle(EmbeddedChip.Xs.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xs.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Warning: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewWarning") - get() = builder - .chipStyle(EmbeddedChip.Xs.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.Xs: WrapperEmbeddedChipGroupDenseXs - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWide.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWide.kt deleted file mode 100644 index 5dfd46249b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWide.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChipGroupWide - */ -public object EmbeddedChipGroupWide diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWideStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWideStyles.kt deleted file mode 100644 index e45c77f3ed..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/chipgroup/EmbeddedChipGroupWideStyles.kt +++ /dev/null @@ -1,379 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.EmbeddedChip -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Negative -import com.sdds.plasma.giga.app.styles.chip.Positive -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Warning -import com.sdds.plasma.giga.app.styles.chip.Xl -import com.sdds.plasma.giga.app.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChipGroupWide : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации xl - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideXlView : WrapperEmbeddedChipGroupWide - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideXl( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideXlView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideLView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideLView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideMView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideMView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideSView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideSView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideXsView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideXsView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(8.0.dp) - lineSpacing(8.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperEmbeddedChipGroupWideXlView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xl.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXlView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xl.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXlView.Negative: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewNegative") - get() = builder - .chipStyle(EmbeddedChip.Xl.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXlView.Positive: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewPositive") - get() = builder - .chipStyle(EmbeddedChip.Xl.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXlView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xl.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXlView.Warning: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXlViewWarning") - get() = builder - .chipStyle(EmbeddedChip.Xl.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.Xl: WrapperEmbeddedChipGroupWideXl - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXl") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideXl) - -public val WrapperEmbeddedChipGroupWideLView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewDefault") - get() = builder - .chipStyle(EmbeddedChip.L.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewAccent") - get() = builder - .chipStyle(EmbeddedChip.L.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Negative: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewNegative") - get() = builder - .chipStyle(EmbeddedChip.L.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Positive: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewPositive") - get() = builder - .chipStyle(EmbeddedChip.L.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.L.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Warning: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewWarning") - get() = builder - .chipStyle(EmbeddedChip.L.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.L: WrapperEmbeddedChipGroupWideL - @Composable - @JvmName("WrapperEmbeddedChipGroupWideL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideL) - -public val WrapperEmbeddedChipGroupWideMView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewDefault") - get() = builder - .chipStyle(EmbeddedChip.M.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewAccent") - get() = builder - .chipStyle(EmbeddedChip.M.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Negative: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewNegative") - get() = builder - .chipStyle(EmbeddedChip.M.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Positive: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewPositive") - get() = builder - .chipStyle(EmbeddedChip.M.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.M.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Warning: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewWarning") - get() = builder - .chipStyle(EmbeddedChip.M.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.M: WrapperEmbeddedChipGroupWideM - @Composable - @JvmName("WrapperEmbeddedChipGroupWideM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideM) - -public val WrapperEmbeddedChipGroupWideSView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewDefault") - get() = builder - .chipStyle(EmbeddedChip.S.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewAccent") - get() = builder - .chipStyle(EmbeddedChip.S.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Negative: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewNegative") - get() = builder - .chipStyle(EmbeddedChip.S.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Positive: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewPositive") - get() = builder - .chipStyle(EmbeddedChip.S.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.S.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Warning: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewWarning") - get() = builder - .chipStyle(EmbeddedChip.S.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.S: WrapperEmbeddedChipGroupWideS - @Composable - @JvmName("WrapperEmbeddedChipGroupWideS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideS) - -public val WrapperEmbeddedChipGroupWideXsView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xs.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xs.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Negative: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewNegative") - get() = builder - .chipStyle(EmbeddedChip.Xs.Negative.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Positive: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewPositive") - get() = builder - .chipStyle(EmbeddedChip.Xs.Positive.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xs.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Warning: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewWarning") - get() = builder - .chipStyle(EmbeddedChip.Xs.Warning.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.Xs: WrapperEmbeddedChipGroupWideXs - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBar.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBar.kt deleted file mode 100644 index 6329995ebf..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.circularprogressbar - -/** - * Вспомогательный объект для описания API и стиля компонента CircularProgressBar - */ -public object CircularProgressBar diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBarStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBarStyles.kt deleted file mode 100644 index bc4d3f63e2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/circularprogressbar/CircularProgressBarStyles.kt +++ /dev/null @@ -1,295 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.circularprogressbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CircularProgressBarStyle -import com.sdds.compose.uikit.CircularProgressBarStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCircularProgressBar : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperCircularProgressBarView : WrapperCircularProgressBar - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperCircularProgressBarTerminate( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBar - -/** - * Обертка для вариации Xxl - */ -@JvmInline -public value class WrapperCircularProgressBarXxl( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperCircularProgressBarXl( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCircularProgressBarL( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCircularProgressBarM( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCircularProgressBarS( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperCircularProgressBarXs( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperCircularProgressBarXxs( - public override val builder: CircularProgressBarStyleBuilder, -) : WrapperCircularProgressBarView - -public val WrapperCircularProgressBarView.Default: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Secondary: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Accent: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultAccent).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Gradient: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - PlasmaGigaAppTheme.gradients.surfaceDefaultAccentGradient.asLayered().asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Info: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultInfo).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Negative: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultNegative).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Positive: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultPositive).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -public val WrapperCircularProgressBarView.Warning: WrapperCircularProgressBarTerminate - @Composable - get() = builder - .colors { - indicatorColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultWarning).asStatefulValue(), - ) - } - .wrap(::WrapperCircularProgressBarTerminate) - -private val CircularProgressBarStyleBuilder.invariantProps: CircularProgressBarStyleBuilder - @Composable - get() = this - .colors { - trackColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary).asStatefulValue(), - ) - valueColor( - SolidColor(PlasmaGigaAppTheme.colors.textDefaultPrimary).asStatefulValue(), - ) - } - .valueEnabled(true) - -public val CircularProgressBar.Xxl: WrapperCircularProgressBarXxl - @Composable - @JvmName("WrapperCircularProgressBarXxl") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .valueStyle(PlasmaGigaAppTheme.typography.headerH2Bold) - .dimensions { - width(128.0.dp) - height(128.0.dp) - trackThickness(4.0.dp) - progressThickness(4.0.dp) - } - .wrap(::WrapperCircularProgressBarXxl) - -public val CircularProgressBar.Xl: WrapperCircularProgressBarXl - @Composable - @JvmName("WrapperCircularProgressBarXl") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .valueStyle(PlasmaGigaAppTheme.typography.headerH5Bold) - .dimensions { - width(88.0.dp) - height(88.0.dp) - trackThickness(4.0.dp) - progressThickness(4.0.dp) - } - .wrap(::WrapperCircularProgressBarXl) - -public val CircularProgressBar.L: WrapperCircularProgressBarL - @Composable - @JvmName("WrapperCircularProgressBarL") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .dimensions { - width(56.0.dp) - height(56.0.dp) - trackThickness(2.0.dp) - progressThickness(2.0.dp) - iconSize(24.0.dp) - } - .valueEnabled(false) - .wrap(::WrapperCircularProgressBarL) - -public val CircularProgressBar.M: WrapperCircularProgressBarM - @Composable - @JvmName("WrapperCircularProgressBarM") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .dimensions { - width(48.0.dp) - height(48.0.dp) - trackThickness(2.0.dp) - progressThickness(2.0.dp) - iconSize(16.0.dp) - } - .valueEnabled(false) - .wrap(::WrapperCircularProgressBarM) - -public val CircularProgressBar.S: WrapperCircularProgressBarS - @Composable - @JvmName("WrapperCircularProgressBarS") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .dimensions { - width(36.0.dp) - height(36.0.dp) - trackThickness(2.0.dp) - progressThickness(2.0.dp) - iconSize(16.0.dp) - } - .valueEnabled(false) - .wrap(::WrapperCircularProgressBarS) - -public val CircularProgressBar.Xs: WrapperCircularProgressBarXs - @Composable - @JvmName("WrapperCircularProgressBarXs") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .dimensions { - width(24.0.dp) - height(24.0.dp) - trackThickness(2.0.dp) - progressThickness(2.0.dp) - iconSize(12.0.dp) - } - .valueEnabled(false) - .wrap(::WrapperCircularProgressBarXs) - -public val CircularProgressBar.Xxs: WrapperCircularProgressBarXxs - @Composable - @JvmName("WrapperCircularProgressBarXxs") - get() = CircularProgressBarStyle.builder(this) - .invariantProps - .dimensions { - width(16.0.dp) - height(16.0.dp) - trackThickness(2.0.dp) - progressThickness(2.0.dp) - } - .valueEnabled(false) - .wrap(::WrapperCircularProgressBarXxs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeField.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeField.kt deleted file mode 100644 index 7ab67730d9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeField.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.codefield - -/** - * Вспомогательный объект для описания API и стиля компонента CodeField - */ -public object CodeField diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeFieldStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeFieldStyles.kt deleted file mode 100644 index 39149dc566..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codefield/CodeFieldStyles.kt +++ /dev/null @@ -1,147 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.codefield - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CodeFieldStyle -import com.sdds.compose.uikit.CodeFieldStyleBuilder -import com.sdds.compose.uikit.CodeInputStates -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCodeField : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCodeFieldL( - public override val builder: CodeFieldStyleBuilder, -) : WrapperCodeField - -/** - * Обертка для вариации LSegmented - */ -@JvmInline -public value class WrapperCodeFieldLSegmented( - public override val builder: CodeFieldStyleBuilder, -) : WrapperCodeField - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCodeFieldM( - public override val builder: CodeFieldStyleBuilder, -) : WrapperCodeField - -/** - * Обертка для вариации MSegmented - */ -@JvmInline -public value class WrapperCodeFieldMSegmented( - public override val builder: CodeFieldStyleBuilder, -) : WrapperCodeField - -private val CodeFieldStyleBuilder.invariantProps: CodeFieldStyleBuilder - @Composable - get() = this - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.textDefaultNegative, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.textDefaultNegative, - ), - ) - dotColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegative, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative, - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - cursorColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asStatefulValue(), - ) - } - .dimensions { - itemSpacing(2.0.dp) - groupSpacing(8.0.dp) - } - -public val CodeField.L: WrapperCodeFieldL - @Composable - @JvmName("WrapperCodeFieldL") - get() = CodeFieldStyle.builder(this) - .invariantProps - .itemShape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = 2.0.dp)) - .valueStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .captionStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - dotSize(10.0.dp) - height(56.0.dp) - width(44.0.dp) - captionSpacing(14.0.dp) - } - .wrap(::WrapperCodeFieldL) - -public val WrapperCodeFieldL.Segmented: WrapperCodeFieldLSegmented - @Composable - @JvmName("WrapperCodeFieldLSegmented") - get() = builder - .itemShape(PlasmaGigaAppTheme.shapes.roundXs) - .groupShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperCodeFieldLSegmented) - -public val CodeField.M: WrapperCodeFieldM - @Composable - @JvmName("WrapperCodeFieldM") - get() = CodeFieldStyle.builder(this) - .invariantProps - .itemShape(PlasmaGigaAppTheme.shapes.roundM) - .valueStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .captionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - dotSize(8.0.dp) - height(48.0.dp) - width(38.0.dp) - captionSpacing(12.0.dp) - } - .wrap(::WrapperCodeFieldM) - -public val WrapperCodeFieldM.Segmented: WrapperCodeFieldMSegmented - @Composable - @JvmName("WrapperCodeFieldMSegmented") - get() = builder - .itemShape(PlasmaGigaAppTheme.shapes.roundXxs) - .groupShape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperCodeFieldMSegmented) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInput.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInput.kt deleted file mode 100644 index a2d008230d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInput.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.codeinput - -/** - * Вспомогательный объект для описания API и стиля компонента CodeInput - */ -public object CodeInput diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInputStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInputStyles.kt deleted file mode 100644 index 7a8e342db2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/codeinput/CodeInputStyles.kt +++ /dev/null @@ -1,148 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.codeinput - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CodeInputStates -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.CodeInputStyleBuilder -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCodeInput : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCodeInputS( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCodeInputM( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCodeInputL( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -private val CodeInputStyleBuilder.invariantProps: CodeInputStyleBuilder - @Composable - get() = this - .colors { - codeColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.textDefaultNegative, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.textDefaultNegative, - ), - ) - fillColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegative, - ), - ) - strokeColor( - PlasmaGigaAppTheme.colors.outlineDefaultSolidDefault.asStatefulValue( - setOf(CodeInputStates.Error) - to PlasmaGigaAppTheme.colors.outlineDefaultNegative, - setOf(CodeInputStates.Focused) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - ), - ) - } - -public val CodeInput.S: WrapperCodeInputS - @Composable - @JvmName("WrapperCodeInputS") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(PlasmaGigaAppTheme.typography.displaySBold) - .captionStyle(PlasmaGigaAppTheme.typography.headerH5Normal) - .dimensions { - circleSize( - 12.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 16.0.dp, - ), - ) - strokeWidth(1.0.dp) - itemHeight(44.0.dp) - itemWidth(26.0.dp) - itemSpacing(4.0.dp) - groupSpacing(16.0.dp) - captionPadding(24.0.dp) - } - .wrap(::WrapperCodeInputS) - -public val CodeInput.M: WrapperCodeInputM - @Composable - @JvmName("WrapperCodeInputM") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(PlasmaGigaAppTheme.typography.displayMBold) - .captionStyle(PlasmaGigaAppTheme.typography.headerH4Normal) - .dimensions { - circleSize( - 16.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 24.0.dp, - ), - ) - strokeWidth(1.5.dp) - itemHeight(60.0.dp) - itemWidth(36.0.dp) - itemSpacing(8.0.dp) - groupSpacing(28.0.dp) - captionPadding(28.0.dp) - } - .wrap(::WrapperCodeInputM) - -public val CodeInput.L: WrapperCodeInputL - @Composable - @JvmName("WrapperCodeInputL") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(PlasmaGigaAppTheme.typography.displayLBold) - .captionStyle(PlasmaGigaAppTheme.typography.headerH3Normal) - .dimensions { - circleSize( - 24.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 36.0.dp, - ), - ) - strokeWidth(2.0.dp) - itemHeight(92.0.dp) - itemWidth(56.0.dp) - itemSpacing(12.0.dp) - groupSpacing(36.0.dp) - captionPadding(40.0.dp) - } - .wrap(::WrapperCodeInputL) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/Counter.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/Counter.kt deleted file mode 100644 index 61c7b3e4b5..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/Counter.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.counter - -/** - * Вспомогательный объект для описания API и стиля компонента Counter - */ -public object Counter diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/CounterStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/CounterStyles.kt deleted file mode 100644 index f6e2c0e562..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/counter/CounterStyles.kt +++ /dev/null @@ -1,319 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.counter - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.CounterStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCounter : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperCounterView : WrapperCounter - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperCounterTerminate( - public override val builder: CounterStyleBuilder, -) : WrapperCounter - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCounterL( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCounterM( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCounterS( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperCounterXs( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperCounterXxs( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -public val WrapperCounterView.Default: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Accent: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Positive: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Warning: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Negative: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Black: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.White: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -private val CounterStyleBuilder.invariantProps: CounterStyleBuilder - @Composable - get() = this - .shape(CircleShape) - -public val Counter.L: WrapperCounterL - @Composable - @JvmName("WrapperCounterL") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - minHeight(28.0.dp) - minWidth(28.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - } - .wrap(::WrapperCounterL) - -public val Counter.M: WrapperCounterM - @Composable - @JvmName("WrapperCounterM") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - minHeight(24.0.dp) - minWidth(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperCounterM) - -public val Counter.S: WrapperCounterS - @Composable - @JvmName("WrapperCounterS") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(20.0.dp) - minWidth(20.0.dp) - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - } - .wrap(::WrapperCounterS) - -public val Counter.Xs: WrapperCounterXs - @Composable - @JvmName("WrapperCounterXs") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(16.0.dp) - minWidth(16.0.dp) - paddingStart(4.0.dp) - paddingEnd(4.0.dp) - } - .wrap(::WrapperCounterXs) - -public val Counter.Xxs: WrapperCounterXxs - @Composable - @JvmName("WrapperCounterXxs") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(PlasmaGigaAppTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(12.0.dp) - minWidth(12.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - } - .wrap(::WrapperCounterXxs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/Divider.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/Divider.kt deleted file mode 100644 index 486277ad60..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/Divider.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.divider - -/** - * Вспомогательный объект для описания API и стиля компонента Divider - */ -public object Divider diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/DividerStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/DividerStyles.kt deleted file mode 100644 index e50558c565..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/divider/DividerStyles.kt +++ /dev/null @@ -1,49 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.divider - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.DividerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDivider : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperDividerDefault( - public override val builder: DividerStyleBuilder, -) : WrapperDivider - -public val Divider.Default: WrapperDividerDefault - @Composable - @JvmName("WrapperDividerDefault") - get() = DividerStyle.builder(this) - .shape(CircleShape) - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - thickness(1.0.dp) - } - .wrap(::WrapperDividerDefault) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInner.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInner.kt deleted file mode 100644 index 1b6a95d7e0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInner.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.drawer - -/** - * Вспомогательный объект для описания API и стиля компонента DrawerCloseInner - */ -public object DrawerCloseInner diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInnerStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInnerStyles.kt deleted file mode 100644 index a5cbd77719..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseInnerStyles.kt +++ /dev/null @@ -1,81 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.drawer - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CloseIconPlacement -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.DrawerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDrawerCloseInner : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDrawerCloseInnerM( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseInner - -/** - * Обертка для вариации MHasShadow - */ -@JvmInline -public value class WrapperDrawerCloseInnerMHasShadow( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseInner - -private val DrawerStyleBuilder.invariantProps: DrawerStyleBuilder - @Composable - get() = this - .colors { - background( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .closeIconRes(com.sdds.icons.R.drawable.ic_close_24) - .closeIconPlacement(CloseIconPlacement.Inner) - -public val DrawerCloseInner.M: WrapperDrawerCloseInnerM - @Composable - @JvmName("WrapperDrawerCloseInnerM") - get() = DrawerStyle.builder(this) - .invariantProps - .dimensions { - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - paddingTop(24.0.dp) - paddingBottom(24.0.dp) - closeIconHeaderPadding(8.0.dp) - closeIconOffsetX(0.0.dp) - closeIconOffsetY(0.0.dp) - } - .wrap(::WrapperDrawerCloseInnerM) - -public val WrapperDrawerCloseInnerM.HasShadow: WrapperDrawerCloseInnerMHasShadow - @Composable - @JvmName("WrapperDrawerCloseInnerMHasShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftL) - .wrap(::WrapperDrawerCloseInnerMHasShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNone.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNone.kt deleted file mode 100644 index 62590bc63e..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNone.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.drawer - -/** - * Вспомогательный объект для описания API и стиля компонента DrawerCloseNone - */ -public object DrawerCloseNone diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNoneStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNoneStyles.kt deleted file mode 100644 index 824a5b3917..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseNoneStyles.kt +++ /dev/null @@ -1,81 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.drawer - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CloseIconPlacement -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.DrawerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDrawerCloseNone : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDrawerCloseNoneM( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseNone - -/** - * Обертка для вариации MHasShadow - */ -@JvmInline -public value class WrapperDrawerCloseNoneMHasShadow( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseNone - -private val DrawerStyleBuilder.invariantProps: DrawerStyleBuilder - @Composable - get() = this - .colors { - background( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .closeIconRes(com.sdds.icons.R.drawable.ic_close_24) - .closeIconPlacement(CloseIconPlacement.None) - -public val DrawerCloseNone.M: WrapperDrawerCloseNoneM - @Composable - @JvmName("WrapperDrawerCloseNoneM") - get() = DrawerStyle.builder(this) - .invariantProps - .dimensions { - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - paddingTop(24.0.dp) - paddingBottom(24.0.dp) - closeIconHeaderPadding(0.0.dp) - closeIconOffsetX(0.0.dp) - closeIconOffsetY(0.0.dp) - } - .wrap(::WrapperDrawerCloseNoneM) - -public val WrapperDrawerCloseNoneM.HasShadow: WrapperDrawerCloseNoneMHasShadow - @Composable - @JvmName("WrapperDrawerCloseNoneMHasShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftL) - .wrap(::WrapperDrawerCloseNoneMHasShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuter.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuter.kt deleted file mode 100644 index 92adf54add..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuter.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.drawer - -/** - * Вспомогательный объект для описания API и стиля компонента DrawerCloseOuter - */ -public object DrawerCloseOuter diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuterStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuterStyles.kt deleted file mode 100644 index 8431092143..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/drawer/DrawerCloseOuterStyles.kt +++ /dev/null @@ -1,81 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.drawer - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CloseIconPlacement -import com.sdds.compose.uikit.DrawerStyle -import com.sdds.compose.uikit.DrawerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDrawerCloseOuter : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDrawerCloseOuterM( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseOuter - -/** - * Обертка для вариации MHasShadow - */ -@JvmInline -public value class WrapperDrawerCloseOuterMHasShadow( - public override val builder: DrawerStyleBuilder, -) : WrapperDrawerCloseOuter - -private val DrawerStyleBuilder.invariantProps: DrawerStyleBuilder - @Composable - get() = this - .colors { - background( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .closeIconRes(com.sdds.icons.R.drawable.ic_close_24) - .closeIconPlacement(CloseIconPlacement.Outer) - -public val DrawerCloseOuter.M: WrapperDrawerCloseOuterM - @Composable - @JvmName("WrapperDrawerCloseOuterM") - get() = DrawerStyle.builder(this) - .invariantProps - .dimensions { - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - paddingTop(24.0.dp) - paddingBottom(24.0.dp) - closeIconHeaderPadding(8.0.dp) - closeIconOffsetX(24.0.dp) - closeIconOffsetY(24.0.dp) - } - .wrap(::WrapperDrawerCloseOuterM) - -public val WrapperDrawerCloseOuterM.HasShadow: WrapperDrawerCloseOuterMHasShadow - @Composable - @JvmName("WrapperDrawerCloseOuterMHasShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftL) - .wrap(::WrapperDrawerCloseOuterMHasShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyState.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyState.kt deleted file mode 100644 index 16764d63e9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyState.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.dropdownemptystate - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownEmptyState - */ -public object DropdownEmptyState diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyStateStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyStateStyles.kt deleted file mode 100644 index 42d89bfdea..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownemptystate/DropdownEmptyStateStyles.kt +++ /dev/null @@ -1,256 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.dropdownemptystate - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DropdownEmptyStateStyle -import com.sdds.compose.uikit.DropdownEmptyStateStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Clear -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.basicbutton.S -import com.sdds.plasma.giga.app.styles.basicbutton.Xl -import com.sdds.plasma.giga.app.styles.basicbutton.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownEmptyState : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownEmptyStateXs( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации XsHasButton - */ -@JvmInline -public value class WrapperDropdownEmptyStateXsHasButton( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownEmptyStateS( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации SHasButton - */ -@JvmInline -public value class WrapperDropdownEmptyStateSHasButton( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownEmptyStateM( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации MHasButton - */ -@JvmInline -public value class WrapperDropdownEmptyStateMHasButton( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownEmptyStateL( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации LHasButton - */ -@JvmInline -public value class WrapperDropdownEmptyStateLHasButton( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownEmptyStateXl( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -/** - * Обертка для вариации XlHasButton - */ -@JvmInline -public value class WrapperDropdownEmptyStateXlHasButton( - public override val builder: DropdownEmptyStateStyleBuilder, -) : WrapperDropdownEmptyState - -private val DropdownEmptyStateStyleBuilder.invariantProps: DropdownEmptyStateStyleBuilder - @Composable - get() = this - .colors { - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - -public val DropdownEmptyState.Xs: WrapperDropdownEmptyStateXs - @Composable - @JvmName("WrapperDropdownEmptyStateXs") - get() = DropdownEmptyStateStyle.builder(this) - .invariantProps - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperDropdownEmptyStateXs) - -public val WrapperDropdownEmptyStateXs.HasButton: WrapperDropdownEmptyStateXsHasButton - @Composable - @JvmName("WrapperDropdownEmptyStateXsHasButton") - get() = builder - .dimensions { - paddingTop(16.0.dp) - paddingBottom(9.0.dp) - } - .buttonStyle(BasicButton.Xs.Clear.style()) - .wrap(::WrapperDropdownEmptyStateXsHasButton) - -public val DropdownEmptyState.S: WrapperDropdownEmptyStateS - @Composable - @JvmName("WrapperDropdownEmptyStateS") - get() = DropdownEmptyStateStyle.builder(this) - .invariantProps - .descriptionStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(22.0.dp) - paddingBottom(22.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperDropdownEmptyStateS) - -public val WrapperDropdownEmptyStateS.HasButton: WrapperDropdownEmptyStateSHasButton - @Composable - @JvmName("WrapperDropdownEmptyStateSHasButton") - get() = builder - .dimensions { - paddingTop(22.0.dp) - paddingBottom(11.0.dp) - } - .buttonStyle(BasicButton.S.Clear.style()) - .wrap(::WrapperDropdownEmptyStateSHasButton) - -public val DropdownEmptyState.M: WrapperDropdownEmptyStateM - @Composable - @JvmName("WrapperDropdownEmptyStateM") - get() = DropdownEmptyStateStyle.builder(this) - .invariantProps - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(26.0.dp) - paddingBottom(26.0.dp) - descriptionPadding(6.0.dp) - } - .wrap(::WrapperDropdownEmptyStateM) - -public val WrapperDropdownEmptyStateM.HasButton: WrapperDropdownEmptyStateMHasButton - @Composable - @JvmName("WrapperDropdownEmptyStateMHasButton") - get() = builder - .dimensions { - paddingTop(26.0.dp) - paddingBottom(14.0.dp) - } - .buttonStyle(BasicButton.M.Clear.style()) - .wrap(::WrapperDropdownEmptyStateMHasButton) - -public val DropdownEmptyState.L: WrapperDropdownEmptyStateL - @Composable - @JvmName("WrapperDropdownEmptyStateL") - get() = DropdownEmptyStateStyle.builder(this) - .invariantProps - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(32.0.dp) - paddingBottom(32.0.dp) - descriptionPadding(8.0.dp) - } - .wrap(::WrapperDropdownEmptyStateL) - -public val WrapperDropdownEmptyStateL.HasButton: WrapperDropdownEmptyStateLHasButton - @Composable - @JvmName("WrapperDropdownEmptyStateLHasButton") - get() = builder - .dimensions { - paddingTop(32.0.dp) - paddingBottom(17.0.dp) - } - .buttonStyle(BasicButton.L.Clear.style()) - .wrap(::WrapperDropdownEmptyStateLHasButton) - -public val DropdownEmptyState.Xl: WrapperDropdownEmptyStateXl - @Composable - @JvmName("WrapperDropdownEmptyStateXl") - get() = DropdownEmptyStateStyle.builder(this) - .invariantProps - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .dimensions { - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(32.0.dp) - paddingBottom(32.0.dp) - descriptionPadding(12.0.dp) - } - .wrap(::WrapperDropdownEmptyStateXl) - -public val WrapperDropdownEmptyStateXl.HasButton: WrapperDropdownEmptyStateXlHasButton - @Composable - @JvmName("WrapperDropdownEmptyStateXlHasButton") - get() = builder - .dimensions { - paddingTop(32.0.dp) - paddingBottom(12.0.dp) - } - .buttonStyle(BasicButton.Xl.Clear.style()) - .wrap(::WrapperDropdownEmptyStateXlHasButton) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormal.kt deleted file mode 100644 index a7c1d5e6c3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.dropdownmenu - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuNormal - */ -public object DropdownMenuNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormalStyles.kt deleted file mode 100644 index 4ddd93a045..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuNormalStyles.kt +++ /dev/null @@ -1,180 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.dropdownmenu - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.DropdownMenuStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import com.sdds.plasma.giga.app.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.plasma.giga.app.styles.dropdownemptystate.HasButton -import com.sdds.plasma.giga.app.styles.dropdownemptystate.L -import com.sdds.plasma.giga.app.styles.dropdownemptystate.M -import com.sdds.plasma.giga.app.styles.dropdownemptystate.S -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xl -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xs -import com.sdds.plasma.giga.app.styles.list.DropdownMenuListNormal -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.plasma.giga.app.styles.scrollbar.S -import com.sdds.plasma.giga.app.styles.scrollbar.ScrollBar -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuNormal : - BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuNormalXl( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuNormalL( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuNormalM( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuNormalS( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuNormalXs( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -private val DropdownMenuStyleBuilder.invariantProps: DropdownMenuStyleBuilder - @Composable - get() = this - .shadow(PlasmaGigaAppTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .dimensions { - offset(8.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .dividerStyle(Divider.Default.style()) - .scrollBarStyle(ScrollBar.S.style()) - -public val DropdownMenuNormal.Xl: WrapperDropdownMenuNormalXl - @Composable - @JvmName("WrapperDropdownMenuNormalXl") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(10.0.dp) - scrollBarPaddingBottom(12.0.dp) - } - .listStyle(DropdownMenuListNormal.Xl.style()) - .emptyStateStyle(DropdownEmptyState.Xl.HasButton.style()) - .wrap(::WrapperDropdownMenuNormalXl) - -public val DropdownMenuNormal.L: WrapperDropdownMenuNormalL - @Composable - @JvmName("WrapperDropdownMenuNormalL") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.L.style()) - .emptyStateStyle(DropdownEmptyState.L.HasButton.style()) - .wrap(::WrapperDropdownMenuNormalL) - -public val DropdownMenuNormal.M: WrapperDropdownMenuNormalM - @Composable - @JvmName("WrapperDropdownMenuNormalM") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.M.style()) - .emptyStateStyle(DropdownEmptyState.M.HasButton.style()) - .wrap(::WrapperDropdownMenuNormalM) - -public val DropdownMenuNormal.S: WrapperDropdownMenuNormalS - @Composable - @JvmName("WrapperDropdownMenuNormalS") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.S.style()) - .emptyStateStyle(DropdownEmptyState.S.HasButton.style()) - .wrap(::WrapperDropdownMenuNormalS) - -public val DropdownMenuNormal.Xs: WrapperDropdownMenuNormalXs - @Composable - @JvmName("WrapperDropdownMenuNormalXs") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.Xs.style()) - .emptyStateStyle(DropdownEmptyState.Xs.HasButton.style()) - .wrap(::WrapperDropdownMenuNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTight.kt deleted file mode 100644 index 9dc0fdb772..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.dropdownmenu - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuTight - */ -public object DropdownMenuTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTightStyles.kt deleted file mode 100644 index 3551a18a34..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/dropdownmenu/DropdownMenuTightStyles.kt +++ /dev/null @@ -1,180 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.dropdownmenu - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.DropdownMenuStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import com.sdds.plasma.giga.app.styles.dropdownemptystate.DropdownEmptyState -import com.sdds.plasma.giga.app.styles.dropdownemptystate.HasButton -import com.sdds.plasma.giga.app.styles.dropdownemptystate.L -import com.sdds.plasma.giga.app.styles.dropdownemptystate.M -import com.sdds.plasma.giga.app.styles.dropdownemptystate.S -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xl -import com.sdds.plasma.giga.app.styles.dropdownemptystate.Xs -import com.sdds.plasma.giga.app.styles.list.DropdownMenuListTight -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import com.sdds.plasma.giga.app.styles.scrollbar.S -import com.sdds.plasma.giga.app.styles.scrollbar.ScrollBar -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuTight : - BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuTightXl( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuTightL( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuTightM( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuTightS( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuTightXs( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -private val DropdownMenuStyleBuilder.invariantProps: DropdownMenuStyleBuilder - @Composable - get() = this - .shadow(PlasmaGigaAppTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .dimensions { - offset(8.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .dividerStyle(Divider.Default.style()) - .scrollBarStyle(ScrollBar.S.style()) - -public val DropdownMenuTight.Xl: WrapperDropdownMenuTightXl - @Composable - @JvmName("WrapperDropdownMenuTightXl") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(10.0.dp) - scrollBarPaddingBottom(12.0.dp) - } - .listStyle(DropdownMenuListTight.Xl.style()) - .emptyStateStyle(DropdownEmptyState.Xl.HasButton.style()) - .wrap(::WrapperDropdownMenuTightXl) - -public val DropdownMenuTight.L: WrapperDropdownMenuTightL - @Composable - @JvmName("WrapperDropdownMenuTightL") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.L.style()) - .emptyStateStyle(DropdownEmptyState.L.HasButton.style()) - .wrap(::WrapperDropdownMenuTightL) - -public val DropdownMenuTight.M: WrapperDropdownMenuTightM - @Composable - @JvmName("WrapperDropdownMenuTightM") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.M.style()) - .emptyStateStyle(DropdownEmptyState.M.HasButton.style()) - .wrap(::WrapperDropdownMenuTightM) - -public val DropdownMenuTight.S: WrapperDropdownMenuTightS - @Composable - @JvmName("WrapperDropdownMenuTightS") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.S.style()) - .emptyStateStyle(DropdownEmptyState.S.HasButton.style()) - .wrap(::WrapperDropdownMenuTightS) - -public val DropdownMenuTight.Xs: WrapperDropdownMenuTightXs - @Composable - @JvmName("WrapperDropdownMenuTightXs") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.Xs.style()) - .emptyStateStyle(DropdownEmptyState.Xs.HasButton.style()) - .wrap(::WrapperDropdownMenuTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgress.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgress.kt deleted file mode 100644 index 1fa3279b17..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgress.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.`file` - -/** - * Вспомогательный объект для описания API и стиля компонента FileCircularProgress - */ -public object FileCircularProgress diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgressStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgressStyles.kt deleted file mode 100644 index d8a3c2a29e..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileCircularProgressStyles.kt +++ /dev/null @@ -1,367 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.`file` - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.FileActionPlacement -import com.sdds.compose.uikit.FileProgressPlacement -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.FileStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.giga.app.styles.circularprogressbar.Default -import com.sdds.plasma.giga.app.styles.circularprogressbar.Negative -import com.sdds.plasma.giga.app.styles.circularprogressbar.S -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xs -import com.sdds.plasma.giga.app.styles.iconbutton.Clear -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperFileCircularProgress : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileCircularProgressView : WrapperFileCircularProgress - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperFileCircularProgressTerminate( - public override val builder: FileStyleBuilder, -) : WrapperFileCircularProgress - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileCircularProgressXsView : WrapperFileCircularProgressView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperFileCircularProgressXs( - public override val builder: FileStyleBuilder, -) : WrapperFileCircularProgressXsView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileCircularProgressSView : WrapperFileCircularProgressView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperFileCircularProgressS( - public override val builder: FileStyleBuilder, -) : WrapperFileCircularProgressSView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileCircularProgressMView : WrapperFileCircularProgressView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperFileCircularProgressM( - public override val builder: FileStyleBuilder, -) : WrapperFileCircularProgressMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileCircularProgressLView : WrapperFileCircularProgressView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperFileCircularProgressL( - public override val builder: FileStyleBuilder, -) : WrapperFileCircularProgressLView - -public val WrapperFileCircularProgressView.Default: WrapperFileCircularProgressTerminate - @Composable - get() = builder - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val WrapperFileCircularProgressView.Negative: WrapperFileCircularProgressTerminate - @Composable - get() = builder - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -private val FileStyleBuilder.invariantProps: FileStyleBuilder - @Composable - get() = this - .progressPlacement(FileProgressPlacement.Inner) - .actionPlacement(FileActionPlacement.End) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - ), - ) - } - .dimensions { - descriptionPadding(2.0.dp) - } - -public val WrapperFileCircularProgressXsView.Default: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressXsViewDefault") - get() = builder - .circularProgressBarStyle(CircularProgressBar.Xs.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val WrapperFileCircularProgressXsView.Negative: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressXsViewNegative") - get() = builder - .circularProgressBarStyle(CircularProgressBar.Xs.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val FileCircularProgress.Xs: WrapperFileCircularProgressXs - @Composable - @JvmName("WrapperFileCircularProgressXs") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.Xs.Clear.style()) - .dimensions { - startContentPadding(6.0.dp) - endContentPadding(6.0.dp) - } - .wrap(::WrapperFileCircularProgressXs) - -public val WrapperFileCircularProgressSView.Default: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressSViewDefault") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val WrapperFileCircularProgressSView.Negative: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressSViewNegative") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val FileCircularProgress.S: WrapperFileCircularProgressS - @Composable - @JvmName("WrapperFileCircularProgressS") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(8.0.dp) - endContentPadding(8.0.dp) - } - .wrap(::WrapperFileCircularProgressS) - -public val WrapperFileCircularProgressMView.Default: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressMViewDefault") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val WrapperFileCircularProgressMView.Negative: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressMViewNegative") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val FileCircularProgress.M: WrapperFileCircularProgressM - @Composable - @JvmName("WrapperFileCircularProgressM") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(10.0.dp) - endContentPadding(10.0.dp) - } - .wrap(::WrapperFileCircularProgressM) - -public val WrapperFileCircularProgressLView.Default: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressLViewDefault") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val WrapperFileCircularProgressLView.Negative: WrapperFileCircularProgressTerminate - @Composable - @JvmName("WrapperFileCircularProgressLViewNegative") - get() = builder - .circularProgressBarStyle(CircularProgressBar.S.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileCircularProgressTerminate) - -public val FileCircularProgress.L: WrapperFileCircularProgressL - @Composable - @JvmName("WrapperFileCircularProgressL") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(12.0.dp) - endContentPadding(12.0.dp) - } - .wrap(::WrapperFileCircularProgressL) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgress.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgress.kt deleted file mode 100644 index 8132048c5c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgress.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.`file` - -/** - * Вспомогательный объект для описания API и стиля компонента FileLinearProgress - */ -public object FileLinearProgress diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgressStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgressStyles.kt deleted file mode 100644 index 06603a2c8a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/file/FileLinearProgressStyles.kt +++ /dev/null @@ -1,366 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.`file` - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.FileActionPlacement -import com.sdds.compose.uikit.FileProgressPlacement -import com.sdds.compose.uikit.FileStyle -import com.sdds.compose.uikit.FileStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.iconbutton.Clear -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.styles.progressbar.Default -import com.sdds.plasma.giga.app.styles.progressbar.Negative -import com.sdds.plasma.giga.app.styles.progressbar.ProgressBar -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperFileLinearProgress : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileLinearProgressView : WrapperFileLinearProgress - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperFileLinearProgressTerminate( - public override val builder: FileStyleBuilder, -) : WrapperFileLinearProgress - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileLinearProgressXsView : WrapperFileLinearProgressView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperFileLinearProgressXs( - public override val builder: FileStyleBuilder, -) : WrapperFileLinearProgressXsView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileLinearProgressSView : WrapperFileLinearProgressView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperFileLinearProgressS( - public override val builder: FileStyleBuilder, -) : WrapperFileLinearProgressSView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileLinearProgressMView : WrapperFileLinearProgressView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperFileLinearProgressM( - public override val builder: FileStyleBuilder, -) : WrapperFileLinearProgressMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperFileLinearProgressLView : WrapperFileLinearProgressView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperFileLinearProgressL( - public override val builder: FileStyleBuilder, -) : WrapperFileLinearProgressLView - -public val WrapperFileLinearProgressView.Default: WrapperFileLinearProgressTerminate - @Composable - get() = builder - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val WrapperFileLinearProgressView.Negative: WrapperFileLinearProgressTerminate - @Composable - get() = builder - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -private val FileStyleBuilder.invariantProps: FileStyleBuilder - @Composable - get() = this - .progressPlacement(FileProgressPlacement.Outer) - .actionPlacement(FileActionPlacement.End) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - ), - ) - } - .dimensions { - bottomContentPadding(8.0.dp) - descriptionPadding(2.0.dp) - } - -public val WrapperFileLinearProgressXsView.Default: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressXsViewDefault") - get() = builder - .progressBarStyle(ProgressBar.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val WrapperFileLinearProgressXsView.Negative: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressXsViewNegative") - get() = builder - .progressBarStyle(ProgressBar.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val FileLinearProgress.Xs: WrapperFileLinearProgressXs - @Composable - @JvmName("WrapperFileLinearProgressXs") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.Xs.Clear.style()) - .dimensions { - startContentPadding(6.0.dp) - endContentPadding(6.0.dp) - } - .wrap(::WrapperFileLinearProgressXs) - -public val WrapperFileLinearProgressSView.Default: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressSViewDefault") - get() = builder - .progressBarStyle(ProgressBar.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val WrapperFileLinearProgressSView.Negative: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressSViewNegative") - get() = builder - .progressBarStyle(ProgressBar.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val FileLinearProgress.S: WrapperFileLinearProgressS - @Composable - @JvmName("WrapperFileLinearProgressS") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(8.0.dp) - endContentPadding(8.0.dp) - } - .wrap(::WrapperFileLinearProgressS) - -public val WrapperFileLinearProgressMView.Default: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressMViewDefault") - get() = builder - .progressBarStyle(ProgressBar.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val WrapperFileLinearProgressMView.Negative: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressMViewNegative") - get() = builder - .progressBarStyle(ProgressBar.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val FileLinearProgress.M: WrapperFileLinearProgressM - @Composable - @JvmName("WrapperFileLinearProgressM") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(10.0.dp) - endContentPadding(10.0.dp) - } - .wrap(::WrapperFileLinearProgressM) - -public val WrapperFileLinearProgressLView.Default: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressLViewDefault") - get() = builder - .progressBarStyle(ProgressBar.Default.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val WrapperFileLinearProgressLView.Negative: WrapperFileLinearProgressTerminate - @Composable - @JvmName("WrapperFileLinearProgressLViewNegative") - get() = builder - .progressBarStyle(ProgressBar.Negative.style()) - .colors { - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - ), - ) - } - .wrap(::WrapperFileLinearProgressTerminate) - -public val FileLinearProgress.L: WrapperFileLinearProgressL - @Composable - @JvmName("WrapperFileLinearProgressL") - get() = FileStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .actionButtonStyle(IconButton.S.Clear.style()) - .dimensions { - startContentPadding(12.0.dp) - endContentPadding(12.0.dp) - } - .wrap(::WrapperFileLinearProgressL) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClear.kt deleted file mode 100644 index f489817713..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeClear - */ -public object IconBadgeClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClearStyles.kt deleted file mode 100644 index 5aebd6f01a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeClearStyles.kt +++ /dev/null @@ -1,270 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeClearView : WrapperIconBadgeClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeClearTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeClearL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeClearLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeClearM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeClearMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeClearS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeClearSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeClearXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeClearXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -public val WrapperIconBadgeClearView.Default: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Accent: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Negative: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Positive: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Warning: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Dark: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Light: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val IconBadgeClear.L: WrapperIconBadgeClearL - @Composable - @JvmName("WrapperIconBadgeClearL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeClearL) - -public val WrapperIconBadgeClearL.Pilled: WrapperIconBadgeClearLPilled - @Composable - @JvmName("WrapperIconBadgeClearLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearLPilled) - -public val IconBadgeClear.M: WrapperIconBadgeClearM - @Composable - @JvmName("WrapperIconBadgeClearM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeClearM) - -public val WrapperIconBadgeClearM.Pilled: WrapperIconBadgeClearMPilled - @Composable - @JvmName("WrapperIconBadgeClearMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearMPilled) - -public val IconBadgeClear.S: WrapperIconBadgeClearS - @Composable - @JvmName("WrapperIconBadgeClearS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeClearS) - -public val WrapperIconBadgeClearS.Pilled: WrapperIconBadgeClearSPilled - @Composable - @JvmName("WrapperIconBadgeClearSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearSPilled) - -public val IconBadgeClear.Xs: WrapperIconBadgeClearXs - @Composable - @JvmName("WrapperIconBadgeClearXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeClearXs) - -public val WrapperIconBadgeClearXs.Pilled: WrapperIconBadgeClearXsPilled - @Composable - @JvmName("WrapperIconBadgeClearXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolid.kt deleted file mode 100644 index 503c438f62..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeSolid - */ -public object IconBadgeSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolidStyles.kt deleted file mode 100644 index 8f6a001880..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeSolidStyles.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeSolidView : WrapperIconBadgeSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeSolidTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeSolidL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeSolidM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeSolidS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeSolidXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -public val WrapperIconBadgeSolidView.Default: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Accent: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Negative: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Positive: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Warning: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Dark: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Light: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - -public val IconBadgeSolid.L: WrapperIconBadgeSolidL - @Composable - @JvmName("WrapperIconBadgeSolidL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeSolidL) - -public val WrapperIconBadgeSolidL.Pilled: WrapperIconBadgeSolidLPilled - @Composable - @JvmName("WrapperIconBadgeSolidLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidLPilled) - -public val IconBadgeSolid.M: WrapperIconBadgeSolidM - @Composable - @JvmName("WrapperIconBadgeSolidM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeSolidM) - -public val WrapperIconBadgeSolidM.Pilled: WrapperIconBadgeSolidMPilled - @Composable - @JvmName("WrapperIconBadgeSolidMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidMPilled) - -public val IconBadgeSolid.S: WrapperIconBadgeSolidS - @Composable - @JvmName("WrapperIconBadgeSolidS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeSolidS) - -public val WrapperIconBadgeSolidS.Pilled: WrapperIconBadgeSolidSPilled - @Composable - @JvmName("WrapperIconBadgeSolidSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidSPilled) - -public val IconBadgeSolid.Xs: WrapperIconBadgeSolidXs - @Composable - @JvmName("WrapperIconBadgeSolidXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeSolidXs) - -public val WrapperIconBadgeSolidXs.Pilled: WrapperIconBadgeSolidXsPilled - @Composable - @JvmName("WrapperIconBadgeSolidXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparent.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparent.kt deleted file mode 100644 index 38f33c703f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeTransparent - */ -public object IconBadgeTransparent diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparentStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparentStyles.kt deleted file mode 100644 index 9909ea6a32..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbadge/IconBadgeTransparentStyles.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeTransparent : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeTransparentView : WrapperIconBadgeTransparent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeTransparentTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparent - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeTransparentL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeTransparentM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeTransparentS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeTransparentXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -public val WrapperIconBadgeTransparentView.Default: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Accent: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentAccent.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Negative: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Positive: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPositive.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Warning: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentWarning.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Dark: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeep.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Light: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkTransparentSecondary.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - -public val IconBadgeTransparent.L: WrapperIconBadgeTransparentL - @Composable - @JvmName("WrapperIconBadgeTransparentL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeTransparentL) - -public val WrapperIconBadgeTransparentL.Pilled: WrapperIconBadgeTransparentLPilled - @Composable - @JvmName("WrapperIconBadgeTransparentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentLPilled) - -public val IconBadgeTransparent.M: WrapperIconBadgeTransparentM - @Composable - @JvmName("WrapperIconBadgeTransparentM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeTransparentM) - -public val WrapperIconBadgeTransparentM.Pilled: WrapperIconBadgeTransparentMPilled - @Composable - @JvmName("WrapperIconBadgeTransparentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentMPilled) - -public val IconBadgeTransparent.S: WrapperIconBadgeTransparentS - @Composable - @JvmName("WrapperIconBadgeTransparentS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeTransparentS) - -public val WrapperIconBadgeTransparentS.Pilled: WrapperIconBadgeTransparentSPilled - @Composable - @JvmName("WrapperIconBadgeTransparentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentSPilled) - -public val IconBadgeTransparent.Xs: WrapperIconBadgeTransparentXs - @Composable - @JvmName("WrapperIconBadgeTransparentXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeTransparentXs) - -public val WrapperIconBadgeTransparentXs.Pilled: WrapperIconBadgeTransparentXsPilled - @Composable - @JvmName("WrapperIconBadgeTransparentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButton.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButton.kt deleted file mode 100644 index 53d3b794db..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.iconbutton - -/** - * Вспомогательный объект для описания API и стиля компонента IconButton - */ -public object IconButton diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButtonStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButtonStyles.kt deleted file mode 100644 index 3a29ba0fc9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/iconbutton/IconButtonStyles.kt +++ /dev/null @@ -1,601 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.iconbutton - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.IconButtonStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.iconButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconButtonView : WrapperIconButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconButtonTerminate( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButton - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperIconButtonXl( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации XlPilled - */ -@JvmInline -public value class WrapperIconButtonXlPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconButtonL( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconButtonLPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconButtonM( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconButtonMPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconButtonS( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconButtonSPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconButtonXs( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconButtonXsPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperIconButtonXxs( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации XxsPilled - */ -@JvmInline -public value class WrapperIconButtonXxsPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -public val WrapperIconButtonView.Default: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Secondary: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Accent: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Positive: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultPositiveHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Negative: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultNegativeHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Warning: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultWarningHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Clear: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Dark: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeep.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeepActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnLightTransparentDeepHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Black: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.White: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textOnLightPrimaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -private val IconButtonStyleBuilder.invariantProps: IconButtonStyleBuilder - @Composable - get() = this - .loadingAlpha(0.0f) - .disableAlpha(0.4f) - -public val IconButton.Xl: WrapperIconButtonXl - @Composable - @JvmName("WrapperIconButtonXl") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - height(64.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - minWidth(64.0.dp) - iconSize(24.0.dp) - spinnerSize(24.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonXl) - -public val WrapperIconButtonXl.Pilled: WrapperIconButtonXlPilled - @Composable - @JvmName("WrapperIconButtonXlPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonXlPilled) - -public val IconButton.L: WrapperIconButtonL - @Composable - @JvmName("WrapperIconButtonL") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - minWidth(56.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonL) - -public val WrapperIconButtonL.Pilled: WrapperIconButtonLPilled - @Composable - @JvmName("WrapperIconButtonLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonLPilled) - -public val IconButton.M: WrapperIconButtonM - @Composable - @JvmName("WrapperIconButtonM") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - height(48.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - minWidth(48.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonM) - -public val WrapperIconButtonM.Pilled: WrapperIconButtonMPilled - @Composable - @JvmName("WrapperIconButtonMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonMPilled) - -public val IconButton.S: WrapperIconButtonS - @Composable - @JvmName("WrapperIconButtonS") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - height(40.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - minWidth(40.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonS) - -public val WrapperIconButtonS.Pilled: WrapperIconButtonSPilled - @Composable - @JvmName("WrapperIconButtonSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonSPilled) - -public val IconButton.Xs: WrapperIconButtonXs - @Composable - @JvmName("WrapperIconButtonXs") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - minWidth(32.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - } - .wrap(::WrapperIconButtonXs) - -public val WrapperIconButtonXs.Pilled: WrapperIconButtonXsPilled - @Composable - @JvmName("WrapperIconButtonXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonXsPilled) - -public val IconButton.Xxs: WrapperIconButtonXxs - @Composable - @JvmName("WrapperIconButtonXxs") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - minWidth(24.0.dp) - iconSize(12.0.dp) - spinnerSize(12.0.dp) - spinnerStrokeWidth(1.0.dp) - } - .wrap(::WrapperIconButtonXxs) - -public val WrapperIconButtonXxs.Pilled: WrapperIconButtonXxsPilled - @Composable - @JvmName("WrapperIconButtonXxsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonXxsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/Image.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/Image.kt deleted file mode 100644 index 7a0a07714d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/Image.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.image - -/** - * Вспомогательный объект для описания API и стиля компонента Image - */ -public object Image diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/ImageStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/ImageStyles.kt deleted file mode 100644 index 9b1203f832..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/image/ImageStyles.kt +++ /dev/null @@ -1,138 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.image - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ImageStyle -import com.sdds.compose.uikit.ImageStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperImage : BuilderWrapper - -/** - * Обертка для вариации Ratio1x2 - */ -@JvmInline -public value class WrapperImageRatio1x2( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio9x16 - */ -@JvmInline -public value class WrapperImageRatio9x16( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio3x4 - */ -@JvmInline -public value class WrapperImageRatio3x4( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio2x1 - */ -@JvmInline -public value class WrapperImageRatio2x1( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio16x9 - */ -@JvmInline -public value class WrapperImageRatio16x9( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio4x3 - */ -@JvmInline -public value class WrapperImageRatio4x3( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -/** - * Обертка для вариации Ratio1x1 - */ -@JvmInline -public value class WrapperImageRatio1x1( - public override val builder: ImageStyleBuilder, -) : WrapperImage - -private val ImageStyleBuilder.invariantProps: ImageStyleBuilder - @Composable - get() = this - -public val Image.Ratio1x2: WrapperImageRatio1x2 - @Composable - @JvmName("WrapperImageRatio1x2") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(0.5f) - .wrap(::WrapperImageRatio1x2) - -public val Image.Ratio9x16: WrapperImageRatio9x16 - @Composable - @JvmName("WrapperImageRatio9x16") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(0.5625f) - .wrap(::WrapperImageRatio9x16) - -public val Image.Ratio3x4: WrapperImageRatio3x4 - @Composable - @JvmName("WrapperImageRatio3x4") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(0.75f) - .wrap(::WrapperImageRatio3x4) - -public val Image.Ratio2x1: WrapperImageRatio2x1 - @Composable - @JvmName("WrapperImageRatio2x1") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(2.0f) - .wrap(::WrapperImageRatio2x1) - -public val Image.Ratio16x9: WrapperImageRatio16x9 - @Composable - @JvmName("WrapperImageRatio16x9") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(1.7777778f) - .wrap(::WrapperImageRatio16x9) - -public val Image.Ratio4x3: WrapperImageRatio4x3 - @Composable - @JvmName("WrapperImageRatio4x3") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(1.3333334f) - .wrap(::WrapperImageRatio4x3) - -public val Image.Ratio1x1: WrapperImageRatio1x1 - @Composable - @JvmName("WrapperImageRatio1x1") - get() = ImageStyle.builder(this) - .invariantProps - .ratio(1.0f) - .wrap(::WrapperImageRatio1x1) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/Indicator.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/Indicator.kt deleted file mode 100644 index 9d67d1a361..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/Indicator.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.indicator - -/** - * Вспомогательный объект для описания API и стиля компонента Indicator - */ -public object Indicator diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/IndicatorStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/IndicatorStyles.kt deleted file mode 100644 index 7d27395e05..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/indicator/IndicatorStyles.kt +++ /dev/null @@ -1,184 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.indicator - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.IndicatorStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIndicator : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIndicatorView : WrapperIndicator - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIndicatorTerminate( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicator - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIndicatorL( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIndicatorM( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIndicatorS( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -public val WrapperIndicatorView.Default: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Accent: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Inactive: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Positive: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Warning: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Negative: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Black: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.White: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -private val IndicatorStyleBuilder.invariantProps: IndicatorStyleBuilder - @Composable - get() = this - .shape(CircleShape) - -public val Indicator.L: WrapperIndicatorL - @Composable - @JvmName("WrapperIndicatorL") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(12.0.dp) - width(12.0.dp) - } - .wrap(::WrapperIndicatorL) - -public val Indicator.M: WrapperIndicatorM - @Composable - @JvmName("WrapperIndicatorM") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(8.0.dp) - width(8.0.dp) - } - .wrap(::WrapperIndicatorM) - -public val Indicator.S: WrapperIndicatorS - @Composable - @JvmName("WrapperIndicatorS") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(6.0.dp) - width(6.0.dp) - } - .wrap(::WrapperIndicatorS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButton.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButton.kt deleted file mode 100644 index e3b93d40b3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.linkbutton - -/** - * Вспомогательный объект для описания API и стиля компонента LinkButton - */ -public object LinkButton diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButtonStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButtonStyles.kt deleted file mode 100644 index 7dc80845f7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/linkbutton/LinkButtonStyles.kt +++ /dev/null @@ -1,396 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.linkbutton - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.LinkButtonStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.linkButtonBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperLinkButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperLinkButtonView : WrapperLinkButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperLinkButtonTerminate( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButton - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperLinkButtonXl( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperLinkButtonL( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperLinkButtonM( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperLinkButtonS( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperLinkButtonXs( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperLinkButtonXxs( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -public val WrapperLinkButtonView.Default: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Secondary: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Accent: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultAccentHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultAccentHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultAccentActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultAccentHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Positive: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPositiveHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPositiveHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPositiveHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Negative: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultNegativeHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Warning: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultWarningHover, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultWarningHover, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultWarningHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -private val LinkButtonStyleBuilder.invariantProps: LinkButtonStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - .loadingAlpha(0.06f) - .disableAlpha(0.4f) - -public val LinkButton.Xl: WrapperLinkButtonXl - @Composable - @JvmName("WrapperLinkButtonXl") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - height(64.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(50.0.dp) - iconSize(24.0.dp) - spinnerSize(24.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - } - .wrap(::WrapperLinkButtonXl) - -public val LinkButton.L: WrapperLinkButtonL - @Composable - @JvmName("WrapperLinkButtonL") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - height(56.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(50.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - } - .wrap(::WrapperLinkButtonL) - -public val LinkButton.M: WrapperLinkButtonM - @Composable - @JvmName("WrapperLinkButtonM") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .dimensions { - height(48.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(44.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(6.0.dp) - } - .wrap(::WrapperLinkButtonM) - -public val LinkButton.S: WrapperLinkButtonS - @Composable - @JvmName("WrapperLinkButtonS") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySBold) - .dimensions { - height(40.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(39.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(4.0.dp) - } - .wrap(::WrapperLinkButtonS) - -public val LinkButton.Xs: WrapperLinkButtonXs - @Composable - @JvmName("WrapperLinkButtonXs") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .dimensions { - height(32.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(33.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - } - .wrap(::WrapperLinkButtonXs) - -public val LinkButton.Xxs: WrapperLinkButtonXxs - @Composable - @JvmName("WrapperLinkButtonXxs") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .dimensions { - height(24.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(33.0.dp) - iconSize(12.0.dp) - spinnerSize(12.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - } - .wrap(::WrapperLinkButtonXxs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormal.kt deleted file mode 100644 index e9339fe564..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuListNormal - */ -public object DropdownMenuListNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormalStyles.kt deleted file mode 100644 index cc0a0b4ebf..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListNormalStyles.kt +++ /dev/null @@ -1,117 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import com.sdds.plasma.giga.app.styles.listitem.Default -import com.sdds.plasma.giga.app.styles.listitem.DropdownMenuItemNormal -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuListNormal : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuListNormalXl( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuListNormalL( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuListNormalM( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuListNormalS( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuListNormalXs( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val DropdownMenuListNormal.Xl: WrapperDropdownMenuListNormalXl - @Composable - @JvmName("WrapperDropdownMenuListNormalXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.Xl.Default.style()) - .wrap(::WrapperDropdownMenuListNormalXl) - -public val DropdownMenuListNormal.L: WrapperDropdownMenuListNormalL - @Composable - @JvmName("WrapperDropdownMenuListNormalL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.L.Default.style()) - .wrap(::WrapperDropdownMenuListNormalL) - -public val DropdownMenuListNormal.M: WrapperDropdownMenuListNormalM - @Composable - @JvmName("WrapperDropdownMenuListNormalM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.M.Default.style()) - .wrap(::WrapperDropdownMenuListNormalM) - -public val DropdownMenuListNormal.S: WrapperDropdownMenuListNormalS - @Composable - @JvmName("WrapperDropdownMenuListNormalS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.S.Default.style()) - .wrap(::WrapperDropdownMenuListNormalS) - -public val DropdownMenuListNormal.Xs: WrapperDropdownMenuListNormalXs - @Composable - @JvmName("WrapperDropdownMenuListNormalXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.Xs.Default.style()) - .wrap(::WrapperDropdownMenuListNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTight.kt deleted file mode 100644 index 68be6bb14a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuListTight - */ -public object DropdownMenuListTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTightStyles.kt deleted file mode 100644 index b936bbafa6..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/DropdownMenuListTightStyles.kt +++ /dev/null @@ -1,117 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import com.sdds.plasma.giga.app.styles.listitem.Default -import com.sdds.plasma.giga.app.styles.listitem.DropdownMenuItemTight -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuListTight : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuListTightXl( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuListTightL( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuListTightM( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuListTightS( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuListTightXs( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val DropdownMenuListTight.Xl: WrapperDropdownMenuListTightXl - @Composable - @JvmName("WrapperDropdownMenuListTightXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.Xl.Default.style()) - .wrap(::WrapperDropdownMenuListTightXl) - -public val DropdownMenuListTight.L: WrapperDropdownMenuListTightL - @Composable - @JvmName("WrapperDropdownMenuListTightL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.L.Default.style()) - .wrap(::WrapperDropdownMenuListTightL) - -public val DropdownMenuListTight.M: WrapperDropdownMenuListTightM - @Composable - @JvmName("WrapperDropdownMenuListTightM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.M.Default.style()) - .wrap(::WrapperDropdownMenuListTightM) - -public val DropdownMenuListTight.S: WrapperDropdownMenuListTightS - @Composable - @JvmName("WrapperDropdownMenuListTightS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.S.Default.style()) - .wrap(::WrapperDropdownMenuListTightS) - -public val DropdownMenuListTight.Xs: WrapperDropdownMenuListTightXs - @Composable - @JvmName("WrapperDropdownMenuListTightXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.Xs.Default.style()) - .wrap(::WrapperDropdownMenuListTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormal.kt deleted file mode 100644 index c3360d6e87..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента ListNormal - */ -public object ListNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormalStyles.kt deleted file mode 100644 index d3f77fa389..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListNormalStyles.kt +++ /dev/null @@ -1,113 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.ListItemNormal -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListNormal : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListNormalXl( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListNormalL( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListNormalM( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListNormalS( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListNormalXs( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - -public val ListNormal.Xl: WrapperListNormalXl - @Composable - @JvmName("WrapperListNormalXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.Xl.style()) - .wrap(::WrapperListNormalXl) - -public val ListNormal.L: WrapperListNormalL - @Composable - @JvmName("WrapperListNormalL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.L.style()) - .wrap(::WrapperListNormalL) - -public val ListNormal.M: WrapperListNormalM - @Composable - @JvmName("WrapperListNormalM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.M.style()) - .wrap(::WrapperListNormalM) - -public val ListNormal.S: WrapperListNormalS - @Composable - @JvmName("WrapperListNormalS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.S.style()) - .wrap(::WrapperListNormalS) - -public val ListNormal.Xs: WrapperListNormalXs - @Composable - @JvmName("WrapperListNormalXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.Xs.style()) - .wrap(::WrapperListNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTight.kt deleted file mode 100644 index 9f9ebc45d2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента ListTight - */ -public object ListTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTightStyles.kt deleted file mode 100644 index a8285eb74e..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/list/ListTightStyles.kt +++ /dev/null @@ -1,113 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.ListItemTight -import com.sdds.plasma.giga.app.styles.listitem.M -import com.sdds.plasma.giga.app.styles.listitem.S -import com.sdds.plasma.giga.app.styles.listitem.Xl -import com.sdds.plasma.giga.app.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListTight : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListTightXl( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListTightL( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListTightM( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListTightS( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListTightXs( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - -public val ListTight.Xl: WrapperListTightXl - @Composable - @JvmName("WrapperListTightXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.Xl.style()) - .wrap(::WrapperListTightXl) - -public val ListTight.L: WrapperListTightL - @Composable - @JvmName("WrapperListTightL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.L.style()) - .wrap(::WrapperListTightL) - -public val ListTight.M: WrapperListTightM - @Composable - @JvmName("WrapperListTightM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.M.style()) - .wrap(::WrapperListTightM) - -public val ListTight.S: WrapperListTightS - @Composable - @JvmName("WrapperListTightS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.S.style()) - .wrap(::WrapperListTightS) - -public val ListTight.Xs: WrapperListTightXs - @Composable - @JvmName("WrapperListTightXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.Xs.style()) - .wrap(::WrapperListTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormal.kt deleted file mode 100644 index 164032641d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuItemNormal - */ -public object DropdownMenuItemNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormalStyles.kt deleted file mode 100644 index 7971a10292..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemNormalStyles.kt +++ /dev/null @@ -1,218 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuItemNormal : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperDropdownMenuItemNormalView : WrapperDropdownMenuItemNormal - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalTerminate( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormal - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalXl( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalL( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalM( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalS( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalXs( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -public val WrapperDropdownMenuItemNormalView.Default: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -public val WrapperDropdownMenuItemNormalView.Positive: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -public val WrapperDropdownMenuItemNormalView.Negative: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Focused) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val DropdownMenuItemNormal.Xl: WrapperDropdownMenuItemNormalXl - @Composable - @JvmName("WrapperDropdownMenuItemNormalXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(64.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(20.0.dp) - paddingBottom(20.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalXl) - -public val DropdownMenuItemNormal.L: WrapperDropdownMenuItemNormalL - @Composable - @JvmName("WrapperDropdownMenuItemNormalL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalL) - -public val DropdownMenuItemNormal.M: WrapperDropdownMenuItemNormalM - @Composable - @JvmName("WrapperDropdownMenuItemNormalM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalM) - -public val DropdownMenuItemNormal.S: WrapperDropdownMenuItemNormalS - @Composable - @JvmName("WrapperDropdownMenuItemNormalS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(6.0.dp) - height(40.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalS) - -public val DropdownMenuItemNormal.Xs: WrapperDropdownMenuItemNormalXs - @Composable - @JvmName("WrapperDropdownMenuItemNormalXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTight.kt deleted file mode 100644 index f012290775..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuItemTight - */ -public object DropdownMenuItemTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTightStyles.kt deleted file mode 100644 index 818ed28702..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/DropdownMenuItemTightStyles.kt +++ /dev/null @@ -1,218 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuItemTight : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperDropdownMenuItemTightView : WrapperDropdownMenuItemTight - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperDropdownMenuItemTightTerminate( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTight - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperDropdownMenuItemTightXl( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuItemTightL( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuItemTightM( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuItemTightS( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuItemTightXs( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -public val WrapperDropdownMenuItemTightView.Default: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -public val WrapperDropdownMenuItemTightView.Positive: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -public val WrapperDropdownMenuItemTightView.Negative: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Focused) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val DropdownMenuItemTight.Xl: WrapperDropdownMenuItemTightXl - @Composable - @JvmName("WrapperDropdownMenuItemTightXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightXl) - -public val DropdownMenuItemTight.L: WrapperDropdownMenuItemTightL - @Composable - @JvmName("WrapperDropdownMenuItemTightL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightL) - -public val DropdownMenuItemTight.M: WrapperDropdownMenuItemTightM - @Composable - @JvmName("WrapperDropdownMenuItemTightM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightM) - -public val DropdownMenuItemTight.S: WrapperDropdownMenuItemTightS - @Composable - @JvmName("WrapperDropdownMenuItemTightS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(7.0.dp) - paddingBottom(7.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightS) - -public val DropdownMenuItemTight.Xs: WrapperDropdownMenuItemTightXs - @Composable - @JvmName("WrapperDropdownMenuItemTightXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXs) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormal.kt deleted file mode 100644 index a45923ac44..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента ListItemNormal - */ -public object ListItemNormal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormalStyles.kt deleted file mode 100644 index 68dd54021c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemNormalStyles.kt +++ /dev/null @@ -1,191 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListItemNormal : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListItemNormalXl( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListItemNormalL( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListItemNormalM( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListItemNormalS( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListItemNormalXs( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val ListItemNormal.Xl: WrapperListItemNormalXl - @Composable - @JvmName("WrapperListItemNormalXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(64.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(20.0.dp) - paddingBottom(20.0.dp) - } - .wrap(::WrapperListItemNormalXl) - -public val ListItemNormal.L: WrapperListItemNormalL - @Composable - @JvmName("WrapperListItemNormalL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperListItemNormalL) - -public val ListItemNormal.M: WrapperListItemNormalM - @Composable - @JvmName("WrapperListItemNormalM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperListItemNormalM) - -public val ListItemNormal.S: WrapperListItemNormalS - @Composable - @JvmName("WrapperListItemNormalS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(40.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .wrap(::WrapperListItemNormalS) - -public val ListItemNormal.Xs: WrapperListItemNormalXs - @Composable - @JvmName("WrapperListItemNormalXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperListItemNormalXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTight.kt deleted file mode 100644 index dbd19e24a3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента ListItemTight - */ -public object ListItemTight diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTightStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTightStyles.kt deleted file mode 100644 index fddfb18ec2..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/listitem/ListItemTightStyles.kt +++ /dev/null @@ -1,191 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListItemTight : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListItemTightXl( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListItemTightL( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListItemTightM( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListItemTightS( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListItemTightXs( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val ListItemTight.Xl: WrapperListItemTightXl - @Composable - @JvmName("WrapperListItemTightXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperListItemTightXl) - -public val ListItemTight.L: WrapperListItemTightL - @Composable - @JvmName("WrapperListItemTightL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperListItemTightL) - -public val ListItemTight.M: WrapperListItemTightM - @Composable - @JvmName("WrapperListItemTightM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .titleStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperListItemTightM) - -public val ListItemTight.S: WrapperListItemTightS - @Composable - @JvmName("WrapperListItemTightS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(7.0.dp) - paddingBottom(7.0.dp) - } - .wrap(::WrapperListItemTightS) - -public val ListItemTight.Xs: WrapperListItemTightXs - @Composable - @JvmName("WrapperListItemTightXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .titleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .subtitleStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - } - .wrap(::WrapperListItemTightXs) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/Loader.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/Loader.kt deleted file mode 100644 index 2428b2d255..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/Loader.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.loader - -/** - * Вспомогательный объект для описания API и стиля компонента Loader - */ -public object Loader diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/LoaderStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/LoaderStyles.kt deleted file mode 100644 index 4e4bd78d5b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/loader/LoaderStyles.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.loader - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.LoaderStyle -import com.sdds.compose.uikit.LoaderStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.giga.app.styles.circularprogressbar.Default -import com.sdds.plasma.giga.app.styles.circularprogressbar.L -import com.sdds.plasma.giga.app.styles.spinner.Default -import com.sdds.plasma.giga.app.styles.spinner.L -import com.sdds.plasma.giga.app.styles.spinner.Spinner -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperLoader : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperLoaderDefault( - public override val builder: LoaderStyleBuilder, -) : WrapperLoader - -public val Loader.Default: WrapperLoaderDefault - @Composable - @JvmName("WrapperLoaderDefault") - get() = LoaderStyle.builder(this) - .spinnerStyle(Spinner.L.Default.style()) - .circularProgressStyle(CircularProgressBar.L.Default.style()) - .wrap(::WrapperLoaderDefault) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/Modal.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/Modal.kt deleted file mode 100644 index 1da577120b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/Modal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.modal - -/** - * Вспомогательный объект для описания API и стиля компонента Modal - */ -public object Modal diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/ModalStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/ModalStyles.kt deleted file mode 100644 index a84d18bfd8..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/modal/ModalStyles.kt +++ /dev/null @@ -1,62 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.modal - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.ModalStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.overlay.Default -import com.sdds.plasma.giga.app.styles.overlay.Overlay -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperModal : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperModalDefault( - public override val builder: ModalStyleBuilder, -) : WrapperModal - -public val Modal.Default: WrapperModalDefault - @Composable - @JvmName("WrapperModalDefault") - get() = ModalStyle.builder(this) - .shape(PlasmaGigaAppTheme.shapes.roundXl) - .shadow(PlasmaGigaAppTheme.shadows.downSoftL) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - paddingStart(32.0.dp) - paddingEnd(32.0.dp) - paddingTop(32.0.dp) - paddingBottom(32.0.dp) - closeSize(24.0.dp) - } - .overlayStyle(Overlay.Default.style()) - .wrap(::WrapperModalDefault) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPage.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPage.kt deleted file mode 100644 index 7c6cac6437..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPage.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.navigationbar - -/** - * Вспомогательный объект для описания API и стиля компонента NavigationBarInternalPage - */ -public object NavigationBarInternalPage diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPageStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPageStyles.kt deleted file mode 100644 index 64ded40eeb..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarInternalPageStyles.kt +++ /dev/null @@ -1,159 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.navigationbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.NavigationBarStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNavigationBarInternalPage : - BuilderWrapper - -/** - * Обертка для вариации NoBackground - */ -@JvmInline -public value class WrapperNavigationBarInternalPageNoBackground( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -/** - * Обертка для вариации NoBackgroundRounded - */ -@JvmInline -public value class WrapperNavigationBarInternalPageNoBackgroundRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -/** - * Обертка для вариации HasBackground - */ -@JvmInline -public value class WrapperNavigationBarInternalPageHasBackground( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -/** - * Обертка для вариации HasBackgroundRounded - */ -@JvmInline -public value class WrapperNavigationBarInternalPageHasBackgroundRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -/** - * Обертка для вариации HasBackgroundShadow - */ -@JvmInline -public value class WrapperNavigationBarInternalPageHasBackgroundShadow( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -/** - * Обертка для вариации HasBackgroundShadowRounded - */ -@JvmInline -public value class WrapperNavigationBarInternalPageHasBackgroundShadowRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarInternalPage - -private val NavigationBarStyleBuilder.invariantProps: NavigationBarStyleBuilder - @Composable - get() = this - .textStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .backIcon(com.sdds.icons.R.drawable.ic_disclosure_left_outline_24) - .colors { - backIconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - actionStartColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - actionEndColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(20.0.dp) - paddingBottom(20.0.dp) - backIconMargin(4.0.dp) - textBlockTopMargin(16.0.dp) - horizontalSpacing(16.0.dp) - } - -public val NavigationBarInternalPage.NoBackground: WrapperNavigationBarInternalPageNoBackground - @Composable - @JvmName("WrapperNavigationBarInternalPageNoBackground") - get() = NavigationBarStyle.builder(this) - .invariantProps - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - .wrap(::WrapperNavigationBarInternalPageNoBackground) - -public val WrapperNavigationBarInternalPageNoBackground.Rounded: - WrapperNavigationBarInternalPageNoBackgroundRounded - @Composable - @JvmName("WrapperNavigationBarInternalPageNoBackgroundRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarInternalPageNoBackgroundRounded) - -public val NavigationBarInternalPage.HasBackground: WrapperNavigationBarInternalPageHasBackground - @Composable - @JvmName("WrapperNavigationBarInternalPageHasBackground") - get() = NavigationBarStyle.builder(this) - .invariantProps - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .wrap(::WrapperNavigationBarInternalPageHasBackground) - -public val WrapperNavigationBarInternalPageHasBackground.Rounded: - WrapperNavigationBarInternalPageHasBackgroundRounded - @Composable - @JvmName("WrapperNavigationBarInternalPageHasBackgroundRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarInternalPageHasBackgroundRounded) - -public val WrapperNavigationBarInternalPageHasBackground.Shadow: - WrapperNavigationBarInternalPageHasBackgroundShadow - @Composable - @JvmName("WrapperNavigationBarInternalPageHasBackgroundShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperNavigationBarInternalPageHasBackgroundShadow) - -public val WrapperNavigationBarInternalPageHasBackgroundShadow.Rounded: - WrapperNavigationBarInternalPageHasBackgroundShadowRounded - @Composable - @JvmName("WrapperNavigationBarInternalPageHasBackgroundShadowRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarInternalPageHasBackgroundShadowRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPage.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPage.kt deleted file mode 100644 index d88a01ff2f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPage.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.navigationbar - -/** - * Вспомогательный объект для описания API и стиля компонента NavigationBarMainPage - */ -public object NavigationBarMainPage diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPageStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPageStyles.kt deleted file mode 100644 index 36c0b7e932..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/navigationbar/NavigationBarMainPageStyles.kt +++ /dev/null @@ -1,154 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.navigationbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NavigationBarStyle -import com.sdds.compose.uikit.NavigationBarStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNavigationBarMainPage : - BuilderWrapper - -/** - * Обертка для вариации NoBackground - */ -@JvmInline -public value class WrapperNavigationBarMainPageNoBackground( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -/** - * Обертка для вариации NoBackgroundRounded - */ -@JvmInline -public value class WrapperNavigationBarMainPageNoBackgroundRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -/** - * Обертка для вариации HasBackground - */ -@JvmInline -public value class WrapperNavigationBarMainPageHasBackground( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -/** - * Обертка для вариации HasBackgroundRounded - */ -@JvmInline -public value class WrapperNavigationBarMainPageHasBackgroundRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -/** - * Обертка для вариации HasBackgroundShadow - */ -@JvmInline -public value class WrapperNavigationBarMainPageHasBackgroundShadow( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -/** - * Обертка для вариации HasBackgroundShadowRounded - */ -@JvmInline -public value class WrapperNavigationBarMainPageHasBackgroundShadowRounded( - public override val builder: NavigationBarStyleBuilder, -) : WrapperNavigationBarMainPage - -private val NavigationBarStyleBuilder.invariantProps: NavigationBarStyleBuilder - @Composable - get() = this - .textStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .colors { - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - actionStartColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - actionEndColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(20.0.dp) - paddingBottom(20.0.dp) - textBlockTopMargin(16.0.dp) - horizontalSpacing(16.0.dp) - } - -public val NavigationBarMainPage.NoBackground: WrapperNavigationBarMainPageNoBackground - @Composable - @JvmName("WrapperNavigationBarMainPageNoBackground") - get() = NavigationBarStyle.builder(this) - .invariantProps - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - .wrap(::WrapperNavigationBarMainPageNoBackground) - -public val WrapperNavigationBarMainPageNoBackground.Rounded: - WrapperNavigationBarMainPageNoBackgroundRounded - @Composable - @JvmName("WrapperNavigationBarMainPageNoBackgroundRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarMainPageNoBackgroundRounded) - -public val NavigationBarMainPage.HasBackground: WrapperNavigationBarMainPageHasBackground - @Composable - @JvmName("WrapperNavigationBarMainPageHasBackground") - get() = NavigationBarStyle.builder(this) - .invariantProps - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .wrap(::WrapperNavigationBarMainPageHasBackground) - -public val WrapperNavigationBarMainPageHasBackground.Rounded: - WrapperNavigationBarMainPageHasBackgroundRounded - @Composable - @JvmName("WrapperNavigationBarMainPageHasBackgroundRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarMainPageHasBackgroundRounded) - -public val WrapperNavigationBarMainPageHasBackground.Shadow: - WrapperNavigationBarMainPageHasBackgroundShadow - @Composable - @JvmName("WrapperNavigationBarMainPageHasBackgroundShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperNavigationBarMainPageHasBackgroundShadow) - -public val WrapperNavigationBarMainPageHasBackgroundShadow.Rounded: - WrapperNavigationBarMainPageHasBackgroundShadowRounded - @Composable - @JvmName("WrapperNavigationBarMainPageHasBackgroundShadowRounded") - get() = builder - .bottomShape(PlasmaGigaAppTheme.shapes.roundL) - .wrap(::WrapperNavigationBarMainPageHasBackgroundShadowRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompact.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompact.kt deleted file mode 100644 index 88f839f9d6..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompact.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.notification - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationCompact - */ -public object NotificationCompact diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompactStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompactStyles.kt deleted file mode 100644 index 68cb5af65a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationCompactStyles.kt +++ /dev/null @@ -1,115 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.notification - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.NotificationStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.notificationcontent.ButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.Default -import com.sdds.plasma.giga.app.styles.notificationcontent.NotificationContent -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationCompact : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperNotificationCompactL( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperNotificationCompactM( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperNotificationCompactS( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -private val NotificationStyleBuilder.invariantProps: NotificationStyleBuilder - @Composable - get() = this - .notificationContentStyle(NotificationContent.ButtonStretch.Default.style()) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val NotificationCompact.L: WrapperNotificationCompactL - @Composable - @JvmName("WrapperNotificationCompactL") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - closeSize(24.0.dp) - } - .wrap(::WrapperNotificationCompactL) - -public val NotificationCompact.M: WrapperNotificationCompactM - @Composable - @JvmName("WrapperNotificationCompactM") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - paddingTop(6.0.dp) - paddingBottom(6.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationCompactM) - -public val NotificationCompact.S: WrapperNotificationCompactS - @Composable - @JvmName("WrapperNotificationCompactS") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - paddingStart(4.0.dp) - paddingEnd(4.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationCompactS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLoose.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLoose.kt deleted file mode 100644 index bc7e0e66c6..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLoose.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.notification - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationLoose - */ -public object NotificationLoose diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLooseStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLooseStyles.kt deleted file mode 100644 index f5aa702438..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notification/NotificationLooseStyles.kt +++ /dev/null @@ -1,115 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.notification - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.NotificationStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.notificationcontent.Default -import com.sdds.plasma.giga.app.styles.notificationcontent.NoButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.NotificationContent -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationLoose : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperNotificationLooseL( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperNotificationLooseM( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperNotificationLooseS( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -private val NotificationStyleBuilder.invariantProps: NotificationStyleBuilder - @Composable - get() = this - .notificationContentStyle(NotificationContent.NoButtonStretch.Default.style()) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val NotificationLoose.L: WrapperNotificationLooseL - @Composable - @JvmName("WrapperNotificationLooseL") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - closeSize(24.0.dp) - } - .wrap(::WrapperNotificationLooseL) - -public val NotificationLoose.M: WrapperNotificationLooseM - @Composable - @JvmName("WrapperNotificationLooseM") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationLooseM) - -public val NotificationLoose.S: WrapperNotificationLooseS - @Composable - @JvmName("WrapperNotificationLooseS") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .dimensions { - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationLooseS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContent.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContent.kt deleted file mode 100644 index a81c28ec01..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.notificationcontent - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationContent - */ -public object NotificationContent diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContentStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContentStyles.kt deleted file mode 100644 index 2da0c81529..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/notificationcontent/NotificationContentStyles.kt +++ /dev/null @@ -1,267 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.notificationcontent - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationContentButtonLayout -import com.sdds.compose.uikit.NotificationContentIconPlacement -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.NotificationContentStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.giga.app.styles.buttongroup.Default -import com.sdds.plasma.giga.app.styles.buttongroup.Dense -import com.sdds.plasma.giga.app.styles.buttongroup.Xs -import com.sdds.plasma.giga.app.styles.buttongroup.Xxs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationContent : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperNotificationContentView : WrapperNotificationContent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperNotificationContentTerminate( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContent - -/** - * Обертка для вариации ButtonStretch - */ -@JvmInline -public value class WrapperNotificationContentButtonStretch( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации ButtonStretchIconTop - */ -@JvmInline -public value class WrapperNotificationContentButtonStretchIconTop( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации ButtonStretchIconStart - */ -@JvmInline -public value class WrapperNotificationContentButtonStretchIconStart( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretch - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretch( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretchIconTop - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretchIconTop( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretchIconStart - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretchIconStart( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -public val WrapperNotificationContentView.Default: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Positive: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Negative: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Warning: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Info: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - PlasmaGigaAppTheme.colors.textDefaultInfo.asInteractive(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultInfo.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -private val NotificationContentStyleBuilder.invariantProps: NotificationContentStyleBuilder - @Composable - get() = this - .icon(com.sdds.icons.R.drawable.ic_info_circle_outline_24) - .titleStyle(PlasmaGigaAppTheme.typography.bodySBold) - .textStyle(PlasmaGigaAppTheme.typography.textSNormal) - .dimensions { - iconSize(24.0.dp) - textPadding(4.0.dp) - textBoxBottomPadding(6.0.dp) - buttonGroupTopPadding(6.0.dp) - } - -public val NotificationContent.ButtonStretch: WrapperNotificationContentButtonStretch - @Composable - @JvmName("WrapperNotificationContentButtonStretch") - get() = NotificationContentStyle.builder(this) - .invariantProps - .buttonLayout(NotificationContentButtonLayout.Stretch) - .buttonGroupStyle(BasicButtonGroup.Xs.Dense.Default.style()) - .dimensions { - contentStartPadding(4.0.dp) - contentTopPadding(2.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretch) - -public val WrapperNotificationContentButtonStretch.IconTop: - WrapperNotificationContentButtonStretchIconTop - @Composable - @JvmName("WrapperNotificationContentButtonStretchIconTop") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Top) - .dimensions { - iconMargin(8.0.dp) - contentEndPadding(6.0.dp) - textBoxStartPadding(2.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretchIconTop) - -public val WrapperNotificationContentButtonStretch.IconStart: - WrapperNotificationContentButtonStretchIconStart - @Composable - @JvmName("WrapperNotificationContentButtonStretchIconStart") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Start) - .dimensions { - iconMargin(6.0.dp) - textBoxStartPadding(2.0.dp) - textBoxTopPadding(3.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretchIconStart) - -public val NotificationContent.NoButtonStretch: WrapperNotificationContentNoButtonStretch - @Composable - @JvmName("WrapperNotificationContentNoButtonStretch") - get() = NotificationContentStyle.builder(this) - .invariantProps - .buttonLayout(NotificationContentButtonLayout.Normal) - .buttonGroupStyle(BasicButtonGroup.Xxs.Dense.Default.style()) - .dimensions { - contentTopPadding(4.0.dp) - textBoxStartPadding(2.0.dp) - textBoxTopPadding(3.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretch) - -public val WrapperNotificationContentNoButtonStretch.IconTop: - WrapperNotificationContentNoButtonStretchIconTop - @Composable - @JvmName("WrapperNotificationContentNoButtonStretchIconTop") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Top) - .dimensions { - iconMargin(8.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretchIconTop) - -public val WrapperNotificationContentNoButtonStretch.IconStart: - WrapperNotificationContentNoButtonStretchIconStart - @Composable - @JvmName("WrapperNotificationContentNoButtonStretchIconStart") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Start) - .dimensions { - iconMargin(6.0.dp) - buttonGroupStartPadding(32.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretchIconStart) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/Overlay.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/Overlay.kt deleted file mode 100644 index 732710c237..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/Overlay.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.overlay - -/** - * Вспомогательный объект для описания API и стиля компонента Overlay - */ -public object Overlay diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/OverlayStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/OverlayStyles.kt deleted file mode 100644 index f1a5b7bc0b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/overlay/OverlayStyles.kt +++ /dev/null @@ -1,44 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.overlay - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import com.sdds.compose.uikit.OverlayStyle -import com.sdds.compose.uikit.OverlayStyleBuilder -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperOverlay : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperOverlayDefault( - public override val builder: OverlayStyleBuilder, -) : WrapperOverlay - -public val Overlay.Default: WrapperOverlayDefault - @Composable - @JvmName("WrapperOverlayDefault") - get() = OverlayStyle.builder(this) - .color { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.overlayDefaultSoft).asStatefulValue(), - ) - } - .wrap(::WrapperOverlayDefault) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/Popover.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/Popover.kt deleted file mode 100644 index 861f8a489c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/Popover.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.popover - -/** - * Вспомогательный объект для описания API и стиля компонента Popover - */ -public object Popover diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/PopoverStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/PopoverStyles.kt deleted file mode 100644 index 8d402c5a5d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/popover/PopoverStyles.kt +++ /dev/null @@ -1,111 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.popover - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.PopoverStyleBuilder -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperPopover : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperPopoverView : WrapperPopover - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperPopoverTerminate( - public override val builder: PopoverStyleBuilder, -) : WrapperPopover - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperPopoverM( - public override val builder: PopoverStyleBuilder, -) : WrapperPopoverView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperPopoverS( - public override val builder: PopoverStyleBuilder, -) : WrapperPopoverView - -public val WrapperPopoverView.Default: WrapperPopoverTerminate - @Composable - get() = builder - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .wrap(::WrapperPopoverTerminate) - -public val WrapperPopoverView.Accent: WrapperPopoverTerminate - @Composable - get() = builder - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultAccent).asStatefulValue(), - ) - } - .wrap(::WrapperPopoverTerminate) - -private val PopoverStyleBuilder.invariantProps: PopoverStyleBuilder - @Composable - get() = this - .shadow(PlasmaGigaAppTheme.shadows.downHardM) - .dimensions { - width(182.0.dp) - offset(8.0.dp) - tailWidth(20.0.dp) - tailHeight(8.0.dp) - } - -public val Popover.M: WrapperPopoverM - @Composable - @JvmName("WrapperPopoverM") - get() = PopoverStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - tailPadding(20.0.dp) - } - .wrap(::WrapperPopoverM) - -public val Popover.S: WrapperPopoverS - @Composable - @JvmName("WrapperPopoverS") - get() = PopoverStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - tailPadding(16.0.dp) - } - .wrap(::WrapperPopoverS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBar.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBar.kt deleted file mode 100644 index 511f286969..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.progressbar - -/** - * Вспомогательный объект для описания API и стиля компонента ProgressBar - */ -public object ProgressBar diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBarStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBarStyles.kt deleted file mode 100644 index 3f817e6a5a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/progressbar/ProgressBarStyles.kt +++ /dev/null @@ -1,157 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.progressbar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.ProgressBarStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperProgressBar : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperProgressBarTerminate( - public override val builder: ProgressBarStyleBuilder, -) : WrapperProgressBar - -public val ProgressBar.Default: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Secondary: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Accent: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Gradient: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.gradients.surfaceDefaultAccentGradient.asLayered().asStatefulValue(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Info: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultInfo.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Negative: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Positive: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Warning: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -private val ProgressBarStyleBuilder.invariantProps: ProgressBarStyleBuilder - @Composable - get() = this - .indicatorShape(CircleShape) - .backgroundShape(CircleShape) - .dimensionValues { - indicatorHeight(4.0.dp) - backgroundHeight(4.0.dp) - } diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBox.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBox.kt deleted file mode 100644 index 91b4700d7f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBox.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.radiobox - -/** - * Вспомогательный объект для описания API и стиля компонента RadioBox - */ -public object RadioBox diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBoxStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBoxStyles.kt deleted file mode 100644 index 6041bd4bee..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radiobox/RadioBoxStyles.kt +++ /dev/null @@ -1,169 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.radiobox - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.RadioBoxStates -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.RadioBoxStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRadioBox : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperRadioBoxL( - public override val builder: RadioBoxStyleBuilder, -) : WrapperRadioBox - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperRadioBoxM( - public override val builder: RadioBoxStyleBuilder, -) : WrapperRadioBox - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperRadioBoxS( - public override val builder: RadioBoxStyleBuilder, -) : WrapperRadioBox - -private val RadioBoxStyleBuilder.invariantProps: RadioBoxStyleBuilder - @Composable - get() = this - .shape(CircleShape) - .colorValues { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - toggleColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(RadioBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - toggleIconColor( - PlasmaGigaAppTheme.colors.textInversePrimary.asInteractive(), - ) - toggleBorderColor( - PlasmaGigaAppTheme.colors.outlineDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Focused) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - setOf( - InteractiveState.Focused, - RadioBoxStates.Checked, - ) - to PlasmaGigaAppTheme.colors.outlineDefaultAccent, - setOf(RadioBoxStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultClear, - ), - ) - } - .dimensionValues { - toggleBorderOffset( - 0.0.dp.asStatefulValue( - setOf(InteractiveState.Focused) to 3.0.dp, - setOf( - InteractiveState.Focused, - RadioBoxStates.Checked, - ) to 3.0.dp, - ), - ) - } - .disableAlpha(0.4f) - -public val RadioBox.L: WrapperRadioBoxL - @Composable - @JvmName("WrapperRadioBoxL") - get() = RadioBoxStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight(10.0.dp) - toggleIconWidth(10.0.dp) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, RadioBoxStates.Checked) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(12.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperRadioBoxL) - -public val RadioBox.M: WrapperRadioBoxM - @Composable - @JvmName("WrapperRadioBoxM") - get() = RadioBoxStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight(10.0.dp) - toggleIconWidth(10.0.dp) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, RadioBoxStates.Checked) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(10.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperRadioBoxM) - -public val RadioBox.S: WrapperRadioBoxS - @Composable - @JvmName("WrapperRadioBoxS") - get() = RadioBoxStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensionValues { - toggleWidth(18.0.dp) - toggleHeight(18.0.dp) - toggleIconHeight(8.0.dp) - toggleIconWidth(8.0.dp) - toggleBorderWidth( - 1.5.dp.asStatefulValue( - setOf(InteractiveState.Focused, RadioBoxStates.Checked) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(8.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperRadioBoxS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroup.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroup.kt deleted file mode 100644 index 841a8304e5..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.radioboxgroup - -/** - * Вспомогательный объект для описания API и стиля компонента RadioBoxGroup - */ -public object RadioBoxGroup diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroupStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroupStyles.kt deleted file mode 100644 index b76b820321..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/radioboxgroup/RadioBoxGroupStyles.kt +++ /dev/null @@ -1,70 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.radioboxgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.RadioBoxGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.radiobox.M -import com.sdds.plasma.giga.app.styles.radiobox.RadioBox -import com.sdds.plasma.giga.app.styles.radiobox.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRadioBoxGroup : - BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperRadioBoxGroupM( - public override val builder: RadioBoxGroupStyleBuilder, -) : WrapperRadioBoxGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperRadioBoxGroupS( - public override val builder: RadioBoxGroupStyleBuilder, -) : WrapperRadioBoxGroup - -private val RadioBoxGroupStyleBuilder.invariantProps: RadioBoxGroupStyleBuilder - @Composable - get() = this - -public val RadioBoxGroup.M: WrapperRadioBoxGroupM - @Composable - @JvmName("WrapperRadioBoxGroupM") - get() = RadioBoxGroupStyle.builder(this) - .invariantProps - .radioBoxStyle(RadioBox.M.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperRadioBoxGroupM) - -public val RadioBoxGroup.S: WrapperRadioBoxGroupS - @Composable - @JvmName("WrapperRadioBoxGroupS") - get() = RadioBoxGroupStyle.builder(this) - .invariantProps - .radioBoxStyle(RadioBox.S.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperRadioBoxGroupS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeleton.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeleton.kt deleted file mode 100644 index 43cc17b563..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeleton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.rectskeleton - -/** - * Вспомогательный объект для описания API и стиля компонента RectSkeleton - */ -public object RectSkeleton diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeletonStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeletonStyles.kt deleted file mode 100644 index fb7e3b5a4f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/rectskeleton/RectSkeletonStyles.kt +++ /dev/null @@ -1,57 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.rectskeleton - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.RectSkeletonStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRectSkeleton : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperRectSkeletonTerminate( - public override val builder: RectSkeletonStyleBuilder, -) : WrapperRectSkeleton - -public val RectSkeleton.Default: WrapperRectSkeletonTerminate - @Composable - get() = RectSkeletonStyle.builder(this) - .invariantProps - .gradient( - PlasmaGigaAppTheme.gradients.surfaceDefaultSkeletonGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperRectSkeletonTerminate) - -public val RectSkeleton.Lighter: WrapperRectSkeletonTerminate - @Composable - get() = RectSkeletonStyle.builder(this) - .invariantProps - .gradient( - - PlasmaGigaAppTheme.gradients.surfaceDefaultSkeletonDeepGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperRectSkeletonTerminate) - -private val RectSkeletonStyleBuilder.invariantProps: RectSkeletonStyleBuilder - @Composable - get() = this - .shape(PlasmaGigaAppTheme.shapes.roundM) - .duration(5000.0.toInt()) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBar.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBar.kt deleted file mode 100644 index 0ed41c8316..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.scrollbar - -/** - * Вспомогательный объект для описания API и стиля компонента ScrollBar - */ -public object ScrollBar diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBarStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBarStyles.kt deleted file mode 100644 index 0e0139d5c7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/scrollbar/ScrollBarStyles.kt +++ /dev/null @@ -1,76 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.scrollbar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.ScrollBarStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperScrollBar : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperScrollBarS( - public override val builder: ScrollBarStyleBuilder, -) : WrapperScrollBar - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperScrollBarM( - public override val builder: ScrollBarStyleBuilder, -) : WrapperScrollBar - -private val ScrollBarStyleBuilder.invariantProps: ScrollBarStyleBuilder - @Composable - get() = this - .hoverExpandFactor(2.0f) - .shape(CircleShape) - .colors { - thumbColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - trackColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - } - -public val ScrollBar.S: WrapperScrollBarS - @Composable - @JvmName("WrapperScrollBarS") - get() = ScrollBarStyle.builder(this) - .invariantProps - .dimensions { - width(2.0.dp) - } - .wrap(::WrapperScrollBarS) - -public val ScrollBar.M: WrapperScrollBarM - @Composable - @JvmName("WrapperScrollBarM") - get() = ScrollBarStyle.builder(this) - .invariantProps - .dimensions { - width(4.0.dp) - } - .wrap(::WrapperScrollBarM) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/Segment.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/Segment.kt deleted file mode 100644 index b6cc7428e0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/Segment.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.segment - -/** - * Вспомогательный объект для описания API и стиля компонента Segment - */ -public object Segment diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/SegmentStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/SegmentStyles.kt deleted file mode 100644 index efe2669955..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segment/SegmentStyles.kt +++ /dev/null @@ -1,530 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.segment - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.SegmentStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.segmentitem.Accent -import com.sdds.plasma.giga.app.styles.segmentitem.L -import com.sdds.plasma.giga.app.styles.segmentitem.M -import com.sdds.plasma.giga.app.styles.segmentitem.Pilled -import com.sdds.plasma.giga.app.styles.segmentitem.Primary -import com.sdds.plasma.giga.app.styles.segmentitem.S -import com.sdds.plasma.giga.app.styles.segmentitem.Secondary -import com.sdds.plasma.giga.app.styles.segmentitem.SegmentItem -import com.sdds.plasma.giga.app.styles.segmentitem.Xl -import com.sdds.plasma.giga.app.styles.segmentitem.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSegment : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации xl - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXlView : WrapperSegment - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperSegmentTerminate( - public override val builder: SegmentStyleBuilder, -) : WrapperSegment - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperSegmentXl( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXlView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXlPilledView : WrapperSegmentXlView - -/** - * Обертка для вариации XlPilled - */ -@JvmInline -public value class WrapperSegmentXlPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXlPilledView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentLView : WrapperSegment - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSegmentL( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentLPilledView : WrapperSegmentLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperSegmentLPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentMView : WrapperSegment - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSegmentM( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentMPilledView : WrapperSegmentMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperSegmentMPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentSView : WrapperSegment - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSegmentS( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentSPilledView : WrapperSegmentSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperSegmentSPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXsView : WrapperSegment - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperSegmentXs( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXsPilledView : WrapperSegmentXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperSegmentXsPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXsPilledView - -private val SegmentStyleBuilder.invariantProps: SegmentStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - } - -public val WrapperSegmentXlView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXlView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXlView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.Xl: WrapperSegmentXl - @Composable - @JvmName("WrapperSegmentXl") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundXl.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentXl) - -public val WrapperSegmentXlPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXlPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXlPilledView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXlPilledViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.Xl.Pilled.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXl.Pilled: WrapperSegmentXlPilled - @Composable - @JvmName("WrapperSegmentXlPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentXlPilled) - -public val WrapperSegmentLView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.L.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.L.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.L.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.L: WrapperSegmentL - @Composable - @JvmName("WrapperSegmentL") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentL) - -public val WrapperSegmentLPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.L.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.L.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLPilledView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLPilledViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.L.Pilled.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentL.Pilled: WrapperSegmentLPilled - @Composable - @JvmName("WrapperSegmentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentLPilled) - -public val WrapperSegmentMView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.M.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.M.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.M.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.M: WrapperSegmentM - @Composable - @JvmName("WrapperSegmentM") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentM) - -public val WrapperSegmentMPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.M.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.M.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMPilledView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMPilledViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.M.Pilled.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentM.Pilled: WrapperSegmentMPilled - @Composable - @JvmName("WrapperSegmentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentMPilled) - -public val WrapperSegmentSView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.S.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.S.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.S.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.S: WrapperSegmentS - @Composable - @JvmName("WrapperSegmentS") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentS) - -public val WrapperSegmentSPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.S.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.S.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSPilledView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSPilledViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.S.Pilled.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentS.Pilled: WrapperSegmentSPilled - @Composable - @JvmName("WrapperSegmentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentSPilled) - -public val WrapperSegmentXsView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.Xs: WrapperSegmentXs - @Composable - @JvmName("WrapperSegmentXs") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentXs) - -public val WrapperSegmentXsPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsPilledView.Accent: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsPilledViewAccent") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Pilled.Accent.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXs.Pilled: WrapperSegmentXsPilled - @Composable - @JvmName("WrapperSegmentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItem.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItem.kt deleted file mode 100644 index 0820de6f3f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItem.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.segmentitem - -/** - * Вспомогательный объект для описания API и стиля компонента SegmentItem - */ -public object SegmentItem diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItemStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItemStyles.kt deleted file mode 100644 index 6ee41123a0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/segmentitem/SegmentItemStyles.kt +++ /dev/null @@ -1,2142 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.segmentitem - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.SegmentItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.modify -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.counter.Accent -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.counter.Xxs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSegmentItem : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemView : WrapperSegmentItem - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperSegmentItemTerminate( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItem - -/** - * Интерфейс, который реализуют все обертки вариации xl - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemXlView : WrapperSegmentItemView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperSegmentItemXl( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemXlView - -/** - * Обертка для вариации XlPilled - */ -@JvmInline -public value class WrapperSegmentItemXlPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemXlView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemLView : WrapperSegmentItemView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSegmentItemL( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperSegmentItemLPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemLView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemMView : WrapperSegmentItemView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSegmentItemM( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperSegmentItemMPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemMView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemSView : WrapperSegmentItemView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSegmentItemS( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperSegmentItemSPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemSView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemXsView : WrapperSegmentItemView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperSegmentItemXs( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperSegmentItemXsPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemXsView - -public val WrapperSegmentItemView.Primary: WrapperSegmentItemTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemView.Secondary: WrapperSegmentItemTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemView.Accent: WrapperSegmentItemTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -private val SegmentItemStyleBuilder.invariantProps: SegmentItemStyleBuilder - @Composable - get() = this - -public val WrapperSegmentItemXlView.Accent: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXlViewAccent") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .counterStyle( - Counter.S.Accent.modify { - colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textOnLightPrimary, - ), - ) - } - }.style(), - ) - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemXlView.Primary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXlViewPrimary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemXlView.Secondary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXlViewSecondary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val SegmentItem.Xl: WrapperSegmentItemXl - @Composable - @JvmName("WrapperSegmentItemXl") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 0.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - minWidth(110.0.dp) - minHeight(64.0.dp) - paddingStart(28.0.dp) - paddingEnd(28.0.dp) - startContentPadding(6.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(6.0.dp) - } - .counterStyle(Counter.S.Accent.style()) - .wrap(::WrapperSegmentItemXl) - -public val WrapperSegmentItemXl.Pilled: WrapperSegmentItemXlPilled - @Composable - @JvmName("WrapperSegmentItemXlPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(94.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - } - .wrap(::WrapperSegmentItemXlPilled) - -public val WrapperSegmentItemLView.Accent: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemLViewAccent") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .counterStyle( - Counter.S.Accent.modify { - colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textOnLightPrimary, - ), - ) - } - }.style(), - ) - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemLView.Primary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemLViewPrimary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemLView.Secondary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemLViewSecondary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val SegmentItem.L: WrapperSegmentItemL - @Composable - @JvmName("WrapperSegmentItemL") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyLBold) - .dimensions { - minWidth(102.0.dp) - minHeight(56.0.dp) - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - startContentPadding(6.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(6.0.dp) - } - .counterStyle(Counter.S.Accent.style()) - .wrap(::WrapperSegmentItemL) - -public val WrapperSegmentItemL.Pilled: WrapperSegmentItemLPilled - @Composable - @JvmName("WrapperSegmentItemLPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(86.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - } - .wrap(::WrapperSegmentItemLPilled) - -public val WrapperSegmentItemMView.Accent: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemMViewAccent") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .counterStyle( - Counter.Xs.Accent.modify { - colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textOnLightPrimary, - ), - ) - } - }.style(), - ) - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemMView.Primary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemMViewPrimary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemMView.Secondary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemMViewSecondary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val SegmentItem.M: WrapperSegmentItemM - @Composable - @JvmName("WrapperSegmentItemM") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = 0.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyMBold) - .dimensions { - minWidth(88.0.dp) - minHeight(48.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(4.0.dp) - } - .counterStyle(Counter.Xs.Accent.style()) - .wrap(::WrapperSegmentItemM) - -public val WrapperSegmentItemM.Pilled: WrapperSegmentItemMPilled - @Composable - @JvmName("WrapperSegmentItemMPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(72.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - } - .wrap(::WrapperSegmentItemMPilled) - -public val WrapperSegmentItemSView.Accent: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemSViewAccent") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .counterStyle( - Counter.Xs.Accent.modify { - colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textOnLightPrimary, - ), - ) - } - }.style(), - ) - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemSView.Primary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemSViewPrimary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemSView.Secondary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemSViewSecondary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val SegmentItem.S: WrapperSegmentItemS - @Composable - @JvmName("WrapperSegmentItemS") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodySBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodySBold) - .dimensions { - minWidth(75.0.dp) - minHeight(40.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - startContentPadding(2.0.dp) - endContentPadding(2.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(2.0.dp) - } - .counterStyle(Counter.Xs.Accent.style()) - .wrap(::WrapperSegmentItemS) - -public val WrapperSegmentItemS.Pilled: WrapperSegmentItemSPilled - @Composable - @JvmName("WrapperSegmentItemSPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(59.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperSegmentItemSPilled) - -public val WrapperSegmentItemXsView.Accent: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXsViewAccent") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccentHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .counterStyle( - Counter.Xxs.Accent.modify { - colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceOnDarkSolidDefault, - ), - ) - textColor( - PlasmaGigaAppTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textOnLightPrimary, - ), - ) - } - }.style(), - ) - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemXsView.Primary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXsViewPrimary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemXsView.Secondary: WrapperSegmentItemTerminate - @Composable - @JvmName("WrapperSegmentItemXsViewSecondary") - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to PlasmaGigaAppTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val SegmentItem.Xs: WrapperSegmentItemXs - @Composable - @JvmName("WrapperSegmentItemXs") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsBold) - .dimensions { - minWidth(61.0.dp) - minHeight(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - startContentPadding(2.0.dp) - endContentPadding(2.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - valueMargin(2.0.dp) - } - .counterStyle(Counter.Xxs.Accent.style()) - .wrap(::WrapperSegmentItemXs) - -public val WrapperSegmentItemXs.Pilled: WrapperSegmentItemXsPilled - @Composable - @JvmName("WrapperSegmentItemXsPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(53.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperSegmentItemXsPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/Spinner.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/Spinner.kt deleted file mode 100644 index 3cc63c6343..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/Spinner.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.spinner - -/** - * Вспомогательный объект для описания API и стиля компонента Spinner - */ -public object Spinner diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/SpinnerStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/SpinnerStyles.kt deleted file mode 100644 index 0549eafdfc..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/spinner/SpinnerStyles.kt +++ /dev/null @@ -1,298 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.spinner - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SpinnerStrokeCap -import com.sdds.compose.uikit.SpinnerStyle -import com.sdds.compose.uikit.SpinnerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSpinner : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSpinnerView : WrapperSpinner - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperSpinnerTerminate( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinner - -/** - * Обертка для вариации Xxl - */ -@JvmInline -public value class WrapperSpinnerXxl( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperSpinnerXl( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSpinnerL( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSpinnerM( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSpinnerS( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperSpinnerXs( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperSpinnerXxs( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -/** - * Обертка для вариации Scalable - */ -@JvmInline -public value class WrapperSpinnerScalable( - public override val builder: SpinnerStyleBuilder, -) : WrapperSpinnerView - -public val WrapperSpinnerView.Default: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Secondary: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault.multiplyAlpha(0.32f).asInteractive(), - ) - endColor( - - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.multiplyAlpha(0.32f).asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Accent: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultAccent.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentAccent.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Positive: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPositive.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Negative: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Warning: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentWarning.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -public val WrapperSpinnerView.Info: WrapperSpinnerTerminate - @Composable - get() = builder - .colors { - startColor( - PlasmaGigaAppTheme.colors.surfaceDefaultInfo.asInteractive(), - ) - endColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentInfo.asInteractive(), - ) - } - .wrap(::WrapperSpinnerTerminate) - -private val SpinnerStyleBuilder.invariantProps: SpinnerStyleBuilder - @Composable - get() = this - .angle(360.0f) - .strokeCap(SpinnerStrokeCap.Round) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val Spinner.Xxl: WrapperSpinnerXxl - @Composable - @JvmName("WrapperSpinnerXxl") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(128.0.dp) - padding(8.0.dp) - } - .wrap(::WrapperSpinnerXxl) - -public val Spinner.Xl: WrapperSpinnerXl - @Composable - @JvmName("WrapperSpinnerXl") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(88.0.dp) - padding(6.0.dp) - } - .wrap(::WrapperSpinnerXl) - -public val Spinner.L: WrapperSpinnerL - @Composable - @JvmName("WrapperSpinnerL") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(56.0.dp) - padding(4.0.dp) - } - .wrap(::WrapperSpinnerL) - -public val Spinner.M: WrapperSpinnerM - @Composable - @JvmName("WrapperSpinnerM") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(48.0.dp) - padding(4.0.dp) - } - .wrap(::WrapperSpinnerM) - -public val Spinner.S: WrapperSpinnerS - @Composable - @JvmName("WrapperSpinnerS") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(36.0.dp) - padding(3.0.dp) - } - .wrap(::WrapperSpinnerS) - -public val Spinner.Xs: WrapperSpinnerXs - @Composable - @JvmName("WrapperSpinnerXs") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(24.0.dp) - padding(2.0.dp) - } - .wrap(::WrapperSpinnerXs) - -public val Spinner.Xxs: WrapperSpinnerXxs - @Composable - @JvmName("WrapperSpinnerXxs") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(16.0.dp) - padding(1.0.dp) - } - .wrap(::WrapperSpinnerXxs) - -public val Spinner.Scalable: WrapperSpinnerScalable - @Composable - @JvmName("WrapperSpinnerScalable") - get() = SpinnerStyle.builder(this) - .invariantProps - .dimensions { - size(16.0.dp) - padding(0.0.dp) - } - .wrap(::WrapperSpinnerScalable) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/Switch.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/Switch.kt deleted file mode 100644 index 5f26c657c0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/Switch.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.switcher - -/** - * Вспомогательный объект для описания API и стиля компонента Switch - */ -public object Switch diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/SwitchStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/SwitchStyles.kt deleted file mode 100644 index ce33d7ce9c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/switcher/SwitchStyles.kt +++ /dev/null @@ -1,189 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.switcher - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SwitchStates -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.SwitchStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSwitch : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSwitchL( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации LToggleS - */ -@JvmInline -public value class WrapperSwitchLToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSwitchM( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации MToggleS - */ -@JvmInline -public value class WrapperSwitchMToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSwitchS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации SToggleS - */ -@JvmInline -public value class WrapperSwitchSToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -private val SwitchStyleBuilder.invariantProps: SwitchStyleBuilder - @Composable - get() = this - .toggleTrackShape(CircleShape) - .toggleThumbShape(CircleShape) - .colorValues { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - toggleTrackColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(SwitchStates.Checked) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - toggleTrackBorderColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asInteractive(), - ) - toggleThumbColor( - PlasmaGigaAppTheme.colors.surfaceInverseSolidDefault.asInteractive(), - ) - } - .disableAlpha(0.4f) - -public val Switch.L: WrapperSwitchL - @Composable - @JvmName("WrapperSwitchL") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchL) - -public val WrapperSwitchL.ToggleS: WrapperSwitchLToggleS - @Composable - @JvmName("WrapperSwitchLToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchLToggleS) - -public val Switch.M: WrapperSwitchM - @Composable - @JvmName("WrapperSwitchM") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchM) - -public val WrapperSwitchM.ToggleS: WrapperSwitchMToggleS - @Composable - @JvmName("WrapperSwitchMToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchMToggleS) - -public val Switch.S: WrapperSwitchS - @Composable - @JvmName("WrapperSwitchS") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .descriptionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchS) - -public val WrapperSwitchS.ToggleS: WrapperSwitchSToggleS - @Composable - @JvmName("WrapperSwitchSToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchSToggleS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClear.kt deleted file mode 100644 index 24f6fe9509..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarClear - */ -public object TabBarClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClearStyles.kt deleted file mode 100644 index 6ee55768c3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarClearStyles.kt +++ /dev/null @@ -1,309 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemClear -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarClearMView : WrapperTabBarClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarClearTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarClearM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Обертка для вариации MRounded - */ -@JvmInline -public value class WrapperTabBarClearMRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarClearMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Обертка для вариации MShadowRounded - */ -@JvmInline -public value class WrapperTabBarClearMShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Обертка для вариации MDivider - */ -@JvmInline -public value class WrapperTabBarClearMDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Обертка для вариации MDividerRounded - */ -@JvmInline -public value class WrapperTabBarClearMDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarClearLView : WrapperTabBarClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarClearL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -/** - * Обертка для вариации LRounded - */ -@JvmInline -public value class WrapperTabBarClearLRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarClearLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -/** - * Обертка для вариации LShadowRounded - */ -@JvmInline -public value class WrapperTabBarClearLShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -/** - * Обертка для вариации LDivider - */ -@JvmInline -public value class WrapperTabBarClearLDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -/** - * Обертка для вариации LDividerRounded - */ -@JvmInline -public value class WrapperTabBarClearLDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarClearLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarClearMView.Default: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Default.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val WrapperTabBarClearMView.Secondary: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Secondary.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val WrapperTabBarClearMView.Accent: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Accent.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val TabBarClear.M: WrapperTabBarClearM - @Composable - @JvmName("WrapperTabBarClearM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarClearM) - -public val WrapperTabBarClearM.Rounded: WrapperTabBarClearMRounded - @Composable - @JvmName("WrapperTabBarClearMRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearMRounded) - -public val WrapperTabBarClearM.Shadow: WrapperTabBarClearMShadow - @Composable - @JvmName("WrapperTabBarClearMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarClearMShadow) - -public val WrapperTabBarClearMShadow.Rounded: WrapperTabBarClearMShadowRounded - @Composable - @JvmName("WrapperTabBarClearMShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearMShadowRounded) - -public val WrapperTabBarClearM.Divider: WrapperTabBarClearMDivider - @Composable - @JvmName("WrapperTabBarClearMDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarClearMDivider) - -public val WrapperTabBarClearMDivider.Rounded: WrapperTabBarClearMDividerRounded - @Composable - @JvmName("WrapperTabBarClearMDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearMDividerRounded) - -public val WrapperTabBarClearLView.Default: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Default.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val WrapperTabBarClearLView.Secondary: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Secondary.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val WrapperTabBarClearLView.Accent: WrapperTabBarClearTerminate - @Composable - @JvmName("WrapperTabBarClearLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Accent.style()) - .wrap(::WrapperTabBarClearTerminate) - -public val TabBarClear.L: WrapperTabBarClearL - @Composable - @JvmName("WrapperTabBarClearL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarClearL) - -public val WrapperTabBarClearL.Rounded: WrapperTabBarClearLRounded - @Composable - @JvmName("WrapperTabBarClearLRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearLRounded) - -public val WrapperTabBarClearL.Shadow: WrapperTabBarClearLShadow - @Composable - @JvmName("WrapperTabBarClearLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarClearLShadow) - -public val WrapperTabBarClearLShadow.Rounded: WrapperTabBarClearLShadowRounded - @Composable - @JvmName("WrapperTabBarClearLShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearLShadowRounded) - -public val WrapperTabBarClearL.Divider: WrapperTabBarClearLDivider - @Composable - @JvmName("WrapperTabBarClearLDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarClearLDivider) - -public val WrapperTabBarClearLDivider.Rounded: WrapperTabBarClearLDividerRounded - @Composable - @JvmName("WrapperTabBarClearLDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarClearLDividerRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClear.kt deleted file mode 100644 index 651ac9cbe1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarHasLabelClear - */ -public object TabBarHasLabelClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClearStyles.kt deleted file mode 100644 index 0095d913a7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelClearStyles.kt +++ /dev/null @@ -1,310 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemClear -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarHasLabelClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarHasLabelClearMView : WrapperTabBarHasLabelClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarHasLabelClearTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarHasLabelClearM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Обертка для вариации MRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearMRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarHasLabelClearMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Обертка для вариации MShadowRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearMShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Обертка для вариации MDivider - */ -@JvmInline -public value class WrapperTabBarHasLabelClearMDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Обертка для вариации MDividerRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearMDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarHasLabelClearLView : WrapperTabBarHasLabelClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarHasLabelClearL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -/** - * Обертка для вариации LRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearLRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarHasLabelClearLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -/** - * Обертка для вариации LShadowRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearLShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -/** - * Обертка для вариации LDivider - */ -@JvmInline -public value class WrapperTabBarHasLabelClearLDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -/** - * Обертка для вариации LDividerRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelClearLDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelClearLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarHasLabelClearMView.Default: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Default.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val WrapperTabBarHasLabelClearMView.Secondary: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Secondary.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val WrapperTabBarHasLabelClearMView.Accent: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Accent.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val TabBarHasLabelClear.M: WrapperTabBarHasLabelClearM - @Composable - @JvmName("WrapperTabBarHasLabelClearM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarHasLabelClearM) - -public val WrapperTabBarHasLabelClearM.Rounded: WrapperTabBarHasLabelClearMRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearMRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearMRounded) - -public val WrapperTabBarHasLabelClearM.Shadow: WrapperTabBarHasLabelClearMShadow - @Composable - @JvmName("WrapperTabBarHasLabelClearMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarHasLabelClearMShadow) - -public val WrapperTabBarHasLabelClearMShadow.Rounded: WrapperTabBarHasLabelClearMShadowRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearMShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearMShadowRounded) - -public val WrapperTabBarHasLabelClearM.Divider: WrapperTabBarHasLabelClearMDivider - @Composable - @JvmName("WrapperTabBarHasLabelClearMDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarHasLabelClearMDivider) - -public val WrapperTabBarHasLabelClearMDivider.Rounded: WrapperTabBarHasLabelClearMDividerRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearMDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearMDividerRounded) - -public val WrapperTabBarHasLabelClearLView.Default: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Default.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val WrapperTabBarHasLabelClearLView.Secondary: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Secondary.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val WrapperTabBarHasLabelClearLView.Accent: WrapperTabBarHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarHasLabelClearLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Accent.style()) - .wrap(::WrapperTabBarHasLabelClearTerminate) - -public val TabBarHasLabelClear.L: WrapperTabBarHasLabelClearL - @Composable - @JvmName("WrapperTabBarHasLabelClearL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarHasLabelClearL) - -public val WrapperTabBarHasLabelClearL.Rounded: WrapperTabBarHasLabelClearLRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearLRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearLRounded) - -public val WrapperTabBarHasLabelClearL.Shadow: WrapperTabBarHasLabelClearLShadow - @Composable - @JvmName("WrapperTabBarHasLabelClearLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarHasLabelClearLShadow) - -public val WrapperTabBarHasLabelClearLShadow.Rounded: WrapperTabBarHasLabelClearLShadowRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearLShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearLShadowRounded) - -public val WrapperTabBarHasLabelClearL.Divider: WrapperTabBarHasLabelClearLDivider - @Composable - @JvmName("WrapperTabBarHasLabelClearLDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarHasLabelClearLDivider) - -public val WrapperTabBarHasLabelClearLDivider.Rounded: WrapperTabBarHasLabelClearLDividerRounded - @Composable - @JvmName("WrapperTabBarHasLabelClearLDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelClearLDividerRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolid.kt deleted file mode 100644 index f3e619245f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarHasLabelSolid - */ -public object TabBarHasLabelSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolidStyles.kt deleted file mode 100644 index 4e794de44c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarHasLabelSolidStyles.kt +++ /dev/null @@ -1,310 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemSolid -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarHasLabelSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarHasLabelSolidMView : WrapperTabBarHasLabelSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Обертка для вариации MRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidMRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Обертка для вариации MShadowRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidMShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Обертка для вариации MDivider - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidMDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Обертка для вариации MDividerRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidMDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarHasLabelSolidLView : WrapperTabBarHasLabelSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -/** - * Обертка для вариации LRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidLRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -/** - * Обертка для вариации LShadowRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidLShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -/** - * Обертка для вариации LDivider - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidLDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -/** - * Обертка для вариации LDividerRounded - */ -@JvmInline -public value class WrapperTabBarHasLabelSolidLDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarHasLabelSolidLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarHasLabelSolidMView.Default: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Default.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val WrapperTabBarHasLabelSolidMView.Secondary: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Secondary.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val WrapperTabBarHasLabelSolidMView.Accent: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Accent.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val TabBarHasLabelSolid.M: WrapperTabBarHasLabelSolidM - @Composable - @JvmName("WrapperTabBarHasLabelSolidM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarHasLabelSolidM) - -public val WrapperTabBarHasLabelSolidM.Rounded: WrapperTabBarHasLabelSolidMRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidMRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidMRounded) - -public val WrapperTabBarHasLabelSolidM.Shadow: WrapperTabBarHasLabelSolidMShadow - @Composable - @JvmName("WrapperTabBarHasLabelSolidMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarHasLabelSolidMShadow) - -public val WrapperTabBarHasLabelSolidMShadow.Rounded: WrapperTabBarHasLabelSolidMShadowRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidMShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidMShadowRounded) - -public val WrapperTabBarHasLabelSolidM.Divider: WrapperTabBarHasLabelSolidMDivider - @Composable - @JvmName("WrapperTabBarHasLabelSolidMDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarHasLabelSolidMDivider) - -public val WrapperTabBarHasLabelSolidMDivider.Rounded: WrapperTabBarHasLabelSolidMDividerRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidMDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidMDividerRounded) - -public val WrapperTabBarHasLabelSolidLView.Default: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Default.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val WrapperTabBarHasLabelSolidLView.Secondary: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Secondary.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val WrapperTabBarHasLabelSolidLView.Accent: WrapperTabBarHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarHasLabelSolidLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Accent.style()) - .wrap(::WrapperTabBarHasLabelSolidTerminate) - -public val TabBarHasLabelSolid.L: WrapperTabBarHasLabelSolidL - @Composable - @JvmName("WrapperTabBarHasLabelSolidL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarHasLabelSolidL) - -public val WrapperTabBarHasLabelSolidL.Rounded: WrapperTabBarHasLabelSolidLRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidLRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidLRounded) - -public val WrapperTabBarHasLabelSolidL.Shadow: WrapperTabBarHasLabelSolidLShadow - @Composable - @JvmName("WrapperTabBarHasLabelSolidLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarHasLabelSolidLShadow) - -public val WrapperTabBarHasLabelSolidLShadow.Rounded: WrapperTabBarHasLabelSolidLShadowRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidLShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidLShadowRounded) - -public val WrapperTabBarHasLabelSolidL.Divider: WrapperTabBarHasLabelSolidLDivider - @Composable - @JvmName("WrapperTabBarHasLabelSolidLDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarHasLabelSolidLDivider) - -public val WrapperTabBarHasLabelSolidLDivider.Rounded: WrapperTabBarHasLabelSolidLDividerRounded - @Composable - @JvmName("WrapperTabBarHasLabelSolidLDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarHasLabelSolidLDividerRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClear.kt deleted file mode 100644 index 2236f897c7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarIslandClear - */ -public object TabBarIslandClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClearStyles.kt deleted file mode 100644 index e85e9ca109..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandClearStyles.kt +++ /dev/null @@ -1,179 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemClear -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarIslandClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandClearMView : WrapperTabBarIslandClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarIslandClearTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarIslandClearM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandClearMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarIslandClearMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandClearMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandClearLView : WrapperTabBarIslandClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarIslandClearL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandClearLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarIslandClearLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandClearLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .bottomShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarIslandClearMView.Default: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Default.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val WrapperTabBarIslandClearMView.Secondary: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Secondary.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val WrapperTabBarIslandClearMView.Accent: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Accent.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val TabBarIslandClear.M: WrapperTabBarIslandClearM - @Composable - @JvmName("WrapperTabBarIslandClearM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandClearM) - -public val WrapperTabBarIslandClearM.Shadow: WrapperTabBarIslandClearMShadow - @Composable - @JvmName("WrapperTabBarIslandClearMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandClearMShadow) - -public val WrapperTabBarIslandClearLView.Default: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Default.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val WrapperTabBarIslandClearLView.Secondary: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Secondary.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val WrapperTabBarIslandClearLView.Accent: WrapperTabBarIslandClearTerminate - @Composable - @JvmName("WrapperTabBarIslandClearLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Accent.style()) - .wrap(::WrapperTabBarIslandClearTerminate) - -public val TabBarIslandClear.L: WrapperTabBarIslandClearL - @Composable - @JvmName("WrapperTabBarIslandClearL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandClearL) - -public val WrapperTabBarIslandClearL.Shadow: WrapperTabBarIslandClearLShadow - @Composable - @JvmName("WrapperTabBarIslandClearLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandClearLShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClear.kt deleted file mode 100644 index 2b64a8cda3..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarIslandHasLabelClear - */ -public object TabBarIslandHasLabelClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClearStyles.kt deleted file mode 100644 index d0c30d8fb6..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelClearStyles.kt +++ /dev/null @@ -1,182 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemClear -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarIslandHasLabelClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandHasLabelClearMView : WrapperTabBarIslandHasLabelClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelClearTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelClearM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelClearMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelClearMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelClearMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandHasLabelClearLView : WrapperTabBarIslandHasLabelClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelClearL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelClearLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelClearLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelClearLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .bottomShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarIslandHasLabelClearMView.Default: WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Default.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val WrapperTabBarIslandHasLabelClearMView.Secondary: - WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Secondary.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val WrapperTabBarIslandHasLabelClearMView.Accent: WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.M.Label.Accent.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val TabBarIslandHasLabelClear.M: WrapperTabBarIslandHasLabelClearM - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandHasLabelClearM) - -public val WrapperTabBarIslandHasLabelClearM.Shadow: WrapperTabBarIslandHasLabelClearMShadow - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandHasLabelClearMShadow) - -public val WrapperTabBarIslandHasLabelClearLView.Default: WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Default.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val WrapperTabBarIslandHasLabelClearLView.Secondary: - WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Secondary.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val WrapperTabBarIslandHasLabelClearLView.Accent: WrapperTabBarIslandHasLabelClearTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemClear.L.Label.Accent.style()) - .wrap(::WrapperTabBarIslandHasLabelClearTerminate) - -public val TabBarIslandHasLabelClear.L: WrapperTabBarIslandHasLabelClearL - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandHasLabelClearL) - -public val WrapperTabBarIslandHasLabelClearL.Shadow: WrapperTabBarIslandHasLabelClearLShadow - @Composable - @JvmName("WrapperTabBarIslandHasLabelClearLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandHasLabelClearLShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolid.kt deleted file mode 100644 index dee828e65c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarIslandHasLabelSolid - */ -public object TabBarIslandHasLabelSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolidStyles.kt deleted file mode 100644 index b79c7972e8..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandHasLabelSolidStyles.kt +++ /dev/null @@ -1,182 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.Label -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemSolid -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarIslandHasLabelSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandHasLabelSolidMView : WrapperTabBarIslandHasLabelSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelSolidTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelSolidM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelSolidMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelSolidMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelSolidMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandHasLabelSolidLView : WrapperTabBarIslandHasLabelSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelSolidL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelSolidLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarIslandHasLabelSolidLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandHasLabelSolidLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .bottomShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarIslandHasLabelSolidMView.Default: WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Default.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val WrapperTabBarIslandHasLabelSolidMView.Secondary: - WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Secondary.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val WrapperTabBarIslandHasLabelSolidMView.Accent: WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Label.Accent.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val TabBarIslandHasLabelSolid.M: WrapperTabBarIslandHasLabelSolidM - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandHasLabelSolidM) - -public val WrapperTabBarIslandHasLabelSolidM.Shadow: WrapperTabBarIslandHasLabelSolidMShadow - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandHasLabelSolidMShadow) - -public val WrapperTabBarIslandHasLabelSolidLView.Default: WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Default.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val WrapperTabBarIslandHasLabelSolidLView.Secondary: - WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Secondary.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val WrapperTabBarIslandHasLabelSolidLView.Accent: WrapperTabBarIslandHasLabelSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Label.Accent.style()) - .wrap(::WrapperTabBarIslandHasLabelSolidTerminate) - -public val TabBarIslandHasLabelSolid.L: WrapperTabBarIslandHasLabelSolidL - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandHasLabelSolidL) - -public val WrapperTabBarIslandHasLabelSolidL.Shadow: WrapperTabBarIslandHasLabelSolidLShadow - @Composable - @JvmName("WrapperTabBarIslandHasLabelSolidLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandHasLabelSolidLShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolid.kt deleted file mode 100644 index b1e5e17313..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarIslandSolid - */ -public object TabBarIslandSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolidStyles.kt deleted file mode 100644 index 141fd70b7b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarIslandSolidStyles.kt +++ /dev/null @@ -1,179 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemSolid -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarIslandSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandSolidMView : WrapperTabBarIslandSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarIslandSolidTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarIslandSolidM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandSolidMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarIslandSolidMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandSolidMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarIslandSolidLView : WrapperTabBarIslandSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarIslandSolidL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandSolidLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarIslandSolidLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarIslandSolidLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .bottomShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarIslandSolidMView.Default: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Default.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val WrapperTabBarIslandSolidMView.Secondary: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Secondary.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val WrapperTabBarIslandSolidMView.Accent: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Accent.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val TabBarIslandSolid.M: WrapperTabBarIslandSolidM - @Composable - @JvmName("WrapperTabBarIslandSolidM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandSolidM) - -public val WrapperTabBarIslandSolidM.Shadow: WrapperTabBarIslandSolidMShadow - @Composable - @JvmName("WrapperTabBarIslandSolidMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandSolidMShadow) - -public val WrapperTabBarIslandSolidLView.Default: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Default.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val WrapperTabBarIslandSolidLView.Secondary: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Secondary.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val WrapperTabBarIslandSolidLView.Accent: WrapperTabBarIslandSolidTerminate - @Composable - @JvmName("WrapperTabBarIslandSolidLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Accent.style()) - .wrap(::WrapperTabBarIslandSolidTerminate) - -public val TabBarIslandSolid.L: WrapperTabBarIslandSolidL - @Composable - @JvmName("WrapperTabBarIslandSolidL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarIslandSolidL) - -public val WrapperTabBarIslandSolidL.Shadow: WrapperTabBarIslandSolidLShadow - @Composable - @JvmName("WrapperTabBarIslandSolidLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.downSoftM) - .wrap(::WrapperTabBarIslandSolidLShadow) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolid.kt deleted file mode 100644 index 8c2a9e8a6c..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbar - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarSolid - */ -public object TabBarSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolidStyles.kt deleted file mode 100644 index bfcb377552..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbar/TabBarSolidStyles.kt +++ /dev/null @@ -1,309 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbar - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarStyle -import com.sdds.compose.uikit.TabBarStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.tabbaritem.Accent -import com.sdds.plasma.giga.app.styles.tabbaritem.Default -import com.sdds.plasma.giga.app.styles.tabbaritem.L -import com.sdds.plasma.giga.app.styles.tabbaritem.M -import com.sdds.plasma.giga.app.styles.tabbaritem.Secondary -import com.sdds.plasma.giga.app.styles.tabbaritem.TabBarItemSolid -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarSolidMView : WrapperTabBarSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarSolidTerminate( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarSolidM( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Обертка для вариации MRounded - */ -@JvmInline -public value class WrapperTabBarSolidMRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Обертка для вариации MShadow - */ -@JvmInline -public value class WrapperTabBarSolidMShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Обертка для вариации MShadowRounded - */ -@JvmInline -public value class WrapperTabBarSolidMShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Обертка для вариации MDivider - */ -@JvmInline -public value class WrapperTabBarSolidMDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Обертка для вариации MDividerRounded - */ -@JvmInline -public value class WrapperTabBarSolidMDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidMView - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarSolidLView : WrapperTabBarSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarSolidL( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -/** - * Обертка для вариации LRounded - */ -@JvmInline -public value class WrapperTabBarSolidLRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -/** - * Обертка для вариации LShadow - */ -@JvmInline -public value class WrapperTabBarSolidLShadow( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -/** - * Обертка для вариации LShadowRounded - */ -@JvmInline -public value class WrapperTabBarSolidLShadowRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -/** - * Обертка для вариации LDivider - */ -@JvmInline -public value class WrapperTabBarSolidLDivider( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -/** - * Обертка для вариации LDividerRounded - */ -@JvmInline -public value class WrapperTabBarSolidLDividerRounded( - public override val builder: TabBarStyleBuilder, -) : WrapperTabBarSolidLView - -private val TabBarStyleBuilder.invariantProps: TabBarStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - } - .dimensions { - contentPaddingStart(2.0.dp) - contentPaddingEnd(2.0.dp) - contentPaddingTop(2.0.dp) - contentPaddingBottom(2.0.dp) - itemSpacing(2.0.dp) - } - -public val WrapperTabBarSolidMView.Default: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidMViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Default.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val WrapperTabBarSolidMView.Secondary: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidMViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Secondary.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val WrapperTabBarSolidMView.Accent: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidMViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.M.Accent.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val TabBarSolid.M: WrapperTabBarSolidM - @Composable - @JvmName("WrapperTabBarSolidM") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarSolidM) - -public val WrapperTabBarSolidM.Rounded: WrapperTabBarSolidMRounded - @Composable - @JvmName("WrapperTabBarSolidMRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidMRounded) - -public val WrapperTabBarSolidM.Shadow: WrapperTabBarSolidMShadow - @Composable - @JvmName("WrapperTabBarSolidMShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarSolidMShadow) - -public val WrapperTabBarSolidMShadow.Rounded: WrapperTabBarSolidMShadowRounded - @Composable - @JvmName("WrapperTabBarSolidMShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidMShadowRounded) - -public val WrapperTabBarSolidM.Divider: WrapperTabBarSolidMDivider - @Composable - @JvmName("WrapperTabBarSolidMDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarSolidMDivider) - -public val WrapperTabBarSolidMDivider.Rounded: WrapperTabBarSolidMDividerRounded - @Composable - @JvmName("WrapperTabBarSolidMDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidMDividerRounded) - -public val WrapperTabBarSolidLView.Default: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidLViewDefault") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Default.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val WrapperTabBarSolidLView.Secondary: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidLViewSecondary") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Secondary.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val WrapperTabBarSolidLView.Accent: WrapperTabBarSolidTerminate - @Composable - @JvmName("WrapperTabBarSolidLViewAccent") - get() = builder - .tabBarItemStyle(TabBarItemSolid.L.Accent.style()) - .wrap(::WrapperTabBarSolidTerminate) - -public val TabBarSolid.L: WrapperTabBarSolidL - @Composable - @JvmName("WrapperTabBarSolidL") - get() = TabBarStyle.builder(this) - .invariantProps - .wrap(::WrapperTabBarSolidL) - -public val WrapperTabBarSolidL.Rounded: WrapperTabBarSolidLRounded - @Composable - @JvmName("WrapperTabBarSolidLRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidLRounded) - -public val WrapperTabBarSolidL.Shadow: WrapperTabBarSolidLShadow - @Composable - @JvmName("WrapperTabBarSolidLShadow") - get() = builder - .shadow(PlasmaGigaAppTheme.shadows.upSoftM) - .wrap(::WrapperTabBarSolidLShadow) - -public val WrapperTabBarSolidLShadow.Rounded: WrapperTabBarSolidLShadowRounded - @Composable - @JvmName("WrapperTabBarSolidLShadowRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidLShadowRounded) - -public val WrapperTabBarSolidL.Divider: WrapperTabBarSolidLDivider - @Composable - @JvmName("WrapperTabBarSolidLDivider") - get() = builder - .colors { - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - dividerThickness(1.0.dp) - } - .wrap(::WrapperTabBarSolidLDivider) - -public val WrapperTabBarSolidLDivider.Rounded: WrapperTabBarSolidLDividerRounded - @Composable - @JvmName("WrapperTabBarSolidLDividerRounded") - get() = builder - .topShape(PlasmaGigaAppTheme.shapes.roundL.adjustBy(all = 2.0.dp)) - .wrap(::WrapperTabBarSolidLDividerRounded) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClear.kt deleted file mode 100644 index 07b08ee6e7..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbaritem - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarItemClear - */ -public object TabBarItemClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClearStyles.kt deleted file mode 100644 index 6fed83605f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemClearStyles.kt +++ /dev/null @@ -1,203 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbaritem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.TabBarItemStyleBuilder -import com.sdds.compose.uikit.TabBarLabelPlacement -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.Negative -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.indicator.Indicator -import com.sdds.plasma.giga.app.styles.indicator.L -import com.sdds.plasma.giga.app.styles.indicator.M -import com.sdds.plasma.giga.app.styles.indicator.Negative -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarItemClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarItemClearView : WrapperTabBarItemClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarItemClearTerminate( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemClear - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarItemClearM( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemClearView - -/** - * Обертка для вариации MLabel - */ -@JvmInline -public value class WrapperTabBarItemClearMLabel( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemClearView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarItemClearL( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemClearView - -/** - * Обертка для вариации LLabel - */ -@JvmInline -public value class WrapperTabBarItemClearLLabel( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemClearView - -public val WrapperTabBarItemClearView.Default: WrapperTabBarItemClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - } - .wrap(::WrapperTabBarItemClearTerminate) - -public val WrapperTabBarItemClearView.Accent: WrapperTabBarItemClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultAccent, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultAccent, - ), - ) - } - .wrap(::WrapperTabBarItemClearTerminate) - -public val WrapperTabBarItemClearView.Secondary: WrapperTabBarItemClearTerminate - @Composable - get() = builder - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue(), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue(), - ) - } - .wrap(::WrapperTabBarItemClearTerminate) - -private val TabBarItemStyleBuilder.invariantProps: TabBarItemStyleBuilder - @Composable - get() = this - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsBold) - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asStatefulValue(), - ) - } - -public val TabBarItemClear.M: WrapperTabBarItemClearM - @Composable - @JvmName("WrapperTabBarItemClearM") - get() = TabBarItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .labelPlacement(TabBarLabelPlacement.None) - .dimensions { - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - iconSize(24.0.dp) - minHeight(48.0.dp) - } - .indicatorStyle(Indicator.M.Negative.style()) - .counterStyle(Counter.Xs.Negative.style()) - .wrap(::WrapperTabBarItemClearM) - -public val WrapperTabBarItemClearM.Label: WrapperTabBarItemClearMLabel - @Composable - @JvmName("WrapperTabBarItemClearMLabel") - get() = builder - .labelPlacement(TabBarLabelPlacement.Bottom) - .dimensions { - paddingTop(10.0.dp) - paddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .wrap(::WrapperTabBarItemClearMLabel) - -public val TabBarItemClear.L: WrapperTabBarItemClearL - @Composable - @JvmName("WrapperTabBarItemClearL") - get() = TabBarItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .labelPlacement(TabBarLabelPlacement.None) - .dimensions { - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconSize(36.0.dp) - minHeight(64.0.dp) - } - .indicatorStyle(Indicator.L.Negative.style()) - .counterStyle(Counter.S.Negative.style()) - .wrap(::WrapperTabBarItemClearL) - -public val WrapperTabBarItemClearL.Label: WrapperTabBarItemClearLLabel - @Composable - @JvmName("WrapperTabBarItemClearLLabel") - get() = builder - .labelPlacement(TabBarLabelPlacement.Bottom) - .dimensions { - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - labelPadding(0.0.dp) - } - .wrap(::WrapperTabBarItemClearLLabel) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolid.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolid.kt deleted file mode 100644 index 669ff292d6..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tabbaritem - -/** - * Вспомогательный объект для описания API и стиля компонента TabBarItemSolid - */ -public object TabBarItemSolid diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolidStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolidStyles.kt deleted file mode 100644 index 1427008ba0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tabbaritem/TabBarItemSolidStyles.kt +++ /dev/null @@ -1,222 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tabbaritem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TabBarItemStyle -import com.sdds.compose.uikit.TabBarItemStyleBuilder -import com.sdds.compose.uikit.TabBarLabelPlacement -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.Negative -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.indicator.Indicator -import com.sdds.plasma.giga.app.styles.indicator.L -import com.sdds.plasma.giga.app.styles.indicator.M -import com.sdds.plasma.giga.app.styles.indicator.Negative -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTabBarItemSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTabBarItemSolidView : WrapperTabBarItemSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTabBarItemSolidTerminate( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemSolid - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTabBarItemSolidM( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemSolidView - -/** - * Обертка для вариации MLabel - */ -@JvmInline -public value class WrapperTabBarItemSolidMLabel( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemSolidView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTabBarItemSolidL( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemSolidView - -/** - * Обертка для вариации LLabel - */ -@JvmInline -public value class WrapperTabBarItemSolidLLabel( - public override val builder: TabBarItemStyleBuilder, -) : WrapperTabBarItemSolidView - -public val WrapperTabBarItemSolidView.Default: WrapperTabBarItemSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultSolidDefault, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textInversePrimary, - ), - ) - } - .wrap(::WrapperTabBarItemSolidTerminate) - -public val WrapperTabBarItemSolidView.Accent: WrapperTabBarItemSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentAccent, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultAccent, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultAccent, - ), - ) - } - .wrap(::WrapperTabBarItemSolidTerminate) - -public val WrapperTabBarItemSolidView.Secondary: WrapperTabBarItemSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultClear.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - iconColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(InteractiveState.Selected) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - } - .wrap(::WrapperTabBarItemSolidTerminate) - -private val TabBarItemStyleBuilder.invariantProps: TabBarItemStyleBuilder - @Composable - get() = this - .labelStyle(PlasmaGigaAppTheme.typography.bodyXxsBold) - -public val TabBarItemSolid.M: WrapperTabBarItemSolidM - @Composable - @JvmName("WrapperTabBarItemSolidM") - get() = TabBarItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .labelPlacement(TabBarLabelPlacement.None) - .dimensions { - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - iconSize(24.0.dp) - minHeight(48.0.dp) - } - .indicatorStyle(Indicator.M.Negative.style()) - .counterStyle(Counter.Xs.Negative.style()) - .wrap(::WrapperTabBarItemSolidM) - -public val WrapperTabBarItemSolidM.Label: WrapperTabBarItemSolidMLabel - @Composable - @JvmName("WrapperTabBarItemSolidMLabel") - get() = builder - .labelPlacement(TabBarLabelPlacement.Bottom) - .dimensions { - paddingTop(10.0.dp) - paddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .wrap(::WrapperTabBarItemSolidMLabel) - -public val TabBarItemSolid.L: WrapperTabBarItemSolidL - @Composable - @JvmName("WrapperTabBarItemSolidL") - get() = TabBarItemStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .labelPlacement(TabBarLabelPlacement.None) - .dimensions { - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconSize(36.0.dp) - minHeight(64.0.dp) - } - .indicatorStyle(Indicator.L.Negative.style()) - .counterStyle(Counter.S.Negative.style()) - .wrap(::WrapperTabBarItemSolidL) - -public val WrapperTabBarItemSolidL.Label: WrapperTabBarItemSolidLLabel - @Composable - @JvmName("WrapperTabBarItemSolidLLabel") - get() = builder - .labelPlacement(TabBarLabelPlacement.Bottom) - .dimensions { - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - labelPadding(0.0.dp) - } - .wrap(::WrapperTabBarItemSolidLLabel) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextArea.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextArea.kt deleted file mode 100644 index 904065c448..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextArea.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.textarea - -/** - * Вспомогательный объект для описания API и стиля компонента TextArea - */ -public object TextArea diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClear.kt deleted file mode 100644 index 506f91fff1..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.textarea - -/** - * Вспомогательный объект для описания API и стиля компонента TextAreaClear - */ -public object TextAreaClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClearStyles.kt deleted file mode 100644 index c35c878082..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaClearStyles.kt +++ /dev/null @@ -1,1237 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.textarea - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextAreaClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextAreaClearView : WrapperTextAreaClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextAreaClearTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClear - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextAreaClearXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextAreaClearS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextAreaClearM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextAreaClearL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperTextAreaClearXl( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXlRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXlRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearXlOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXlOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXlOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearXlInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXlInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XlInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXlInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -public val WrapperTextAreaClearView.Default: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -public val WrapperTextAreaClearView.Warning: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -public val WrapperTextAreaClearView.Error: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(false) - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - boxPaddingStart(0.0.dp) - boxPaddingEnd(0.0.dp) - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - chipsPaddingStart(0.0.dp) - chipsPaddingEnd(0.0.dp) - } - .captionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .counterStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - cursorColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - dividerColorReadOnly( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - prefixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextAreaClear.Xs: WrapperTextAreaClearXs - @Composable - @JvmName("WrapperTextAreaClearXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearXs) - -public val WrapperTextAreaClearXs.RequiredStart: WrapperTextAreaClearXsRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXsRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXsRequiredStart) - -public val WrapperTextAreaClearXs.RequiredEnd: WrapperTextAreaClearXsRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXsRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXsRequiredEnd) - -public val WrapperTextAreaClearXs.OuterLabel: WrapperTextAreaClearXsOuterLabel - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearXsOuterLabel) - -public val WrapperTextAreaClearXsOuterLabel.RequiredStart: - WrapperTextAreaClearXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXsOuterLabelRequiredStart) - -public val WrapperTextAreaClearXsOuterLabel.RequiredEnd: WrapperTextAreaClearXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXsOuterLabelRequiredEnd) - -public val TextAreaClear.S: WrapperTextAreaClearS - @Composable - @JvmName("WrapperTextAreaClearS") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearS) - -public val WrapperTextAreaClearS.RequiredStart: WrapperTextAreaClearSRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSRequiredStart) - -public val WrapperTextAreaClearS.RequiredEnd: WrapperTextAreaClearSRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSRequiredEnd) - -public val WrapperTextAreaClearS.OuterLabel: WrapperTextAreaClearSOuterLabel - @Composable - @JvmName("WrapperTextAreaClearSOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearSOuterLabel) - -public val WrapperTextAreaClearSOuterLabel.RequiredStart: - WrapperTextAreaClearSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSOuterLabelRequiredStart) - -public val WrapperTextAreaClearSOuterLabel.RequiredEnd: WrapperTextAreaClearSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSOuterLabelRequiredEnd) - -public val WrapperTextAreaClearS.InnerLabel: WrapperTextAreaClearSInnerLabel - @Composable - @JvmName("WrapperTextAreaClearSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearSInnerLabel) - -public val WrapperTextAreaClearSInnerLabel.RequiredStart: - WrapperTextAreaClearSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSInnerLabelRequiredStart) - -public val WrapperTextAreaClearSInnerLabel.RequiredEnd: WrapperTextAreaClearSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSInnerLabelRequiredEnd) - -public val TextAreaClear.M: WrapperTextAreaClearM - @Composable - @JvmName("WrapperTextAreaClearM") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearM) - -public val WrapperTextAreaClearM.RequiredStart: WrapperTextAreaClearMRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMRequiredStart) - -public val WrapperTextAreaClearM.RequiredEnd: WrapperTextAreaClearMRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMRequiredEnd) - -public val WrapperTextAreaClearM.OuterLabel: WrapperTextAreaClearMOuterLabel - @Composable - @JvmName("WrapperTextAreaClearMOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearMOuterLabel) - -public val WrapperTextAreaClearMOuterLabel.RequiredStart: - WrapperTextAreaClearMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMOuterLabelRequiredStart) - -public val WrapperTextAreaClearMOuterLabel.RequiredEnd: WrapperTextAreaClearMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMOuterLabelRequiredEnd) - -public val WrapperTextAreaClearM.InnerLabel: WrapperTextAreaClearMInnerLabel - @Composable - @JvmName("WrapperTextAreaClearMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearMInnerLabel) - -public val WrapperTextAreaClearMInnerLabel.RequiredStart: - WrapperTextAreaClearMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMInnerLabelRequiredStart) - -public val WrapperTextAreaClearMInnerLabel.RequiredEnd: WrapperTextAreaClearMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMInnerLabelRequiredEnd) - -public val TextAreaClear.L: WrapperTextAreaClearL - @Composable - @JvmName("WrapperTextAreaClearL") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearL) - -public val WrapperTextAreaClearL.RequiredStart: WrapperTextAreaClearLRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLRequiredStart) - -public val WrapperTextAreaClearL.RequiredEnd: WrapperTextAreaClearLRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLRequiredEnd) - -public val WrapperTextAreaClearL.OuterLabel: WrapperTextAreaClearLOuterLabel - @Composable - @JvmName("WrapperTextAreaClearLOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearLOuterLabel) - -public val WrapperTextAreaClearLOuterLabel.RequiredStart: - WrapperTextAreaClearLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLOuterLabelRequiredStart) - -public val WrapperTextAreaClearLOuterLabel.RequiredEnd: WrapperTextAreaClearLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLOuterLabelRequiredEnd) - -public val WrapperTextAreaClearL.InnerLabel: WrapperTextAreaClearLInnerLabel - @Composable - @JvmName("WrapperTextAreaClearLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearLInnerLabel) - -public val WrapperTextAreaClearLInnerLabel.RequiredStart: - WrapperTextAreaClearLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLInnerLabelRequiredStart) - -public val WrapperTextAreaClearLInnerLabel.RequiredEnd: WrapperTextAreaClearLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLInnerLabelRequiredEnd) - -public val TextAreaClear.Xl: WrapperTextAreaClearXl - @Composable - @JvmName("WrapperTextAreaClearXl") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(21.0.dp) - boxPaddingBottom(21.0.dp) - boxMinHeight(64.0.dp) - alignmentLineHeight(64.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xl.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearXl) - -public val WrapperTextAreaClearXl.RequiredStart: WrapperTextAreaClearXlRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXlRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXlRequiredStart) - -public val WrapperTextAreaClearXl.RequiredEnd: WrapperTextAreaClearXlRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXlRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXlRequiredEnd) - -public val WrapperTextAreaClearXl.OuterLabel: WrapperTextAreaClearXlOuterLabel - @Composable - @JvmName("WrapperTextAreaClearXlOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearXlOuterLabel) - -public val WrapperTextAreaClearXlOuterLabel.RequiredStart: - WrapperTextAreaClearXlOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXlOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXlOuterLabelRequiredStart) - -public val WrapperTextAreaClearXlOuterLabel.RequiredEnd: WrapperTextAreaClearXlOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXlOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXlOuterLabelRequiredEnd) - -public val WrapperTextAreaClearXl.InnerLabel: WrapperTextAreaClearXlInnerLabel - @Composable - @JvmName("WrapperTextAreaClearXlInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearXlInnerLabel) - -public val WrapperTextAreaClearXlInnerLabel.RequiredStart: - WrapperTextAreaClearXlInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXlInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXlInnerLabelRequiredStart) - -public val WrapperTextAreaClearXlInnerLabel.RequiredEnd: WrapperTextAreaClearXlInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXlInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXlInnerLabelRequiredEnd) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaStyles.kt deleted file mode 100644 index cde4c85934..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textarea/TextAreaStyles.kt +++ /dev/null @@ -1,1205 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.textarea - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextArea : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextAreaView : WrapperTextArea - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextAreaTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextArea - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextAreaXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextAreaS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextAreaSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextAreaSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextAreaM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextAreaMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextAreaMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextAreaL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextAreaLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextAreaLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperTextAreaXl( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXlRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXlRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlOuterLabel - */ -@JvmInline -public value class WrapperTextAreaXlOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXlOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXlOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlInnerLabel - */ -@JvmInline -public value class WrapperTextAreaXlInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXlInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XlInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXlInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -public val WrapperTextAreaView.Default: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -public val WrapperTextAreaView.Warning: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -public val WrapperTextAreaView.Error: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(false) - .dimensions { - optionalPadding(4.0.dp) - chipsPadding(6.0.dp) - } - .captionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .counterStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Inner) - .counterPlacement(TextFieldHelperTextPlacement.Inner) - .colors { - optionalColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - placeholderColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColorReadOnly( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidPrimary.multiplyAlpha(0.4f).asInteractive(), - ) - cursorColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - prefixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - .scrollBar { - scrollBarThickness(2.0.dp) - scrollBarPaddingTop(18.0.dp) - scrollBarPaddingBottom(36.0.dp) - scrollBarPaddingEnd(2.0.dp) - scrollBarTrackColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - scrollBarThumbColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - -public val TextArea.Xs: WrapperTextAreaXs - @Composable - @JvmName("WrapperTextAreaXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .dimensions { - boxPaddingStart(8.0.dp) - boxPaddingEnd(8.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - helperTextPadding(8.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaXs) - -public val WrapperTextAreaXs.RequiredStart: WrapperTextAreaXsRequiredStart - @Composable - @JvmName("WrapperTextAreaXsRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXsRequiredStart) - -public val WrapperTextAreaXs.RequiredEnd: WrapperTextAreaXsRequiredEnd - @Composable - @JvmName("WrapperTextAreaXsRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXsRequiredEnd) - -public val WrapperTextAreaXs.OuterLabel: WrapperTextAreaXsOuterLabel - @Composable - @JvmName("WrapperTextAreaXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(6.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaXsOuterLabel) - -public val WrapperTextAreaXsOuterLabel.RequiredStart: WrapperTextAreaXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaXsOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXsOuterLabelRequiredStart) - -public val WrapperTextAreaXsOuterLabel.RequiredEnd: WrapperTextAreaXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaXsOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXsOuterLabelRequiredEnd) - -public val TextArea.S: WrapperTextAreaS - @Composable - @JvmName("WrapperTextAreaS") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - boxPaddingStart(12.0.dp) - boxPaddingEnd(12.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaS) - -public val WrapperTextAreaS.RequiredStart: WrapperTextAreaSRequiredStart - @Composable - @JvmName("WrapperTextAreaSRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSRequiredStart) - -public val WrapperTextAreaS.RequiredEnd: WrapperTextAreaSRequiredEnd - @Composable - @JvmName("WrapperTextAreaSRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSRequiredEnd) - -public val WrapperTextAreaS.OuterLabel: WrapperTextAreaSOuterLabel - @Composable - @JvmName("WrapperTextAreaSOuterLabel") - get() = builder - .dimensions { - labelPadding(8.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaSOuterLabel) - -public val WrapperTextAreaSOuterLabel.RequiredStart: WrapperTextAreaSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaSOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSOuterLabelRequiredStart) - -public val WrapperTextAreaSOuterLabel.RequiredEnd: WrapperTextAreaSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaSOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSOuterLabelRequiredEnd) - -public val WrapperTextAreaS.InnerLabel: WrapperTextAreaSInnerLabel - @Composable - @JvmName("WrapperTextAreaSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaSInnerLabel) - -public val WrapperTextAreaSInnerLabel.RequiredStart: WrapperTextAreaSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaSInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSInnerLabelRequiredStart) - -public val WrapperTextAreaSInnerLabel.RequiredEnd: WrapperTextAreaSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaSInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSInnerLabelRequiredEnd) - -public val TextArea.M: WrapperTextAreaM - @Composable - @JvmName("WrapperTextAreaM") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - boxPaddingStart(14.0.dp) - boxPaddingEnd(14.0.dp) - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaM) - -public val WrapperTextAreaM.RequiredStart: WrapperTextAreaMRequiredStart - @Composable - @JvmName("WrapperTextAreaMRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMRequiredStart) - -public val WrapperTextAreaM.RequiredEnd: WrapperTextAreaMRequiredEnd - @Composable - @JvmName("WrapperTextAreaMRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMRequiredEnd) - -public val WrapperTextAreaM.OuterLabel: WrapperTextAreaMOuterLabel - @Composable - @JvmName("WrapperTextAreaMOuterLabel") - get() = builder - .dimensions { - labelPadding(10.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaMOuterLabel) - -public val WrapperTextAreaMOuterLabel.RequiredStart: WrapperTextAreaMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaMOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMOuterLabelRequiredStart) - -public val WrapperTextAreaMOuterLabel.RequiredEnd: WrapperTextAreaMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaMOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMOuterLabelRequiredEnd) - -public val WrapperTextAreaM.InnerLabel: WrapperTextAreaMInnerLabel - @Composable - @JvmName("WrapperTextAreaMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaMInnerLabel) - -public val WrapperTextAreaMInnerLabel.RequiredStart: WrapperTextAreaMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaMInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMInnerLabelRequiredStart) - -public val WrapperTextAreaMInnerLabel.RequiredEnd: WrapperTextAreaMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaMInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMInnerLabelRequiredEnd) - -public val TextArea.L: WrapperTextAreaL - @Composable - @JvmName("WrapperTextAreaL") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = 2.0.dp)) - .dimensions { - boxPaddingStart(16.0.dp) - boxPaddingEnd(16.0.dp) - boxPaddingTop(16.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaL) - -public val WrapperTextAreaL.RequiredStart: WrapperTextAreaLRequiredStart - @Composable - @JvmName("WrapperTextAreaLRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLRequiredStart) - -public val WrapperTextAreaL.RequiredEnd: WrapperTextAreaLRequiredEnd - @Composable - @JvmName("WrapperTextAreaLRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLRequiredEnd) - -public val WrapperTextAreaL.OuterLabel: WrapperTextAreaLOuterLabel - @Composable - @JvmName("WrapperTextAreaLOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaLOuterLabel) - -public val WrapperTextAreaLOuterLabel.RequiredStart: WrapperTextAreaLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaLOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLOuterLabelRequiredStart) - -public val WrapperTextAreaLOuterLabel.RequiredEnd: WrapperTextAreaLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaLOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLOuterLabelRequiredEnd) - -public val WrapperTextAreaL.InnerLabel: WrapperTextAreaLInnerLabel - @Composable - @JvmName("WrapperTextAreaLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaLInnerLabel) - -public val WrapperTextAreaLInnerLabel.RequiredStart: WrapperTextAreaLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaLInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLInnerLabelRequiredStart) - -public val WrapperTextAreaLInnerLabel.RequiredEnd: WrapperTextAreaLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaLInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLInnerLabelRequiredEnd) - -public val TextArea.Xl: WrapperTextAreaXl - @Composable - @JvmName("WrapperTextAreaXl") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - boxPaddingStart(20.0.dp) - boxPaddingEnd(18.0.dp) - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xl.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaXl) - -public val WrapperTextAreaXl.RequiredStart: WrapperTextAreaXlRequiredStart - @Composable - @JvmName("WrapperTextAreaXlRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXlRequiredStart) - -public val WrapperTextAreaXl.RequiredEnd: WrapperTextAreaXlRequiredEnd - @Composable - @JvmName("WrapperTextAreaXlRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXlRequiredEnd) - -public val WrapperTextAreaXl.OuterLabel: WrapperTextAreaXlOuterLabel - @Composable - @JvmName("WrapperTextAreaXlOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaXlOuterLabel) - -public val WrapperTextAreaXlOuterLabel.RequiredStart: WrapperTextAreaXlOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaXlOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXlOuterLabelRequiredStart) - -public val WrapperTextAreaXlOuterLabel.RequiredEnd: WrapperTextAreaXlOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaXlOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXlOuterLabelRequiredEnd) - -public val WrapperTextAreaXl.InnerLabel: WrapperTextAreaXlInnerLabel - @Composable - @JvmName("WrapperTextAreaXlInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaXlInnerLabel) - -public val WrapperTextAreaXlInnerLabel.RequiredStart: WrapperTextAreaXlInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaXlInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXlInnerLabelRequiredStart) - -public val WrapperTextAreaXlInnerLabel.RequiredEnd: WrapperTextAreaXlInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaXlInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXlInnerLabelRequiredEnd) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextField.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextField.kt deleted file mode 100644 index e2c9815f96..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextField.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.textfield - -/** - * Вспомогательный объект для описания API и стиля компонента TextField - */ -public object TextField diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClear.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClear.kt deleted file mode 100644 index 96b144bc8a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.textfield - -/** - * Вспомогательный объект для описания API и стиля компонента TextFieldClear - */ -public object TextFieldClear diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClearStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClearStyles.kt deleted file mode 100644 index 283c6e849a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldClearStyles.kt +++ /dev/null @@ -1,1277 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.textfield - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextFieldClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextFieldClearView : WrapperTextFieldClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextFieldClearTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClear - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextFieldClearXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextFieldClearS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextFieldClearM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextFieldClearL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperTextFieldClearXl( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXlRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXlRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearXlOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXlOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXlOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearXlInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXlInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XlInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXlInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -public val WrapperTextFieldClearView.Default: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Success: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Warning: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Error: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultAccent, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(true) - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - boxPaddingStart(0.0.dp) - boxPaddingEnd(0.0.dp) - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - chipsPaddingStart(0.0.dp) - chipsPaddingEnd(0.0.dp) - } - .captionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .counterStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - cursorColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - dividerColorReadOnly( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - prefixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextFieldClear.Xs: WrapperTextFieldClearXs - @Composable - @JvmName("WrapperTextFieldClearXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearXs) - -public val WrapperTextFieldClearXs.RequiredStart: WrapperTextFieldClearXsRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXsRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXsRequiredStart) - -public val WrapperTextFieldClearXs.RequiredEnd: WrapperTextFieldClearXsRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXsRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXsRequiredEnd) - -public val WrapperTextFieldClearXs.OuterLabel: WrapperTextFieldClearXsOuterLabel - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearXsOuterLabel) - -public val WrapperTextFieldClearXsOuterLabel.RequiredStart: - WrapperTextFieldClearXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXsOuterLabelRequiredStart) - -public val WrapperTextFieldClearXsOuterLabel.RequiredEnd: - WrapperTextFieldClearXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXsOuterLabelRequiredEnd) - -public val TextFieldClear.S: WrapperTextFieldClearS - @Composable - @JvmName("WrapperTextFieldClearS") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearS) - -public val WrapperTextFieldClearS.RequiredStart: WrapperTextFieldClearSRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSRequiredStart) - -public val WrapperTextFieldClearS.RequiredEnd: WrapperTextFieldClearSRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSRequiredEnd) - -public val WrapperTextFieldClearS.OuterLabel: WrapperTextFieldClearSOuterLabel - @Composable - @JvmName("WrapperTextFieldClearSOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearSOuterLabel) - -public val WrapperTextFieldClearSOuterLabel.RequiredStart: - WrapperTextFieldClearSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSOuterLabelRequiredStart) - -public val WrapperTextFieldClearSOuterLabel.RequiredEnd: WrapperTextFieldClearSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSOuterLabelRequiredEnd) - -public val WrapperTextFieldClearS.InnerLabel: WrapperTextFieldClearSInnerLabel - @Composable - @JvmName("WrapperTextFieldClearSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearSInnerLabel) - -public val WrapperTextFieldClearSInnerLabel.RequiredStart: - WrapperTextFieldClearSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSInnerLabelRequiredStart) - -public val WrapperTextFieldClearSInnerLabel.RequiredEnd: WrapperTextFieldClearSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSInnerLabelRequiredEnd) - -public val TextFieldClear.M: WrapperTextFieldClearM - @Composable - @JvmName("WrapperTextFieldClearM") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearM) - -public val WrapperTextFieldClearM.RequiredStart: WrapperTextFieldClearMRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMRequiredStart) - -public val WrapperTextFieldClearM.RequiredEnd: WrapperTextFieldClearMRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMRequiredEnd) - -public val WrapperTextFieldClearM.OuterLabel: WrapperTextFieldClearMOuterLabel - @Composable - @JvmName("WrapperTextFieldClearMOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearMOuterLabel) - -public val WrapperTextFieldClearMOuterLabel.RequiredStart: - WrapperTextFieldClearMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMOuterLabelRequiredStart) - -public val WrapperTextFieldClearMOuterLabel.RequiredEnd: WrapperTextFieldClearMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMOuterLabelRequiredEnd) - -public val WrapperTextFieldClearM.InnerLabel: WrapperTextFieldClearMInnerLabel - @Composable - @JvmName("WrapperTextFieldClearMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearMInnerLabel) - -public val WrapperTextFieldClearMInnerLabel.RequiredStart: - WrapperTextFieldClearMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMInnerLabelRequiredStart) - -public val WrapperTextFieldClearMInnerLabel.RequiredEnd: WrapperTextFieldClearMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMInnerLabelRequiredEnd) - -public val TextFieldClear.L: WrapperTextFieldClearL - @Composable - @JvmName("WrapperTextFieldClearL") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearL) - -public val WrapperTextFieldClearL.RequiredStart: WrapperTextFieldClearLRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLRequiredStart) - -public val WrapperTextFieldClearL.RequiredEnd: WrapperTextFieldClearLRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLRequiredEnd) - -public val WrapperTextFieldClearL.OuterLabel: WrapperTextFieldClearLOuterLabel - @Composable - @JvmName("WrapperTextFieldClearLOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearLOuterLabel) - -public val WrapperTextFieldClearLOuterLabel.RequiredStart: - WrapperTextFieldClearLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLOuterLabelRequiredStart) - -public val WrapperTextFieldClearLOuterLabel.RequiredEnd: WrapperTextFieldClearLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLOuterLabelRequiredEnd) - -public val WrapperTextFieldClearL.InnerLabel: WrapperTextFieldClearLInnerLabel - @Composable - @JvmName("WrapperTextFieldClearLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearLInnerLabel) - -public val WrapperTextFieldClearLInnerLabel.RequiredStart: - WrapperTextFieldClearLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLInnerLabelRequiredStart) - -public val WrapperTextFieldClearLInnerLabel.RequiredEnd: WrapperTextFieldClearLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLInnerLabelRequiredEnd) - -public val TextFieldClear.Xl: WrapperTextFieldClearXl - @Composable - @JvmName("WrapperTextFieldClearXl") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(20.0.dp) - boxPaddingBottom(20.0.dp) - boxMinHeight(64.0.dp) - alignmentLineHeight(64.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xl.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearXl) - -public val WrapperTextFieldClearXl.RequiredStart: WrapperTextFieldClearXlRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXlRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXlRequiredStart) - -public val WrapperTextFieldClearXl.RequiredEnd: WrapperTextFieldClearXlRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXlRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXlRequiredEnd) - -public val WrapperTextFieldClearXl.OuterLabel: WrapperTextFieldClearXlOuterLabel - @Composable - @JvmName("WrapperTextFieldClearXlOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearXlOuterLabel) - -public val WrapperTextFieldClearXlOuterLabel.RequiredStart: - WrapperTextFieldClearXlOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXlOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXlOuterLabelRequiredStart) - -public val WrapperTextFieldClearXlOuterLabel.RequiredEnd: - WrapperTextFieldClearXlOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXlOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXlOuterLabelRequiredEnd) - -public val WrapperTextFieldClearXl.InnerLabel: WrapperTextFieldClearXlInnerLabel - @Composable - @JvmName("WrapperTextFieldClearXlInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(13.0.dp) - boxPaddingBottom(13.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearXlInnerLabel) - -public val WrapperTextFieldClearXlInnerLabel.RequiredStart: - WrapperTextFieldClearXlInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXlInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXlInnerLabelRequiredStart) - -public val WrapperTextFieldClearXlInnerLabel.RequiredEnd: - WrapperTextFieldClearXlInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXlInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(28.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXlInnerLabelRequiredEnd) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldStyles.kt deleted file mode 100644 index 75b69b0ba8..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textfield/TextFieldStyles.kt +++ /dev/null @@ -1,1208 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.textfield - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Xl -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextField : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextFieldView : WrapperTextField - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextFieldTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextField - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextFieldXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextFieldS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextFieldSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextFieldSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextFieldM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextFieldMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextFieldMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextFieldL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextFieldLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextFieldLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperTextFieldXl( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXlRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXlRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlOuterLabel - */ -@JvmInline -public value class WrapperTextFieldXlOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXlOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXlOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlInnerLabel - */ -@JvmInline -public value class WrapperTextFieldXlInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXlInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XlInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXlInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -public val WrapperTextFieldView.Default: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPrimary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Success: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentPositive.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Warning: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentWarning.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Error: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - PlasmaGigaAppTheme.colors.surfaceDefaultTransparentNegative.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(true) - .dimensions { - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - } - .captionStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .counterStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to PlasmaGigaAppTheme.colors.textDefaultTertiary, - ), - ) - placeholderColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - PlasmaGigaAppTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to PlasmaGigaAppTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColorReadOnly( - PlasmaGigaAppTheme.colors.surfaceDefaultSolidPrimary.multiplyAlpha(0.4f).asInteractive(), - ) - cursorColor( - PlasmaGigaAppTheme.colors.textDefaultAccent.asInteractive(), - ) - prefixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - PlasmaGigaAppTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextField.Xs: WrapperTextFieldXs - @Composable - @JvmName("WrapperTextFieldXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .dimensions { - boxPaddingStart(8.0.dp) - boxPaddingEnd(8.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldXs) - -public val WrapperTextFieldXs.RequiredStart: WrapperTextFieldXsRequiredStart - @Composable - @JvmName("WrapperTextFieldXsRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXsRequiredStart) - -public val WrapperTextFieldXs.RequiredEnd: WrapperTextFieldXsRequiredEnd - @Composable - @JvmName("WrapperTextFieldXsRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXsRequiredEnd) - -public val WrapperTextFieldXs.OuterLabel: WrapperTextFieldXsOuterLabel - @Composable - @JvmName("WrapperTextFieldXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(6.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldXsOuterLabel) - -public val WrapperTextFieldXsOuterLabel.RequiredStart: WrapperTextFieldXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldXsOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXsOuterLabelRequiredStart) - -public val WrapperTextFieldXsOuterLabel.RequiredEnd: WrapperTextFieldXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldXsOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXsOuterLabelRequiredEnd) - -public val TextField.S: WrapperTextFieldS - @Composable - @JvmName("WrapperTextFieldS") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - boxPaddingStart(12.0.dp) - boxPaddingEnd(12.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldS) - -public val WrapperTextFieldS.RequiredStart: WrapperTextFieldSRequiredStart - @Composable - @JvmName("WrapperTextFieldSRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSRequiredStart) - -public val WrapperTextFieldS.RequiredEnd: WrapperTextFieldSRequiredEnd - @Composable - @JvmName("WrapperTextFieldSRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSRequiredEnd) - -public val WrapperTextFieldS.OuterLabel: WrapperTextFieldSOuterLabel - @Composable - @JvmName("WrapperTextFieldSOuterLabel") - get() = builder - .dimensions { - labelPadding(8.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldSOuterLabel) - -public val WrapperTextFieldSOuterLabel.RequiredStart: WrapperTextFieldSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldSOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSOuterLabelRequiredStart) - -public val WrapperTextFieldSOuterLabel.RequiredEnd: WrapperTextFieldSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldSOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSOuterLabelRequiredEnd) - -public val WrapperTextFieldS.InnerLabel: WrapperTextFieldSInnerLabel - @Composable - @JvmName("WrapperTextFieldSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldSInnerLabel) - -public val WrapperTextFieldSInnerLabel.RequiredStart: WrapperTextFieldSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldSInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSInnerLabelRequiredStart) - -public val WrapperTextFieldSInnerLabel.RequiredEnd: WrapperTextFieldSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldSInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSInnerLabelRequiredEnd) - -public val TextField.M: WrapperTextFieldM - @Composable - @JvmName("WrapperTextFieldM") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .dimensions { - boxPaddingStart(14.0.dp) - boxPaddingEnd(14.0.dp) - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldM) - -public val WrapperTextFieldM.RequiredStart: WrapperTextFieldMRequiredStart - @Composable - @JvmName("WrapperTextFieldMRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMRequiredStart) - -public val WrapperTextFieldM.RequiredEnd: WrapperTextFieldMRequiredEnd - @Composable - @JvmName("WrapperTextFieldMRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMRequiredEnd) - -public val WrapperTextFieldM.OuterLabel: WrapperTextFieldMOuterLabel - @Composable - @JvmName("WrapperTextFieldMOuterLabel") - get() = builder - .dimensions { - labelPadding(10.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldMOuterLabel) - -public val WrapperTextFieldMOuterLabel.RequiredStart: WrapperTextFieldMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldMOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMOuterLabelRequiredStart) - -public val WrapperTextFieldMOuterLabel.RequiredEnd: WrapperTextFieldMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldMOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMOuterLabelRequiredEnd) - -public val WrapperTextFieldM.InnerLabel: WrapperTextFieldMInnerLabel - @Composable - @JvmName("WrapperTextFieldMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldMInnerLabel) - -public val WrapperTextFieldMInnerLabel.RequiredStart: WrapperTextFieldMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldMInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMInnerLabelRequiredStart) - -public val WrapperTextFieldMInnerLabel.RequiredEnd: WrapperTextFieldMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldMInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMInnerLabelRequiredEnd) - -public val TextField.L: WrapperTextFieldL - @Composable - @JvmName("WrapperTextFieldL") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = 2.0.dp)) - .dimensions { - boxPaddingStart(16.0.dp) - boxPaddingEnd(16.0.dp) - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldL) - -public val WrapperTextFieldL.RequiredStart: WrapperTextFieldLRequiredStart - @Composable - @JvmName("WrapperTextFieldLRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLRequiredStart) - -public val WrapperTextFieldL.RequiredEnd: WrapperTextFieldLRequiredEnd - @Composable - @JvmName("WrapperTextFieldLRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLRequiredEnd) - -public val WrapperTextFieldL.OuterLabel: WrapperTextFieldLOuterLabel - @Composable - @JvmName("WrapperTextFieldLOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldLOuterLabel) - -public val WrapperTextFieldLOuterLabel.RequiredStart: WrapperTextFieldLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldLOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLOuterLabelRequiredStart) - -public val WrapperTextFieldLOuterLabel.RequiredEnd: WrapperTextFieldLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldLOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLOuterLabelRequiredEnd) - -public val WrapperTextFieldL.InnerLabel: WrapperTextFieldLInnerLabel - @Composable - @JvmName("WrapperTextFieldLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldLInnerLabel) - -public val WrapperTextFieldLInnerLabel.RequiredStart: WrapperTextFieldLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldLInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLInnerLabelRequiredStart) - -public val WrapperTextFieldLInnerLabel.RequiredEnd: WrapperTextFieldLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldLInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLInnerLabelRequiredEnd) - -public val TextField.Xl: WrapperTextFieldXl - @Composable - @JvmName("WrapperTextFieldXl") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundL) - .dimensions { - boxPaddingStart(18.0.dp) - boxPaddingEnd(18.0.dp) - boxPaddingTop(20.0.dp) - boxPaddingBottom(20.0.dp) - boxMinHeight(64.0.dp) - alignmentLineHeight(64.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .prefixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .suffixStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .placeholderStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xl.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldXl) - -public val WrapperTextFieldXl.RequiredStart: WrapperTextFieldXlRequiredStart - @Composable - @JvmName("WrapperTextFieldXlRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXlRequiredStart) - -public val WrapperTextFieldXl.RequiredEnd: WrapperTextFieldXlRequiredEnd - @Composable - @JvmName("WrapperTextFieldXlRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXlRequiredEnd) - -public val WrapperTextFieldXl.OuterLabel: WrapperTextFieldXlOuterLabel - @Composable - @JvmName("WrapperTextFieldXlOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldXlOuterLabel) - -public val WrapperTextFieldXlOuterLabel.RequiredStart: WrapperTextFieldXlOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldXlOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXlOuterLabelRequiredStart) - -public val WrapperTextFieldXlOuterLabel.RequiredEnd: WrapperTextFieldXlOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldXlOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXlOuterLabelRequiredEnd) - -public val WrapperTextFieldXl.InnerLabel: WrapperTextFieldXlInnerLabel - @Composable - @JvmName("WrapperTextFieldXlInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(13.0.dp) - boxPaddingBottom(13.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .optionalStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldXlInnerLabel) - -public val WrapperTextFieldXlInnerLabel.RequiredStart: WrapperTextFieldXlInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldXlInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXlInnerLabelRequiredStart) - -public val WrapperTextFieldXlInnerLabel.RequiredEnd: WrapperTextFieldXlInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldXlInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXlInnerLabelRequiredEnd) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeleton.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeleton.kt deleted file mode 100644 index fd8a3cdb41..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeleton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.textskeleton - -/** - * Вспомогательный объект для описания API и стиля компонента TextSkeleton - */ -public object TextSkeleton diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeletonStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeletonStyles.kt deleted file mode 100644 index 57493aa59f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/textskeleton/TextSkeletonStyles.kt +++ /dev/null @@ -1,57 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.textskeleton - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.TextSkeletonStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextSkeleton : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextSkeletonTerminate( - public override val builder: TextSkeletonStyleBuilder, -) : WrapperTextSkeleton - -public val TextSkeleton.Default: WrapperTextSkeletonTerminate - @Composable - get() = TextSkeletonStyle.builder(this) - .invariantProps - .gradient( - PlasmaGigaAppTheme.gradients.surfaceDefaultSkeletonGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperTextSkeletonTerminate) - -public val TextSkeleton.Lighter: WrapperTextSkeletonTerminate - @Composable - get() = TextSkeletonStyle.builder(this) - .invariantProps - .gradient( - - PlasmaGigaAppTheme.gradients.surfaceDefaultSkeletonDeepGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperTextSkeletonTerminate) - -private val TextSkeletonStyleBuilder.invariantProps: TextSkeletonStyleBuilder - @Composable - get() = this - .shape(PlasmaGigaAppTheme.shapes.roundXxs) - .duration(5000.0.toInt()) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/Toast.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/Toast.kt deleted file mode 100644 index 5f19ff8795..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/Toast.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.toast - -/** - * Вспомогательный объект для описания API и стиля компонента Toast - */ -public object Toast diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/ToastStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/ToastStyles.kt deleted file mode 100644 index f4bc5a0dbf..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/toast/ToastStyles.kt +++ /dev/null @@ -1,132 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.toast - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.ToastStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperToast : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperToastView : WrapperToast - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperToastTerminate( - public override val builder: ToastStyleBuilder, -) : WrapperToast - -/** - * Обертка для вариации Rounded - */ -@JvmInline -public value class WrapperToastRounded( - public override val builder: ToastStyleBuilder, -) : WrapperToastView - -/** - * Обертка для вариации Pilled - */ -@JvmInline -public value class WrapperToastPilled( - public override val builder: ToastStyleBuilder, -) : WrapperToastView - -public val WrapperToastView.Default: WrapperToastTerminate - @Composable - get() = builder - .colors { - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperToastTerminate) - -public val WrapperToastView.Positive: WrapperToastTerminate - @Composable - get() = builder - .colors { - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperToastTerminate) - -public val WrapperToastView.Negative: WrapperToastTerminate - @Composable - get() = builder - .colors { - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperToastTerminate) - -private val ToastStyleBuilder.invariantProps: ToastStyleBuilder - @Composable - get() = this - .textStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - textColor( - PlasmaGigaAppTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentEndColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(8.0.dp) - paddingStart(10.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - -public val Toast.Rounded: WrapperToastRounded - @Composable - @JvmName("WrapperToastRounded") - get() = ToastStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM) - .wrap(::WrapperToastRounded) - -public val Toast.Pilled: WrapperToastPilled - @Composable - @JvmName("WrapperToastPilled") - get() = ToastStyle.builder(this) - .invariantProps - .shape(CircleShape) - .wrap(::WrapperToastPilled) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/Tooltip.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/Tooltip.kt deleted file mode 100644 index 4dbca2b758..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/Tooltip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.styles.tooltip - -/** - * Вспомогательный объект для описания API и стиля компонента Tooltip - */ -public object Tooltip diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/TooltipStyles.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/TooltipStyles.kt deleted file mode 100644 index c9da10afc0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/styles/tooltip/TooltipStyles.kt +++ /dev/null @@ -1,103 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.plasma.giga.app.styles.tooltip - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.TooltipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTooltip : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTooltipM( - public override val builder: TooltipStyleBuilder, -) : WrapperTooltip - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTooltipS( - public override val builder: TooltipStyleBuilder, -) : WrapperTooltip - -private val TooltipStyleBuilder.invariantProps: TooltipStyleBuilder - @Composable - get() = this - .shadow(PlasmaGigaAppTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(PlasmaGigaAppTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - textColor( - SolidColor(PlasmaGigaAppTheme.colors.textDefaultPrimary).asStatefulValue(), - ) - contentStartColor( - PlasmaGigaAppTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - contentStartSize(16.0.dp) - } - -public val Tooltip.M: WrapperTooltipM - @Composable - @JvmName("WrapperTooltipM") - get() = TooltipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .textStyle(PlasmaGigaAppTheme.typography.bodySNormal) - .dimensions { - contentStartPadding(6.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - offset(8.0.dp) - tailWidth(20.0.dp) - tailHeight(8.0.dp) - tailPadding(10.0.dp) - } - .wrap(::WrapperTooltipM) - -public val Tooltip.S: WrapperTooltipS - @Composable - @JvmName("WrapperTooltipS") - get() = TooltipStyle.builder(this) - .invariantProps - .shape(PlasmaGigaAppTheme.shapes.roundS) - .textStyle(PlasmaGigaAppTheme.typography.bodyXsNormal) - .dimensions { - contentStartPadding(4.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - offset(6.0.dp) - tailWidth(14.0.dp) - tailHeight(6.0.dp) - tailPadding(9.0.dp) - } - .wrap(::WrapperTooltipS) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppColors.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppColors.kt deleted file mode 100644 index 867ed4edf0..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppColors.kt +++ /dev/null @@ -1,16552 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.MutableState -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.setValue -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.runtime.structuralEqualityPolicy -import androidx.compose.ui.graphics.Color -import com.sdds.plasma.giga.app.tokens.DarkColorTokens -import com.sdds.plasma.giga.app.tokens.LightColorTokens -import kotlin.String -import kotlin.Suppress -import kotlin.Unit -import kotlin.collections.Map -import kotlin.collections.MutableMap - -/** - * Цвета PlasmaGigaApp - */ -@Immutable -public class PlasmaGigaAppColors( - private val colors: Map, -) { - /** - * Основной цвет текста - */ - public var textDefaultPrimary: Color by colors.obtain("textDefaultPrimary") - - /** - * Основной цвет текста - */ - public var textDefaultPrimaryBrightness: Color by colors.obtain("textDefaultPrimaryBrightness") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondary: Color by colors.obtain("textDefaultSecondary") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiary: Color by colors.obtain("textDefaultTertiary") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraph: Color by colors.obtain("textDefaultParagraph") - - /** - * Акцентный цвет - */ - public var textDefaultAccent: Color by colors.obtain("textDefaultAccent") - - /** - * Цвет успеха - */ - public var textDefaultPositive: Color by colors.obtain("textDefaultPositive") - - /** - * Цвет предупреждения - */ - public var textDefaultWarning: Color by colors.obtain("textDefaultWarning") - - /** - * Цвет ошибки - */ - public var textDefaultNegative: Color by colors.obtain("textDefaultNegative") - - /** - * light text default textAccentMinorHover - */ - public var textDefaultAccentMinorHover: Color by colors.obtain("textDefaultAccentMinorHover") - - /** - * light text default textAccentMinorActive - */ - public var textDefaultAccentMinorActive: Color by colors.obtain("textDefaultAccentMinorActive") - - /** - * light text default textInfoHover - */ - public var textDefaultInfoHover: Color by colors.obtain("textDefaultInfoHover") - - /** - * light text default textInfoActive - */ - public var textDefaultInfoActive: Color by colors.obtain("textDefaultInfoActive") - - /** - * light text default textPositiveMinorHover - */ - public var textDefaultPositiveMinorHover: Color by - colors.obtain("textDefaultPositiveMinorHover") - - /** - * light text default textPositiveMinorActive - */ - public var textDefaultPositiveMinorActive: Color by - colors.obtain("textDefaultPositiveMinorActive") - - /** - * light text default textWarningMinorHover - */ - public var textDefaultWarningMinorHover: Color by colors.obtain("textDefaultWarningMinorHover") - - /** - * light text default textWarningMinorActive - */ - public var textDefaultWarningMinorActive: Color by - colors.obtain("textDefaultWarningMinorActive") - - /** - * light text default textNegativeMinorHover - */ - public var textDefaultNegativeMinorHover: Color by - colors.obtain("textDefaultNegativeMinorHover") - - /** - * light text default textNegativeMinorActive - */ - public var textDefaultNegativeMinorActive: Color by - colors.obtain("textDefaultNegativeMinorActive") - - /** - * light text default textInfoMinorHover - */ - public var textDefaultInfoMinorHover: Color by colors.obtain("textDefaultInfoMinorHover") - - /** - * light text default textInfoMinorActive - */ - public var textDefaultInfoMinorActive: Color by colors.obtain("textDefaultInfoMinorActive") - - /** - * light text default textAccentMinor - */ - public var textDefaultAccentMinor: Color by colors.obtain("textDefaultAccentMinor") - - /** - * light text default textPositiveMinor - */ - public var textDefaultPositiveMinor: Color by colors.obtain("textDefaultPositiveMinor") - - /** - * light text default textWarningMinor - */ - public var textDefaultWarningMinor: Color by colors.obtain("textDefaultWarningMinor") - - /** - * light text default textNegativeMinor - */ - public var textDefaultNegativeMinor: Color by colors.obtain("textDefaultNegativeMinor") - - /** - * light text default textInfo - */ - public var textDefaultInfo: Color by colors.obtain("textDefaultInfo") - - /** - * light text default textInfoMinor - */ - public var textDefaultInfoMinor: Color by colors.obtain("textDefaultInfoMinor") - - /** - * Основной цвет текста - */ - public var textDefaultPrimaryHover: Color by colors.obtain("textDefaultPrimaryHover") - - /** - * Основной цвет текста - */ - public var textDefaultPrimaryActive: Color by colors.obtain("textDefaultPrimaryActive") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondaryHover: Color by colors.obtain("textDefaultSecondaryHover") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondaryActive: Color by colors.obtain("textDefaultSecondaryActive") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiaryHover: Color by colors.obtain("textDefaultTertiaryHover") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiaryActive: Color by colors.obtain("textDefaultTertiaryActive") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraphHover: Color by colors.obtain("textDefaultParagraphHover") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraphActive: Color by colors.obtain("textDefaultParagraphActive") - - /** - * Акцентный цвет - */ - public var textDefaultAccentHover: Color by colors.obtain("textDefaultAccentHover") - - /** - * Акцентный цвет - */ - public var textDefaultAccentActive: Color by colors.obtain("textDefaultAccentActive") - - /** - * Цвет успеха - */ - public var textDefaultPositiveHover: Color by colors.obtain("textDefaultPositiveHover") - - /** - * Цвет успеха - */ - public var textDefaultPositiveActive: Color by colors.obtain("textDefaultPositiveActive") - - /** - * Цвет предупреждения - */ - public var textDefaultWarningHover: Color by colors.obtain("textDefaultWarningHover") - - /** - * Цвет предупреждения - */ - public var textDefaultWarningActive: Color by colors.obtain("textDefaultWarningActive") - - /** - * Цвет ошибки - */ - public var textDefaultNegativeHover: Color by colors.obtain("textDefaultNegativeHover") - - /** - * Цвет ошибки - */ - public var textDefaultNegativeActive: Color by colors.obtain("textDefaultNegativeActive") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimary: Color by colors.obtain("textOnDarkPrimary") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryBrightness: Color by colors.obtain("textOnDarkPrimaryBrightness") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondary: Color by colors.obtain("textOnDarkSecondary") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiary: Color by colors.obtain("textOnDarkTertiary") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraph: Color by colors.obtain("textOnDarkParagraph") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccent: Color by colors.obtain("textOnDarkAccent") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositive: Color by colors.obtain("textOnDarkPositive") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarning: Color by colors.obtain("textOnDarkWarning") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegative: Color by colors.obtain("textOnDarkNegative") - - /** - * light text onDark textAccentMinor - */ - public var textOnDarkAccentMinor: Color by colors.obtain("textOnDarkAccentMinor") - - /** - * light text onDark textAccentMinorHover - */ - public var textOnDarkAccentMinorHover: Color by colors.obtain("textOnDarkAccentMinorHover") - - /** - * light text onDark textAccentMinorActive - */ - public var textOnDarkAccentMinorActive: Color by colors.obtain("textOnDarkAccentMinorActive") - - /** - * light text onDark textInfoHover - */ - public var textOnDarkInfoHover: Color by colors.obtain("textOnDarkInfoHover") - - /** - * light text onDark textInfoActive - */ - public var textOnDarkInfoActive: Color by colors.obtain("textOnDarkInfoActive") - - /** - * light text onDark textPositiveMinor - */ - public var textOnDarkPositiveMinor: Color by colors.obtain("textOnDarkPositiveMinor") - - /** - * light text onDark textPositiveMinorHover - */ - public var textOnDarkPositiveMinorHover: Color by colors.obtain("textOnDarkPositiveMinorHover") - - /** - * light text onDark textPositiveMinorActive - */ - public var textOnDarkPositiveMinorActive: Color by - colors.obtain("textOnDarkPositiveMinorActive") - - /** - * light text onDark textWarningMinor - */ - public var textOnDarkWarningMinor: Color by colors.obtain("textOnDarkWarningMinor") - - /** - * light text onDark textWarningMinorHover - */ - public var textOnDarkWarningMinorHover: Color by colors.obtain("textOnDarkWarningMinorHover") - - /** - * light text onDark textWarningMinorActive - */ - public var textOnDarkWarningMinorActive: Color by colors.obtain("textOnDarkWarningMinorActive") - - /** - * light text onDark textNegativeMinor - */ - public var textOnDarkNegativeMinor: Color by colors.obtain("textOnDarkNegativeMinor") - - /** - * light text onDark textNegativeMinorHover - */ - public var textOnDarkNegativeMinorHover: Color by colors.obtain("textOnDarkNegativeMinorHover") - - /** - * light text onDark textNegativeMinorActive - */ - public var textOnDarkNegativeMinorActive: Color by - colors.obtain("textOnDarkNegativeMinorActive") - - /** - * light text onDark textInfoMinorHover - */ - public var textOnDarkInfoMinorHover: Color by colors.obtain("textOnDarkInfoMinorHover") - - /** - * light text onDark textInfoMinorActive - */ - public var textOnDarkInfoMinorActive: Color by colors.obtain("textOnDarkInfoMinorActive") - - /** - * light text onDark textInfoMinor - */ - public var textOnDarkInfoMinor: Color by colors.obtain("textOnDarkInfoMinor") - - /** - * light text onDark textInfo - */ - public var textOnDarkInfo: Color by colors.obtain("textOnDarkInfo") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryHover: Color by colors.obtain("textOnDarkPrimaryHover") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryActive: Color by colors.obtain("textOnDarkPrimaryActive") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondaryHover: Color by colors.obtain("textOnDarkSecondaryHover") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondaryActive: Color by colors.obtain("textOnDarkSecondaryActive") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiaryHover: Color by colors.obtain("textOnDarkTertiaryHover") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiaryActive: Color by colors.obtain("textOnDarkTertiaryActive") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraphHover: Color by colors.obtain("textOnDarkParagraphHover") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraphActive: Color by colors.obtain("textOnDarkParagraphActive") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentHover: Color by colors.obtain("textOnDarkAccentHover") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentActive: Color by colors.obtain("textOnDarkAccentActive") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositiveHover: Color by colors.obtain("textOnDarkPositiveHover") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositiveActive: Color by colors.obtain("textOnDarkPositiveActive") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarningHover: Color by colors.obtain("textOnDarkWarningHover") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarningActive: Color by colors.obtain("textOnDarkWarningActive") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegativeHover: Color by colors.obtain("textOnDarkNegativeHover") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegativeActive: Color by colors.obtain("textOnDarkNegativeActive") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimary: Color by colors.obtain("textOnLightPrimary") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryBrightness: Color by colors.obtain("textOnLightPrimaryBrightness") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondary: Color by colors.obtain("textOnLightSecondary") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiary: Color by colors.obtain("textOnLightTertiary") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraph: Color by colors.obtain("textOnLightParagraph") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccent: Color by colors.obtain("textOnLightAccent") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositive: Color by colors.obtain("textOnLightPositive") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarning: Color by colors.obtain("textOnLightWarning") - - /** - * light text onLight textAccentMinor - */ - public var textOnLightAccentMinor: Color by colors.obtain("textOnLightAccentMinor") - - /** - * light text onLight textAccentMinorHover - */ - public var textOnLightAccentMinorHover: Color by colors.obtain("textOnLightAccentMinorHover") - - /** - * light text onLight textAccentMinorActive - */ - public var textOnLightAccentMinorActive: Color by colors.obtain("textOnLightAccentMinorActive") - - /** - * light text onLight textInfoHover - */ - public var textOnLightInfoHover: Color by colors.obtain("textOnLightInfoHover") - - /** - * light text onLight textInfoActive - */ - public var textOnLightInfoActive: Color by colors.obtain("textOnLightInfoActive") - - /** - * light text onLight textPositiveMinor - */ - public var textOnLightPositiveMinor: Color by colors.obtain("textOnLightPositiveMinor") - - /** - * light text onLight textPositiveMinorHover - */ - public var textOnLightPositiveMinorHover: Color by - colors.obtain("textOnLightPositiveMinorHover") - - /** - * light text onLight textPositiveMinorActive - */ - public var textOnLightPositiveMinorActive: Color by - colors.obtain("textOnLightPositiveMinorActive") - - /** - * light text onLight textWarningMinor - */ - public var textOnLightWarningMinor: Color by colors.obtain("textOnLightWarningMinor") - - /** - * light text onLight textWarningMinorHover - */ - public var textOnLightWarningMinorHover: Color by colors.obtain("textOnLightWarningMinorHover") - - /** - * light text onLight textWarningMinorActive - */ - public var textOnLightWarningMinorActive: Color by - colors.obtain("textOnLightWarningMinorActive") - - /** - * light text onLight textNegativeMinor - */ - public var textOnLightNegativeMinor: Color by colors.obtain("textOnLightNegativeMinor") - - /** - * light text onLight textNegativeMinorHover - */ - public var textOnLightNegativeMinorHover: Color by - colors.obtain("textOnLightNegativeMinorHover") - - /** - * light text onLight textNegativeMinorActive - */ - public var textOnLightNegativeMinorActive: Color by - colors.obtain("textOnLightNegativeMinorActive") - - /** - * light text onLight textInfoMinorHover - */ - public var textOnLightInfoMinorHover: Color by colors.obtain("textOnLightInfoMinorHover") - - /** - * light text onLight textInfoMinorActive - */ - public var textOnLightInfoMinorActive: Color by colors.obtain("textOnLightInfoMinorActive") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegative: Color by colors.obtain("textOnLightNegative") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegativeHover: Color by colors.obtain("textOnLightNegativeHover") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegativeActive: Color by colors.obtain("textOnLightNegativeActive") - - /** - * light text onLight textInfo - */ - public var textOnLightInfo: Color by colors.obtain("textOnLightInfo") - - /** - * light text onLight textInfoMinor - */ - public var textOnLightInfoMinor: Color by colors.obtain("textOnLightInfoMinor") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryHover: Color by colors.obtain("textOnLightPrimaryHover") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryActive: Color by colors.obtain("textOnLightPrimaryActive") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondaryHover: Color by colors.obtain("textOnLightSecondaryHover") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondaryActive: Color by colors.obtain("textOnLightSecondaryActive") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiaryHover: Color by colors.obtain("textOnLightTertiaryHover") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiaryActive: Color by colors.obtain("textOnLightTertiaryActive") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraphHover: Color by colors.obtain("textOnLightParagraphHover") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraphActive: Color by colors.obtain("textOnLightParagraphActive") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentHover: Color by colors.obtain("textOnLightAccentHover") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentActive: Color by colors.obtain("textOnLightAccentActive") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositiveHover: Color by colors.obtain("textOnLightPositiveHover") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositiveActive: Color by colors.obtain("textOnLightPositiveActive") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarningHover: Color by colors.obtain("textOnLightWarningHover") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarningActive: Color by colors.obtain("textOnLightWarningActive") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimary: Color by colors.obtain("textInversePrimary") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryBrightness: Color by colors.obtain("textInversePrimaryBrightness") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondary: Color by colors.obtain("textInverseSecondary") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiary: Color by colors.obtain("textInverseTertiary") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraph: Color by colors.obtain("textInverseParagraph") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositive: Color by colors.obtain("textInversePositive") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarning: Color by colors.obtain("textInverseWarning") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegative: Color by colors.obtain("textInverseNegative") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryHover: Color by colors.obtain("textInversePrimaryHover") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryActive: Color by colors.obtain("textInversePrimaryActive") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondaryHover: Color by colors.obtain("textInverseSecondaryHover") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondaryActive: Color by colors.obtain("textInverseSecondaryActive") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiaryHover: Color by colors.obtain("textInverseTertiaryHover") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiaryActive: Color by colors.obtain("textInverseTertiaryActive") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraphHover: Color by colors.obtain("textInverseParagraphHover") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraphActive: Color by colors.obtain("textInverseParagraphActive") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccentHover: Color by colors.obtain("textInverseAccentHover") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccentActive: Color by colors.obtain("textInverseAccentActive") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositiveHover: Color by colors.obtain("textInversePositiveHover") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositiveActive: Color by colors.obtain("textInversePositiveActive") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarningHover: Color by colors.obtain("textInverseWarningHover") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarningActive: Color by colors.obtain("textInverseWarningActive") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegativeHover: Color by colors.obtain("textInverseNegativeHover") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegativeActive: Color by colors.obtain("textInverseNegativeActive") - - /** - * light text inverse textAccentMinor - */ - public var textInverseAccentMinor: Color by colors.obtain("textInverseAccentMinor") - - /** - * light text inverse textAccentMinorHover - */ - public var textInverseAccentMinorHover: Color by colors.obtain("textInverseAccentMinorHover") - - /** - * light text inverse textAccentMinorActive - */ - public var textInverseAccentMinorActive: Color by colors.obtain("textInverseAccentMinorActive") - - /** - * light text inverse textInfoHover - */ - public var textInverseInfoHover: Color by colors.obtain("textInverseInfoHover") - - /** - * light text inverse textInfoActive - */ - public var textInverseInfoActive: Color by colors.obtain("textInverseInfoActive") - - /** - * light text inverse textPositiveMinorHover - */ - public var textInversePositiveMinorHover: Color by - colors.obtain("textInversePositiveMinorHover") - - /** - * light text inverse textPositiveMinorActive - */ - public var textInversePositiveMinorActive: Color by - colors.obtain("textInversePositiveMinorActive") - - /** - * light text inverse textWarningMinorHover - */ - public var textInverseWarningMinorHover: Color by colors.obtain("textInverseWarningMinorHover") - - /** - * light text inverse textWarningMinorActive - */ - public var textInverseWarningMinorActive: Color by - colors.obtain("textInverseWarningMinorActive") - - /** - * light text inverse textNegativeMinorHover - */ - public var textInverseNegativeMinorHover: Color by - colors.obtain("textInverseNegativeMinorHover") - - /** - * light text inverse textNegativeMinorActive - */ - public var textInverseNegativeMinorActive: Color by - colors.obtain("textInverseNegativeMinorActive") - - /** - * light text inverse textInfoMinorHover - */ - public var textInverseInfoMinorHover: Color by colors.obtain("textInverseInfoMinorHover") - - /** - * light text inverse textInfoMinorActive - */ - public var textInverseInfoMinorActive: Color by colors.obtain("textInverseInfoMinorActive") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccent: Color by colors.obtain("textInverseAccent") - - /** - * light text inverse textInfo - */ - public var textInverseInfo: Color by colors.obtain("textInverseInfo") - - /** - * light text inverse textPositiveMinor - */ - public var textInversePositiveMinor: Color by colors.obtain("textInversePositiveMinor") - - /** - * light text inverse textWarningMinor - */ - public var textInverseWarningMinor: Color by colors.obtain("textInverseWarningMinor") - - /** - * light text inverse textNegativeMinor - */ - public var textInverseNegativeMinor: Color by colors.obtain("textInverseNegativeMinor") - - /** - * light text inverse textInfoMinor - */ - public var textInverseInfoMinor: Color by colors.obtain("textInverseInfoMinor") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefault: Color by colors.obtain("surfaceDefaultSolidDefault") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimary: Color by colors.obtain("surfaceDefaultSolidPrimary") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryBrightness: Color by - colors.obtain("surfaceDefaultSolidPrimaryBrightness") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondary: Color by colors.obtain("surfaceDefaultSolidSecondary") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiary: Color by colors.obtain("surfaceDefaultSolidTertiary") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCard: Color by colors.obtain("surfaceDefaultSolidCard") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardBrightness: Color by - colors.obtain("surfaceDefaultSolidCardBrightness") - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultTransparentDefault: Color by - colors.obtain("surfaceDefaultTransparentDefault") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimary: Color by - colors.obtain("surfaceDefaultTransparentPrimary") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondary: Color by - colors.obtain("surfaceDefaultTransparentSecondary") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiary: Color by - colors.obtain("surfaceDefaultTransparentTertiary") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCard: Color by - colors.obtain("surfaceDefaultTransparentCard") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardBrightness: Color by - colors.obtain("surfaceDefaultTransparentCardBrightness") - - /** - * Акцентный фон поверхности/контрола - */ - public var surfaceDefaultAccent: Color by colors.obtain("surfaceDefaultAccent") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositive: Color by colors.obtain("surfaceDefaultPositive") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarning: Color by colors.obtain("surfaceDefaultWarning") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegative: Color by colors.obtain("surfaceDefaultNegative") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClear: Color by colors.obtain("surfaceDefaultClear") - - /** - * light surface default surfaceTransparentDeep - */ - public var surfaceDefaultTransparentDeep: Color by - colors.obtain("surfaceDefaultTransparentDeep") - - /** - * light surface default surfaceAccentMinorHover - */ - public var surfaceDefaultAccentMinorHover: Color by - colors.obtain("surfaceDefaultAccentMinorHover") - - /** - * light surface default surfaceAccentMinorActive - */ - public var surfaceDefaultAccentMinorActive: Color by - colors.obtain("surfaceDefaultAccentMinorActive") - - /** - * light surface default surfaceTransparentAccentHover - */ - public var surfaceDefaultTransparentAccentHover: Color by - colors.obtain("surfaceDefaultTransparentAccentHover") - - /** - * light surface default surfaceTransparentAccentActive - */ - public var surfaceDefaultTransparentAccentActive: Color by - colors.obtain("surfaceDefaultTransparentAccentActive") - - /** - * light surface default surfaceInfoHover - */ - public var surfaceDefaultInfoHover: Color by colors.obtain("surfaceDefaultInfoHover") - - /** - * light surface default surfaceInfoActive - */ - public var surfaceDefaultInfoActive: Color by colors.obtain("surfaceDefaultInfoActive") - - /** - * light surface default surfacePositiveMinorHover - */ - public var surfaceDefaultPositiveMinorHover: Color by - colors.obtain("surfaceDefaultPositiveMinorHover") - - /** - * light surface default surfacePositiveMinorActive - */ - public var surfaceDefaultPositiveMinorActive: Color by - colors.obtain("surfaceDefaultPositiveMinorActive") - - /** - * light surface default surfaceWarningMinorHover - */ - public var surfaceDefaultWarningMinorHover: Color by - colors.obtain("surfaceDefaultWarningMinorHover") - - /** - * light surface default surfaceWarningMinorActive - */ - public var surfaceDefaultWarningMinorActive: Color by - colors.obtain("surfaceDefaultWarningMinorActive") - - /** - * light surface default surfaceNegativeMinorHover - */ - public var surfaceDefaultNegativeMinorHover: Color by - colors.obtain("surfaceDefaultNegativeMinorHover") - - /** - * light surface default surfaceNegativeMinorActive - */ - public var surfaceDefaultNegativeMinorActive: Color by - colors.obtain("surfaceDefaultNegativeMinorActive") - - /** - * light surface default surfaceInfoMinorHover - */ - public var surfaceDefaultInfoMinorHover: Color by colors.obtain("surfaceDefaultInfoMinorHover") - - /** - * light surface default surfaceInfoMinorActive - */ - public var surfaceDefaultInfoMinorActive: Color by - colors.obtain("surfaceDefaultInfoMinorActive") - - /** - * light surface default surfaceTransparentPositiveHover - */ - public var surfaceDefaultTransparentPositiveHover: Color by - colors.obtain("surfaceDefaultTransparentPositiveHover") - - /** - * light surface default surfaceTransparentPositiveActive - */ - public var surfaceDefaultTransparentPositiveActive: Color by - colors.obtain("surfaceDefaultTransparentPositiveActive") - - /** - * light surface default surfaceTransparentWarningHover - */ - public var surfaceDefaultTransparentWarningHover: Color by - colors.obtain("surfaceDefaultTransparentWarningHover") - - /** - * light surface default surfaceTransparentWarningActive - */ - public var surfaceDefaultTransparentWarningActive: Color by - colors.obtain("surfaceDefaultTransparentWarningActive") - - /** - * light surface default surfaceTransparentNegativeHover - */ - public var surfaceDefaultTransparentNegativeHover: Color by - colors.obtain("surfaceDefaultTransparentNegativeHover") - - /** - * light surface default surfaceTransparentNegativeActive - */ - public var surfaceDefaultTransparentNegativeActive: Color by - colors.obtain("surfaceDefaultTransparentNegativeActive") - - /** - * light surface default surfaceTransparentInfoHover - */ - public var surfaceDefaultTransparentInfoHover: Color by - colors.obtain("surfaceDefaultTransparentInfoHover") - - /** - * light surface default surfaceTransparentInfoActive - */ - public var surfaceDefaultTransparentInfoActive: Color by - colors.obtain("surfaceDefaultTransparentInfoActive") - - /** - * light surface default surfaceAccentMinor - */ - public var surfaceDefaultAccentMinor: Color by colors.obtain("surfaceDefaultAccentMinor") - - /** - * light surface default surfaceTransparentAccent - */ - public var surfaceDefaultTransparentAccent: Color by - colors.obtain("surfaceDefaultTransparentAccent") - - /** - * light surface default surfacePositiveMinor - */ - public var surfaceDefaultPositiveMinor: Color by colors.obtain("surfaceDefaultPositiveMinor") - - /** - * light surface default surfaceWarningMinor - */ - public var surfaceDefaultWarningMinor: Color by colors.obtain("surfaceDefaultWarningMinor") - - /** - * light surface default surfaceNegativeMinor - */ - public var surfaceDefaultNegativeMinor: Color by colors.obtain("surfaceDefaultNegativeMinor") - - /** - * light surface default surfaceTransparentPositive - */ - public var surfaceDefaultTransparentPositive: Color by - colors.obtain("surfaceDefaultTransparentPositive") - - /** - * light surface default surfaceTransparentWarning - */ - public var surfaceDefaultTransparentWarning: Color by - colors.obtain("surfaceDefaultTransparentWarning") - - /** - * light surface default surfaceTransparentNegative - */ - public var surfaceDefaultTransparentNegative: Color by - colors.obtain("surfaceDefaultTransparentNegative") - - /** - * light surface default surfaceInfo - */ - public var surfaceDefaultInfo: Color by colors.obtain("surfaceDefaultInfo") - - /** - * light surface default surfaceInfoMinor - */ - public var surfaceDefaultInfoMinor: Color by colors.obtain("surfaceDefaultInfoMinor") - - /** - * light surface default surfaceTransparentInfo - */ - public var surfaceDefaultTransparentInfo: Color by - colors.obtain("surfaceDefaultTransparentInfo") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefaultHover: Color by - colors.obtain("surfaceDefaultSolidDefaultHover") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefaultActive: Color by - colors.obtain("surfaceDefaultSolidDefaultActive") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryHover: Color by - colors.obtain("surfaceDefaultSolidPrimaryHover") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryActive: Color by - colors.obtain("surfaceDefaultSolidPrimaryActive") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondaryHover: Color by - colors.obtain("surfaceDefaultSolidSecondaryHover") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondaryActive: Color by - colors.obtain("surfaceDefaultSolidSecondaryActive") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiaryHover: Color by - colors.obtain("surfaceDefaultSolidTertiaryHover") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiaryActive: Color by - colors.obtain("surfaceDefaultSolidTertiaryActive") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardHover: Color by colors.obtain("surfaceDefaultSolidCardHover") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardActive: Color by - colors.obtain("surfaceDefaultSolidCardActive") - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultTransparentDefaultHover: Color by - colors.obtain("surfaceDefaultTransparentDefaultHover") - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultTransparentDefaultActive: Color by - colors.obtain("surfaceDefaultTransparentDefaultActive") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimaryHover: Color by - colors.obtain("surfaceDefaultTransparentPrimaryHover") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimaryActive: Color by - colors.obtain("surfaceDefaultTransparentPrimaryActive") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondaryHover: Color by - colors.obtain("surfaceDefaultTransparentSecondaryHover") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondaryActive: Color by - colors.obtain("surfaceDefaultTransparentSecondaryActive") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiaryHover: Color by - colors.obtain("surfaceDefaultTransparentTertiaryHover") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiaryActive: Color by - colors.obtain("surfaceDefaultTransparentTertiaryActive") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardHover: Color by - colors.obtain("surfaceDefaultTransparentCardHover") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardActive: Color by - colors.obtain("surfaceDefaultTransparentCardActive") - - /** - * Акцентный фон поверхности/контрола - */ - public var surfaceDefaultAccentHover: Color by colors.obtain("surfaceDefaultAccentHover") - - /** - * Акцентный фон поверхности/контрола - */ - public var surfaceDefaultAccentActive: Color by colors.obtain("surfaceDefaultAccentActive") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositiveHover: Color by colors.obtain("surfaceDefaultPositiveHover") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositiveActive: Color by colors.obtain("surfaceDefaultPositiveActive") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningHover: Color by colors.obtain("surfaceDefaultWarningHover") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningActive: Color by colors.obtain("surfaceDefaultWarningActive") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeHover: Color by colors.obtain("surfaceDefaultNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeActive: Color by colors.obtain("surfaceDefaultNegativeActive") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClearHover: Color by colors.obtain("surfaceDefaultClearHover") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClearActive: Color by colors.obtain("surfaceDefaultClearActive") - - /** - * light surface default surfaceTransparentDeepHover - */ - public var surfaceDefaultTransparentDeepHover: Color by - colors.obtain("surfaceDefaultTransparentDeepHover") - - /** - * light surface default surfaceTransparentDeepActive - */ - public var surfaceDefaultTransparentDeepActive: Color by - colors.obtain("surfaceDefaultTransparentDeepActive") - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimary: Color by colors.obtain("surfaceOnDarkSolidPrimary") - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryBrightness: Color by - colors.obtain("surfaceOnDarkSolidPrimaryBrightness") - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidSecondary: Color by colors.obtain("surfaceOnDarkSolidSecondary") - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiary: Color by colors.obtain("surfaceOnDarkSolidTertiary") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCard: Color by colors.obtain("surfaceOnDarkSolidCard") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardBrightness: Color by - colors.obtain("surfaceOnDarkSolidCardBrightness") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkTransparentDefault: Color by - colors.obtain("surfaceOnDarkTransparentDefault") - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccent: Color by colors.obtain("surfaceOnDarkAccent") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositive: Color by colors.obtain("surfaceOnDarkPositive") - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarning: Color by colors.obtain("surfaceOnDarkWarning") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegative: Color by colors.obtain("surfaceOnDarkNegative") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClear: Color by colors.obtain("surfaceOnDarkClear") - - /** - * light surface onDark surfaceTransparentDeep - */ - public var surfaceOnDarkTransparentDeep: Color by colors.obtain("surfaceOnDarkTransparentDeep") - - /** - * light surface onDark surfaceAccentMinor - */ - public var surfaceOnDarkAccentMinor: Color by colors.obtain("surfaceOnDarkAccentMinor") - - /** - * light surface onDark surfaceAccentMinorHover - */ - public var surfaceOnDarkAccentMinorHover: Color by - colors.obtain("surfaceOnDarkAccentMinorHover") - - /** - * light surface onDark surfaceAccentMinorActive - */ - public var surfaceOnDarkAccentMinorActive: Color by - colors.obtain("surfaceOnDarkAccentMinorActive") - - /** - * light surface onDark surfaceTransparentAccent - */ - public var surfaceOnDarkTransparentAccent: Color by - colors.obtain("surfaceOnDarkTransparentAccent") - - /** - * light surface onDark surfaceTransparentAccentHover - */ - public var surfaceOnDarkTransparentAccentHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentHover") - - /** - * light surface onDark surfaceTransparentAccentActive - */ - public var surfaceOnDarkTransparentAccentActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentActive") - - /** - * light surface onDark surfaceSurfaceInfoHover - */ - public var surfaceOnDarkSurfaceInfoHover: Color by - colors.obtain("surfaceOnDarkSurfaceInfoHover") - - /** - * light surface onDark surfaceSurfaceInfoActive - */ - public var surfaceOnDarkSurfaceInfoActive: Color by - colors.obtain("surfaceOnDarkSurfaceInfoActive") - - /** - * light surface onDark surfacePositiveMinor - */ - public var surfaceOnDarkPositiveMinor: Color by colors.obtain("surfaceOnDarkPositiveMinor") - - /** - * light surface onDark surfacePositiveMinorHover - */ - public var surfaceOnDarkPositiveMinorHover: Color by - colors.obtain("surfaceOnDarkPositiveMinorHover") - - /** - * light surface onDark surfacePositiveMinorActive - */ - public var surfaceOnDarkPositiveMinorActive: Color by - colors.obtain("surfaceOnDarkPositiveMinorActive") - - /** - * light surface onDark surfaceWarningMinor - */ - public var surfaceOnDarkWarningMinor: Color by colors.obtain("surfaceOnDarkWarningMinor") - - /** - * light surface onDark surfaceWarningMinorHover - */ - public var surfaceOnDarkWarningMinorHover: Color by - colors.obtain("surfaceOnDarkWarningMinorHover") - - /** - * light surface onDark surfaceWarningMinorActive - */ - public var surfaceOnDarkWarningMinorActive: Color by - colors.obtain("surfaceOnDarkWarningMinorActive") - - /** - * light surface onDark surfaceNegativeMinor - */ - public var surfaceOnDarkNegativeMinor: Color by colors.obtain("surfaceOnDarkNegativeMinor") - - /** - * light surface onDark surfaceNegativeMinorHover - */ - public var surfaceOnDarkNegativeMinorHover: Color by - colors.obtain("surfaceOnDarkNegativeMinorHover") - - /** - * light surface onDark surfaceNegativeMinorActive - */ - public var surfaceOnDarkNegativeMinorActive: Color by - colors.obtain("surfaceOnDarkNegativeMinorActive") - - /** - * light surface onDark surfaceInfoMinorHover - */ - public var surfaceOnDarkInfoMinorHover: Color by colors.obtain("surfaceOnDarkInfoMinorHover") - - /** - * light surface onDark surfaceInfoMinorActive - */ - public var surfaceOnDarkInfoMinorActive: Color by colors.obtain("surfaceOnDarkInfoMinorActive") - - /** - * light surface onDark surfaceTransparentPositiveHover - */ - public var surfaceOnDarkTransparentPositiveHover: Color by - colors.obtain("surfaceOnDarkTransparentPositiveHover") - - /** - * light surface onDark surfaceTransparentPositiveActive - */ - public var surfaceOnDarkTransparentPositiveActive: Color by - colors.obtain("surfaceOnDarkTransparentPositiveActive") - - /** - * light surface onDark surfaceTransparentWarningHover - */ - public var surfaceOnDarkTransparentWarningHover: Color by - colors.obtain("surfaceOnDarkTransparentWarningHover") - - /** - * light surface onDark surfaceTransparentWarningActive - */ - public var surfaceOnDarkTransparentWarningActive: Color by - colors.obtain("surfaceOnDarkTransparentWarningActive") - - /** - * light surface onDark surfaceTransparentNegativeHover - */ - public var surfaceOnDarkTransparentNegativeHover: Color by - colors.obtain("surfaceOnDarkTransparentNegativeHover") - - /** - * light surface onDark surfaceTransparentNegativeActive - */ - public var surfaceOnDarkTransparentNegativeActive: Color by - colors.obtain("surfaceOnDarkTransparentNegativeActive") - - /** - * light surface onDark surfaceTransparentInfoHover - */ - public var surfaceOnDarkTransparentInfoHover: Color by - colors.obtain("surfaceOnDarkTransparentInfoHover") - - /** - * light surface onDark surfaceTransparentInfoActive - */ - public var surfaceOnDarkTransparentInfoActive: Color by - colors.obtain("surfaceOnDarkTransparentInfoActive") - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefault: Color by colors.obtain("surfaceOnDarkSolidDefault") - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefaultHover: Color by - colors.obtain("surfaceOnDarkSolidDefaultHover") - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefaultActive: Color by - colors.obtain("surfaceOnDarkSolidDefaultActive") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimary: Color by - colors.obtain("surfaceOnDarkTransparentPrimary") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimaryHover: Color by - colors.obtain("surfaceOnDarkTransparentPrimaryHover") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimaryActive: Color by - colors.obtain("surfaceOnDarkTransparentPrimaryActive") - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondary: Color by - colors.obtain("surfaceOnDarkTransparentSecondary") - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondaryHover: Color by - colors.obtain("surfaceOnDarkTransparentSecondaryHover") - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondaryActive: Color by - colors.obtain("surfaceOnDarkTransparentSecondaryActive") - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiary: Color by - colors.obtain("surfaceOnDarkTransparentTertiary") - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiaryHover: Color by - colors.obtain("surfaceOnDarkTransparentTertiaryHover") - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiaryActive: Color by - colors.obtain("surfaceOnDarkTransparentTertiaryActive") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCard: Color by colors.obtain("surfaceOnDarkTransparentCard") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardBrightness: Color by - colors.obtain("surfaceOnDarkTransparentCardBrightness") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardHover: Color by - colors.obtain("surfaceOnDarkTransparentCardHover") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardActive: Color by - colors.obtain("surfaceOnDarkTransparentCardActive") - - /** - * light surface onDark surfaceTransparentPositive - */ - public var surfaceOnDarkTransparentPositive: Color by - colors.obtain("surfaceOnDarkTransparentPositive") - - /** - * light surface onDark surfaceTransparentWarning - */ - public var surfaceOnDarkTransparentWarning: Color by - colors.obtain("surfaceOnDarkTransparentWarning") - - /** - * light surface onDark surfaceTransparentNegative - */ - public var surfaceOnDarkTransparentNegative: Color by - colors.obtain("surfaceOnDarkTransparentNegative") - - /** - * light surface onDark surfaceSurfaceInfo - */ - public var surfaceOnDarkSurfaceInfo: Color by colors.obtain("surfaceOnDarkSurfaceInfo") - - /** - * light surface onDark surfaceInfoMinor - */ - public var surfaceOnDarkInfoMinor: Color by colors.obtain("surfaceOnDarkInfoMinor") - - /** - * light surface onDark surfaceTransparentInfo - */ - public var surfaceOnDarkTransparentInfo: Color by colors.obtain("surfaceOnDarkTransparentInfo") - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryHover: Color by - colors.obtain("surfaceOnDarkSolidPrimaryHover") - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryActive: Color by - colors.obtain("surfaceOnDarkSolidPrimaryActive") - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidSecondaryHover: Color by - colors.obtain("surfaceOnDarkSolidSecondaryHover") - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidSecondaryActive: Color by - colors.obtain("surfaceOnDarkSolidSecondaryActive") - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiaryHover: Color by - colors.obtain("surfaceOnDarkSolidTertiaryHover") - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiaryActive: Color by - colors.obtain("surfaceOnDarkSolidTertiaryActive") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardHover: Color by colors.obtain("surfaceOnDarkSolidCardHover") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardActive: Color by colors.obtain("surfaceOnDarkSolidCardActive") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkTransparentDefaultHover: Color by - colors.obtain("surfaceOnDarkTransparentDefaultHover") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkTransparentDefaultActive: Color by - colors.obtain("surfaceOnDarkTransparentDefaultActive") - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccentHover: Color by colors.obtain("surfaceOnDarkAccentHover") - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccentActive: Color by colors.obtain("surfaceOnDarkAccentActive") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositiveHover: Color by colors.obtain("surfaceOnDarkPositiveHover") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositiveActive: Color by colors.obtain("surfaceOnDarkPositiveActive") - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarningHover: Color by colors.obtain("surfaceOnDarkWarningHover") - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarningActive: Color by colors.obtain("surfaceOnDarkWarningActive") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeHover: Color by colors.obtain("surfaceOnDarkNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeActive: Color by colors.obtain("surfaceOnDarkNegativeActive") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClearHover: Color by colors.obtain("surfaceOnDarkClearHover") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClearActive: Color by colors.obtain("surfaceOnDarkClearActive") - - /** - * light surface onDark surfaceTransparentDeepHover - */ - public var surfaceOnDarkTransparentDeepHover: Color by - colors.obtain("surfaceOnDarkTransparentDeepHover") - - /** - * light surface onDark surfaceTransparentDeepActive - */ - public var surfaceOnDarkTransparentDeepActive: Color by - colors.obtain("surfaceOnDarkTransparentDeepActive") - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefault: Color by colors.obtain("surfaceOnLightSolidDefault") - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidPrimary: Color by colors.obtain("surfaceOnLightSolidPrimary") - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidPrimaryBrightness: Color by - colors.obtain("surfaceOnLightSolidPrimaryBrightness") - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidSecondary: Color by colors.obtain("surfaceOnLightSolidSecondary") - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidTertiary: Color by colors.obtain("surfaceOnLightSolidTertiary") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCard: Color by colors.obtain("surfaceOnLightSolidCard") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardBrightness: Color by - colors.obtain("surfaceOnLightSolidCardBrightness") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightTransparentDefault: Color by - colors.obtain("surfaceOnLightTransparentDefault") - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPrimary: Color by - colors.obtain("surfaceOnLightTransparentPrimary") - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondary: Color by - colors.obtain("surfaceOnLightTransparentSecondary") - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiary: Color by - colors.obtain("surfaceOnLightTransparentTertiary") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCard: Color by - colors.obtain("surfaceOnLightTransparentCard") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardBrightness: Color by - colors.obtain("surfaceOnLightTransparentCardBrightness") - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccent: Color by colors.obtain("surfaceOnLightAccent") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositive: Color by colors.obtain("surfaceOnLightPositive") - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarning: Color by colors.obtain("surfaceOnLightWarning") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegative: Color by colors.obtain("surfaceOnLightNegative") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClear: Color by colors.obtain("surfaceOnLightClear") - - /** - * light surface onLight surfaceTransparentDeep - */ - public var surfaceOnLightTransparentDeep: Color by - colors.obtain("surfaceOnLightTransparentDeep") - - /** - * light surface onLight surfaceAccentMinor - */ - public var surfaceOnLightAccentMinor: Color by colors.obtain("surfaceOnLightAccentMinor") - - /** - * light surface onLight surfaceAccentMinorHover - */ - public var surfaceOnLightAccentMinorHover: Color by - colors.obtain("surfaceOnLightAccentMinorHover") - - /** - * light surface onLight surfaceAccentMinorActive - */ - public var surfaceOnLightAccentMinorActive: Color by - colors.obtain("surfaceOnLightAccentMinorActive") - - /** - * light surface onLight surfaceTransparentAccent - */ - public var surfaceOnLightTransparentAccent: Color by - colors.obtain("surfaceOnLightTransparentAccent") - - /** - * light surface onLight surfaceTransparentAccentHover - */ - public var surfaceOnLightTransparentAccentHover: Color by - colors.obtain("surfaceOnLightTransparentAccentHover") - - /** - * light surface onLight surfaceTransparentAccentActive - */ - public var surfaceOnLightTransparentAccentActive: Color by - colors.obtain("surfaceOnLightTransparentAccentActive") - - /** - * light surface onLight surfaceInfoHover - */ - public var surfaceOnLightInfoHover: Color by colors.obtain("surfaceOnLightInfoHover") - - /** - * light surface onLight surfaceInfoActive - */ - public var surfaceOnLightInfoActive: Color by colors.obtain("surfaceOnLightInfoActive") - - /** - * light surface onLight surfacePositiveMinor - */ - public var surfaceOnLightPositiveMinor: Color by colors.obtain("surfaceOnLightPositiveMinor") - - /** - * light surface onLight surfacePositiveMinorHover - */ - public var surfaceOnLightPositiveMinorHover: Color by - colors.obtain("surfaceOnLightPositiveMinorHover") - - /** - * light surface onLight surfacePositiveMinorActive - */ - public var surfaceOnLightPositiveMinorActive: Color by - colors.obtain("surfaceOnLightPositiveMinorActive") - - /** - * light surface onLight surfaceWarningMinor - */ - public var surfaceOnLightWarningMinor: Color by colors.obtain("surfaceOnLightWarningMinor") - - /** - * light surface onLight surfaceWarningMinorHover - */ - public var surfaceOnLightWarningMinorHover: Color by - colors.obtain("surfaceOnLightWarningMinorHover") - - /** - * light surface onLight surfaceWarningMinorActive - */ - public var surfaceOnLightWarningMinorActive: Color by - colors.obtain("surfaceOnLightWarningMinorActive") - - /** - * light surface onLight surfaceNegativeMinor - */ - public var surfaceOnLightNegativeMinor: Color by colors.obtain("surfaceOnLightNegativeMinor") - - /** - * light surface onLight surfaceNegativeMinorHover - */ - public var surfaceOnLightNegativeMinorHover: Color by - colors.obtain("surfaceOnLightNegativeMinorHover") - - /** - * light surface onLight surfaceNegativeMinorActive - */ - public var surfaceOnLightNegativeMinorActive: Color by - colors.obtain("surfaceOnLightNegativeMinorActive") - - /** - * light surface onLight surfaceInfoMinorHover - */ - public var surfaceOnLightInfoMinorHover: Color by colors.obtain("surfaceOnLightInfoMinorHover") - - /** - * light surface onLight surfaceInfoMinorActive - */ - public var surfaceOnLightInfoMinorActive: Color by - colors.obtain("surfaceOnLightInfoMinorActive") - - /** - * light surface onLight surfaceTransparentPositiveHover - */ - public var surfaceOnLightTransparentPositiveHover: Color by - colors.obtain("surfaceOnLightTransparentPositiveHover") - - /** - * light surface onLight surfaceTransparentPositiveActive - */ - public var surfaceOnLightTransparentPositiveActive: Color by - colors.obtain("surfaceOnLightTransparentPositiveActive") - - /** - * light surface onLight surfaceTransparentWarningHover - */ - public var surfaceOnLightTransparentWarningHover: Color by - colors.obtain("surfaceOnLightTransparentWarningHover") - - /** - * light surface onLight surfaceTransparentWarningActive - */ - public var surfaceOnLightTransparentWarningActive: Color by - colors.obtain("surfaceOnLightTransparentWarningActive") - - /** - * light surface onLight surfaceTransparentNegativeHover - */ - public var surfaceOnLightTransparentNegativeHover: Color by - colors.obtain("surfaceOnLightTransparentNegativeHover") - - /** - * light surface onLight surfaceTransparentNegativeActive - */ - public var surfaceOnLightTransparentNegativeActive: Color by - colors.obtain("surfaceOnLightTransparentNegativeActive") - - /** - * light surface onLight surfaceTransparentInfoHover - */ - public var surfaceOnLightTransparentInfoHover: Color by - colors.obtain("surfaceOnLightTransparentInfoHover") - - /** - * light surface onLight surfaceTransparentInfoActive - */ - public var surfaceOnLightTransparentInfoActive: Color by - colors.obtain("surfaceOnLightTransparentInfoActive") - - /** - * light surface onLight surfaceTransparentPositive - */ - public var surfaceOnLightTransparentPositive: Color by - colors.obtain("surfaceOnLightTransparentPositive") - - /** - * light surface onLight surfaceTransparentWarning - */ - public var surfaceOnLightTransparentWarning: Color by - colors.obtain("surfaceOnLightTransparentWarning") - - /** - * light surface onLight surfaceTransparentNegative - */ - public var surfaceOnLightTransparentNegative: Color by - colors.obtain("surfaceOnLightTransparentNegative") - - /** - * light surface onLight surfaceInfo - */ - public var surfaceOnLightInfo: Color by colors.obtain("surfaceOnLightInfo") - - /** - * light surface onLight surfaceInfoMinor - */ - public var surfaceOnLightInfoMinor: Color by colors.obtain("surfaceOnLightInfoMinor") - - /** - * light surface onLight surfaceTransparentInfo - */ - public var surfaceOnLightTransparentInfo: Color by - colors.obtain("surfaceOnLightTransparentInfo") - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefaultHover: Color by - colors.obtain("surfaceOnLightSolidDefaultHover") - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefaultActive: Color by - colors.obtain("surfaceOnLightSolidDefaultActive") - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidPrimaryHover: Color by - colors.obtain("surfaceOnLightSolidPrimaryHover") - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidPrimaryActive: Color by - colors.obtain("surfaceOnLightSolidPrimaryActive") - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidSecondaryHover: Color by - colors.obtain("surfaceOnLightSolidSecondaryHover") - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidSecondaryActive: Color by - colors.obtain("surfaceOnLightSolidSecondaryActive") - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidTertiaryHover: Color by - colors.obtain("surfaceOnLightSolidTertiaryHover") - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightSolidTertiaryActive: Color by - colors.obtain("surfaceOnLightSolidTertiaryActive") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardHover: Color by colors.obtain("surfaceOnLightSolidCardHover") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardActive: Color by - colors.obtain("surfaceOnLightSolidCardActive") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightTransparentDefaultHover: Color by - colors.obtain("surfaceOnLightTransparentDefaultHover") - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightTransparentDefaultActive: Color by - colors.obtain("surfaceOnLightTransparentDefaultActive") - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPrimaryHover: Color by - colors.obtain("surfaceOnLightTransparentPrimaryHover") - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPrimaryActive: Color by - colors.obtain("surfaceOnLightTransparentPrimaryActive") - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondaryHover: Color by - colors.obtain("surfaceOnLightTransparentSecondaryHover") - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondaryActive: Color by - colors.obtain("surfaceOnLightTransparentSecondaryActive") - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiaryHover: Color by - colors.obtain("surfaceOnLightTransparentTertiaryHover") - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiaryActive: Color by - colors.obtain("surfaceOnLightTransparentTertiaryActive") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardHover: Color by - colors.obtain("surfaceOnLightTransparentCardHover") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardActive: Color by - colors.obtain("surfaceOnLightTransparentCardActive") - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccentHover: Color by colors.obtain("surfaceOnLightAccentHover") - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccentActive: Color by colors.obtain("surfaceOnLightAccentActive") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositiveHover: Color by colors.obtain("surfaceOnLightPositiveHover") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositiveActive: Color by colors.obtain("surfaceOnLightPositiveActive") - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarningHover: Color by colors.obtain("surfaceOnLightWarningHover") - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarningActive: Color by colors.obtain("surfaceOnLightWarningActive") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeHover: Color by colors.obtain("surfaceOnLightNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeActive: Color by colors.obtain("surfaceOnLightNegativeActive") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClearHover: Color by colors.obtain("surfaceOnLightClearHover") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClearActive: Color by colors.obtain("surfaceOnLightClearActive") - - /** - * light surface onLight surfaceTransparentDeepHover - */ - public var surfaceOnLightTransparentDeepHover: Color by - colors.obtain("surfaceOnLightTransparentDeepHover") - - /** - * light surface onLight surfaceTransparentDeepActive - */ - public var surfaceOnLightTransparentDeepActive: Color by - colors.obtain("surfaceOnLightTransparentDeepActive") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefault: Color by colors.obtain("surfaceInverseSolidDefault") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimary: Color by colors.obtain("surfaceInverseSolidPrimary") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryBrightness: Color by - colors.obtain("surfaceInverseSolidPrimaryBrightness") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondary: Color by colors.obtain("surfaceInverseSolidSecondary") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiary: Color by colors.obtain("surfaceInverseSolidTertiary") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCard: Color by colors.obtain("surfaceInverseSolidCard") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardBrightness: Color by - colors.obtain("surfaceInverseSolidCardBrightness") - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseTransparentDefault: Color by - colors.obtain("surfaceInverseTransparentDefault") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimary: Color by - colors.obtain("surfaceInverseTransparentPrimary") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondary: Color by - colors.obtain("surfaceInverseTransparentSecondary") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiary: Color by - colors.obtain("surfaceInverseTransparentTertiary") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCard: Color by - colors.obtain("surfaceInverseTransparentCard") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardBrightness: Color by - colors.obtain("surfaceInverseTransparentCardBrightness") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccent: Color by colors.obtain("surfaceInverseAccent") - - /** - * Инвертированный цвет успеха - */ - public var surfaceInversePositive: Color by colors.obtain("surfaceInversePositive") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarning: Color by colors.obtain("surfaceInverseWarning") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegative: Color by colors.obtain("surfaceInverseNegative") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClear: Color by colors.obtain("surfaceInverseClear") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefaultHover: Color by - colors.obtain("surfaceInverseSolidDefaultHover") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefaultActive: Color by - colors.obtain("surfaceInverseSolidDefaultActive") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryHover: Color by - colors.obtain("surfaceInverseSolidPrimaryHover") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryActive: Color by - colors.obtain("surfaceInverseSolidPrimaryActive") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondaryHover: Color by - colors.obtain("surfaceInverseSolidSecondaryHover") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondaryActive: Color by - colors.obtain("surfaceInverseSolidSecondaryActive") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiaryHover: Color by - colors.obtain("surfaceInverseSolidTertiaryHover") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiaryActive: Color by - colors.obtain("surfaceInverseSolidTertiaryActive") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardHover: Color by colors.obtain("surfaceInverseSolidCardHover") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardActive: Color by - colors.obtain("surfaceInverseSolidCardActive") - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseTransparentDefaultHover: Color by - colors.obtain("surfaceInverseTransparentDefaultHover") - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseTransparentDefaultActive: Color by - colors.obtain("surfaceInverseTransparentDefaultActive") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimaryHover: Color by - colors.obtain("surfaceInverseTransparentPrimaryHover") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimaryActive: Color by - colors.obtain("surfaceInverseTransparentPrimaryActive") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondaryHover: Color by - colors.obtain("surfaceInverseTransparentSecondaryHover") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondaryActive: Color by - colors.obtain("surfaceInverseTransparentSecondaryActive") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiaryHover: Color by - colors.obtain("surfaceInverseTransparentTertiaryHover") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiaryActive: Color by - colors.obtain("surfaceInverseTransparentTertiaryActive") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardHover: Color by - colors.obtain("surfaceInverseTransparentCardHover") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardActive: Color by - colors.obtain("surfaceInverseTransparentCardActive") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccentHover: Color by colors.obtain("surfaceInverseAccentHover") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccentActive: Color by colors.obtain("surfaceInverseAccentActive") - - /** - * Инвертированный цвет успеха - */ - public var surfaceInversePositiveHover: Color by colors.obtain("surfaceInversePositiveHover") - - /** - * Инвертированный цвет успеха - */ - public var surfaceInversePositiveActive: Color by colors.obtain("surfaceInversePositiveActive") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningHover: Color by colors.obtain("surfaceInverseWarningHover") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningActive: Color by colors.obtain("surfaceInverseWarningActive") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeHover: Color by colors.obtain("surfaceInverseNegativeHover") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeActive: Color by colors.obtain("surfaceInverseNegativeActive") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClearHover: Color by colors.obtain("surfaceInverseClearHover") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClearActive: Color by colors.obtain("surfaceInverseClearActive") - - /** - * light surface inverse surfaceTransparentDeep - */ - public var surfaceInverseTransparentDeep: Color by - colors.obtain("surfaceInverseTransparentDeep") - - /** - * light surface inverse surfaceTransparentDeepHover - */ - public var surfaceInverseTransparentDeepHover: Color by - colors.obtain("surfaceInverseTransparentDeepHover") - - /** - * light surface inverse surfaceTransparentDeepActive - */ - public var surfaceInverseTransparentDeepActive: Color by - colors.obtain("surfaceInverseTransparentDeepActive") - - /** - * light surface inverse surfaceAccentMinor - */ - public var surfaceInverseAccentMinor: Color by colors.obtain("surfaceInverseAccentMinor") - - /** - * light surface inverse surfaceAccentMinorHover - */ - public var surfaceInverseAccentMinorHover: Color by - colors.obtain("surfaceInverseAccentMinorHover") - - /** - * light surface inverse surfaceAccentMinorActive - */ - public var surfaceInverseAccentMinorActive: Color by - colors.obtain("surfaceInverseAccentMinorActive") - - /** - * light surface inverse surfaceTransparentAccent - */ - public var surfaceInverseTransparentAccent: Color by - colors.obtain("surfaceInverseTransparentAccent") - - /** - * light surface inverse surfaceTransparentAccentHover - */ - public var surfaceInverseTransparentAccentHover: Color by - colors.obtain("surfaceInverseTransparentAccentHover") - - /** - * light surface inverse surfaceTransparentAccentActive - */ - public var surfaceInverseTransparentAccentActive: Color by - colors.obtain("surfaceInverseTransparentAccentActive") - - /** - * light surface inverse surfaceInfo - */ - public var surfaceInverseInfo: Color by colors.obtain("surfaceInverseInfo") - - /** - * light surface inverse surfaceInfoHover - */ - public var surfaceInverseInfoHover: Color by colors.obtain("surfaceInverseInfoHover") - - /** - * light surface inverse surfaceInfoActive - */ - public var surfaceInverseInfoActive: Color by colors.obtain("surfaceInverseInfoActive") - - /** - * light surface inverse surfacePositiveMinor - */ - public var surfaceInversePositiveMinor: Color by colors.obtain("surfaceInversePositiveMinor") - - /** - * light surface inverse surfacePositiveMinorHover - */ - public var surfaceInversePositiveMinorHover: Color by - colors.obtain("surfaceInversePositiveMinorHover") - - /** - * light surface inverse surfacePositiveMinorActive - */ - public var surfaceInversePositiveMinorActive: Color by - colors.obtain("surfaceInversePositiveMinorActive") - - /** - * light surface inverse surfaceWarningMinor - */ - public var surfaceInverseWarningMinor: Color by colors.obtain("surfaceInverseWarningMinor") - - /** - * light surface inverse surfaceWarningMinorHover - */ - public var surfaceInverseWarningMinorHover: Color by - colors.obtain("surfaceInverseWarningMinorHover") - - /** - * light surface inverse surfaceWarningMinorActive - */ - public var surfaceInverseWarningMinorActive: Color by - colors.obtain("surfaceInverseWarningMinorActive") - - /** - * light surface inverse surfaceNegativeMinor - */ - public var surfaceInverseNegativeMinor: Color by colors.obtain("surfaceInverseNegativeMinor") - - /** - * light surface inverse surfaceNegativeMinorHover - */ - public var surfaceInverseNegativeMinorHover: Color by - colors.obtain("surfaceInverseNegativeMinorHover") - - /** - * light surface inverse surfaceNegativeMinorActive - */ - public var surfaceInverseNegativeMinorActive: Color by - colors.obtain("surfaceInverseNegativeMinorActive") - - /** - * light surface inverse surfaceInfoMinor - */ - public var surfaceInverseInfoMinor: Color by colors.obtain("surfaceInverseInfoMinor") - - /** - * light surface inverse surfaceInfoMinorHover - */ - public var surfaceInverseInfoMinorHover: Color by colors.obtain("surfaceInverseInfoMinorHover") - - /** - * light surface inverse surfaceInfoMinorActive - */ - public var surfaceInverseInfoMinorActive: Color by - colors.obtain("surfaceInverseInfoMinorActive") - - /** - * light surface inverse surfaceTransparentPositive - */ - public var surfaceInverseTransparentPositive: Color by - colors.obtain("surfaceInverseTransparentPositive") - - /** - * light surface inverse surfaceTransparentPositiveHover - */ - public var surfaceInverseTransparentPositiveHover: Color by - colors.obtain("surfaceInverseTransparentPositiveHover") - - /** - * light surface inverse surfaceTransparentPositiveActive - */ - public var surfaceInverseTransparentPositiveActive: Color by - colors.obtain("surfaceInverseTransparentPositiveActive") - - /** - * light surface inverse surfaceTransparentWarning - */ - public var surfaceInverseTransparentWarning: Color by - colors.obtain("surfaceInverseTransparentWarning") - - /** - * light surface inverse surfaceTransparentWarningHover - */ - public var surfaceInverseTransparentWarningHover: Color by - colors.obtain("surfaceInverseTransparentWarningHover") - - /** - * light surface inverse surfaceTransparentWarningActive - */ - public var surfaceInverseTransparentWarningActive: Color by - colors.obtain("surfaceInverseTransparentWarningActive") - - /** - * light surface inverse surfaceTransparentNegative - */ - public var surfaceInverseTransparentNegative: Color by - colors.obtain("surfaceInverseTransparentNegative") - - /** - * light surface inverse surfaceTransparentNegativeHover - */ - public var surfaceInverseTransparentNegativeHover: Color by - colors.obtain("surfaceInverseTransparentNegativeHover") - - /** - * light surface inverse surfaceTransparentNegativeActive - */ - public var surfaceInverseTransparentNegativeActive: Color by - colors.obtain("surfaceInverseTransparentNegativeActive") - - /** - * light surface inverse surfaceTransparentInfo - */ - public var surfaceInverseTransparentInfo: Color by - colors.obtain("surfaceInverseTransparentInfo") - - /** - * light surface inverse surfaceTransparentInfoHover - */ - public var surfaceInverseTransparentInfoHover: Color by - colors.obtain("surfaceInverseTransparentInfoHover") - - /** - * light surface inverse surfaceTransparentInfoActive - */ - public var surfaceInverseTransparentInfoActive: Color by - colors.obtain("surfaceInverseTransparentInfoActive") - - /** - * Основной фон - */ - public var backgroundDefaultPrimary: Color by colors.obtain("backgroundDefaultPrimary") - - /** - * Основной фон - */ - public var backgroundDefaultPrimaryBrightness: Color by - colors.obtain("backgroundDefaultPrimaryBrightness") - - /** - * Вторичный фон - */ - public var backgroundDefaultSecondary: Color by colors.obtain("backgroundDefaultSecondary") - - /** - * Третичный фон - */ - public var backgroundDefaultTertiary: Color by colors.obtain("backgroundDefaultTertiary") - - /** - * Основной фон на темном фоне - */ - public var backgroundDarkPrimary: Color by colors.obtain("backgroundDarkPrimary") - - /** - * Вторичный фон на темном фоне - */ - public var backgroundDarkSecondary: Color by colors.obtain("backgroundDarkSecondary") - - /** - * Третичный фон на темном фоне - */ - public var backgroundDarkTertiary: Color by colors.obtain("backgroundDarkTertiary") - - /** - * Основной фон на светлом фоне - */ - public var backgroundLightPrimary: Color by colors.obtain("backgroundLightPrimary") - - /** - * Вторичный фон на светлом фоне - */ - public var backgroundLightSecondary: Color by colors.obtain("backgroundLightSecondary") - - /** - * Третичный фон на светлом фоне - */ - public var backgroundLightTertiary: Color by colors.obtain("backgroundLightTertiary") - - /** - * Инвертированный основной фон - */ - public var backgroundInversePrimaryBrightness: Color by - colors.obtain("backgroundInversePrimaryBrightness") - - /** - * Инвертированный вторичный фон - */ - public var backgroundInverseSecondary: Color by colors.obtain("backgroundInverseSecondary") - - /** - * Инвертированный третичный фон - */ - public var backgroundInverseTertiary: Color by colors.obtain("backgroundInverseTertiary") - - /** - * Инвертированный основной фон - */ - public var backgroundInversePrimary: Color by colors.obtain("backgroundInversePrimary") - - /** - * Цвет фона паранжи светлый - */ - public var overlayDefaultSoft: Color by colors.obtain("overlayDefaultSoft") - - /** - * Цвет фона паранжи темный - */ - public var overlayDefaultHard: Color by colors.obtain("overlayDefaultHard") - - /** - * light overlay default overlayBlur - */ - public var overlayDefaultBlur: Color by colors.obtain("overlayDefaultBlur") - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public var overlayOnDarkSoft: Color by colors.obtain("overlayOnDarkSoft") - - /** - * Цвет фона паранжи темный на темном фоне - */ - public var overlayOnDarkHard: Color by colors.obtain("overlayOnDarkHard") - - /** - * light overlay onDark overlayBlur - */ - public var overlayOnDarkBlur: Color by colors.obtain("overlayOnDarkBlur") - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public var overlayOnLightSoft: Color by colors.obtain("overlayOnLightSoft") - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public var overlayOnLightHard: Color by colors.obtain("overlayOnLightHard") - - /** - * light overlay onLight overlayBlur - */ - public var overlayOnLightBlur: Color by colors.obtain("overlayOnLightBlur") - - /** - * Инвертированный цвет фона паранжи темный - */ - public var overlayInverseHard: Color by colors.obtain("overlayInverseHard") - - /** - * Инвертированный цвет фона паранжи светлый - */ - public var overlayInverseSoft: Color by colors.obtain("overlayInverseSoft") - - /** - * light overlay inverse overlayBlur - */ - public var overlayInverseBlur: Color by colors.obtain("overlayInverseBlur") - - /** - * light outline default outlineSecondaryHover - */ - public var outlineDefaultSecondaryHover: Color by colors.obtain("outlineDefaultSecondaryHover") - - /** - * light outline default outlineSecondaryActive - */ - public var outlineDefaultSecondaryActive: Color by - colors.obtain("outlineDefaultSecondaryActive") - - /** - * light outline default outlineTertiaryHover - */ - public var outlineDefaultTertiaryHover: Color by colors.obtain("outlineDefaultTertiaryHover") - - /** - * light outline default outlineTertiaryActive - */ - public var outlineDefaultTertiaryActive: Color by colors.obtain("outlineDefaultTertiaryActive") - - /** - * light outline default outlineDefaultHover - */ - public var outlineDefaultDefaultHover: Color by colors.obtain("outlineDefaultDefaultHover") - - /** - * light outline default outlineDefaultActive - */ - public var outlineDefaultDefaultActive: Color by colors.obtain("outlineDefaultDefaultActive") - - /** - * light outline default outlineTransparentPrimaryHover - */ - public var outlineDefaultTransparentPrimaryHover: Color by - colors.obtain("outlineDefaultTransparentPrimaryHover") - - /** - * light outline default outlineTransparentPrimaryActive - */ - public var outlineDefaultTransparentPrimaryActive: Color by - colors.obtain("outlineDefaultTransparentPrimaryActive") - - /** - * light outline default outlineTransparentSecondaryHover - */ - public var outlineDefaultTransparentSecondaryHover: Color by - colors.obtain("outlineDefaultTransparentSecondaryHover") - - /** - * light outline default outlineTransparentSecondaryActive - */ - public var outlineDefaultTransparentSecondaryActive: Color by - colors.obtain("outlineDefaultTransparentSecondaryActive") - - /** - * light outline default outlineTransparentTertiaryHover - */ - public var outlineDefaultTransparentTertiaryHover: Color by - colors.obtain("outlineDefaultTransparentTertiaryHover") - - /** - * light outline default outlineTransparentTertiaryActive - */ - public var outlineDefaultTransparentTertiaryActive: Color by - colors.obtain("outlineDefaultTransparentTertiaryActive") - - /** - * light outline default outlineTransparentClearHover - */ - public var outlineDefaultTransparentClearHover: Color by - colors.obtain("outlineDefaultTransparentClearHover") - - /** - * light outline default outlineTransparentClearActive - */ - public var outlineDefaultTransparentClearActive: Color by - colors.obtain("outlineDefaultTransparentClearActive") - - /** - * light outline default outlineAccentHover - */ - public var outlineDefaultAccentHover: Color by colors.obtain("outlineDefaultAccentHover") - - /** - * light outline default outlineAccentActive - */ - public var outlineDefaultAccentActive: Color by colors.obtain("outlineDefaultAccentActive") - - /** - * light outline default outlineAccentMinorHover - */ - public var outlineDefaultAccentMinorHover: Color by - colors.obtain("outlineDefaultAccentMinorHover") - - /** - * light outline default outlineAccentMinorActive - */ - public var outlineDefaultAccentMinorActive: Color by - colors.obtain("outlineDefaultAccentMinorActive") - - /** - * light outline default outlineTransparentAccentHover - */ - public var outlineDefaultTransparentAccentHover: Color by - colors.obtain("outlineDefaultTransparentAccentHover") - - /** - * light outline default outlineTransparentAccentActive - */ - public var outlineDefaultTransparentAccentActive: Color by - colors.obtain("outlineDefaultTransparentAccentActive") - - /** - * light outline default outlinePositiveHover - */ - public var outlineDefaultPositiveHover: Color by colors.obtain("outlineDefaultPositiveHover") - - /** - * light outline default outlinePositiveActive - */ - public var outlineDefaultPositiveActive: Color by colors.obtain("outlineDefaultPositiveActive") - - /** - * light outline default outlineWarningHover - */ - public var outlineDefaultWarningHover: Color by colors.obtain("outlineDefaultWarningHover") - - /** - * light outline default outlineWarningActive - */ - public var outlineDefaultWarningActive: Color by colors.obtain("outlineDefaultWarningActive") - - /** - * light outline default outlineNegativeHover - */ - public var outlineDefaultNegativeHover: Color by colors.obtain("outlineDefaultNegativeHover") - - /** - * light outline default outlineNegativeActive - */ - public var outlineDefaultNegativeActive: Color by colors.obtain("outlineDefaultNegativeActive") - - /** - * light outline default outlineInfoHover - */ - public var outlineDefaultInfoHover: Color by colors.obtain("outlineDefaultInfoHover") - - /** - * light outline default outlineInfoActive - */ - public var outlineDefaultInfoActive: Color by colors.obtain("outlineDefaultInfoActive") - - /** - * light outline default outlinePositiveMinorHover - */ - public var outlineDefaultPositiveMinorHover: Color by - colors.obtain("outlineDefaultPositiveMinorHover") - - /** - * light outline default outlinePositiveMinorActive - */ - public var outlineDefaultPositiveMinorActive: Color by - colors.obtain("outlineDefaultPositiveMinorActive") - - /** - * light outline default outlineWarningMinorHover - */ - public var outlineDefaultWarningMinorHover: Color by - colors.obtain("outlineDefaultWarningMinorHover") - - /** - * light outline default outlineWarningMinorActive - */ - public var outlineDefaultWarningMinorActive: Color by - colors.obtain("outlineDefaultWarningMinorActive") - - /** - * light outline default outlineNegativeMinorHover - */ - public var outlineDefaultNegativeMinorHover: Color by - colors.obtain("outlineDefaultNegativeMinorHover") - - /** - * light outline default outlineNegativeMinorActive - */ - public var outlineDefaultNegativeMinorActive: Color by - colors.obtain("outlineDefaultNegativeMinorActive") - - /** - * light outline default outlineInfoMinorHover - */ - public var outlineDefaultInfoMinorHover: Color by colors.obtain("outlineDefaultInfoMinorHover") - - /** - * light outline default outlineInfoMinorActive - */ - public var outlineDefaultInfoMinorActive: Color by - colors.obtain("outlineDefaultInfoMinorActive") - - /** - * light outline default outlineTransparentPositiveHover - */ - public var outlineDefaultTransparentPositiveHover: Color by - colors.obtain("outlineDefaultTransparentPositiveHover") - - /** - * light outline default outlineTransparentPositiveActive - */ - public var outlineDefaultTransparentPositiveActive: Color by - colors.obtain("outlineDefaultTransparentPositiveActive") - - /** - * light outline default outlineTransparentWarningHover - */ - public var outlineDefaultTransparentWarningHover: Color by - colors.obtain("outlineDefaultTransparentWarningHover") - - /** - * light outline default outlineTransparentWarningActive - */ - public var outlineDefaultTransparentWarningActive: Color by - colors.obtain("outlineDefaultTransparentWarningActive") - - /** - * light outline default outlineNegativeTransparentHover - */ - public var outlineDefaultNegativeTransparentHover: Color by - colors.obtain("outlineDefaultNegativeTransparentHover") - - /** - * light outline default outlineNegativeTransparentActive - */ - public var outlineDefaultNegativeTransparentActive: Color by - colors.obtain("outlineDefaultNegativeTransparentActive") - - /** - * light outline default outlineTransparentInfoHover - */ - public var outlineDefaultTransparentInfoHover: Color by - colors.obtain("outlineDefaultTransparentInfoHover") - - /** - * light outline default outlineTransparentInfoActive - */ - public var outlineDefaultTransparentInfoActive: Color by - colors.obtain("outlineDefaultTransparentInfoActive") - - /** - * light outline default outlinePrimaryHover - */ - public var outlineDefaultPrimaryHover: Color by colors.obtain("outlineDefaultPrimaryHover") - - /** - * light outline default outlinePrimaryActive - */ - public var outlineDefaultPrimaryActive: Color by colors.obtain("outlineDefaultPrimaryActive") - - /** - * light outline default outlineTransparentPrimary - */ - public var outlineDefaultTransparentPrimary: Color by - colors.obtain("outlineDefaultTransparentPrimary") - - /** - * light outline default outlineTransparentSecondary - */ - public var outlineDefaultTransparentSecondary: Color by - colors.obtain("outlineDefaultTransparentSecondary") - - /** - * light outline default outlineTransparentTertiary - */ - public var outlineDefaultTransparentTertiary: Color by - colors.obtain("outlineDefaultTransparentTertiary") - - /** - * light outline default outlineTransparentClear - */ - public var outlineDefaultTransparentClear: Color by - colors.obtain("outlineDefaultTransparentClear") - - /** - * light outline default outlineAccent - */ - public var outlineDefaultAccent: Color by colors.obtain("outlineDefaultAccent") - - /** - * light outline default outlineAccentMinor - */ - public var outlineDefaultAccentMinor: Color by colors.obtain("outlineDefaultAccentMinor") - - /** - * light outline default outlineTransparentAccent - */ - public var outlineDefaultTransparentAccent: Color by - colors.obtain("outlineDefaultTransparentAccent") - - /** - * light outline default outlinePositive - */ - public var outlineDefaultPositive: Color by colors.obtain("outlineDefaultPositive") - - /** - * light outline default outlineWarning - */ - public var outlineDefaultWarning: Color by colors.obtain("outlineDefaultWarning") - - /** - * light outline default outlineNegative - */ - public var outlineDefaultNegative: Color by colors.obtain("outlineDefaultNegative") - - /** - * light outline default outlinePositiveMinor - */ - public var outlineDefaultPositiveMinor: Color by colors.obtain("outlineDefaultPositiveMinor") - - /** - * light outline default outlineWarningMinor - */ - public var outlineDefaultWarningMinor: Color by colors.obtain("outlineDefaultWarningMinor") - - /** - * light outline default outlineNegativeMinor - */ - public var outlineDefaultNegativeMinor: Color by colors.obtain("outlineDefaultNegativeMinor") - - /** - * light outline default outlineTransparentPositive - */ - public var outlineDefaultTransparentPositive: Color by - colors.obtain("outlineDefaultTransparentPositive") - - /** - * light outline default outlineTransparentWarning - */ - public var outlineDefaultTransparentWarning: Color by - colors.obtain("outlineDefaultTransparentWarning") - - /** - * light outline default outlineTransparentNegative - */ - public var outlineDefaultTransparentNegative: Color by - colors.obtain("outlineDefaultTransparentNegative") - - /** - * light outline default outlineTransparentNegativeHover - */ - public var outlineDefaultTransparentNegativeHover: Color by - colors.obtain("outlineDefaultTransparentNegativeHover") - - /** - * light outline default outlineTransparentNegativeActive - */ - public var outlineDefaultTransparentNegativeActive: Color by - colors.obtain("outlineDefaultTransparentNegativeActive") - - /** - * light outline default outlineInfo - */ - public var outlineDefaultInfo: Color by colors.obtain("outlineDefaultInfo") - - /** - * light outline default outlineInfoMinor - */ - public var outlineDefaultInfoMinor: Color by colors.obtain("outlineDefaultInfoMinor") - - /** - * light outline default outlineTransparentInfo - */ - public var outlineDefaultTransparentInfo: Color by - colors.obtain("outlineDefaultTransparentInfo") - - /** - * light outline default outlineSolidPrimaryHover - */ - public var outlineDefaultSolidPrimaryHover: Color by - colors.obtain("outlineDefaultSolidPrimaryHover") - - /** - * light outline default outlineSolidPrimaryActive - */ - public var outlineDefaultSolidPrimaryActive: Color by - colors.obtain("outlineDefaultSolidPrimaryActive") - - /** - * light outline default outlineSolidSecondaryHover - */ - public var outlineDefaultSolidSecondaryHover: Color by - colors.obtain("outlineDefaultSolidSecondaryHover") - - /** - * light outline default outlineSolidSecondaryActive - */ - public var outlineDefaultSolidSecondaryActive: Color by - colors.obtain("outlineDefaultSolidSecondaryActive") - - /** - * light outline default outlineSolidTertiaryHover - */ - public var outlineDefaultSolidTertiaryHover: Color by - colors.obtain("outlineDefaultSolidTertiaryHover") - - /** - * light outline default outlineSolidTertiaryActive - */ - public var outlineDefaultSolidTertiaryActive: Color by - colors.obtain("outlineDefaultSolidTertiaryActive") - - /** - * light outline default outlineSolidDefaultHover - */ - public var outlineDefaultSolidDefaultHover: Color by - colors.obtain("outlineDefaultSolidDefaultHover") - - /** - * light outline default outlineSolidDefaultActive - */ - public var outlineDefaultSolidDefaultActive: Color by - colors.obtain("outlineDefaultSolidDefaultActive") - - /** - * light outline default outlineSolidPrimary - */ - public var outlineDefaultSolidPrimary: Color by colors.obtain("outlineDefaultSolidPrimary") - - /** - * light outline default outlineSolidSecondary - */ - public var outlineDefaultSolidSecondary: Color by colors.obtain("outlineDefaultSolidSecondary") - - /** - * light outline default outlineSolidTertiary - */ - public var outlineDefaultSolidTertiary: Color by colors.obtain("outlineDefaultSolidTertiary") - - /** - * light outline default outlineSolidDefault - */ - public var outlineDefaultSolidDefault: Color by colors.obtain("outlineDefaultSolidDefault") - - /** - * light outline onDark outlineSecondaryHover - */ - public var outlineOnDarkSecondaryHover: Color by colors.obtain("outlineOnDarkSecondaryHover") - - /** - * light outline onDark outlineSecondaryActive - */ - public var outlineOnDarkSecondaryActive: Color by colors.obtain("outlineOnDarkSecondaryActive") - - /** - * light outline onDark outlineTertiaryHover - */ - public var outlineOnDarkTertiaryHover: Color by colors.obtain("outlineOnDarkTertiaryHover") - - /** - * light outline onDark outlineTertiaryActive - */ - public var outlineOnDarkTertiaryActive: Color by colors.obtain("outlineOnDarkTertiaryActive") - - /** - * light outline onDark outlineDefaultHover - */ - public var outlineOnDarkDefaultHover: Color by colors.obtain("outlineOnDarkDefaultHover") - - /** - * light outline onDark outlineDefaultActive - */ - public var outlineOnDarkDefaultActive: Color by colors.obtain("outlineOnDarkDefaultActive") - - /** - * light outline onDark outlineTransparentPrimary - */ - public var outlineOnDarkTransparentPrimary: Color by - colors.obtain("outlineOnDarkTransparentPrimary") - - /** - * light outline onDark outlineTransparentPrimaryHover - */ - public var outlineOnDarkTransparentPrimaryHover: Color by - colors.obtain("outlineOnDarkTransparentPrimaryHover") - - /** - * light outline onDark outlineTransparentPrimaryActive - */ - public var outlineOnDarkTransparentPrimaryActive: Color by - colors.obtain("outlineOnDarkTransparentPrimaryActive") - - /** - * light outline onDark outlineTransparentSecondary - */ - public var outlineOnDarkTransparentSecondary: Color by - colors.obtain("outlineOnDarkTransparentSecondary") - - /** - * light outline onDark outlineTransparentSecondaryHover - */ - public var outlineOnDarkTransparentSecondaryHover: Color by - colors.obtain("outlineOnDarkTransparentSecondaryHover") - - /** - * light outline onDark outlineTransparentSecondaryActive - */ - public var outlineOnDarkTransparentSecondaryActive: Color by - colors.obtain("outlineOnDarkTransparentSecondaryActive") - - /** - * light outline onDark outlineTransparentTertiary - */ - public var outlineOnDarkTransparentTertiary: Color by - colors.obtain("outlineOnDarkTransparentTertiary") - - /** - * light outline onDark outlineTransparentTertiaryHover - */ - public var outlineOnDarkTransparentTertiaryHover: Color by - colors.obtain("outlineOnDarkTransparentTertiaryHover") - - /** - * light outline onDark outlineTransparentTertiaryActive - */ - public var outlineOnDarkTransparentTertiaryActive: Color by - colors.obtain("outlineOnDarkTransparentTertiaryActive") - - /** - * light outline onDark outlineAccent - */ - public var outlineOnDarkAccent: Color by colors.obtain("outlineOnDarkAccent") - - /** - * light outline onDark outlineAccentHover - */ - public var outlineOnDarkAccentHover: Color by colors.obtain("outlineOnDarkAccentHover") - - /** - * light outline onDark outlineAccentActive - */ - public var outlineOnDarkAccentActive: Color by colors.obtain("outlineOnDarkAccentActive") - - /** - * light outline onDark outlineAccentMinor - */ - public var outlineOnDarkAccentMinor: Color by colors.obtain("outlineOnDarkAccentMinor") - - /** - * light outline onDark outlineAccentMinorHover - */ - public var outlineOnDarkAccentMinorHover: Color by - colors.obtain("outlineOnDarkAccentMinorHover") - - /** - * light outline onDark outlineAccentMinorActive - */ - public var outlineOnDarkAccentMinorActive: Color by - colors.obtain("outlineOnDarkAccentMinorActive") - - /** - * light outline onDark outlineTransparentAccent - */ - public var outlineOnDarkTransparentAccent: Color by - colors.obtain("outlineOnDarkTransparentAccent") - - /** - * light outline onDark outlineTransparentAccentHover - */ - public var outlineOnDarkTransparentAccentHover: Color by - colors.obtain("outlineOnDarkTransparentAccentHover") - - /** - * light outline onDark outlineTransparentAccentActive - */ - public var outlineOnDarkTransparentAccentActive: Color by - colors.obtain("outlineOnDarkTransparentAccentActive") - - /** - * light outline onDark outlinePositive - */ - public var outlineOnDarkPositive: Color by colors.obtain("outlineOnDarkPositive") - - /** - * light outline onDark outlinePositiveHover - */ - public var outlineOnDarkPositiveHover: Color by colors.obtain("outlineOnDarkPositiveHover") - - /** - * light outline onDark outlinePositiveActive - */ - public var outlineOnDarkPositiveActive: Color by colors.obtain("outlineOnDarkPositiveActive") - - /** - * light outline onDark outlineWarning - */ - public var outlineOnDarkWarning: Color by colors.obtain("outlineOnDarkWarning") - - /** - * light outline onDark outlineWarningHover - */ - public var outlineOnDarkWarningHover: Color by colors.obtain("outlineOnDarkWarningHover") - - /** - * light outline onDark outlineWarningActive - */ - public var outlineOnDarkWarningActive: Color by colors.obtain("outlineOnDarkWarningActive") - - /** - * light outline onDark outlineNegative - */ - public var outlineOnDarkNegative: Color by colors.obtain("outlineOnDarkNegative") - - /** - * light outline onDark outlineNegativeHover - */ - public var outlineOnDarkNegativeHover: Color by colors.obtain("outlineOnDarkNegativeHover") - - /** - * light outline onDark outlineNegativeActive - */ - public var outlineOnDarkNegativeActive: Color by colors.obtain("outlineOnDarkNegativeActive") - - /** - * light outline onDark outlineInfoHover - */ - public var outlineOnDarkInfoHover: Color by colors.obtain("outlineOnDarkInfoHover") - - /** - * light outline onDark outlineInfoActive - */ - public var outlineOnDarkInfoActive: Color by colors.obtain("outlineOnDarkInfoActive") - - /** - * light outline onDark outlinePositiveMinor - */ - public var outlineOnDarkPositiveMinor: Color by colors.obtain("outlineOnDarkPositiveMinor") - - /** - * light outline onDark outlinePositiveMinorHover - */ - public var outlineOnDarkPositiveMinorHover: Color by - colors.obtain("outlineOnDarkPositiveMinorHover") - - /** - * light outline onDark outlinePositiveMinorActive - */ - public var outlineOnDarkPositiveMinorActive: Color by - colors.obtain("outlineOnDarkPositiveMinorActive") - - /** - * light outline onDark outlineWarningMinor - */ - public var outlineOnDarkWarningMinor: Color by colors.obtain("outlineOnDarkWarningMinor") - - /** - * light outline onDark outlineWarningMinorHover - */ - public var outlineOnDarkWarningMinorHover: Color by - colors.obtain("outlineOnDarkWarningMinorHover") - - /** - * light outline onDark outlineWarningMinorActive - */ - public var outlineOnDarkWarningMinorActive: Color by - colors.obtain("outlineOnDarkWarningMinorActive") - - /** - * light outline onDark outlineNegativeMinor - */ - public var outlineOnDarkNegativeMinor: Color by colors.obtain("outlineOnDarkNegativeMinor") - - /** - * light outline onDark outlineNegativeMinorHover - */ - public var outlineOnDarkNegativeMinorHover: Color by - colors.obtain("outlineOnDarkNegativeMinorHover") - - /** - * light outline onDark outlineNegativeMinorActive - */ - public var outlineOnDarkNegativeMinorActive: Color by - colors.obtain("outlineOnDarkNegativeMinorActive") - - /** - * light outline onDark outlineInfoMinorHover - */ - public var outlineOnDarkInfoMinorHover: Color by colors.obtain("outlineOnDarkInfoMinorHover") - - /** - * light outline onDark outlineInfoMinorActive - */ - public var outlineOnDarkInfoMinorActive: Color by colors.obtain("outlineOnDarkInfoMinorActive") - - /** - * light outline onDark outlineTransparentPositive - */ - public var outlineOnDarkTransparentPositive: Color by - colors.obtain("outlineOnDarkTransparentPositive") - - /** - * light outline onDark outlineTransparentPositiveHover - */ - public var outlineOnDarkTransparentPositiveHover: Color by - colors.obtain("outlineOnDarkTransparentPositiveHover") - - /** - * light outline onDark outlineTransparentPositiveActive - */ - public var outlineOnDarkTransparentPositiveActive: Color by - colors.obtain("outlineOnDarkTransparentPositiveActive") - - /** - * light outline onDark outlineTransparentWarning - */ - public var outlineOnDarkTransparentWarning: Color by - colors.obtain("outlineOnDarkTransparentWarning") - - /** - * light outline onDark outlineTransparentWarningHover - */ - public var outlineOnDarkTransparentWarningHover: Color by - colors.obtain("outlineOnDarkTransparentWarningHover") - - /** - * light outline onDark outlineTransparentWarningActive - */ - public var outlineOnDarkTransparentWarningActive: Color by - colors.obtain("outlineOnDarkTransparentWarningActive") - - /** - * light outline onDark outlineNegativeTransparent - */ - public var outlineOnDarkNegativeTransparent: Color by - colors.obtain("outlineOnDarkNegativeTransparent") - - /** - * light outline onDark outlineNegativeTransparentHover - */ - public var outlineOnDarkNegativeTransparentHover: Color by - colors.obtain("outlineOnDarkNegativeTransparentHover") - - /** - * light outline onDark outlineNegativeTransparentActive - */ - public var outlineOnDarkNegativeTransparentActive: Color by - colors.obtain("outlineOnDarkNegativeTransparentActive") - - /** - * light outline onDark outlineTransparentInfoHover - */ - public var outlineOnDarkTransparentInfoHover: Color by - colors.obtain("outlineOnDarkTransparentInfoHover") - - /** - * light outline onDark outlineTransparentInfoActive - */ - public var outlineOnDarkTransparentInfoActive: Color by - colors.obtain("outlineOnDarkTransparentInfoActive") - - /** - * light outline onDark outlinePrimaryHover - */ - public var outlineOnDarkPrimaryHover: Color by colors.obtain("outlineOnDarkPrimaryHover") - - /** - * light outline onDark outlinePrimaryActive - */ - public var outlineOnDarkPrimaryActive: Color by colors.obtain("outlineOnDarkPrimaryActive") - - /** - * light outline onDark outlineInfo - */ - public var outlineOnDarkInfo: Color by colors.obtain("outlineOnDarkInfo") - - /** - * light outline onDark outlineInfoMinor - */ - public var outlineOnDarkInfoMinor: Color by colors.obtain("outlineOnDarkInfoMinor") - - /** - * light outline onDark outlineTransparentInfo - */ - public var outlineOnDarkTransparentInfo: Color by colors.obtain("outlineOnDarkTransparentInfo") - - /** - * light outline onDark outlineSolidPrimary - */ - public var outlineOnDarkSolidPrimary: Color by colors.obtain("outlineOnDarkSolidPrimary") - - /** - * light outline onDark outlineSolidPrimaryHover - */ - public var outlineOnDarkSolidPrimaryHover: Color by - colors.obtain("outlineOnDarkSolidPrimaryHover") - - /** - * light outline onDark outlineSolidPrimaryActive - */ - public var outlineOnDarkSolidPrimaryActive: Color by - colors.obtain("outlineOnDarkSolidPrimaryActive") - - /** - * light outline onDark outlineSolidSecondary - */ - public var outlineOnDarkSolidSecondary: Color by colors.obtain("outlineOnDarkSolidSecondary") - - /** - * light outline onDark outlineSolidSecondaryHover - */ - public var outlineOnDarkSolidSecondaryHover: Color by - colors.obtain("outlineOnDarkSolidSecondaryHover") - - /** - * light outline onDark outlineSolidSecondaryActive - */ - public var outlineOnDarkSolidSecondaryActive: Color by - colors.obtain("outlineOnDarkSolidSecondaryActive") - - /** - * light outline onDark outlineSolidTertiary - */ - public var outlineOnDarkSolidTertiary: Color by colors.obtain("outlineOnDarkSolidTertiary") - - /** - * light outline onDark outlineSolidTertiaryHover - */ - public var outlineOnDarkSolidTertiaryHover: Color by - colors.obtain("outlineOnDarkSolidTertiaryHover") - - /** - * light outline onDark outlineSolidTertiaryActive - */ - public var outlineOnDarkSolidTertiaryActive: Color by - colors.obtain("outlineOnDarkSolidTertiaryActive") - - /** - * light outline onDark outlineSolidDefault - */ - public var outlineOnDarkSolidDefault: Color by colors.obtain("outlineOnDarkSolidDefault") - - /** - * light outline onDark outlineSolidDefaultHover - */ - public var outlineOnDarkSolidDefaultHover: Color by - colors.obtain("outlineOnDarkSolidDefaultHover") - - /** - * light outline onDark outlineSolidDefaultActive - */ - public var outlineOnDarkSolidDefaultActive: Color by - colors.obtain("outlineOnDarkSolidDefaultActive") - - /** - * light outline onLight outlineSecondaryHover - */ - public var outlineOnLightSecondaryHover: Color by colors.obtain("outlineOnLightSecondaryHover") - - /** - * light outline onLight outlineSecondaryActive - */ - public var outlineOnLightSecondaryActive: Color by - colors.obtain("outlineOnLightSecondaryActive") - - /** - * light outline onLight outlineTertiaryHover - */ - public var outlineOnLightTertiaryHover: Color by colors.obtain("outlineOnLightTertiaryHover") - - /** - * light outline onLight outlineTertiaryActive - */ - public var outlineOnLightTertiaryActive: Color by colors.obtain("outlineOnLightTertiaryActive") - - /** - * light outline onLight outlineDefaultHover - */ - public var outlineOnLightDefaultHover: Color by colors.obtain("outlineOnLightDefaultHover") - - /** - * light outline onLight outlineDefaultActive - */ - public var outlineOnLightDefaultActive: Color by colors.obtain("outlineOnLightDefaultActive") - - /** - * light outline onLight outlineTransparentPrimary - */ - public var outlineOnLightTransparentPrimary: Color by - colors.obtain("outlineOnLightTransparentPrimary") - - /** - * light outline onLight outlineTransparentPrimaryHover - */ - public var outlineOnLightTransparentPrimaryHover: Color by - colors.obtain("outlineOnLightTransparentPrimaryHover") - - /** - * light outline onLight outlineTransparentPrimaryActive - */ - public var outlineOnLightTransparentPrimaryActive: Color by - colors.obtain("outlineOnLightTransparentPrimaryActive") - - /** - * light outline onLight outlineTransparentSecondary - */ - public var outlineOnLightTransparentSecondary: Color by - colors.obtain("outlineOnLightTransparentSecondary") - - /** - * light outline onLight outlineTransparentSecondaryHover - */ - public var outlineOnLightTransparentSecondaryHover: Color by - colors.obtain("outlineOnLightTransparentSecondaryHover") - - /** - * light outline onLight outlineTransparentSecondaryActive - */ - public var outlineOnLightTransparentSecondaryActive: Color by - colors.obtain("outlineOnLightTransparentSecondaryActive") - - /** - * light outline onLight outlineTransparentTertiary - */ - public var outlineOnLightTransparentTertiary: Color by - colors.obtain("outlineOnLightTransparentTertiary") - - /** - * light outline onLight outlineTransparentTertiaryHover - */ - public var outlineOnLightTransparentTertiaryHover: Color by - colors.obtain("outlineOnLightTransparentTertiaryHover") - - /** - * light outline onLight outlineTransparentTertiaryActive - */ - public var outlineOnLightTransparentTertiaryActive: Color by - colors.obtain("outlineOnLightTransparentTertiaryActive") - - /** - * light outline onLight outlineAccent - */ - public var outlineOnLightAccent: Color by colors.obtain("outlineOnLightAccent") - - /** - * light outline onLight outlineAccentHover - */ - public var outlineOnLightAccentHover: Color by colors.obtain("outlineOnLightAccentHover") - - /** - * light outline onLight outlineAccentActive - */ - public var outlineOnLightAccentActive: Color by colors.obtain("outlineOnLightAccentActive") - - /** - * light outline onLight outlineAccentMinor - */ - public var outlineOnLightAccentMinor: Color by colors.obtain("outlineOnLightAccentMinor") - - /** - * light outline onLight outlineAccentMinorHover - */ - public var outlineOnLightAccentMinorHover: Color by - colors.obtain("outlineOnLightAccentMinorHover") - - /** - * light outline onLight outlineAccentMinorActive - */ - public var outlineOnLightAccentMinorActive: Color by - colors.obtain("outlineOnLightAccentMinorActive") - - /** - * light outline onLight outlineTransparentAccent - */ - public var outlineOnLightTransparentAccent: Color by - colors.obtain("outlineOnLightTransparentAccent") - - /** - * light outline onLight outlineTransparentAccentHover - */ - public var outlineOnLightTransparentAccentHover: Color by - colors.obtain("outlineOnLightTransparentAccentHover") - - /** - * light outline onLight outlineTransparentAccentActive - */ - public var outlineOnLightTransparentAccentActive: Color by - colors.obtain("outlineOnLightTransparentAccentActive") - - /** - * light outline onLight outlinePositive - */ - public var outlineOnLightPositive: Color by colors.obtain("outlineOnLightPositive") - - /** - * light outline onLight outlinePositiveHover - */ - public var outlineOnLightPositiveHover: Color by colors.obtain("outlineOnLightPositiveHover") - - /** - * light outline onLight outlinePositiveActive - */ - public var outlineOnLightPositiveActive: Color by colors.obtain("outlineOnLightPositiveActive") - - /** - * light outline onLight outlineWarning - */ - public var outlineOnLightWarning: Color by colors.obtain("outlineOnLightWarning") - - /** - * light outline onLight outlineWarningHover - */ - public var outlineOnLightWarningHover: Color by colors.obtain("outlineOnLightWarningHover") - - /** - * light outline onLight outlineWarningActive - */ - public var outlineOnLightWarningActive: Color by colors.obtain("outlineOnLightWarningActive") - - /** - * light outline onLight outlineNegative - */ - public var outlineOnLightNegative: Color by colors.obtain("outlineOnLightNegative") - - /** - * light outline onLight outlineNegativeHover - */ - public var outlineOnLightNegativeHover: Color by colors.obtain("outlineOnLightNegativeHover") - - /** - * light outline onLight outlineNegativeActive - */ - public var outlineOnLightNegativeActive: Color by colors.obtain("outlineOnLightNegativeActive") - - /** - * light outline onLight outlineInfoHover - */ - public var outlineOnLightInfoHover: Color by colors.obtain("outlineOnLightInfoHover") - - /** - * light outline onLight outlineInfoActive - */ - public var outlineOnLightInfoActive: Color by colors.obtain("outlineOnLightInfoActive") - - /** - * light outline onLight outlinePositiveMinor - */ - public var outlineOnLightPositiveMinor: Color by colors.obtain("outlineOnLightPositiveMinor") - - /** - * light outline onLight outlinePositiveMinorHover - */ - public var outlineOnLightPositiveMinorHover: Color by - colors.obtain("outlineOnLightPositiveMinorHover") - - /** - * light outline onLight outlinePositiveMinorActive - */ - public var outlineOnLightPositiveMinorActive: Color by - colors.obtain("outlineOnLightPositiveMinorActive") - - /** - * light outline onLight outlineWarningMinor - */ - public var outlineOnLightWarningMinor: Color by colors.obtain("outlineOnLightWarningMinor") - - /** - * light outline onLight outlineWarningMinorHover - */ - public var outlineOnLightWarningMinorHover: Color by - colors.obtain("outlineOnLightWarningMinorHover") - - /** - * light outline onLight outlineWarningMinorActive - */ - public var outlineOnLightWarningMinorActive: Color by - colors.obtain("outlineOnLightWarningMinorActive") - - /** - * light outline onLight outlineNegativeMinor - */ - public var outlineOnLightNegativeMinor: Color by colors.obtain("outlineOnLightNegativeMinor") - - /** - * light outline onLight outlineNegativeMinorHover - */ - public var outlineOnLightNegativeMinorHover: Color by - colors.obtain("outlineOnLightNegativeMinorHover") - - /** - * light outline onLight outlineNegativeMinorActive - */ - public var outlineOnLightNegativeMinorActive: Color by - colors.obtain("outlineOnLightNegativeMinorActive") - - /** - * light outline onLight outlineInfoMinorHover - */ - public var outlineOnLightInfoMinorHover: Color by colors.obtain("outlineOnLightInfoMinorHover") - - /** - * light outline onLight outlineInfoMinorActive - */ - public var outlineOnLightInfoMinorActive: Color by - colors.obtain("outlineOnLightInfoMinorActive") - - /** - * light outline onLight outlineTransparentPositive - */ - public var outlineOnLightTransparentPositive: Color by - colors.obtain("outlineOnLightTransparentPositive") - - /** - * light outline onLight outlineTransparentPositiveHover - */ - public var outlineOnLightTransparentPositiveHover: Color by - colors.obtain("outlineOnLightTransparentPositiveHover") - - /** - * light outline onLight outlineTransparentPositiveActive - */ - public var outlineOnLightTransparentPositiveActive: Color by - colors.obtain("outlineOnLightTransparentPositiveActive") - - /** - * light outline onLight outlineTransparentWarning - */ - public var outlineOnLightTransparentWarning: Color by - colors.obtain("outlineOnLightTransparentWarning") - - /** - * light outline onLight outlineTransparentWarningHover - */ - public var outlineOnLightTransparentWarningHover: Color by - colors.obtain("outlineOnLightTransparentWarningHover") - - /** - * light outline onLight outlineTransparentWarningActive - */ - public var outlineOnLightTransparentWarningActive: Color by - colors.obtain("outlineOnLightTransparentWarningActive") - - /** - * light outline onLight outlineNegativeTransparent - */ - public var outlineOnLightNegativeTransparent: Color by - colors.obtain("outlineOnLightNegativeTransparent") - - /** - * light outline onLight outlineNegativeTransparentHover - */ - public var outlineOnLightNegativeTransparentHover: Color by - colors.obtain("outlineOnLightNegativeTransparentHover") - - /** - * light outline onLight outlineNegativeTransparentActive - */ - public var outlineOnLightNegativeTransparentActive: Color by - colors.obtain("outlineOnLightNegativeTransparentActive") - - /** - * light outline onLight outlineTransparentInfoHover - */ - public var outlineOnLightTransparentInfoHover: Color by - colors.obtain("outlineOnLightTransparentInfoHover") - - /** - * light outline onLight outlineTransparentInfoActive - */ - public var outlineOnLightTransparentInfoActive: Color by - colors.obtain("outlineOnLightTransparentInfoActive") - - /** - * light outline onLight outlinePrimaryHover - */ - public var outlineOnLightPrimaryHover: Color by colors.obtain("outlineOnLightPrimaryHover") - - /** - * light outline onLight outlinePrimaryActive - */ - public var outlineOnLightPrimaryActive: Color by colors.obtain("outlineOnLightPrimaryActive") - - /** - * light outline onLight outlineInfo - */ - public var outlineOnLightInfo: Color by colors.obtain("outlineOnLightInfo") - - /** - * light outline onLight outlineInfoMinor - */ - public var outlineOnLightInfoMinor: Color by colors.obtain("outlineOnLightInfoMinor") - - /** - * light outline onLight outlineTransparentInfo - */ - public var outlineOnLightTransparentInfo: Color by - colors.obtain("outlineOnLightTransparentInfo") - - /** - * light outline onLight outlineSolidTertiaryHover - */ - public var outlineOnLightSolidTertiaryHover: Color by - colors.obtain("outlineOnLightSolidTertiaryHover") - - /** - * light outline onLight outlineSolidTertiaryActive - */ - public var outlineOnLightSolidTertiaryActive: Color by - colors.obtain("outlineOnLightSolidTertiaryActive") - - /** - * light outline onLight outlineSolidDefaultHover - */ - public var outlineOnLightSolidDefaultHover: Color by - colors.obtain("outlineOnLightSolidDefaultHover") - - /** - * light outline onLight outlineSolidDefaultActive - */ - public var outlineOnLightSolidDefaultActive: Color by - colors.obtain("outlineOnLightSolidDefaultActive") - - /** - * light outline onLight outlineSolidPrimaryHover - */ - public var outlineOnLightSolidPrimaryHover: Color by - colors.obtain("outlineOnLightSolidPrimaryHover") - - /** - * light outline onLight outlineSolidPrimaryActive - */ - public var outlineOnLightSolidPrimaryActive: Color by - colors.obtain("outlineOnLightSolidPrimaryActive") - - /** - * light outline onLight outlineSolidSecondaryHover - */ - public var outlineOnLightSolidSecondaryHover: Color by - colors.obtain("outlineOnLightSolidSecondaryHover") - - /** - * light outline onLight outlineSolidSecondaryActive - */ - public var outlineOnLightSolidSecondaryActive: Color by - colors.obtain("outlineOnLightSolidSecondaryActive") - - /** - * light outline onLight outlineSolidPrimary - */ - public var outlineOnLightSolidPrimary: Color by colors.obtain("outlineOnLightSolidPrimary") - - /** - * light outline onLight outlineSolidSecondary - */ - public var outlineOnLightSolidSecondary: Color by colors.obtain("outlineOnLightSolidSecondary") - - /** - * light outline onLight outlineSolidTertiary - */ - public var outlineOnLightSolidTertiary: Color by colors.obtain("outlineOnLightSolidTertiary") - - /** - * light outline onLight outlineSolidDefault - */ - public var outlineOnLightSolidDefault: Color by colors.obtain("outlineOnLightSolidDefault") - - /** - * light outline inverse outlinePrimaryHover - */ - public var outlineInversePrimaryHover: Color by colors.obtain("outlineInversePrimaryHover") - - /** - * light outline inverse outlinePrimaryActive - */ - public var outlineInversePrimaryActive: Color by colors.obtain("outlineInversePrimaryActive") - - /** - * light outline inverse outlineSecondaryHover - */ - public var outlineInverseSecondaryHover: Color by colors.obtain("outlineInverseSecondaryHover") - - /** - * light outline inverse outlineSecondaryActive - */ - public var outlineInverseSecondaryActive: Color by - colors.obtain("outlineInverseSecondaryActive") - - /** - * light outline inverse outlineTertiaryHover - */ - public var outlineInverseTertiaryHover: Color by colors.obtain("outlineInverseTertiaryHover") - - /** - * light outline inverse outlineTertiaryActive - */ - public var outlineInverseTertiaryActive: Color by colors.obtain("outlineInverseTertiaryActive") - - /** - * light outline inverse outlineDefaultHover - */ - public var outlineInverseDefaultHover: Color by colors.obtain("outlineInverseDefaultHover") - - /** - * light outline inverse outlineDefaultActive - */ - public var outlineInverseDefaultActive: Color by colors.obtain("outlineInverseDefaultActive") - - /** - * light outline inverse outlineTransparentPrimaryHover - */ - public var outlineInverseTransparentPrimaryHover: Color by - colors.obtain("outlineInverseTransparentPrimaryHover") - - /** - * light outline inverse outlineTransparentPrimaryActive - */ - public var outlineInverseTransparentPrimaryActive: Color by - colors.obtain("outlineInverseTransparentPrimaryActive") - - /** - * light outline inverse outlineTransparentSecondaryHover - */ - public var outlineInverseTransparentSecondaryHover: Color by - colors.obtain("outlineInverseTransparentSecondaryHover") - - /** - * light outline inverse outlineTransparentSecondaryActive - */ - public var outlineInverseTransparentSecondaryActive: Color by - colors.obtain("outlineInverseTransparentSecondaryActive") - - /** - * light outline inverse outlineTransparentTertiaryHover - */ - public var outlineInverseTransparentTertiaryHover: Color by - colors.obtain("outlineInverseTransparentTertiaryHover") - - /** - * light outline inverse outlineTransparentTertiaryActive - */ - public var outlineInverseTransparentTertiaryActive: Color by - colors.obtain("outlineInverseTransparentTertiaryActive") - - /** - * light outline inverse outlineTransparentClearHover - */ - public var outlineInverseTransparentClearHover: Color by - colors.obtain("outlineInverseTransparentClearHover") - - /** - * light outline inverse outlineTransparentClearActive - */ - public var outlineInverseTransparentClearActive: Color by - colors.obtain("outlineInverseTransparentClearActive") - - /** - * light outline inverse outlineAccentHover - */ - public var outlineInverseAccentHover: Color by colors.obtain("outlineInverseAccentHover") - - /** - * light outline inverse outlineAccentActive - */ - public var outlineInverseAccentActive: Color by colors.obtain("outlineInverseAccentActive") - - /** - * light outline inverse outlineAccentMinorHover - */ - public var outlineInverseAccentMinorHover: Color by - colors.obtain("outlineInverseAccentMinorHover") - - /** - * light outline inverse outlineAccentMinorActive - */ - public var outlineInverseAccentMinorActive: Color by - colors.obtain("outlineInverseAccentMinorActive") - - /** - * light outline inverse outlineTransparentAccentHover - */ - public var outlineInverseTransparentAccentHover: Color by - colors.obtain("outlineInverseTransparentAccentHover") - - /** - * light outline inverse outlineTransparentAccentActive - */ - public var outlineInverseTransparentAccentActive: Color by - colors.obtain("outlineInverseTransparentAccentActive") - - /** - * light outline inverse outlinePositiveHover - */ - public var outlineInversePositiveHover: Color by colors.obtain("outlineInversePositiveHover") - - /** - * light outline inverse outlinePositiveActive - */ - public var outlineInversePositiveActive: Color by colors.obtain("outlineInversePositiveActive") - - /** - * light outline inverse outlineWarningHover - */ - public var outlineInverseWarningHover: Color by colors.obtain("outlineInverseWarningHover") - - /** - * light outline inverse outlineWarningActive - */ - public var outlineInverseWarningActive: Color by colors.obtain("outlineInverseWarningActive") - - /** - * light outline inverse outlineNegativeHover - */ - public var outlineInverseNegativeHover: Color by colors.obtain("outlineInverseNegativeHover") - - /** - * light outline inverse outlineNegativeActive - */ - public var outlineInverseNegativeActive: Color by colors.obtain("outlineInverseNegativeActive") - - /** - * light outline inverse outlineInfoHover - */ - public var outlineInverseInfoHover: Color by colors.obtain("outlineInverseInfoHover") - - /** - * light outline inverse outlineInfoActive - */ - public var outlineInverseInfoActive: Color by colors.obtain("outlineInverseInfoActive") - - /** - * light outline inverse outlinePositiveMinorHover - */ - public var outlineInversePositiveMinorHover: Color by - colors.obtain("outlineInversePositiveMinorHover") - - /** - * light outline inverse outlinePositiveMinorActive - */ - public var outlineInversePositiveMinorActive: Color by - colors.obtain("outlineInversePositiveMinorActive") - - /** - * light outline inverse outlineWarningMinorHover - */ - public var outlineInverseWarningMinorHover: Color by - colors.obtain("outlineInverseWarningMinorHover") - - /** - * light outline inverse outlineWarningMinorActive - */ - public var outlineInverseWarningMinorActive: Color by - colors.obtain("outlineInverseWarningMinorActive") - - /** - * light outline inverse outlineNegativeMinorHover - */ - public var outlineInverseNegativeMinorHover: Color by - colors.obtain("outlineInverseNegativeMinorHover") - - /** - * light outline inverse outlineNegativeMinorActive - */ - public var outlineInverseNegativeMinorActive: Color by - colors.obtain("outlineInverseNegativeMinorActive") - - /** - * light outline inverse outlineInfoMinorHover - */ - public var outlineInverseInfoMinorHover: Color by colors.obtain("outlineInverseInfoMinorHover") - - /** - * light outline inverse outlineInfoMinorActive - */ - public var outlineInverseInfoMinorActive: Color by - colors.obtain("outlineInverseInfoMinorActive") - - /** - * light outline inverse outlineTransparentPositiveHover - */ - public var outlineInverseTransparentPositiveHover: Color by - colors.obtain("outlineInverseTransparentPositiveHover") - - /** - * light outline inverse outlineTransparentPositiveActive - */ - public var outlineInverseTransparentPositiveActive: Color by - colors.obtain("outlineInverseTransparentPositiveActive") - - /** - * light outline inverse outlineTransparentWarningHover - */ - public var outlineInverseTransparentWarningHover: Color by - colors.obtain("outlineInverseTransparentWarningHover") - - /** - * light outline inverse outlineTransparentWarningActive - */ - public var outlineInverseTransparentWarningActive: Color by - colors.obtain("outlineInverseTransparentWarningActive") - - /** - * light outline inverse outlineTransparentNegativeHover - */ - public var outlineInverseTransparentNegativeHover: Color by - colors.obtain("outlineInverseTransparentNegativeHover") - - /** - * light outline inverse outlineTransparentNegativeActive - */ - public var outlineInverseTransparentNegativeActive: Color by - colors.obtain("outlineInverseTransparentNegativeActive") - - /** - * light outline inverse outlineTransparentInfoHover - */ - public var outlineInverseTransparentInfoHover: Color by - colors.obtain("outlineInverseTransparentInfoHover") - - /** - * light outline inverse outlineTransparentInfoActive - */ - public var outlineInverseTransparentInfoActive: Color by - colors.obtain("outlineInverseTransparentInfoActive") - - /** - * light outline inverse outlineTransparentPrimary - */ - public var outlineInverseTransparentPrimary: Color by - colors.obtain("outlineInverseTransparentPrimary") - - /** - * light outline inverse outlineTransparentSecondary - */ - public var outlineInverseTransparentSecondary: Color by - colors.obtain("outlineInverseTransparentSecondary") - - /** - * light outline inverse outlineTransparentTertiary - */ - public var outlineInverseTransparentTertiary: Color by - colors.obtain("outlineInverseTransparentTertiary") - - /** - * light outline inverse outlineTransparentClear - */ - public var outlineInverseTransparentClear: Color by - colors.obtain("outlineInverseTransparentClear") - - /** - * light outline inverse outlineAccent - */ - public var outlineInverseAccent: Color by colors.obtain("outlineInverseAccent") - - /** - * light outline inverse outlineAccentMinor - */ - public var outlineInverseAccentMinor: Color by colors.obtain("outlineInverseAccentMinor") - - /** - * light outline inverse outlineTransparentAccent - */ - public var outlineInverseTransparentAccent: Color by - colors.obtain("outlineInverseTransparentAccent") - - /** - * light outline inverse outlinePositive - */ - public var outlineInversePositive: Color by colors.obtain("outlineInversePositive") - - /** - * light outline inverse outlineWarning - */ - public var outlineInverseWarning: Color by colors.obtain("outlineInverseWarning") - - /** - * light outline inverse outlineNegative - */ - public var outlineInverseNegative: Color by colors.obtain("outlineInverseNegative") - - /** - * light outline inverse outlineInfo - */ - public var outlineInverseInfo: Color by colors.obtain("outlineInverseInfo") - - /** - * light outline inverse outlinePositiveMinor - */ - public var outlineInversePositiveMinor: Color by colors.obtain("outlineInversePositiveMinor") - - /** - * light outline inverse outlineWarningMinor - */ - public var outlineInverseWarningMinor: Color by colors.obtain("outlineInverseWarningMinor") - - /** - * light outline inverse outlineNegativeMinor - */ - public var outlineInverseNegativeMinor: Color by colors.obtain("outlineInverseNegativeMinor") - - /** - * light outline inverse outlineInfoMinor - */ - public var outlineInverseInfoMinor: Color by colors.obtain("outlineInverseInfoMinor") - - /** - * light outline inverse outlineTransparentPositive - */ - public var outlineInverseTransparentPositive: Color by - colors.obtain("outlineInverseTransparentPositive") - - /** - * light outline inverse outlineTransparentWarning - */ - public var outlineInverseTransparentWarning: Color by - colors.obtain("outlineInverseTransparentWarning") - - /** - * light outline inverse outlineTransparentNegative - */ - public var outlineInverseTransparentNegative: Color by - colors.obtain("outlineInverseTransparentNegative") - - /** - * light outline inverse outlineTransparentInfo - */ - public var outlineInverseTransparentInfo: Color by - colors.obtain("outlineInverseTransparentInfo") - - /** - * light outline inverse outlineSolidPrimaryHover - */ - public var outlineInverseSolidPrimaryHover: Color by - colors.obtain("outlineInverseSolidPrimaryHover") - - /** - * light outline inverse outlineSolidPrimaryActive - */ - public var outlineInverseSolidPrimaryActive: Color by - colors.obtain("outlineInverseSolidPrimaryActive") - - /** - * light outline inverse outlineSolidSecondaryHover - */ - public var outlineInverseSolidSecondaryHover: Color by - colors.obtain("outlineInverseSolidSecondaryHover") - - /** - * light outline inverse outlineSolidSecondaryActive - */ - public var outlineInverseSolidSecondaryActive: Color by - colors.obtain("outlineInverseSolidSecondaryActive") - - /** - * light outline inverse outlineSolidTertiaryHover - */ - public var outlineInverseSolidTertiaryHover: Color by - colors.obtain("outlineInverseSolidTertiaryHover") - - /** - * light outline inverse outlineSolidTertiaryActive - */ - public var outlineInverseSolidTertiaryActive: Color by - colors.obtain("outlineInverseSolidTertiaryActive") - - /** - * light outline inverse outlineSolidDefaultHover - */ - public var outlineInverseSolidDefaultHover: Color by - colors.obtain("outlineInverseSolidDefaultHover") - - /** - * light outline inverse outlineSolidDefaultActive - */ - public var outlineInverseSolidDefaultActive: Color by - colors.obtain("outlineInverseSolidDefaultActive") - - /** - * light outline inverse outlineSolidPrimary - */ - public var outlineInverseSolidPrimary: Color by colors.obtain("outlineInverseSolidPrimary") - - /** - * light outline inverse outlineSolidSecondary - */ - public var outlineInverseSolidSecondary: Color by colors.obtain("outlineInverseSolidSecondary") - - /** - * light outline inverse outlineSolidTertiary - */ - public var outlineInverseSolidTertiary: Color by colors.obtain("outlineInverseSolidTertiary") - - /** - * light outline inverse outlineSolidDefault - */ - public var outlineInverseSolidDefault: Color by colors.obtain("outlineInverseSolidDefault") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellow: Color by colors.obtain("dataDefaultYellow") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellowHover: Color by colors.obtain("dataDefaultYellowHover") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellowActive: Color by colors.obtain("dataDefaultYellowActive") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinor: Color by colors.obtain("dataDefaultYellowMinor") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinorHover: Color by colors.obtain("dataDefaultYellowMinorHover") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinorActive: Color by colors.obtain("dataDefaultYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparent: Color by colors.obtain("dataDefaultYellowTransparent") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparentHover: Color by - colors.obtain("dataDefaultYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparentActive: Color by - colors.obtain("dataDefaultYellowTransparentActive") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellow: Color by colors.obtain("dataOnDarkYellow") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowHover: Color by colors.obtain("dataOnDarkYellowHover") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowActive: Color by colors.obtain("dataOnDarkYellowActive") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinor: Color by colors.obtain("dataOnDarkYellowMinor") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinorHover: Color by colors.obtain("dataOnDarkYellowMinorHover") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinorActive: Color by colors.obtain("dataOnDarkYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparent: Color by colors.obtain("dataOnDarkYellowTransparent") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparentHover: Color by - colors.obtain("dataOnDarkYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparentActive: Color by - colors.obtain("dataOnDarkYellowTransparentActive") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellow: Color by colors.obtain("dataOnLightYellow") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowHover: Color by colors.obtain("dataOnLightYellowHover") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowActive: Color by colors.obtain("dataOnLightYellowActive") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinor: Color by colors.obtain("dataOnLightYellowMinor") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinorHover: Color by colors.obtain("dataOnLightYellowMinorHover") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinorActive: Color by colors.obtain("dataOnLightYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparent: Color by colors.obtain("dataOnLightYellowTransparent") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparentHover: Color by - colors.obtain("dataOnLightYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparentActive: Color by - colors.obtain("dataOnLightYellowTransparentActive") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellow: Color by colors.obtain("dataInverseYellow") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellowHover: Color by colors.obtain("dataInverseYellowHover") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellowActive: Color by colors.obtain("dataInverseYellowActive") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinor: Color by colors.obtain("dataInverseYellowMinor") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinorHover: Color by colors.obtain("dataInverseYellowMinorHover") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinorActive: Color by colors.obtain("dataInverseYellowMinorActive") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparent: Color by colors.obtain("dataInverseYellowTransparent") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparentHover: Color by - colors.obtain("dataInverseYellowTransparentHover") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparentActive: Color by - colors.obtain("dataInverseYellowTransparentActive") - - /** - * Возвращает копию [PlasmaGigaAppColors]. Предоставляет возможность переопределять цвета. - */ - public fun copy(overrideColors: ColorOverrideScope.() -> Unit = {}): PlasmaGigaAppColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overrideMap = colorOverrideScope.overrideMap - return PlasmaGigaAppColors(colors.mapValues { overrideMap[it.key] ?: it.value }) - } -} - -/** - * Скоуп переопределения цветов - */ -public class ColorOverrideScope { - private val _overrideMap: MutableMap = mutableMapOf() - - internal val overrideMap: Map - get() = _overrideMap.toMap() - - /** - * Основной цвет текста - */ - public val textDefaultPrimary: String = "textDefaultPrimary" - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryBrightness: String = "textDefaultPrimaryBrightness" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondary: String = "textDefaultSecondary" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiary: String = "textDefaultTertiary" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraph: String = "textDefaultParagraph" - - /** - * Акцентный цвет - */ - public val textDefaultAccent: String = "textDefaultAccent" - - /** - * Цвет успеха - */ - public val textDefaultPositive: String = "textDefaultPositive" - - /** - * Цвет предупреждения - */ - public val textDefaultWarning: String = "textDefaultWarning" - - /** - * Цвет ошибки - */ - public val textDefaultNegative: String = "textDefaultNegative" - - /** - * light text default textAccentMinorHover - */ - public val textDefaultAccentMinorHover: String = "textDefaultAccentMinorHover" - - /** - * light text default textAccentMinorActive - */ - public val textDefaultAccentMinorActive: String = "textDefaultAccentMinorActive" - - /** - * light text default textInfoHover - */ - public val textDefaultInfoHover: String = "textDefaultInfoHover" - - /** - * light text default textInfoActive - */ - public val textDefaultInfoActive: String = "textDefaultInfoActive" - - /** - * light text default textPositiveMinorHover - */ - public val textDefaultPositiveMinorHover: String = "textDefaultPositiveMinorHover" - - /** - * light text default textPositiveMinorActive - */ - public val textDefaultPositiveMinorActive: String = "textDefaultPositiveMinorActive" - - /** - * light text default textWarningMinorHover - */ - public val textDefaultWarningMinorHover: String = "textDefaultWarningMinorHover" - - /** - * light text default textWarningMinorActive - */ - public val textDefaultWarningMinorActive: String = "textDefaultWarningMinorActive" - - /** - * light text default textNegativeMinorHover - */ - public val textDefaultNegativeMinorHover: String = "textDefaultNegativeMinorHover" - - /** - * light text default textNegativeMinorActive - */ - public val textDefaultNegativeMinorActive: String = "textDefaultNegativeMinorActive" - - /** - * light text default textInfoMinorHover - */ - public val textDefaultInfoMinorHover: String = "textDefaultInfoMinorHover" - - /** - * light text default textInfoMinorActive - */ - public val textDefaultInfoMinorActive: String = "textDefaultInfoMinorActive" - - /** - * light text default textAccentMinor - */ - public val textDefaultAccentMinor: String = "textDefaultAccentMinor" - - /** - * light text default textPositiveMinor - */ - public val textDefaultPositiveMinor: String = "textDefaultPositiveMinor" - - /** - * light text default textWarningMinor - */ - public val textDefaultWarningMinor: String = "textDefaultWarningMinor" - - /** - * light text default textNegativeMinor - */ - public val textDefaultNegativeMinor: String = "textDefaultNegativeMinor" - - /** - * light text default textInfo - */ - public val textDefaultInfo: String = "textDefaultInfo" - - /** - * light text default textInfoMinor - */ - public val textDefaultInfoMinor: String = "textDefaultInfoMinor" - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryHover: String = "textDefaultPrimaryHover" - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryActive: String = "textDefaultPrimaryActive" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondaryHover: String = "textDefaultSecondaryHover" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondaryActive: String = "textDefaultSecondaryActive" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiaryHover: String = "textDefaultTertiaryHover" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiaryActive: String = "textDefaultTertiaryActive" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraphHover: String = "textDefaultParagraphHover" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraphActive: String = "textDefaultParagraphActive" - - /** - * Акцентный цвет - */ - public val textDefaultAccentHover: String = "textDefaultAccentHover" - - /** - * Акцентный цвет - */ - public val textDefaultAccentActive: String = "textDefaultAccentActive" - - /** - * Цвет успеха - */ - public val textDefaultPositiveHover: String = "textDefaultPositiveHover" - - /** - * Цвет успеха - */ - public val textDefaultPositiveActive: String = "textDefaultPositiveActive" - - /** - * Цвет предупреждения - */ - public val textDefaultWarningHover: String = "textDefaultWarningHover" - - /** - * Цвет предупреждения - */ - public val textDefaultWarningActive: String = "textDefaultWarningActive" - - /** - * Цвет ошибки - */ - public val textDefaultNegativeHover: String = "textDefaultNegativeHover" - - /** - * Цвет ошибки - */ - public val textDefaultNegativeActive: String = "textDefaultNegativeActive" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimary: String = "textOnDarkPrimary" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryBrightness: String = "textOnDarkPrimaryBrightness" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondary: String = "textOnDarkSecondary" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiary: String = "textOnDarkTertiary" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraph: String = "textOnDarkParagraph" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccent: String = "textOnDarkAccent" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositive: String = "textOnDarkPositive" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarning: String = "textOnDarkWarning" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegative: String = "textOnDarkNegative" - - /** - * light text onDark textAccentMinor - */ - public val textOnDarkAccentMinor: String = "textOnDarkAccentMinor" - - /** - * light text onDark textAccentMinorHover - */ - public val textOnDarkAccentMinorHover: String = "textOnDarkAccentMinorHover" - - /** - * light text onDark textAccentMinorActive - */ - public val textOnDarkAccentMinorActive: String = "textOnDarkAccentMinorActive" - - /** - * light text onDark textInfoHover - */ - public val textOnDarkInfoHover: String = "textOnDarkInfoHover" - - /** - * light text onDark textInfoActive - */ - public val textOnDarkInfoActive: String = "textOnDarkInfoActive" - - /** - * light text onDark textPositiveMinor - */ - public val textOnDarkPositiveMinor: String = "textOnDarkPositiveMinor" - - /** - * light text onDark textPositiveMinorHover - */ - public val textOnDarkPositiveMinorHover: String = "textOnDarkPositiveMinorHover" - - /** - * light text onDark textPositiveMinorActive - */ - public val textOnDarkPositiveMinorActive: String = "textOnDarkPositiveMinorActive" - - /** - * light text onDark textWarningMinor - */ - public val textOnDarkWarningMinor: String = "textOnDarkWarningMinor" - - /** - * light text onDark textWarningMinorHover - */ - public val textOnDarkWarningMinorHover: String = "textOnDarkWarningMinorHover" - - /** - * light text onDark textWarningMinorActive - */ - public val textOnDarkWarningMinorActive: String = "textOnDarkWarningMinorActive" - - /** - * light text onDark textNegativeMinor - */ - public val textOnDarkNegativeMinor: String = "textOnDarkNegativeMinor" - - /** - * light text onDark textNegativeMinorHover - */ - public val textOnDarkNegativeMinorHover: String = "textOnDarkNegativeMinorHover" - - /** - * light text onDark textNegativeMinorActive - */ - public val textOnDarkNegativeMinorActive: String = "textOnDarkNegativeMinorActive" - - /** - * light text onDark textInfoMinorHover - */ - public val textOnDarkInfoMinorHover: String = "textOnDarkInfoMinorHover" - - /** - * light text onDark textInfoMinorActive - */ - public val textOnDarkInfoMinorActive: String = "textOnDarkInfoMinorActive" - - /** - * light text onDark textInfoMinor - */ - public val textOnDarkInfoMinor: String = "textOnDarkInfoMinor" - - /** - * light text onDark textInfo - */ - public val textOnDarkInfo: String = "textOnDarkInfo" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryHover: String = "textOnDarkPrimaryHover" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryActive: String = "textOnDarkPrimaryActive" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondaryHover: String = "textOnDarkSecondaryHover" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondaryActive: String = "textOnDarkSecondaryActive" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiaryHover: String = "textOnDarkTertiaryHover" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiaryActive: String = "textOnDarkTertiaryActive" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraphHover: String = "textOnDarkParagraphHover" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraphActive: String = "textOnDarkParagraphActive" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentHover: String = "textOnDarkAccentHover" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentActive: String = "textOnDarkAccentActive" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositiveHover: String = "textOnDarkPositiveHover" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositiveActive: String = "textOnDarkPositiveActive" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarningHover: String = "textOnDarkWarningHover" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarningActive: String = "textOnDarkWarningActive" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegativeHover: String = "textOnDarkNegativeHover" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegativeActive: String = "textOnDarkNegativeActive" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimary: String = "textOnLightPrimary" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryBrightness: String = "textOnLightPrimaryBrightness" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondary: String = "textOnLightSecondary" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiary: String = "textOnLightTertiary" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraph: String = "textOnLightParagraph" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccent: String = "textOnLightAccent" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositive: String = "textOnLightPositive" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarning: String = "textOnLightWarning" - - /** - * light text onLight textAccentMinor - */ - public val textOnLightAccentMinor: String = "textOnLightAccentMinor" - - /** - * light text onLight textAccentMinorHover - */ - public val textOnLightAccentMinorHover: String = "textOnLightAccentMinorHover" - - /** - * light text onLight textAccentMinorActive - */ - public val textOnLightAccentMinorActive: String = "textOnLightAccentMinorActive" - - /** - * light text onLight textInfoHover - */ - public val textOnLightInfoHover: String = "textOnLightInfoHover" - - /** - * light text onLight textInfoActive - */ - public val textOnLightInfoActive: String = "textOnLightInfoActive" - - /** - * light text onLight textPositiveMinor - */ - public val textOnLightPositiveMinor: String = "textOnLightPositiveMinor" - - /** - * light text onLight textPositiveMinorHover - */ - public val textOnLightPositiveMinorHover: String = "textOnLightPositiveMinorHover" - - /** - * light text onLight textPositiveMinorActive - */ - public val textOnLightPositiveMinorActive: String = "textOnLightPositiveMinorActive" - - /** - * light text onLight textWarningMinor - */ - public val textOnLightWarningMinor: String = "textOnLightWarningMinor" - - /** - * light text onLight textWarningMinorHover - */ - public val textOnLightWarningMinorHover: String = "textOnLightWarningMinorHover" - - /** - * light text onLight textWarningMinorActive - */ - public val textOnLightWarningMinorActive: String = "textOnLightWarningMinorActive" - - /** - * light text onLight textNegativeMinor - */ - public val textOnLightNegativeMinor: String = "textOnLightNegativeMinor" - - /** - * light text onLight textNegativeMinorHover - */ - public val textOnLightNegativeMinorHover: String = "textOnLightNegativeMinorHover" - - /** - * light text onLight textNegativeMinorActive - */ - public val textOnLightNegativeMinorActive: String = "textOnLightNegativeMinorActive" - - /** - * light text onLight textInfoMinorHover - */ - public val textOnLightInfoMinorHover: String = "textOnLightInfoMinorHover" - - /** - * light text onLight textInfoMinorActive - */ - public val textOnLightInfoMinorActive: String = "textOnLightInfoMinorActive" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegative: String = "textOnLightNegative" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegativeHover: String = "textOnLightNegativeHover" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegativeActive: String = "textOnLightNegativeActive" - - /** - * light text onLight textInfo - */ - public val textOnLightInfo: String = "textOnLightInfo" - - /** - * light text onLight textInfoMinor - */ - public val textOnLightInfoMinor: String = "textOnLightInfoMinor" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryHover: String = "textOnLightPrimaryHover" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryActive: String = "textOnLightPrimaryActive" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondaryHover: String = "textOnLightSecondaryHover" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondaryActive: String = "textOnLightSecondaryActive" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiaryHover: String = "textOnLightTertiaryHover" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiaryActive: String = "textOnLightTertiaryActive" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraphHover: String = "textOnLightParagraphHover" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraphActive: String = "textOnLightParagraphActive" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentHover: String = "textOnLightAccentHover" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentActive: String = "textOnLightAccentActive" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositiveHover: String = "textOnLightPositiveHover" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositiveActive: String = "textOnLightPositiveActive" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarningHover: String = "textOnLightWarningHover" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarningActive: String = "textOnLightWarningActive" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimary: String = "textInversePrimary" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryBrightness: String = "textInversePrimaryBrightness" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondary: String = "textInverseSecondary" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiary: String = "textInverseTertiary" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraph: String = "textInverseParagraph" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositive: String = "textInversePositive" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarning: String = "textInverseWarning" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegative: String = "textInverseNegative" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryHover: String = "textInversePrimaryHover" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryActive: String = "textInversePrimaryActive" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondaryHover: String = "textInverseSecondaryHover" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondaryActive: String = "textInverseSecondaryActive" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiaryHover: String = "textInverseTertiaryHover" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiaryActive: String = "textInverseTertiaryActive" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraphHover: String = "textInverseParagraphHover" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraphActive: String = "textInverseParagraphActive" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccentHover: String = "textInverseAccentHover" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccentActive: String = "textInverseAccentActive" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositiveHover: String = "textInversePositiveHover" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositiveActive: String = "textInversePositiveActive" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarningHover: String = "textInverseWarningHover" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarningActive: String = "textInverseWarningActive" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegativeHover: String = "textInverseNegativeHover" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegativeActive: String = "textInverseNegativeActive" - - /** - * light text inverse textAccentMinor - */ - public val textInverseAccentMinor: String = "textInverseAccentMinor" - - /** - * light text inverse textAccentMinorHover - */ - public val textInverseAccentMinorHover: String = "textInverseAccentMinorHover" - - /** - * light text inverse textAccentMinorActive - */ - public val textInverseAccentMinorActive: String = "textInverseAccentMinorActive" - - /** - * light text inverse textInfoHover - */ - public val textInverseInfoHover: String = "textInverseInfoHover" - - /** - * light text inverse textInfoActive - */ - public val textInverseInfoActive: String = "textInverseInfoActive" - - /** - * light text inverse textPositiveMinorHover - */ - public val textInversePositiveMinorHover: String = "textInversePositiveMinorHover" - - /** - * light text inverse textPositiveMinorActive - */ - public val textInversePositiveMinorActive: String = "textInversePositiveMinorActive" - - /** - * light text inverse textWarningMinorHover - */ - public val textInverseWarningMinorHover: String = "textInverseWarningMinorHover" - - /** - * light text inverse textWarningMinorActive - */ - public val textInverseWarningMinorActive: String = "textInverseWarningMinorActive" - - /** - * light text inverse textNegativeMinorHover - */ - public val textInverseNegativeMinorHover: String = "textInverseNegativeMinorHover" - - /** - * light text inverse textNegativeMinorActive - */ - public val textInverseNegativeMinorActive: String = "textInverseNegativeMinorActive" - - /** - * light text inverse textInfoMinorHover - */ - public val textInverseInfoMinorHover: String = "textInverseInfoMinorHover" - - /** - * light text inverse textInfoMinorActive - */ - public val textInverseInfoMinorActive: String = "textInverseInfoMinorActive" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccent: String = "textInverseAccent" - - /** - * light text inverse textInfo - */ - public val textInverseInfo: String = "textInverseInfo" - - /** - * light text inverse textPositiveMinor - */ - public val textInversePositiveMinor: String = "textInversePositiveMinor" - - /** - * light text inverse textWarningMinor - */ - public val textInverseWarningMinor: String = "textInverseWarningMinor" - - /** - * light text inverse textNegativeMinor - */ - public val textInverseNegativeMinor: String = "textInverseNegativeMinor" - - /** - * light text inverse textInfoMinor - */ - public val textInverseInfoMinor: String = "textInverseInfoMinor" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefault: String = "surfaceDefaultSolidDefault" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimary: String = "surfaceDefaultSolidPrimary" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryBrightness: String = "surfaceDefaultSolidPrimaryBrightness" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondary: String = "surfaceDefaultSolidSecondary" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiary: String = "surfaceDefaultSolidTertiary" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCard: String = "surfaceDefaultSolidCard" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardBrightness: String = "surfaceDefaultSolidCardBrightness" - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultTransparentDefault: String = "surfaceDefaultTransparentDefault" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimary: String = "surfaceDefaultTransparentPrimary" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondary: String = "surfaceDefaultTransparentSecondary" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiary: String = "surfaceDefaultTransparentTertiary" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCard: String = "surfaceDefaultTransparentCard" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardBrightness: String = - "surfaceDefaultTransparentCardBrightness" - - /** - * Акцентный фон поверхности/контрола - */ - public val surfaceDefaultAccent: String = "surfaceDefaultAccent" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositive: String = "surfaceDefaultPositive" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarning: String = "surfaceDefaultWarning" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegative: String = "surfaceDefaultNegative" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClear: String = "surfaceDefaultClear" - - /** - * light surface default surfaceTransparentDeep - */ - public val surfaceDefaultTransparentDeep: String = "surfaceDefaultTransparentDeep" - - /** - * light surface default surfaceAccentMinorHover - */ - public val surfaceDefaultAccentMinorHover: String = "surfaceDefaultAccentMinorHover" - - /** - * light surface default surfaceAccentMinorActive - */ - public val surfaceDefaultAccentMinorActive: String = "surfaceDefaultAccentMinorActive" - - /** - * light surface default surfaceTransparentAccentHover - */ - public val surfaceDefaultTransparentAccentHover: String = "surfaceDefaultTransparentAccentHover" - - /** - * light surface default surfaceTransparentAccentActive - */ - public val surfaceDefaultTransparentAccentActive: String = - "surfaceDefaultTransparentAccentActive" - - /** - * light surface default surfaceInfoHover - */ - public val surfaceDefaultInfoHover: String = "surfaceDefaultInfoHover" - - /** - * light surface default surfaceInfoActive - */ - public val surfaceDefaultInfoActive: String = "surfaceDefaultInfoActive" - - /** - * light surface default surfacePositiveMinorHover - */ - public val surfaceDefaultPositiveMinorHover: String = "surfaceDefaultPositiveMinorHover" - - /** - * light surface default surfacePositiveMinorActive - */ - public val surfaceDefaultPositiveMinorActive: String = "surfaceDefaultPositiveMinorActive" - - /** - * light surface default surfaceWarningMinorHover - */ - public val surfaceDefaultWarningMinorHover: String = "surfaceDefaultWarningMinorHover" - - /** - * light surface default surfaceWarningMinorActive - */ - public val surfaceDefaultWarningMinorActive: String = "surfaceDefaultWarningMinorActive" - - /** - * light surface default surfaceNegativeMinorHover - */ - public val surfaceDefaultNegativeMinorHover: String = "surfaceDefaultNegativeMinorHover" - - /** - * light surface default surfaceNegativeMinorActive - */ - public val surfaceDefaultNegativeMinorActive: String = "surfaceDefaultNegativeMinorActive" - - /** - * light surface default surfaceInfoMinorHover - */ - public val surfaceDefaultInfoMinorHover: String = "surfaceDefaultInfoMinorHover" - - /** - * light surface default surfaceInfoMinorActive - */ - public val surfaceDefaultInfoMinorActive: String = "surfaceDefaultInfoMinorActive" - - /** - * light surface default surfaceTransparentPositiveHover - */ - public val surfaceDefaultTransparentPositiveHover: String = - "surfaceDefaultTransparentPositiveHover" - - /** - * light surface default surfaceTransparentPositiveActive - */ - public val surfaceDefaultTransparentPositiveActive: String = - "surfaceDefaultTransparentPositiveActive" - - /** - * light surface default surfaceTransparentWarningHover - */ - public val surfaceDefaultTransparentWarningHover: String = - "surfaceDefaultTransparentWarningHover" - - /** - * light surface default surfaceTransparentWarningActive - */ - public val surfaceDefaultTransparentWarningActive: String = - "surfaceDefaultTransparentWarningActive" - - /** - * light surface default surfaceTransparentNegativeHover - */ - public val surfaceDefaultTransparentNegativeHover: String = - "surfaceDefaultTransparentNegativeHover" - - /** - * light surface default surfaceTransparentNegativeActive - */ - public val surfaceDefaultTransparentNegativeActive: String = - "surfaceDefaultTransparentNegativeActive" - - /** - * light surface default surfaceTransparentInfoHover - */ - public val surfaceDefaultTransparentInfoHover: String = "surfaceDefaultTransparentInfoHover" - - /** - * light surface default surfaceTransparentInfoActive - */ - public val surfaceDefaultTransparentInfoActive: String = "surfaceDefaultTransparentInfoActive" - - /** - * light surface default surfaceAccentMinor - */ - public val surfaceDefaultAccentMinor: String = "surfaceDefaultAccentMinor" - - /** - * light surface default surfaceTransparentAccent - */ - public val surfaceDefaultTransparentAccent: String = "surfaceDefaultTransparentAccent" - - /** - * light surface default surfacePositiveMinor - */ - public val surfaceDefaultPositiveMinor: String = "surfaceDefaultPositiveMinor" - - /** - * light surface default surfaceWarningMinor - */ - public val surfaceDefaultWarningMinor: String = "surfaceDefaultWarningMinor" - - /** - * light surface default surfaceNegativeMinor - */ - public val surfaceDefaultNegativeMinor: String = "surfaceDefaultNegativeMinor" - - /** - * light surface default surfaceTransparentPositive - */ - public val surfaceDefaultTransparentPositive: String = "surfaceDefaultTransparentPositive" - - /** - * light surface default surfaceTransparentWarning - */ - public val surfaceDefaultTransparentWarning: String = "surfaceDefaultTransparentWarning" - - /** - * light surface default surfaceTransparentNegative - */ - public val surfaceDefaultTransparentNegative: String = "surfaceDefaultTransparentNegative" - - /** - * light surface default surfaceInfo - */ - public val surfaceDefaultInfo: String = "surfaceDefaultInfo" - - /** - * light surface default surfaceInfoMinor - */ - public val surfaceDefaultInfoMinor: String = "surfaceDefaultInfoMinor" - - /** - * light surface default surfaceTransparentInfo - */ - public val surfaceDefaultTransparentInfo: String = "surfaceDefaultTransparentInfo" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefaultHover: String = "surfaceDefaultSolidDefaultHover" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefaultActive: String = "surfaceDefaultSolidDefaultActive" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryHover: String = "surfaceDefaultSolidPrimaryHover" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryActive: String = "surfaceDefaultSolidPrimaryActive" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondaryHover: String = "surfaceDefaultSolidSecondaryHover" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondaryActive: String = "surfaceDefaultSolidSecondaryActive" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiaryHover: String = "surfaceDefaultSolidTertiaryHover" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiaryActive: String = "surfaceDefaultSolidTertiaryActive" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardHover: String = "surfaceDefaultSolidCardHover" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardActive: String = "surfaceDefaultSolidCardActive" - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultTransparentDefaultHover: String = - "surfaceDefaultTransparentDefaultHover" - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultTransparentDefaultActive: String = - "surfaceDefaultTransparentDefaultActive" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimaryHover: String = - "surfaceDefaultTransparentPrimaryHover" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimaryActive: String = - "surfaceDefaultTransparentPrimaryActive" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondaryHover: String = - "surfaceDefaultTransparentSecondaryHover" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondaryActive: String = - "surfaceDefaultTransparentSecondaryActive" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiaryHover: String = - "surfaceDefaultTransparentTertiaryHover" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiaryActive: String = - "surfaceDefaultTransparentTertiaryActive" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardHover: String = "surfaceDefaultTransparentCardHover" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardActive: String = "surfaceDefaultTransparentCardActive" - - /** - * Акцентный фон поверхности/контрола - */ - public val surfaceDefaultAccentHover: String = "surfaceDefaultAccentHover" - - /** - * Акцентный фон поверхности/контрола - */ - public val surfaceDefaultAccentActive: String = "surfaceDefaultAccentActive" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositiveHover: String = "surfaceDefaultPositiveHover" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositiveActive: String = "surfaceDefaultPositiveActive" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningHover: String = "surfaceDefaultWarningHover" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningActive: String = "surfaceDefaultWarningActive" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeHover: String = "surfaceDefaultNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeActive: String = "surfaceDefaultNegativeActive" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClearHover: String = "surfaceDefaultClearHover" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClearActive: String = "surfaceDefaultClearActive" - - /** - * light surface default surfaceTransparentDeepHover - */ - public val surfaceDefaultTransparentDeepHover: String = "surfaceDefaultTransparentDeepHover" - - /** - * light surface default surfaceTransparentDeepActive - */ - public val surfaceDefaultTransparentDeepActive: String = "surfaceDefaultTransparentDeepActive" - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimary: String = "surfaceOnDarkSolidPrimary" - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryBrightness: String = "surfaceOnDarkSolidPrimaryBrightness" - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidSecondary: String = "surfaceOnDarkSolidSecondary" - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiary: String = "surfaceOnDarkSolidTertiary" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCard: String = "surfaceOnDarkSolidCard" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardBrightness: String = "surfaceOnDarkSolidCardBrightness" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkTransparentDefault: String = "surfaceOnDarkTransparentDefault" - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccent: String = "surfaceOnDarkAccent" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositive: String = "surfaceOnDarkPositive" - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarning: String = "surfaceOnDarkWarning" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegative: String = "surfaceOnDarkNegative" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClear: String = "surfaceOnDarkClear" - - /** - * light surface onDark surfaceTransparentDeep - */ - public val surfaceOnDarkTransparentDeep: String = "surfaceOnDarkTransparentDeep" - - /** - * light surface onDark surfaceAccentMinor - */ - public val surfaceOnDarkAccentMinor: String = "surfaceOnDarkAccentMinor" - - /** - * light surface onDark surfaceAccentMinorHover - */ - public val surfaceOnDarkAccentMinorHover: String = "surfaceOnDarkAccentMinorHover" - - /** - * light surface onDark surfaceAccentMinorActive - */ - public val surfaceOnDarkAccentMinorActive: String = "surfaceOnDarkAccentMinorActive" - - /** - * light surface onDark surfaceTransparentAccent - */ - public val surfaceOnDarkTransparentAccent: String = "surfaceOnDarkTransparentAccent" - - /** - * light surface onDark surfaceTransparentAccentHover - */ - public val surfaceOnDarkTransparentAccentHover: String = "surfaceOnDarkTransparentAccentHover" - - /** - * light surface onDark surfaceTransparentAccentActive - */ - public val surfaceOnDarkTransparentAccentActive: String = "surfaceOnDarkTransparentAccentActive" - - /** - * light surface onDark surfaceSurfaceInfoHover - */ - public val surfaceOnDarkSurfaceInfoHover: String = "surfaceOnDarkSurfaceInfoHover" - - /** - * light surface onDark surfaceSurfaceInfoActive - */ - public val surfaceOnDarkSurfaceInfoActive: String = "surfaceOnDarkSurfaceInfoActive" - - /** - * light surface onDark surfacePositiveMinor - */ - public val surfaceOnDarkPositiveMinor: String = "surfaceOnDarkPositiveMinor" - - /** - * light surface onDark surfacePositiveMinorHover - */ - public val surfaceOnDarkPositiveMinorHover: String = "surfaceOnDarkPositiveMinorHover" - - /** - * light surface onDark surfacePositiveMinorActive - */ - public val surfaceOnDarkPositiveMinorActive: String = "surfaceOnDarkPositiveMinorActive" - - /** - * light surface onDark surfaceWarningMinor - */ - public val surfaceOnDarkWarningMinor: String = "surfaceOnDarkWarningMinor" - - /** - * light surface onDark surfaceWarningMinorHover - */ - public val surfaceOnDarkWarningMinorHover: String = "surfaceOnDarkWarningMinorHover" - - /** - * light surface onDark surfaceWarningMinorActive - */ - public val surfaceOnDarkWarningMinorActive: String = "surfaceOnDarkWarningMinorActive" - - /** - * light surface onDark surfaceNegativeMinor - */ - public val surfaceOnDarkNegativeMinor: String = "surfaceOnDarkNegativeMinor" - - /** - * light surface onDark surfaceNegativeMinorHover - */ - public val surfaceOnDarkNegativeMinorHover: String = "surfaceOnDarkNegativeMinorHover" - - /** - * light surface onDark surfaceNegativeMinorActive - */ - public val surfaceOnDarkNegativeMinorActive: String = "surfaceOnDarkNegativeMinorActive" - - /** - * light surface onDark surfaceInfoMinorHover - */ - public val surfaceOnDarkInfoMinorHover: String = "surfaceOnDarkInfoMinorHover" - - /** - * light surface onDark surfaceInfoMinorActive - */ - public val surfaceOnDarkInfoMinorActive: String = "surfaceOnDarkInfoMinorActive" - - /** - * light surface onDark surfaceTransparentPositiveHover - */ - public val surfaceOnDarkTransparentPositiveHover: String = - "surfaceOnDarkTransparentPositiveHover" - - /** - * light surface onDark surfaceTransparentPositiveActive - */ - public val surfaceOnDarkTransparentPositiveActive: String = - "surfaceOnDarkTransparentPositiveActive" - - /** - * light surface onDark surfaceTransparentWarningHover - */ - public val surfaceOnDarkTransparentWarningHover: String = "surfaceOnDarkTransparentWarningHover" - - /** - * light surface onDark surfaceTransparentWarningActive - */ - public val surfaceOnDarkTransparentWarningActive: String = - "surfaceOnDarkTransparentWarningActive" - - /** - * light surface onDark surfaceTransparentNegativeHover - */ - public val surfaceOnDarkTransparentNegativeHover: String = - "surfaceOnDarkTransparentNegativeHover" - - /** - * light surface onDark surfaceTransparentNegativeActive - */ - public val surfaceOnDarkTransparentNegativeActive: String = - "surfaceOnDarkTransparentNegativeActive" - - /** - * light surface onDark surfaceTransparentInfoHover - */ - public val surfaceOnDarkTransparentInfoHover: String = "surfaceOnDarkTransparentInfoHover" - - /** - * light surface onDark surfaceTransparentInfoActive - */ - public val surfaceOnDarkTransparentInfoActive: String = "surfaceOnDarkTransparentInfoActive" - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefault: String = "surfaceOnDarkSolidDefault" - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefaultHover: String = "surfaceOnDarkSolidDefaultHover" - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefaultActive: String = "surfaceOnDarkSolidDefaultActive" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimary: String = "surfaceOnDarkTransparentPrimary" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimaryHover: String = "surfaceOnDarkTransparentPrimaryHover" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimaryActive: String = - "surfaceOnDarkTransparentPrimaryActive" - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondary: String = "surfaceOnDarkTransparentSecondary" - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondaryHover: String = - "surfaceOnDarkTransparentSecondaryHover" - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondaryActive: String = - "surfaceOnDarkTransparentSecondaryActive" - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiary: String = "surfaceOnDarkTransparentTertiary" - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiaryHover: String = - "surfaceOnDarkTransparentTertiaryHover" - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiaryActive: String = - "surfaceOnDarkTransparentTertiaryActive" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCard: String = "surfaceOnDarkTransparentCard" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardBrightness: String = - "surfaceOnDarkTransparentCardBrightness" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardHover: String = "surfaceOnDarkTransparentCardHover" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardActive: String = "surfaceOnDarkTransparentCardActive" - - /** - * light surface onDark surfaceTransparentPositive - */ - public val surfaceOnDarkTransparentPositive: String = "surfaceOnDarkTransparentPositive" - - /** - * light surface onDark surfaceTransparentWarning - */ - public val surfaceOnDarkTransparentWarning: String = "surfaceOnDarkTransparentWarning" - - /** - * light surface onDark surfaceTransparentNegative - */ - public val surfaceOnDarkTransparentNegative: String = "surfaceOnDarkTransparentNegative" - - /** - * light surface onDark surfaceSurfaceInfo - */ - public val surfaceOnDarkSurfaceInfo: String = "surfaceOnDarkSurfaceInfo" - - /** - * light surface onDark surfaceInfoMinor - */ - public val surfaceOnDarkInfoMinor: String = "surfaceOnDarkInfoMinor" - - /** - * light surface onDark surfaceTransparentInfo - */ - public val surfaceOnDarkTransparentInfo: String = "surfaceOnDarkTransparentInfo" - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryHover: String = "surfaceOnDarkSolidPrimaryHover" - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryActive: String = "surfaceOnDarkSolidPrimaryActive" - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidSecondaryHover: String = "surfaceOnDarkSolidSecondaryHover" - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidSecondaryActive: String = "surfaceOnDarkSolidSecondaryActive" - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiaryHover: String = "surfaceOnDarkSolidTertiaryHover" - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiaryActive: String = "surfaceOnDarkSolidTertiaryActive" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardHover: String = "surfaceOnDarkSolidCardHover" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardActive: String = "surfaceOnDarkSolidCardActive" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkTransparentDefaultHover: String = "surfaceOnDarkTransparentDefaultHover" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkTransparentDefaultActive: String = - "surfaceOnDarkTransparentDefaultActive" - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccentHover: String = "surfaceOnDarkAccentHover" - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccentActive: String = "surfaceOnDarkAccentActive" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositiveHover: String = "surfaceOnDarkPositiveHover" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositiveActive: String = "surfaceOnDarkPositiveActive" - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarningHover: String = "surfaceOnDarkWarningHover" - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarningActive: String = "surfaceOnDarkWarningActive" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeHover: String = "surfaceOnDarkNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeActive: String = "surfaceOnDarkNegativeActive" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClearHover: String = "surfaceOnDarkClearHover" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClearActive: String = "surfaceOnDarkClearActive" - - /** - * light surface onDark surfaceTransparentDeepHover - */ - public val surfaceOnDarkTransparentDeepHover: String = "surfaceOnDarkTransparentDeepHover" - - /** - * light surface onDark surfaceTransparentDeepActive - */ - public val surfaceOnDarkTransparentDeepActive: String = "surfaceOnDarkTransparentDeepActive" - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefault: String = "surfaceOnLightSolidDefault" - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidPrimary: String = "surfaceOnLightSolidPrimary" - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidPrimaryBrightness: String = "surfaceOnLightSolidPrimaryBrightness" - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidSecondary: String = "surfaceOnLightSolidSecondary" - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidTertiary: String = "surfaceOnLightSolidTertiary" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCard: String = "surfaceOnLightSolidCard" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardBrightness: String = "surfaceOnLightSolidCardBrightness" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightTransparentDefault: String = "surfaceOnLightTransparentDefault" - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPrimary: String = "surfaceOnLightTransparentPrimary" - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondary: String = "surfaceOnLightTransparentSecondary" - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiary: String = "surfaceOnLightTransparentTertiary" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCard: String = "surfaceOnLightTransparentCard" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardBrightness: String = - "surfaceOnLightTransparentCardBrightness" - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccent: String = "surfaceOnLightAccent" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositive: String = "surfaceOnLightPositive" - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarning: String = "surfaceOnLightWarning" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegative: String = "surfaceOnLightNegative" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClear: String = "surfaceOnLightClear" - - /** - * light surface onLight surfaceTransparentDeep - */ - public val surfaceOnLightTransparentDeep: String = "surfaceOnLightTransparentDeep" - - /** - * light surface onLight surfaceAccentMinor - */ - public val surfaceOnLightAccentMinor: String = "surfaceOnLightAccentMinor" - - /** - * light surface onLight surfaceAccentMinorHover - */ - public val surfaceOnLightAccentMinorHover: String = "surfaceOnLightAccentMinorHover" - - /** - * light surface onLight surfaceAccentMinorActive - */ - public val surfaceOnLightAccentMinorActive: String = "surfaceOnLightAccentMinorActive" - - /** - * light surface onLight surfaceTransparentAccent - */ - public val surfaceOnLightTransparentAccent: String = "surfaceOnLightTransparentAccent" - - /** - * light surface onLight surfaceTransparentAccentHover - */ - public val surfaceOnLightTransparentAccentHover: String = "surfaceOnLightTransparentAccentHover" - - /** - * light surface onLight surfaceTransparentAccentActive - */ - public val surfaceOnLightTransparentAccentActive: String = - "surfaceOnLightTransparentAccentActive" - - /** - * light surface onLight surfaceInfoHover - */ - public val surfaceOnLightInfoHover: String = "surfaceOnLightInfoHover" - - /** - * light surface onLight surfaceInfoActive - */ - public val surfaceOnLightInfoActive: String = "surfaceOnLightInfoActive" - - /** - * light surface onLight surfacePositiveMinor - */ - public val surfaceOnLightPositiveMinor: String = "surfaceOnLightPositiveMinor" - - /** - * light surface onLight surfacePositiveMinorHover - */ - public val surfaceOnLightPositiveMinorHover: String = "surfaceOnLightPositiveMinorHover" - - /** - * light surface onLight surfacePositiveMinorActive - */ - public val surfaceOnLightPositiveMinorActive: String = "surfaceOnLightPositiveMinorActive" - - /** - * light surface onLight surfaceWarningMinor - */ - public val surfaceOnLightWarningMinor: String = "surfaceOnLightWarningMinor" - - /** - * light surface onLight surfaceWarningMinorHover - */ - public val surfaceOnLightWarningMinorHover: String = "surfaceOnLightWarningMinorHover" - - /** - * light surface onLight surfaceWarningMinorActive - */ - public val surfaceOnLightWarningMinorActive: String = "surfaceOnLightWarningMinorActive" - - /** - * light surface onLight surfaceNegativeMinor - */ - public val surfaceOnLightNegativeMinor: String = "surfaceOnLightNegativeMinor" - - /** - * light surface onLight surfaceNegativeMinorHover - */ - public val surfaceOnLightNegativeMinorHover: String = "surfaceOnLightNegativeMinorHover" - - /** - * light surface onLight surfaceNegativeMinorActive - */ - public val surfaceOnLightNegativeMinorActive: String = "surfaceOnLightNegativeMinorActive" - - /** - * light surface onLight surfaceInfoMinorHover - */ - public val surfaceOnLightInfoMinorHover: String = "surfaceOnLightInfoMinorHover" - - /** - * light surface onLight surfaceInfoMinorActive - */ - public val surfaceOnLightInfoMinorActive: String = "surfaceOnLightInfoMinorActive" - - /** - * light surface onLight surfaceTransparentPositiveHover - */ - public val surfaceOnLightTransparentPositiveHover: String = - "surfaceOnLightTransparentPositiveHover" - - /** - * light surface onLight surfaceTransparentPositiveActive - */ - public val surfaceOnLightTransparentPositiveActive: String = - "surfaceOnLightTransparentPositiveActive" - - /** - * light surface onLight surfaceTransparentWarningHover - */ - public val surfaceOnLightTransparentWarningHover: String = - "surfaceOnLightTransparentWarningHover" - - /** - * light surface onLight surfaceTransparentWarningActive - */ - public val surfaceOnLightTransparentWarningActive: String = - "surfaceOnLightTransparentWarningActive" - - /** - * light surface onLight surfaceTransparentNegativeHover - */ - public val surfaceOnLightTransparentNegativeHover: String = - "surfaceOnLightTransparentNegativeHover" - - /** - * light surface onLight surfaceTransparentNegativeActive - */ - public val surfaceOnLightTransparentNegativeActive: String = - "surfaceOnLightTransparentNegativeActive" - - /** - * light surface onLight surfaceTransparentInfoHover - */ - public val surfaceOnLightTransparentInfoHover: String = "surfaceOnLightTransparentInfoHover" - - /** - * light surface onLight surfaceTransparentInfoActive - */ - public val surfaceOnLightTransparentInfoActive: String = "surfaceOnLightTransparentInfoActive" - - /** - * light surface onLight surfaceTransparentPositive - */ - public val surfaceOnLightTransparentPositive: String = "surfaceOnLightTransparentPositive" - - /** - * light surface onLight surfaceTransparentWarning - */ - public val surfaceOnLightTransparentWarning: String = "surfaceOnLightTransparentWarning" - - /** - * light surface onLight surfaceTransparentNegative - */ - public val surfaceOnLightTransparentNegative: String = "surfaceOnLightTransparentNegative" - - /** - * light surface onLight surfaceInfo - */ - public val surfaceOnLightInfo: String = "surfaceOnLightInfo" - - /** - * light surface onLight surfaceInfoMinor - */ - public val surfaceOnLightInfoMinor: String = "surfaceOnLightInfoMinor" - - /** - * light surface onLight surfaceTransparentInfo - */ - public val surfaceOnLightTransparentInfo: String = "surfaceOnLightTransparentInfo" - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefaultHover: String = "surfaceOnLightSolidDefaultHover" - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefaultActive: String = "surfaceOnLightSolidDefaultActive" - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidPrimaryHover: String = "surfaceOnLightSolidPrimaryHover" - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidPrimaryActive: String = "surfaceOnLightSolidPrimaryActive" - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidSecondaryHover: String = "surfaceOnLightSolidSecondaryHover" - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidSecondaryActive: String = "surfaceOnLightSolidSecondaryActive" - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidTertiaryHover: String = "surfaceOnLightSolidTertiaryHover" - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightSolidTertiaryActive: String = "surfaceOnLightSolidTertiaryActive" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardHover: String = "surfaceOnLightSolidCardHover" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardActive: String = "surfaceOnLightSolidCardActive" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightTransparentDefaultHover: String = - "surfaceOnLightTransparentDefaultHover" - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightTransparentDefaultActive: String = - "surfaceOnLightTransparentDefaultActive" - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPrimaryHover: String = - "surfaceOnLightTransparentPrimaryHover" - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPrimaryActive: String = - "surfaceOnLightTransparentPrimaryActive" - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondaryHover: String = - "surfaceOnLightTransparentSecondaryHover" - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondaryActive: String = - "surfaceOnLightTransparentSecondaryActive" - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiaryHover: String = - "surfaceOnLightTransparentTertiaryHover" - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiaryActive: String = - "surfaceOnLightTransparentTertiaryActive" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardHover: String = "surfaceOnLightTransparentCardHover" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardActive: String = "surfaceOnLightTransparentCardActive" - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccentHover: String = "surfaceOnLightAccentHover" - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccentActive: String = "surfaceOnLightAccentActive" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositiveHover: String = "surfaceOnLightPositiveHover" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositiveActive: String = "surfaceOnLightPositiveActive" - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarningHover: String = "surfaceOnLightWarningHover" - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarningActive: String = "surfaceOnLightWarningActive" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeHover: String = "surfaceOnLightNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeActive: String = "surfaceOnLightNegativeActive" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClearHover: String = "surfaceOnLightClearHover" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClearActive: String = "surfaceOnLightClearActive" - - /** - * light surface onLight surfaceTransparentDeepHover - */ - public val surfaceOnLightTransparentDeepHover: String = "surfaceOnLightTransparentDeepHover" - - /** - * light surface onLight surfaceTransparentDeepActive - */ - public val surfaceOnLightTransparentDeepActive: String = "surfaceOnLightTransparentDeepActive" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefault: String = "surfaceInverseSolidDefault" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimary: String = "surfaceInverseSolidPrimary" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryBrightness: String = "surfaceInverseSolidPrimaryBrightness" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondary: String = "surfaceInverseSolidSecondary" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiary: String = "surfaceInverseSolidTertiary" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCard: String = "surfaceInverseSolidCard" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardBrightness: String = "surfaceInverseSolidCardBrightness" - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseTransparentDefault: String = "surfaceInverseTransparentDefault" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimary: String = "surfaceInverseTransparentPrimary" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondary: String = "surfaceInverseTransparentSecondary" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiary: String = "surfaceInverseTransparentTertiary" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCard: String = "surfaceInverseTransparentCard" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardBrightness: String = - "surfaceInverseTransparentCardBrightness" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccent: String = "surfaceInverseAccent" - - /** - * Инвертированный цвет успеха - */ - public val surfaceInversePositive: String = "surfaceInversePositive" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarning: String = "surfaceInverseWarning" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegative: String = "surfaceInverseNegative" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClear: String = "surfaceInverseClear" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefaultHover: String = "surfaceInverseSolidDefaultHover" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefaultActive: String = "surfaceInverseSolidDefaultActive" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryHover: String = "surfaceInverseSolidPrimaryHover" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryActive: String = "surfaceInverseSolidPrimaryActive" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondaryHover: String = "surfaceInverseSolidSecondaryHover" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondaryActive: String = "surfaceInverseSolidSecondaryActive" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiaryHover: String = "surfaceInverseSolidTertiaryHover" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiaryActive: String = "surfaceInverseSolidTertiaryActive" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardHover: String = "surfaceInverseSolidCardHover" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardActive: String = "surfaceInverseSolidCardActive" - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseTransparentDefaultHover: String = - "surfaceInverseTransparentDefaultHover" - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseTransparentDefaultActive: String = - "surfaceInverseTransparentDefaultActive" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimaryHover: String = - "surfaceInverseTransparentPrimaryHover" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimaryActive: String = - "surfaceInverseTransparentPrimaryActive" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondaryHover: String = - "surfaceInverseTransparentSecondaryHover" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondaryActive: String = - "surfaceInverseTransparentSecondaryActive" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiaryHover: String = - "surfaceInverseTransparentTertiaryHover" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiaryActive: String = - "surfaceInverseTransparentTertiaryActive" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardHover: String = "surfaceInverseTransparentCardHover" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardActive: String = "surfaceInverseTransparentCardActive" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccentHover: String = "surfaceInverseAccentHover" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccentActive: String = "surfaceInverseAccentActive" - - /** - * Инвертированный цвет успеха - */ - public val surfaceInversePositiveHover: String = "surfaceInversePositiveHover" - - /** - * Инвертированный цвет успеха - */ - public val surfaceInversePositiveActive: String = "surfaceInversePositiveActive" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningHover: String = "surfaceInverseWarningHover" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningActive: String = "surfaceInverseWarningActive" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeHover: String = "surfaceInverseNegativeHover" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeActive: String = "surfaceInverseNegativeActive" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClearHover: String = "surfaceInverseClearHover" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClearActive: String = "surfaceInverseClearActive" - - /** - * light surface inverse surfaceTransparentDeep - */ - public val surfaceInverseTransparentDeep: String = "surfaceInverseTransparentDeep" - - /** - * light surface inverse surfaceTransparentDeepHover - */ - public val surfaceInverseTransparentDeepHover: String = "surfaceInverseTransparentDeepHover" - - /** - * light surface inverse surfaceTransparentDeepActive - */ - public val surfaceInverseTransparentDeepActive: String = "surfaceInverseTransparentDeepActive" - - /** - * light surface inverse surfaceAccentMinor - */ - public val surfaceInverseAccentMinor: String = "surfaceInverseAccentMinor" - - /** - * light surface inverse surfaceAccentMinorHover - */ - public val surfaceInverseAccentMinorHover: String = "surfaceInverseAccentMinorHover" - - /** - * light surface inverse surfaceAccentMinorActive - */ - public val surfaceInverseAccentMinorActive: String = "surfaceInverseAccentMinorActive" - - /** - * light surface inverse surfaceTransparentAccent - */ - public val surfaceInverseTransparentAccent: String = "surfaceInverseTransparentAccent" - - /** - * light surface inverse surfaceTransparentAccentHover - */ - public val surfaceInverseTransparentAccentHover: String = "surfaceInverseTransparentAccentHover" - - /** - * light surface inverse surfaceTransparentAccentActive - */ - public val surfaceInverseTransparentAccentActive: String = - "surfaceInverseTransparentAccentActive" - - /** - * light surface inverse surfaceInfo - */ - public val surfaceInverseInfo: String = "surfaceInverseInfo" - - /** - * light surface inverse surfaceInfoHover - */ - public val surfaceInverseInfoHover: String = "surfaceInverseInfoHover" - - /** - * light surface inverse surfaceInfoActive - */ - public val surfaceInverseInfoActive: String = "surfaceInverseInfoActive" - - /** - * light surface inverse surfacePositiveMinor - */ - public val surfaceInversePositiveMinor: String = "surfaceInversePositiveMinor" - - /** - * light surface inverse surfacePositiveMinorHover - */ - public val surfaceInversePositiveMinorHover: String = "surfaceInversePositiveMinorHover" - - /** - * light surface inverse surfacePositiveMinorActive - */ - public val surfaceInversePositiveMinorActive: String = "surfaceInversePositiveMinorActive" - - /** - * light surface inverse surfaceWarningMinor - */ - public val surfaceInverseWarningMinor: String = "surfaceInverseWarningMinor" - - /** - * light surface inverse surfaceWarningMinorHover - */ - public val surfaceInverseWarningMinorHover: String = "surfaceInverseWarningMinorHover" - - /** - * light surface inverse surfaceWarningMinorActive - */ - public val surfaceInverseWarningMinorActive: String = "surfaceInverseWarningMinorActive" - - /** - * light surface inverse surfaceNegativeMinor - */ - public val surfaceInverseNegativeMinor: String = "surfaceInverseNegativeMinor" - - /** - * light surface inverse surfaceNegativeMinorHover - */ - public val surfaceInverseNegativeMinorHover: String = "surfaceInverseNegativeMinorHover" - - /** - * light surface inverse surfaceNegativeMinorActive - */ - public val surfaceInverseNegativeMinorActive: String = "surfaceInverseNegativeMinorActive" - - /** - * light surface inverse surfaceInfoMinor - */ - public val surfaceInverseInfoMinor: String = "surfaceInverseInfoMinor" - - /** - * light surface inverse surfaceInfoMinorHover - */ - public val surfaceInverseInfoMinorHover: String = "surfaceInverseInfoMinorHover" - - /** - * light surface inverse surfaceInfoMinorActive - */ - public val surfaceInverseInfoMinorActive: String = "surfaceInverseInfoMinorActive" - - /** - * light surface inverse surfaceTransparentPositive - */ - public val surfaceInverseTransparentPositive: String = "surfaceInverseTransparentPositive" - - /** - * light surface inverse surfaceTransparentPositiveHover - */ - public val surfaceInverseTransparentPositiveHover: String = - "surfaceInverseTransparentPositiveHover" - - /** - * light surface inverse surfaceTransparentPositiveActive - */ - public val surfaceInverseTransparentPositiveActive: String = - "surfaceInverseTransparentPositiveActive" - - /** - * light surface inverse surfaceTransparentWarning - */ - public val surfaceInverseTransparentWarning: String = "surfaceInverseTransparentWarning" - - /** - * light surface inverse surfaceTransparentWarningHover - */ - public val surfaceInverseTransparentWarningHover: String = - "surfaceInverseTransparentWarningHover" - - /** - * light surface inverse surfaceTransparentWarningActive - */ - public val surfaceInverseTransparentWarningActive: String = - "surfaceInverseTransparentWarningActive" - - /** - * light surface inverse surfaceTransparentNegative - */ - public val surfaceInverseTransparentNegative: String = "surfaceInverseTransparentNegative" - - /** - * light surface inverse surfaceTransparentNegativeHover - */ - public val surfaceInverseTransparentNegativeHover: String = - "surfaceInverseTransparentNegativeHover" - - /** - * light surface inverse surfaceTransparentNegativeActive - */ - public val surfaceInverseTransparentNegativeActive: String = - "surfaceInverseTransparentNegativeActive" - - /** - * light surface inverse surfaceTransparentInfo - */ - public val surfaceInverseTransparentInfo: String = "surfaceInverseTransparentInfo" - - /** - * light surface inverse surfaceTransparentInfoHover - */ - public val surfaceInverseTransparentInfoHover: String = "surfaceInverseTransparentInfoHover" - - /** - * light surface inverse surfaceTransparentInfoActive - */ - public val surfaceInverseTransparentInfoActive: String = "surfaceInverseTransparentInfoActive" - - /** - * Основной фон - */ - public val backgroundDefaultPrimary: String = "backgroundDefaultPrimary" - - /** - * Основной фон - */ - public val backgroundDefaultPrimaryBrightness: String = "backgroundDefaultPrimaryBrightness" - - /** - * Вторичный фон - */ - public val backgroundDefaultSecondary: String = "backgroundDefaultSecondary" - - /** - * Третичный фон - */ - public val backgroundDefaultTertiary: String = "backgroundDefaultTertiary" - - /** - * Основной фон на темном фоне - */ - public val backgroundDarkPrimary: String = "backgroundDarkPrimary" - - /** - * Вторичный фон на темном фоне - */ - public val backgroundDarkSecondary: String = "backgroundDarkSecondary" - - /** - * Третичный фон на темном фоне - */ - public val backgroundDarkTertiary: String = "backgroundDarkTertiary" - - /** - * Основной фон на светлом фоне - */ - public val backgroundLightPrimary: String = "backgroundLightPrimary" - - /** - * Вторичный фон на светлом фоне - */ - public val backgroundLightSecondary: String = "backgroundLightSecondary" - - /** - * Третичный фон на светлом фоне - */ - public val backgroundLightTertiary: String = "backgroundLightTertiary" - - /** - * Инвертированный основной фон - */ - public val backgroundInversePrimaryBrightness: String = "backgroundInversePrimaryBrightness" - - /** - * Инвертированный вторичный фон - */ - public val backgroundInverseSecondary: String = "backgroundInverseSecondary" - - /** - * Инвертированный третичный фон - */ - public val backgroundInverseTertiary: String = "backgroundInverseTertiary" - - /** - * Инвертированный основной фон - */ - public val backgroundInversePrimary: String = "backgroundInversePrimary" - - /** - * Цвет фона паранжи светлый - */ - public val overlayDefaultSoft: String = "overlayDefaultSoft" - - /** - * Цвет фона паранжи темный - */ - public val overlayDefaultHard: String = "overlayDefaultHard" - - /** - * light overlay default overlayBlur - */ - public val overlayDefaultBlur: String = "overlayDefaultBlur" - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val overlayOnDarkSoft: String = "overlayOnDarkSoft" - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val overlayOnDarkHard: String = "overlayOnDarkHard" - - /** - * light overlay onDark overlayBlur - */ - public val overlayOnDarkBlur: String = "overlayOnDarkBlur" - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val overlayOnLightSoft: String = "overlayOnLightSoft" - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val overlayOnLightHard: String = "overlayOnLightHard" - - /** - * light overlay onLight overlayBlur - */ - public val overlayOnLightBlur: String = "overlayOnLightBlur" - - /** - * Инвертированный цвет фона паранжи темный - */ - public val overlayInverseHard: String = "overlayInverseHard" - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val overlayInverseSoft: String = "overlayInverseSoft" - - /** - * light overlay inverse overlayBlur - */ - public val overlayInverseBlur: String = "overlayInverseBlur" - - /** - * light outline default outlineSecondaryHover - */ - public val outlineDefaultSecondaryHover: String = "outlineDefaultSecondaryHover" - - /** - * light outline default outlineSecondaryActive - */ - public val outlineDefaultSecondaryActive: String = "outlineDefaultSecondaryActive" - - /** - * light outline default outlineTertiaryHover - */ - public val outlineDefaultTertiaryHover: String = "outlineDefaultTertiaryHover" - - /** - * light outline default outlineTertiaryActive - */ - public val outlineDefaultTertiaryActive: String = "outlineDefaultTertiaryActive" - - /** - * light outline default outlineDefaultHover - */ - public val outlineDefaultDefaultHover: String = "outlineDefaultDefaultHover" - - /** - * light outline default outlineDefaultActive - */ - public val outlineDefaultDefaultActive: String = "outlineDefaultDefaultActive" - - /** - * light outline default outlineTransparentPrimaryHover - */ - public val outlineDefaultTransparentPrimaryHover: String = - "outlineDefaultTransparentPrimaryHover" - - /** - * light outline default outlineTransparentPrimaryActive - */ - public val outlineDefaultTransparentPrimaryActive: String = - "outlineDefaultTransparentPrimaryActive" - - /** - * light outline default outlineTransparentSecondaryHover - */ - public val outlineDefaultTransparentSecondaryHover: String = - "outlineDefaultTransparentSecondaryHover" - - /** - * light outline default outlineTransparentSecondaryActive - */ - public val outlineDefaultTransparentSecondaryActive: String = - "outlineDefaultTransparentSecondaryActive" - - /** - * light outline default outlineTransparentTertiaryHover - */ - public val outlineDefaultTransparentTertiaryHover: String = - "outlineDefaultTransparentTertiaryHover" - - /** - * light outline default outlineTransparentTertiaryActive - */ - public val outlineDefaultTransparentTertiaryActive: String = - "outlineDefaultTransparentTertiaryActive" - - /** - * light outline default outlineTransparentClearHover - */ - public val outlineDefaultTransparentClearHover: String = "outlineDefaultTransparentClearHover" - - /** - * light outline default outlineTransparentClearActive - */ - public val outlineDefaultTransparentClearActive: String = "outlineDefaultTransparentClearActive" - - /** - * light outline default outlineAccentHover - */ - public val outlineDefaultAccentHover: String = "outlineDefaultAccentHover" - - /** - * light outline default outlineAccentActive - */ - public val outlineDefaultAccentActive: String = "outlineDefaultAccentActive" - - /** - * light outline default outlineAccentMinorHover - */ - public val outlineDefaultAccentMinorHover: String = "outlineDefaultAccentMinorHover" - - /** - * light outline default outlineAccentMinorActive - */ - public val outlineDefaultAccentMinorActive: String = "outlineDefaultAccentMinorActive" - - /** - * light outline default outlineTransparentAccentHover - */ - public val outlineDefaultTransparentAccentHover: String = "outlineDefaultTransparentAccentHover" - - /** - * light outline default outlineTransparentAccentActive - */ - public val outlineDefaultTransparentAccentActive: String = - "outlineDefaultTransparentAccentActive" - - /** - * light outline default outlinePositiveHover - */ - public val outlineDefaultPositiveHover: String = "outlineDefaultPositiveHover" - - /** - * light outline default outlinePositiveActive - */ - public val outlineDefaultPositiveActive: String = "outlineDefaultPositiveActive" - - /** - * light outline default outlineWarningHover - */ - public val outlineDefaultWarningHover: String = "outlineDefaultWarningHover" - - /** - * light outline default outlineWarningActive - */ - public val outlineDefaultWarningActive: String = "outlineDefaultWarningActive" - - /** - * light outline default outlineNegativeHover - */ - public val outlineDefaultNegativeHover: String = "outlineDefaultNegativeHover" - - /** - * light outline default outlineNegativeActive - */ - public val outlineDefaultNegativeActive: String = "outlineDefaultNegativeActive" - - /** - * light outline default outlineInfoHover - */ - public val outlineDefaultInfoHover: String = "outlineDefaultInfoHover" - - /** - * light outline default outlineInfoActive - */ - public val outlineDefaultInfoActive: String = "outlineDefaultInfoActive" - - /** - * light outline default outlinePositiveMinorHover - */ - public val outlineDefaultPositiveMinorHover: String = "outlineDefaultPositiveMinorHover" - - /** - * light outline default outlinePositiveMinorActive - */ - public val outlineDefaultPositiveMinorActive: String = "outlineDefaultPositiveMinorActive" - - /** - * light outline default outlineWarningMinorHover - */ - public val outlineDefaultWarningMinorHover: String = "outlineDefaultWarningMinorHover" - - /** - * light outline default outlineWarningMinorActive - */ - public val outlineDefaultWarningMinorActive: String = "outlineDefaultWarningMinorActive" - - /** - * light outline default outlineNegativeMinorHover - */ - public val outlineDefaultNegativeMinorHover: String = "outlineDefaultNegativeMinorHover" - - /** - * light outline default outlineNegativeMinorActive - */ - public val outlineDefaultNegativeMinorActive: String = "outlineDefaultNegativeMinorActive" - - /** - * light outline default outlineInfoMinorHover - */ - public val outlineDefaultInfoMinorHover: String = "outlineDefaultInfoMinorHover" - - /** - * light outline default outlineInfoMinorActive - */ - public val outlineDefaultInfoMinorActive: String = "outlineDefaultInfoMinorActive" - - /** - * light outline default outlineTransparentPositiveHover - */ - public val outlineDefaultTransparentPositiveHover: String = - "outlineDefaultTransparentPositiveHover" - - /** - * light outline default outlineTransparentPositiveActive - */ - public val outlineDefaultTransparentPositiveActive: String = - "outlineDefaultTransparentPositiveActive" - - /** - * light outline default outlineTransparentWarningHover - */ - public val outlineDefaultTransparentWarningHover: String = - "outlineDefaultTransparentWarningHover" - - /** - * light outline default outlineTransparentWarningActive - */ - public val outlineDefaultTransparentWarningActive: String = - "outlineDefaultTransparentWarningActive" - - /** - * light outline default outlineNegativeTransparentHover - */ - public val outlineDefaultNegativeTransparentHover: String = - "outlineDefaultNegativeTransparentHover" - - /** - * light outline default outlineNegativeTransparentActive - */ - public val outlineDefaultNegativeTransparentActive: String = - "outlineDefaultNegativeTransparentActive" - - /** - * light outline default outlineTransparentInfoHover - */ - public val outlineDefaultTransparentInfoHover: String = "outlineDefaultTransparentInfoHover" - - /** - * light outline default outlineTransparentInfoActive - */ - public val outlineDefaultTransparentInfoActive: String = "outlineDefaultTransparentInfoActive" - - /** - * light outline default outlinePrimaryHover - */ - public val outlineDefaultPrimaryHover: String = "outlineDefaultPrimaryHover" - - /** - * light outline default outlinePrimaryActive - */ - public val outlineDefaultPrimaryActive: String = "outlineDefaultPrimaryActive" - - /** - * light outline default outlineTransparentPrimary - */ - public val outlineDefaultTransparentPrimary: String = "outlineDefaultTransparentPrimary" - - /** - * light outline default outlineTransparentSecondary - */ - public val outlineDefaultTransparentSecondary: String = "outlineDefaultTransparentSecondary" - - /** - * light outline default outlineTransparentTertiary - */ - public val outlineDefaultTransparentTertiary: String = "outlineDefaultTransparentTertiary" - - /** - * light outline default outlineTransparentClear - */ - public val outlineDefaultTransparentClear: String = "outlineDefaultTransparentClear" - - /** - * light outline default outlineAccent - */ - public val outlineDefaultAccent: String = "outlineDefaultAccent" - - /** - * light outline default outlineAccentMinor - */ - public val outlineDefaultAccentMinor: String = "outlineDefaultAccentMinor" - - /** - * light outline default outlineTransparentAccent - */ - public val outlineDefaultTransparentAccent: String = "outlineDefaultTransparentAccent" - - /** - * light outline default outlinePositive - */ - public val outlineDefaultPositive: String = "outlineDefaultPositive" - - /** - * light outline default outlineWarning - */ - public val outlineDefaultWarning: String = "outlineDefaultWarning" - - /** - * light outline default outlineNegative - */ - public val outlineDefaultNegative: String = "outlineDefaultNegative" - - /** - * light outline default outlinePositiveMinor - */ - public val outlineDefaultPositiveMinor: String = "outlineDefaultPositiveMinor" - - /** - * light outline default outlineWarningMinor - */ - public val outlineDefaultWarningMinor: String = "outlineDefaultWarningMinor" - - /** - * light outline default outlineNegativeMinor - */ - public val outlineDefaultNegativeMinor: String = "outlineDefaultNegativeMinor" - - /** - * light outline default outlineTransparentPositive - */ - public val outlineDefaultTransparentPositive: String = "outlineDefaultTransparentPositive" - - /** - * light outline default outlineTransparentWarning - */ - public val outlineDefaultTransparentWarning: String = "outlineDefaultTransparentWarning" - - /** - * light outline default outlineTransparentNegative - */ - public val outlineDefaultTransparentNegative: String = "outlineDefaultTransparentNegative" - - /** - * light outline default outlineTransparentNegativeHover - */ - public val outlineDefaultTransparentNegativeHover: String = - "outlineDefaultTransparentNegativeHover" - - /** - * light outline default outlineTransparentNegativeActive - */ - public val outlineDefaultTransparentNegativeActive: String = - "outlineDefaultTransparentNegativeActive" - - /** - * light outline default outlineInfo - */ - public val outlineDefaultInfo: String = "outlineDefaultInfo" - - /** - * light outline default outlineInfoMinor - */ - public val outlineDefaultInfoMinor: String = "outlineDefaultInfoMinor" - - /** - * light outline default outlineTransparentInfo - */ - public val outlineDefaultTransparentInfo: String = "outlineDefaultTransparentInfo" - - /** - * light outline default outlineSolidPrimaryHover - */ - public val outlineDefaultSolidPrimaryHover: String = "outlineDefaultSolidPrimaryHover" - - /** - * light outline default outlineSolidPrimaryActive - */ - public val outlineDefaultSolidPrimaryActive: String = "outlineDefaultSolidPrimaryActive" - - /** - * light outline default outlineSolidSecondaryHover - */ - public val outlineDefaultSolidSecondaryHover: String = "outlineDefaultSolidSecondaryHover" - - /** - * light outline default outlineSolidSecondaryActive - */ - public val outlineDefaultSolidSecondaryActive: String = "outlineDefaultSolidSecondaryActive" - - /** - * light outline default outlineSolidTertiaryHover - */ - public val outlineDefaultSolidTertiaryHover: String = "outlineDefaultSolidTertiaryHover" - - /** - * light outline default outlineSolidTertiaryActive - */ - public val outlineDefaultSolidTertiaryActive: String = "outlineDefaultSolidTertiaryActive" - - /** - * light outline default outlineSolidDefaultHover - */ - public val outlineDefaultSolidDefaultHover: String = "outlineDefaultSolidDefaultHover" - - /** - * light outline default outlineSolidDefaultActive - */ - public val outlineDefaultSolidDefaultActive: String = "outlineDefaultSolidDefaultActive" - - /** - * light outline default outlineSolidPrimary - */ - public val outlineDefaultSolidPrimary: String = "outlineDefaultSolidPrimary" - - /** - * light outline default outlineSolidSecondary - */ - public val outlineDefaultSolidSecondary: String = "outlineDefaultSolidSecondary" - - /** - * light outline default outlineSolidTertiary - */ - public val outlineDefaultSolidTertiary: String = "outlineDefaultSolidTertiary" - - /** - * light outline default outlineSolidDefault - */ - public val outlineDefaultSolidDefault: String = "outlineDefaultSolidDefault" - - /** - * light outline onDark outlineSecondaryHover - */ - public val outlineOnDarkSecondaryHover: String = "outlineOnDarkSecondaryHover" - - /** - * light outline onDark outlineSecondaryActive - */ - public val outlineOnDarkSecondaryActive: String = "outlineOnDarkSecondaryActive" - - /** - * light outline onDark outlineTertiaryHover - */ - public val outlineOnDarkTertiaryHover: String = "outlineOnDarkTertiaryHover" - - /** - * light outline onDark outlineTertiaryActive - */ - public val outlineOnDarkTertiaryActive: String = "outlineOnDarkTertiaryActive" - - /** - * light outline onDark outlineDefaultHover - */ - public val outlineOnDarkDefaultHover: String = "outlineOnDarkDefaultHover" - - /** - * light outline onDark outlineDefaultActive - */ - public val outlineOnDarkDefaultActive: String = "outlineOnDarkDefaultActive" - - /** - * light outline onDark outlineTransparentPrimary - */ - public val outlineOnDarkTransparentPrimary: String = "outlineOnDarkTransparentPrimary" - - /** - * light outline onDark outlineTransparentPrimaryHover - */ - public val outlineOnDarkTransparentPrimaryHover: String = "outlineOnDarkTransparentPrimaryHover" - - /** - * light outline onDark outlineTransparentPrimaryActive - */ - public val outlineOnDarkTransparentPrimaryActive: String = - "outlineOnDarkTransparentPrimaryActive" - - /** - * light outline onDark outlineTransparentSecondary - */ - public val outlineOnDarkTransparentSecondary: String = "outlineOnDarkTransparentSecondary" - - /** - * light outline onDark outlineTransparentSecondaryHover - */ - public val outlineOnDarkTransparentSecondaryHover: String = - "outlineOnDarkTransparentSecondaryHover" - - /** - * light outline onDark outlineTransparentSecondaryActive - */ - public val outlineOnDarkTransparentSecondaryActive: String = - "outlineOnDarkTransparentSecondaryActive" - - /** - * light outline onDark outlineTransparentTertiary - */ - public val outlineOnDarkTransparentTertiary: String = "outlineOnDarkTransparentTertiary" - - /** - * light outline onDark outlineTransparentTertiaryHover - */ - public val outlineOnDarkTransparentTertiaryHover: String = - "outlineOnDarkTransparentTertiaryHover" - - /** - * light outline onDark outlineTransparentTertiaryActive - */ - public val outlineOnDarkTransparentTertiaryActive: String = - "outlineOnDarkTransparentTertiaryActive" - - /** - * light outline onDark outlineAccent - */ - public val outlineOnDarkAccent: String = "outlineOnDarkAccent" - - /** - * light outline onDark outlineAccentHover - */ - public val outlineOnDarkAccentHover: String = "outlineOnDarkAccentHover" - - /** - * light outline onDark outlineAccentActive - */ - public val outlineOnDarkAccentActive: String = "outlineOnDarkAccentActive" - - /** - * light outline onDark outlineAccentMinor - */ - public val outlineOnDarkAccentMinor: String = "outlineOnDarkAccentMinor" - - /** - * light outline onDark outlineAccentMinorHover - */ - public val outlineOnDarkAccentMinorHover: String = "outlineOnDarkAccentMinorHover" - - /** - * light outline onDark outlineAccentMinorActive - */ - public val outlineOnDarkAccentMinorActive: String = "outlineOnDarkAccentMinorActive" - - /** - * light outline onDark outlineTransparentAccent - */ - public val outlineOnDarkTransparentAccent: String = "outlineOnDarkTransparentAccent" - - /** - * light outline onDark outlineTransparentAccentHover - */ - public val outlineOnDarkTransparentAccentHover: String = "outlineOnDarkTransparentAccentHover" - - /** - * light outline onDark outlineTransparentAccentActive - */ - public val outlineOnDarkTransparentAccentActive: String = "outlineOnDarkTransparentAccentActive" - - /** - * light outline onDark outlinePositive - */ - public val outlineOnDarkPositive: String = "outlineOnDarkPositive" - - /** - * light outline onDark outlinePositiveHover - */ - public val outlineOnDarkPositiveHover: String = "outlineOnDarkPositiveHover" - - /** - * light outline onDark outlinePositiveActive - */ - public val outlineOnDarkPositiveActive: String = "outlineOnDarkPositiveActive" - - /** - * light outline onDark outlineWarning - */ - public val outlineOnDarkWarning: String = "outlineOnDarkWarning" - - /** - * light outline onDark outlineWarningHover - */ - public val outlineOnDarkWarningHover: String = "outlineOnDarkWarningHover" - - /** - * light outline onDark outlineWarningActive - */ - public val outlineOnDarkWarningActive: String = "outlineOnDarkWarningActive" - - /** - * light outline onDark outlineNegative - */ - public val outlineOnDarkNegative: String = "outlineOnDarkNegative" - - /** - * light outline onDark outlineNegativeHover - */ - public val outlineOnDarkNegativeHover: String = "outlineOnDarkNegativeHover" - - /** - * light outline onDark outlineNegativeActive - */ - public val outlineOnDarkNegativeActive: String = "outlineOnDarkNegativeActive" - - /** - * light outline onDark outlineInfoHover - */ - public val outlineOnDarkInfoHover: String = "outlineOnDarkInfoHover" - - /** - * light outline onDark outlineInfoActive - */ - public val outlineOnDarkInfoActive: String = "outlineOnDarkInfoActive" - - /** - * light outline onDark outlinePositiveMinor - */ - public val outlineOnDarkPositiveMinor: String = "outlineOnDarkPositiveMinor" - - /** - * light outline onDark outlinePositiveMinorHover - */ - public val outlineOnDarkPositiveMinorHover: String = "outlineOnDarkPositiveMinorHover" - - /** - * light outline onDark outlinePositiveMinorActive - */ - public val outlineOnDarkPositiveMinorActive: String = "outlineOnDarkPositiveMinorActive" - - /** - * light outline onDark outlineWarningMinor - */ - public val outlineOnDarkWarningMinor: String = "outlineOnDarkWarningMinor" - - /** - * light outline onDark outlineWarningMinorHover - */ - public val outlineOnDarkWarningMinorHover: String = "outlineOnDarkWarningMinorHover" - - /** - * light outline onDark outlineWarningMinorActive - */ - public val outlineOnDarkWarningMinorActive: String = "outlineOnDarkWarningMinorActive" - - /** - * light outline onDark outlineNegativeMinor - */ - public val outlineOnDarkNegativeMinor: String = "outlineOnDarkNegativeMinor" - - /** - * light outline onDark outlineNegativeMinorHover - */ - public val outlineOnDarkNegativeMinorHover: String = "outlineOnDarkNegativeMinorHover" - - /** - * light outline onDark outlineNegativeMinorActive - */ - public val outlineOnDarkNegativeMinorActive: String = "outlineOnDarkNegativeMinorActive" - - /** - * light outline onDark outlineInfoMinorHover - */ - public val outlineOnDarkInfoMinorHover: String = "outlineOnDarkInfoMinorHover" - - /** - * light outline onDark outlineInfoMinorActive - */ - public val outlineOnDarkInfoMinorActive: String = "outlineOnDarkInfoMinorActive" - - /** - * light outline onDark outlineTransparentPositive - */ - public val outlineOnDarkTransparentPositive: String = "outlineOnDarkTransparentPositive" - - /** - * light outline onDark outlineTransparentPositiveHover - */ - public val outlineOnDarkTransparentPositiveHover: String = - "outlineOnDarkTransparentPositiveHover" - - /** - * light outline onDark outlineTransparentPositiveActive - */ - public val outlineOnDarkTransparentPositiveActive: String = - "outlineOnDarkTransparentPositiveActive" - - /** - * light outline onDark outlineTransparentWarning - */ - public val outlineOnDarkTransparentWarning: String = "outlineOnDarkTransparentWarning" - - /** - * light outline onDark outlineTransparentWarningHover - */ - public val outlineOnDarkTransparentWarningHover: String = "outlineOnDarkTransparentWarningHover" - - /** - * light outline onDark outlineTransparentWarningActive - */ - public val outlineOnDarkTransparentWarningActive: String = - "outlineOnDarkTransparentWarningActive" - - /** - * light outline onDark outlineNegativeTransparent - */ - public val outlineOnDarkNegativeTransparent: String = "outlineOnDarkNegativeTransparent" - - /** - * light outline onDark outlineNegativeTransparentHover - */ - public val outlineOnDarkNegativeTransparentHover: String = - "outlineOnDarkNegativeTransparentHover" - - /** - * light outline onDark outlineNegativeTransparentActive - */ - public val outlineOnDarkNegativeTransparentActive: String = - "outlineOnDarkNegativeTransparentActive" - - /** - * light outline onDark outlineTransparentInfoHover - */ - public val outlineOnDarkTransparentInfoHover: String = "outlineOnDarkTransparentInfoHover" - - /** - * light outline onDark outlineTransparentInfoActive - */ - public val outlineOnDarkTransparentInfoActive: String = "outlineOnDarkTransparentInfoActive" - - /** - * light outline onDark outlinePrimaryHover - */ - public val outlineOnDarkPrimaryHover: String = "outlineOnDarkPrimaryHover" - - /** - * light outline onDark outlinePrimaryActive - */ - public val outlineOnDarkPrimaryActive: String = "outlineOnDarkPrimaryActive" - - /** - * light outline onDark outlineInfo - */ - public val outlineOnDarkInfo: String = "outlineOnDarkInfo" - - /** - * light outline onDark outlineInfoMinor - */ - public val outlineOnDarkInfoMinor: String = "outlineOnDarkInfoMinor" - - /** - * light outline onDark outlineTransparentInfo - */ - public val outlineOnDarkTransparentInfo: String = "outlineOnDarkTransparentInfo" - - /** - * light outline onDark outlineSolidPrimary - */ - public val outlineOnDarkSolidPrimary: String = "outlineOnDarkSolidPrimary" - - /** - * light outline onDark outlineSolidPrimaryHover - */ - public val outlineOnDarkSolidPrimaryHover: String = "outlineOnDarkSolidPrimaryHover" - - /** - * light outline onDark outlineSolidPrimaryActive - */ - public val outlineOnDarkSolidPrimaryActive: String = "outlineOnDarkSolidPrimaryActive" - - /** - * light outline onDark outlineSolidSecondary - */ - public val outlineOnDarkSolidSecondary: String = "outlineOnDarkSolidSecondary" - - /** - * light outline onDark outlineSolidSecondaryHover - */ - public val outlineOnDarkSolidSecondaryHover: String = "outlineOnDarkSolidSecondaryHover" - - /** - * light outline onDark outlineSolidSecondaryActive - */ - public val outlineOnDarkSolidSecondaryActive: String = "outlineOnDarkSolidSecondaryActive" - - /** - * light outline onDark outlineSolidTertiary - */ - public val outlineOnDarkSolidTertiary: String = "outlineOnDarkSolidTertiary" - - /** - * light outline onDark outlineSolidTertiaryHover - */ - public val outlineOnDarkSolidTertiaryHover: String = "outlineOnDarkSolidTertiaryHover" - - /** - * light outline onDark outlineSolidTertiaryActive - */ - public val outlineOnDarkSolidTertiaryActive: String = "outlineOnDarkSolidTertiaryActive" - - /** - * light outline onDark outlineSolidDefault - */ - public val outlineOnDarkSolidDefault: String = "outlineOnDarkSolidDefault" - - /** - * light outline onDark outlineSolidDefaultHover - */ - public val outlineOnDarkSolidDefaultHover: String = "outlineOnDarkSolidDefaultHover" - - /** - * light outline onDark outlineSolidDefaultActive - */ - public val outlineOnDarkSolidDefaultActive: String = "outlineOnDarkSolidDefaultActive" - - /** - * light outline onLight outlineSecondaryHover - */ - public val outlineOnLightSecondaryHover: String = "outlineOnLightSecondaryHover" - - /** - * light outline onLight outlineSecondaryActive - */ - public val outlineOnLightSecondaryActive: String = "outlineOnLightSecondaryActive" - - /** - * light outline onLight outlineTertiaryHover - */ - public val outlineOnLightTertiaryHover: String = "outlineOnLightTertiaryHover" - - /** - * light outline onLight outlineTertiaryActive - */ - public val outlineOnLightTertiaryActive: String = "outlineOnLightTertiaryActive" - - /** - * light outline onLight outlineDefaultHover - */ - public val outlineOnLightDefaultHover: String = "outlineOnLightDefaultHover" - - /** - * light outline onLight outlineDefaultActive - */ - public val outlineOnLightDefaultActive: String = "outlineOnLightDefaultActive" - - /** - * light outline onLight outlineTransparentPrimary - */ - public val outlineOnLightTransparentPrimary: String = "outlineOnLightTransparentPrimary" - - /** - * light outline onLight outlineTransparentPrimaryHover - */ - public val outlineOnLightTransparentPrimaryHover: String = - "outlineOnLightTransparentPrimaryHover" - - /** - * light outline onLight outlineTransparentPrimaryActive - */ - public val outlineOnLightTransparentPrimaryActive: String = - "outlineOnLightTransparentPrimaryActive" - - /** - * light outline onLight outlineTransparentSecondary - */ - public val outlineOnLightTransparentSecondary: String = "outlineOnLightTransparentSecondary" - - /** - * light outline onLight outlineTransparentSecondaryHover - */ - public val outlineOnLightTransparentSecondaryHover: String = - "outlineOnLightTransparentSecondaryHover" - - /** - * light outline onLight outlineTransparentSecondaryActive - */ - public val outlineOnLightTransparentSecondaryActive: String = - "outlineOnLightTransparentSecondaryActive" - - /** - * light outline onLight outlineTransparentTertiary - */ - public val outlineOnLightTransparentTertiary: String = "outlineOnLightTransparentTertiary" - - /** - * light outline onLight outlineTransparentTertiaryHover - */ - public val outlineOnLightTransparentTertiaryHover: String = - "outlineOnLightTransparentTertiaryHover" - - /** - * light outline onLight outlineTransparentTertiaryActive - */ - public val outlineOnLightTransparentTertiaryActive: String = - "outlineOnLightTransparentTertiaryActive" - - /** - * light outline onLight outlineAccent - */ - public val outlineOnLightAccent: String = "outlineOnLightAccent" - - /** - * light outline onLight outlineAccentHover - */ - public val outlineOnLightAccentHover: String = "outlineOnLightAccentHover" - - /** - * light outline onLight outlineAccentActive - */ - public val outlineOnLightAccentActive: String = "outlineOnLightAccentActive" - - /** - * light outline onLight outlineAccentMinor - */ - public val outlineOnLightAccentMinor: String = "outlineOnLightAccentMinor" - - /** - * light outline onLight outlineAccentMinorHover - */ - public val outlineOnLightAccentMinorHover: String = "outlineOnLightAccentMinorHover" - - /** - * light outline onLight outlineAccentMinorActive - */ - public val outlineOnLightAccentMinorActive: String = "outlineOnLightAccentMinorActive" - - /** - * light outline onLight outlineTransparentAccent - */ - public val outlineOnLightTransparentAccent: String = "outlineOnLightTransparentAccent" - - /** - * light outline onLight outlineTransparentAccentHover - */ - public val outlineOnLightTransparentAccentHover: String = "outlineOnLightTransparentAccentHover" - - /** - * light outline onLight outlineTransparentAccentActive - */ - public val outlineOnLightTransparentAccentActive: String = - "outlineOnLightTransparentAccentActive" - - /** - * light outline onLight outlinePositive - */ - public val outlineOnLightPositive: String = "outlineOnLightPositive" - - /** - * light outline onLight outlinePositiveHover - */ - public val outlineOnLightPositiveHover: String = "outlineOnLightPositiveHover" - - /** - * light outline onLight outlinePositiveActive - */ - public val outlineOnLightPositiveActive: String = "outlineOnLightPositiveActive" - - /** - * light outline onLight outlineWarning - */ - public val outlineOnLightWarning: String = "outlineOnLightWarning" - - /** - * light outline onLight outlineWarningHover - */ - public val outlineOnLightWarningHover: String = "outlineOnLightWarningHover" - - /** - * light outline onLight outlineWarningActive - */ - public val outlineOnLightWarningActive: String = "outlineOnLightWarningActive" - - /** - * light outline onLight outlineNegative - */ - public val outlineOnLightNegative: String = "outlineOnLightNegative" - - /** - * light outline onLight outlineNegativeHover - */ - public val outlineOnLightNegativeHover: String = "outlineOnLightNegativeHover" - - /** - * light outline onLight outlineNegativeActive - */ - public val outlineOnLightNegativeActive: String = "outlineOnLightNegativeActive" - - /** - * light outline onLight outlineInfoHover - */ - public val outlineOnLightInfoHover: String = "outlineOnLightInfoHover" - - /** - * light outline onLight outlineInfoActive - */ - public val outlineOnLightInfoActive: String = "outlineOnLightInfoActive" - - /** - * light outline onLight outlinePositiveMinor - */ - public val outlineOnLightPositiveMinor: String = "outlineOnLightPositiveMinor" - - /** - * light outline onLight outlinePositiveMinorHover - */ - public val outlineOnLightPositiveMinorHover: String = "outlineOnLightPositiveMinorHover" - - /** - * light outline onLight outlinePositiveMinorActive - */ - public val outlineOnLightPositiveMinorActive: String = "outlineOnLightPositiveMinorActive" - - /** - * light outline onLight outlineWarningMinor - */ - public val outlineOnLightWarningMinor: String = "outlineOnLightWarningMinor" - - /** - * light outline onLight outlineWarningMinorHover - */ - public val outlineOnLightWarningMinorHover: String = "outlineOnLightWarningMinorHover" - - /** - * light outline onLight outlineWarningMinorActive - */ - public val outlineOnLightWarningMinorActive: String = "outlineOnLightWarningMinorActive" - - /** - * light outline onLight outlineNegativeMinor - */ - public val outlineOnLightNegativeMinor: String = "outlineOnLightNegativeMinor" - - /** - * light outline onLight outlineNegativeMinorHover - */ - public val outlineOnLightNegativeMinorHover: String = "outlineOnLightNegativeMinorHover" - - /** - * light outline onLight outlineNegativeMinorActive - */ - public val outlineOnLightNegativeMinorActive: String = "outlineOnLightNegativeMinorActive" - - /** - * light outline onLight outlineInfoMinorHover - */ - public val outlineOnLightInfoMinorHover: String = "outlineOnLightInfoMinorHover" - - /** - * light outline onLight outlineInfoMinorActive - */ - public val outlineOnLightInfoMinorActive: String = "outlineOnLightInfoMinorActive" - - /** - * light outline onLight outlineTransparentPositive - */ - public val outlineOnLightTransparentPositive: String = "outlineOnLightTransparentPositive" - - /** - * light outline onLight outlineTransparentPositiveHover - */ - public val outlineOnLightTransparentPositiveHover: String = - "outlineOnLightTransparentPositiveHover" - - /** - * light outline onLight outlineTransparentPositiveActive - */ - public val outlineOnLightTransparentPositiveActive: String = - "outlineOnLightTransparentPositiveActive" - - /** - * light outline onLight outlineTransparentWarning - */ - public val outlineOnLightTransparentWarning: String = "outlineOnLightTransparentWarning" - - /** - * light outline onLight outlineTransparentWarningHover - */ - public val outlineOnLightTransparentWarningHover: String = - "outlineOnLightTransparentWarningHover" - - /** - * light outline onLight outlineTransparentWarningActive - */ - public val outlineOnLightTransparentWarningActive: String = - "outlineOnLightTransparentWarningActive" - - /** - * light outline onLight outlineNegativeTransparent - */ - public val outlineOnLightNegativeTransparent: String = "outlineOnLightNegativeTransparent" - - /** - * light outline onLight outlineNegativeTransparentHover - */ - public val outlineOnLightNegativeTransparentHover: String = - "outlineOnLightNegativeTransparentHover" - - /** - * light outline onLight outlineNegativeTransparentActive - */ - public val outlineOnLightNegativeTransparentActive: String = - "outlineOnLightNegativeTransparentActive" - - /** - * light outline onLight outlineTransparentInfoHover - */ - public val outlineOnLightTransparentInfoHover: String = "outlineOnLightTransparentInfoHover" - - /** - * light outline onLight outlineTransparentInfoActive - */ - public val outlineOnLightTransparentInfoActive: String = "outlineOnLightTransparentInfoActive" - - /** - * light outline onLight outlinePrimaryHover - */ - public val outlineOnLightPrimaryHover: String = "outlineOnLightPrimaryHover" - - /** - * light outline onLight outlinePrimaryActive - */ - public val outlineOnLightPrimaryActive: String = "outlineOnLightPrimaryActive" - - /** - * light outline onLight outlineInfo - */ - public val outlineOnLightInfo: String = "outlineOnLightInfo" - - /** - * light outline onLight outlineInfoMinor - */ - public val outlineOnLightInfoMinor: String = "outlineOnLightInfoMinor" - - /** - * light outline onLight outlineTransparentInfo - */ - public val outlineOnLightTransparentInfo: String = "outlineOnLightTransparentInfo" - - /** - * light outline onLight outlineSolidTertiaryHover - */ - public val outlineOnLightSolidTertiaryHover: String = "outlineOnLightSolidTertiaryHover" - - /** - * light outline onLight outlineSolidTertiaryActive - */ - public val outlineOnLightSolidTertiaryActive: String = "outlineOnLightSolidTertiaryActive" - - /** - * light outline onLight outlineSolidDefaultHover - */ - public val outlineOnLightSolidDefaultHover: String = "outlineOnLightSolidDefaultHover" - - /** - * light outline onLight outlineSolidDefaultActive - */ - public val outlineOnLightSolidDefaultActive: String = "outlineOnLightSolidDefaultActive" - - /** - * light outline onLight outlineSolidPrimaryHover - */ - public val outlineOnLightSolidPrimaryHover: String = "outlineOnLightSolidPrimaryHover" - - /** - * light outline onLight outlineSolidPrimaryActive - */ - public val outlineOnLightSolidPrimaryActive: String = "outlineOnLightSolidPrimaryActive" - - /** - * light outline onLight outlineSolidSecondaryHover - */ - public val outlineOnLightSolidSecondaryHover: String = "outlineOnLightSolidSecondaryHover" - - /** - * light outline onLight outlineSolidSecondaryActive - */ - public val outlineOnLightSolidSecondaryActive: String = "outlineOnLightSolidSecondaryActive" - - /** - * light outline onLight outlineSolidPrimary - */ - public val outlineOnLightSolidPrimary: String = "outlineOnLightSolidPrimary" - - /** - * light outline onLight outlineSolidSecondary - */ - public val outlineOnLightSolidSecondary: String = "outlineOnLightSolidSecondary" - - /** - * light outline onLight outlineSolidTertiary - */ - public val outlineOnLightSolidTertiary: String = "outlineOnLightSolidTertiary" - - /** - * light outline onLight outlineSolidDefault - */ - public val outlineOnLightSolidDefault: String = "outlineOnLightSolidDefault" - - /** - * light outline inverse outlinePrimaryHover - */ - public val outlineInversePrimaryHover: String = "outlineInversePrimaryHover" - - /** - * light outline inverse outlinePrimaryActive - */ - public val outlineInversePrimaryActive: String = "outlineInversePrimaryActive" - - /** - * light outline inverse outlineSecondaryHover - */ - public val outlineInverseSecondaryHover: String = "outlineInverseSecondaryHover" - - /** - * light outline inverse outlineSecondaryActive - */ - public val outlineInverseSecondaryActive: String = "outlineInverseSecondaryActive" - - /** - * light outline inverse outlineTertiaryHover - */ - public val outlineInverseTertiaryHover: String = "outlineInverseTertiaryHover" - - /** - * light outline inverse outlineTertiaryActive - */ - public val outlineInverseTertiaryActive: String = "outlineInverseTertiaryActive" - - /** - * light outline inverse outlineDefaultHover - */ - public val outlineInverseDefaultHover: String = "outlineInverseDefaultHover" - - /** - * light outline inverse outlineDefaultActive - */ - public val outlineInverseDefaultActive: String = "outlineInverseDefaultActive" - - /** - * light outline inverse outlineTransparentPrimaryHover - */ - public val outlineInverseTransparentPrimaryHover: String = - "outlineInverseTransparentPrimaryHover" - - /** - * light outline inverse outlineTransparentPrimaryActive - */ - public val outlineInverseTransparentPrimaryActive: String = - "outlineInverseTransparentPrimaryActive" - - /** - * light outline inverse outlineTransparentSecondaryHover - */ - public val outlineInverseTransparentSecondaryHover: String = - "outlineInverseTransparentSecondaryHover" - - /** - * light outline inverse outlineTransparentSecondaryActive - */ - public val outlineInverseTransparentSecondaryActive: String = - "outlineInverseTransparentSecondaryActive" - - /** - * light outline inverse outlineTransparentTertiaryHover - */ - public val outlineInverseTransparentTertiaryHover: String = - "outlineInverseTransparentTertiaryHover" - - /** - * light outline inverse outlineTransparentTertiaryActive - */ - public val outlineInverseTransparentTertiaryActive: String = - "outlineInverseTransparentTertiaryActive" - - /** - * light outline inverse outlineTransparentClearHover - */ - public val outlineInverseTransparentClearHover: String = "outlineInverseTransparentClearHover" - - /** - * light outline inverse outlineTransparentClearActive - */ - public val outlineInverseTransparentClearActive: String = "outlineInverseTransparentClearActive" - - /** - * light outline inverse outlineAccentHover - */ - public val outlineInverseAccentHover: String = "outlineInverseAccentHover" - - /** - * light outline inverse outlineAccentActive - */ - public val outlineInverseAccentActive: String = "outlineInverseAccentActive" - - /** - * light outline inverse outlineAccentMinorHover - */ - public val outlineInverseAccentMinorHover: String = "outlineInverseAccentMinorHover" - - /** - * light outline inverse outlineAccentMinorActive - */ - public val outlineInverseAccentMinorActive: String = "outlineInverseAccentMinorActive" - - /** - * light outline inverse outlineTransparentAccentHover - */ - public val outlineInverseTransparentAccentHover: String = "outlineInverseTransparentAccentHover" - - /** - * light outline inverse outlineTransparentAccentActive - */ - public val outlineInverseTransparentAccentActive: String = - "outlineInverseTransparentAccentActive" - - /** - * light outline inverse outlinePositiveHover - */ - public val outlineInversePositiveHover: String = "outlineInversePositiveHover" - - /** - * light outline inverse outlinePositiveActive - */ - public val outlineInversePositiveActive: String = "outlineInversePositiveActive" - - /** - * light outline inverse outlineWarningHover - */ - public val outlineInverseWarningHover: String = "outlineInverseWarningHover" - - /** - * light outline inverse outlineWarningActive - */ - public val outlineInverseWarningActive: String = "outlineInverseWarningActive" - - /** - * light outline inverse outlineNegativeHover - */ - public val outlineInverseNegativeHover: String = "outlineInverseNegativeHover" - - /** - * light outline inverse outlineNegativeActive - */ - public val outlineInverseNegativeActive: String = "outlineInverseNegativeActive" - - /** - * light outline inverse outlineInfoHover - */ - public val outlineInverseInfoHover: String = "outlineInverseInfoHover" - - /** - * light outline inverse outlineInfoActive - */ - public val outlineInverseInfoActive: String = "outlineInverseInfoActive" - - /** - * light outline inverse outlinePositiveMinorHover - */ - public val outlineInversePositiveMinorHover: String = "outlineInversePositiveMinorHover" - - /** - * light outline inverse outlinePositiveMinorActive - */ - public val outlineInversePositiveMinorActive: String = "outlineInversePositiveMinorActive" - - /** - * light outline inverse outlineWarningMinorHover - */ - public val outlineInverseWarningMinorHover: String = "outlineInverseWarningMinorHover" - - /** - * light outline inverse outlineWarningMinorActive - */ - public val outlineInverseWarningMinorActive: String = "outlineInverseWarningMinorActive" - - /** - * light outline inverse outlineNegativeMinorHover - */ - public val outlineInverseNegativeMinorHover: String = "outlineInverseNegativeMinorHover" - - /** - * light outline inverse outlineNegativeMinorActive - */ - public val outlineInverseNegativeMinorActive: String = "outlineInverseNegativeMinorActive" - - /** - * light outline inverse outlineInfoMinorHover - */ - public val outlineInverseInfoMinorHover: String = "outlineInverseInfoMinorHover" - - /** - * light outline inverse outlineInfoMinorActive - */ - public val outlineInverseInfoMinorActive: String = "outlineInverseInfoMinorActive" - - /** - * light outline inverse outlineTransparentPositiveHover - */ - public val outlineInverseTransparentPositiveHover: String = - "outlineInverseTransparentPositiveHover" - - /** - * light outline inverse outlineTransparentPositiveActive - */ - public val outlineInverseTransparentPositiveActive: String = - "outlineInverseTransparentPositiveActive" - - /** - * light outline inverse outlineTransparentWarningHover - */ - public val outlineInverseTransparentWarningHover: String = - "outlineInverseTransparentWarningHover" - - /** - * light outline inverse outlineTransparentWarningActive - */ - public val outlineInverseTransparentWarningActive: String = - "outlineInverseTransparentWarningActive" - - /** - * light outline inverse outlineTransparentNegativeHover - */ - public val outlineInverseTransparentNegativeHover: String = - "outlineInverseTransparentNegativeHover" - - /** - * light outline inverse outlineTransparentNegativeActive - */ - public val outlineInverseTransparentNegativeActive: String = - "outlineInverseTransparentNegativeActive" - - /** - * light outline inverse outlineTransparentInfoHover - */ - public val outlineInverseTransparentInfoHover: String = "outlineInverseTransparentInfoHover" - - /** - * light outline inverse outlineTransparentInfoActive - */ - public val outlineInverseTransparentInfoActive: String = "outlineInverseTransparentInfoActive" - - /** - * light outline inverse outlineTransparentPrimary - */ - public val outlineInverseTransparentPrimary: String = "outlineInverseTransparentPrimary" - - /** - * light outline inverse outlineTransparentSecondary - */ - public val outlineInverseTransparentSecondary: String = "outlineInverseTransparentSecondary" - - /** - * light outline inverse outlineTransparentTertiary - */ - public val outlineInverseTransparentTertiary: String = "outlineInverseTransparentTertiary" - - /** - * light outline inverse outlineTransparentClear - */ - public val outlineInverseTransparentClear: String = "outlineInverseTransparentClear" - - /** - * light outline inverse outlineAccent - */ - public val outlineInverseAccent: String = "outlineInverseAccent" - - /** - * light outline inverse outlineAccentMinor - */ - public val outlineInverseAccentMinor: String = "outlineInverseAccentMinor" - - /** - * light outline inverse outlineTransparentAccent - */ - public val outlineInverseTransparentAccent: String = "outlineInverseTransparentAccent" - - /** - * light outline inverse outlinePositive - */ - public val outlineInversePositive: String = "outlineInversePositive" - - /** - * light outline inverse outlineWarning - */ - public val outlineInverseWarning: String = "outlineInverseWarning" - - /** - * light outline inverse outlineNegative - */ - public val outlineInverseNegative: String = "outlineInverseNegative" - - /** - * light outline inverse outlineInfo - */ - public val outlineInverseInfo: String = "outlineInverseInfo" - - /** - * light outline inverse outlinePositiveMinor - */ - public val outlineInversePositiveMinor: String = "outlineInversePositiveMinor" - - /** - * light outline inverse outlineWarningMinor - */ - public val outlineInverseWarningMinor: String = "outlineInverseWarningMinor" - - /** - * light outline inverse outlineNegativeMinor - */ - public val outlineInverseNegativeMinor: String = "outlineInverseNegativeMinor" - - /** - * light outline inverse outlineInfoMinor - */ - public val outlineInverseInfoMinor: String = "outlineInverseInfoMinor" - - /** - * light outline inverse outlineTransparentPositive - */ - public val outlineInverseTransparentPositive: String = "outlineInverseTransparentPositive" - - /** - * light outline inverse outlineTransparentWarning - */ - public val outlineInverseTransparentWarning: String = "outlineInverseTransparentWarning" - - /** - * light outline inverse outlineTransparentNegative - */ - public val outlineInverseTransparentNegative: String = "outlineInverseTransparentNegative" - - /** - * light outline inverse outlineTransparentInfo - */ - public val outlineInverseTransparentInfo: String = "outlineInverseTransparentInfo" - - /** - * light outline inverse outlineSolidPrimaryHover - */ - public val outlineInverseSolidPrimaryHover: String = "outlineInverseSolidPrimaryHover" - - /** - * light outline inverse outlineSolidPrimaryActive - */ - public val outlineInverseSolidPrimaryActive: String = "outlineInverseSolidPrimaryActive" - - /** - * light outline inverse outlineSolidSecondaryHover - */ - public val outlineInverseSolidSecondaryHover: String = "outlineInverseSolidSecondaryHover" - - /** - * light outline inverse outlineSolidSecondaryActive - */ - public val outlineInverseSolidSecondaryActive: String = "outlineInverseSolidSecondaryActive" - - /** - * light outline inverse outlineSolidTertiaryHover - */ - public val outlineInverseSolidTertiaryHover: String = "outlineInverseSolidTertiaryHover" - - /** - * light outline inverse outlineSolidTertiaryActive - */ - public val outlineInverseSolidTertiaryActive: String = "outlineInverseSolidTertiaryActive" - - /** - * light outline inverse outlineSolidDefaultHover - */ - public val outlineInverseSolidDefaultHover: String = "outlineInverseSolidDefaultHover" - - /** - * light outline inverse outlineSolidDefaultActive - */ - public val outlineInverseSolidDefaultActive: String = "outlineInverseSolidDefaultActive" - - /** - * light outline inverse outlineSolidPrimary - */ - public val outlineInverseSolidPrimary: String = "outlineInverseSolidPrimary" - - /** - * light outline inverse outlineSolidSecondary - */ - public val outlineInverseSolidSecondary: String = "outlineInverseSolidSecondary" - - /** - * light outline inverse outlineSolidTertiary - */ - public val outlineInverseSolidTertiary: String = "outlineInverseSolidTertiary" - - /** - * light outline inverse outlineSolidDefault - */ - public val outlineInverseSolidDefault: String = "outlineInverseSolidDefault" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellow: String = "dataDefaultYellow" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellowHover: String = "dataDefaultYellowHover" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellowActive: String = "dataDefaultYellowActive" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinor: String = "dataDefaultYellowMinor" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinorHover: String = "dataDefaultYellowMinorHover" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinorActive: String = "dataDefaultYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparent: String = "dataDefaultYellowTransparent" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparentHover: String = "dataDefaultYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparentActive: String = "dataDefaultYellowTransparentActive" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellow: String = "dataOnDarkYellow" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowHover: String = "dataOnDarkYellowHover" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowActive: String = "dataOnDarkYellowActive" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinor: String = "dataOnDarkYellowMinor" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinorHover: String = "dataOnDarkYellowMinorHover" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinorActive: String = "dataOnDarkYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparent: String = "dataOnDarkYellowTransparent" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparentHover: String = "dataOnDarkYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparentActive: String = "dataOnDarkYellowTransparentActive" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellow: String = "dataOnLightYellow" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowHover: String = "dataOnLightYellowHover" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowActive: String = "dataOnLightYellowActive" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinor: String = "dataOnLightYellowMinor" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinorHover: String = "dataOnLightYellowMinorHover" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinorActive: String = "dataOnLightYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparent: String = "dataOnLightYellowTransparent" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparentHover: String = "dataOnLightYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparentActive: String = "dataOnLightYellowTransparentActive" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellow: String = "dataInverseYellow" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellowHover: String = "dataInverseYellowHover" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellowActive: String = "dataInverseYellowActive" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinor: String = "dataInverseYellowMinor" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinorHover: String = "dataInverseYellowMinorHover" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinorActive: String = "dataInverseYellowMinorActive" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparent: String = "dataInverseYellowTransparent" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparentHover: String = "dataInverseYellowTransparentHover" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparentActive: String = "dataInverseYellowTransparentActive" - - /** - * Переопределяет аттрибут цвета. - */ - public infix fun String.overrideBy(color: Color) { - _overrideMap[this] = color - } -} - -internal val LocalPlasmaGigaAppColors: ProvidableCompositionLocal = - staticCompositionLocalOf { - lightPlasmaGigaAppColors() - } - -@Suppress("LongMethod") -internal fun PlasmaGigaAppColors.updateColorsFrom(other: PlasmaGigaAppColors) { - textDefaultPrimary = other.textDefaultPrimary - textDefaultPrimaryBrightness = other.textDefaultPrimaryBrightness - textDefaultSecondary = other.textDefaultSecondary - textDefaultTertiary = other.textDefaultTertiary - textDefaultParagraph = other.textDefaultParagraph - textDefaultAccent = other.textDefaultAccent - textDefaultPositive = other.textDefaultPositive - textDefaultWarning = other.textDefaultWarning - textDefaultNegative = other.textDefaultNegative - textDefaultAccentMinorHover = other.textDefaultAccentMinorHover - textDefaultAccentMinorActive = other.textDefaultAccentMinorActive - textDefaultInfoHover = other.textDefaultInfoHover - textDefaultInfoActive = other.textDefaultInfoActive - textDefaultPositiveMinorHover = other.textDefaultPositiveMinorHover - textDefaultPositiveMinorActive = other.textDefaultPositiveMinorActive - textDefaultWarningMinorHover = other.textDefaultWarningMinorHover - textDefaultWarningMinorActive = other.textDefaultWarningMinorActive - textDefaultNegativeMinorHover = other.textDefaultNegativeMinorHover - textDefaultNegativeMinorActive = other.textDefaultNegativeMinorActive - textDefaultInfoMinorHover = other.textDefaultInfoMinorHover - textDefaultInfoMinorActive = other.textDefaultInfoMinorActive - textDefaultAccentMinor = other.textDefaultAccentMinor - textDefaultPositiveMinor = other.textDefaultPositiveMinor - textDefaultWarningMinor = other.textDefaultWarningMinor - textDefaultNegativeMinor = other.textDefaultNegativeMinor - textDefaultInfo = other.textDefaultInfo - textDefaultInfoMinor = other.textDefaultInfoMinor - textDefaultPrimaryHover = other.textDefaultPrimaryHover - textDefaultPrimaryActive = other.textDefaultPrimaryActive - textDefaultSecondaryHover = other.textDefaultSecondaryHover - textDefaultSecondaryActive = other.textDefaultSecondaryActive - textDefaultTertiaryHover = other.textDefaultTertiaryHover - textDefaultTertiaryActive = other.textDefaultTertiaryActive - textDefaultParagraphHover = other.textDefaultParagraphHover - textDefaultParagraphActive = other.textDefaultParagraphActive - textDefaultAccentHover = other.textDefaultAccentHover - textDefaultAccentActive = other.textDefaultAccentActive - textDefaultPositiveHover = other.textDefaultPositiveHover - textDefaultPositiveActive = other.textDefaultPositiveActive - textDefaultWarningHover = other.textDefaultWarningHover - textDefaultWarningActive = other.textDefaultWarningActive - textDefaultNegativeHover = other.textDefaultNegativeHover - textDefaultNegativeActive = other.textDefaultNegativeActive - textOnDarkPrimary = other.textOnDarkPrimary - textOnDarkPrimaryBrightness = other.textOnDarkPrimaryBrightness - textOnDarkSecondary = other.textOnDarkSecondary - textOnDarkTertiary = other.textOnDarkTertiary - textOnDarkParagraph = other.textOnDarkParagraph - textOnDarkAccent = other.textOnDarkAccent - textOnDarkPositive = other.textOnDarkPositive - textOnDarkWarning = other.textOnDarkWarning - textOnDarkNegative = other.textOnDarkNegative - textOnDarkAccentMinor = other.textOnDarkAccentMinor - textOnDarkAccentMinorHover = other.textOnDarkAccentMinorHover - textOnDarkAccentMinorActive = other.textOnDarkAccentMinorActive - textOnDarkInfoHover = other.textOnDarkInfoHover - textOnDarkInfoActive = other.textOnDarkInfoActive - textOnDarkPositiveMinor = other.textOnDarkPositiveMinor - textOnDarkPositiveMinorHover = other.textOnDarkPositiveMinorHover - textOnDarkPositiveMinorActive = other.textOnDarkPositiveMinorActive - textOnDarkWarningMinor = other.textOnDarkWarningMinor - textOnDarkWarningMinorHover = other.textOnDarkWarningMinorHover - textOnDarkWarningMinorActive = other.textOnDarkWarningMinorActive - textOnDarkNegativeMinor = other.textOnDarkNegativeMinor - textOnDarkNegativeMinorHover = other.textOnDarkNegativeMinorHover - textOnDarkNegativeMinorActive = other.textOnDarkNegativeMinorActive - textOnDarkInfoMinorHover = other.textOnDarkInfoMinorHover - textOnDarkInfoMinorActive = other.textOnDarkInfoMinorActive - textOnDarkInfoMinor = other.textOnDarkInfoMinor - textOnDarkInfo = other.textOnDarkInfo - textOnDarkPrimaryHover = other.textOnDarkPrimaryHover - textOnDarkPrimaryActive = other.textOnDarkPrimaryActive - textOnDarkSecondaryHover = other.textOnDarkSecondaryHover - textOnDarkSecondaryActive = other.textOnDarkSecondaryActive - textOnDarkTertiaryHover = other.textOnDarkTertiaryHover - textOnDarkTertiaryActive = other.textOnDarkTertiaryActive - textOnDarkParagraphHover = other.textOnDarkParagraphHover - textOnDarkParagraphActive = other.textOnDarkParagraphActive - textOnDarkAccentHover = other.textOnDarkAccentHover - textOnDarkAccentActive = other.textOnDarkAccentActive - textOnDarkPositiveHover = other.textOnDarkPositiveHover - textOnDarkPositiveActive = other.textOnDarkPositiveActive - textOnDarkWarningHover = other.textOnDarkWarningHover - textOnDarkWarningActive = other.textOnDarkWarningActive - textOnDarkNegativeHover = other.textOnDarkNegativeHover - textOnDarkNegativeActive = other.textOnDarkNegativeActive - textOnLightPrimary = other.textOnLightPrimary - textOnLightPrimaryBrightness = other.textOnLightPrimaryBrightness - textOnLightSecondary = other.textOnLightSecondary - textOnLightTertiary = other.textOnLightTertiary - textOnLightParagraph = other.textOnLightParagraph - textOnLightAccent = other.textOnLightAccent - textOnLightPositive = other.textOnLightPositive - textOnLightWarning = other.textOnLightWarning - textOnLightAccentMinor = other.textOnLightAccentMinor - textOnLightAccentMinorHover = other.textOnLightAccentMinorHover - textOnLightAccentMinorActive = other.textOnLightAccentMinorActive - textOnLightInfoHover = other.textOnLightInfoHover - textOnLightInfoActive = other.textOnLightInfoActive - textOnLightPositiveMinor = other.textOnLightPositiveMinor - textOnLightPositiveMinorHover = other.textOnLightPositiveMinorHover - textOnLightPositiveMinorActive = other.textOnLightPositiveMinorActive - textOnLightWarningMinor = other.textOnLightWarningMinor - textOnLightWarningMinorHover = other.textOnLightWarningMinorHover - textOnLightWarningMinorActive = other.textOnLightWarningMinorActive - textOnLightNegativeMinor = other.textOnLightNegativeMinor - textOnLightNegativeMinorHover = other.textOnLightNegativeMinorHover - textOnLightNegativeMinorActive = other.textOnLightNegativeMinorActive - textOnLightInfoMinorHover = other.textOnLightInfoMinorHover - textOnLightInfoMinorActive = other.textOnLightInfoMinorActive - textOnLightNegative = other.textOnLightNegative - textOnLightNegativeHover = other.textOnLightNegativeHover - textOnLightNegativeActive = other.textOnLightNegativeActive - textOnLightInfo = other.textOnLightInfo - textOnLightInfoMinor = other.textOnLightInfoMinor - textOnLightPrimaryHover = other.textOnLightPrimaryHover - textOnLightPrimaryActive = other.textOnLightPrimaryActive - textOnLightSecondaryHover = other.textOnLightSecondaryHover - textOnLightSecondaryActive = other.textOnLightSecondaryActive - textOnLightTertiaryHover = other.textOnLightTertiaryHover - textOnLightTertiaryActive = other.textOnLightTertiaryActive - textOnLightParagraphHover = other.textOnLightParagraphHover - textOnLightParagraphActive = other.textOnLightParagraphActive - textOnLightAccentHover = other.textOnLightAccentHover - textOnLightAccentActive = other.textOnLightAccentActive - textOnLightPositiveHover = other.textOnLightPositiveHover - textOnLightPositiveActive = other.textOnLightPositiveActive - textOnLightWarningHover = other.textOnLightWarningHover - textOnLightWarningActive = other.textOnLightWarningActive - textInversePrimary = other.textInversePrimary - textInversePrimaryBrightness = other.textInversePrimaryBrightness - textInverseSecondary = other.textInverseSecondary - textInverseTertiary = other.textInverseTertiary - textInverseParagraph = other.textInverseParagraph - textInversePositive = other.textInversePositive - textInverseWarning = other.textInverseWarning - textInverseNegative = other.textInverseNegative - textInversePrimaryHover = other.textInversePrimaryHover - textInversePrimaryActive = other.textInversePrimaryActive - textInverseSecondaryHover = other.textInverseSecondaryHover - textInverseSecondaryActive = other.textInverseSecondaryActive - textInverseTertiaryHover = other.textInverseTertiaryHover - textInverseTertiaryActive = other.textInverseTertiaryActive - textInverseParagraphHover = other.textInverseParagraphHover - textInverseParagraphActive = other.textInverseParagraphActive - textInverseAccentHover = other.textInverseAccentHover - textInverseAccentActive = other.textInverseAccentActive - textInversePositiveHover = other.textInversePositiveHover - textInversePositiveActive = other.textInversePositiveActive - textInverseWarningHover = other.textInverseWarningHover - textInverseWarningActive = other.textInverseWarningActive - textInverseNegativeHover = other.textInverseNegativeHover - textInverseNegativeActive = other.textInverseNegativeActive - textInverseAccentMinor = other.textInverseAccentMinor - textInverseAccentMinorHover = other.textInverseAccentMinorHover - textInverseAccentMinorActive = other.textInverseAccentMinorActive - textInverseInfoHover = other.textInverseInfoHover - textInverseInfoActive = other.textInverseInfoActive - textInversePositiveMinorHover = other.textInversePositiveMinorHover - textInversePositiveMinorActive = other.textInversePositiveMinorActive - textInverseWarningMinorHover = other.textInverseWarningMinorHover - textInverseWarningMinorActive = other.textInverseWarningMinorActive - textInverseNegativeMinorHover = other.textInverseNegativeMinorHover - textInverseNegativeMinorActive = other.textInverseNegativeMinorActive - textInverseInfoMinorHover = other.textInverseInfoMinorHover - textInverseInfoMinorActive = other.textInverseInfoMinorActive - textInverseAccent = other.textInverseAccent - textInverseInfo = other.textInverseInfo - textInversePositiveMinor = other.textInversePositiveMinor - textInverseWarningMinor = other.textInverseWarningMinor - textInverseNegativeMinor = other.textInverseNegativeMinor - textInverseInfoMinor = other.textInverseInfoMinor - surfaceDefaultSolidDefault = other.surfaceDefaultSolidDefault - surfaceDefaultSolidPrimary = other.surfaceDefaultSolidPrimary - surfaceDefaultSolidPrimaryBrightness = other.surfaceDefaultSolidPrimaryBrightness - surfaceDefaultSolidSecondary = other.surfaceDefaultSolidSecondary - surfaceDefaultSolidTertiary = other.surfaceDefaultSolidTertiary - surfaceDefaultSolidCard = other.surfaceDefaultSolidCard - surfaceDefaultSolidCardBrightness = other.surfaceDefaultSolidCardBrightness - surfaceDefaultTransparentDefault = other.surfaceDefaultTransparentDefault - surfaceDefaultTransparentPrimary = other.surfaceDefaultTransparentPrimary - surfaceDefaultTransparentSecondary = other.surfaceDefaultTransparentSecondary - surfaceDefaultTransparentTertiary = other.surfaceDefaultTransparentTertiary - surfaceDefaultTransparentCard = other.surfaceDefaultTransparentCard - surfaceDefaultTransparentCardBrightness = other.surfaceDefaultTransparentCardBrightness - surfaceDefaultAccent = other.surfaceDefaultAccent - surfaceDefaultPositive = other.surfaceDefaultPositive - surfaceDefaultWarning = other.surfaceDefaultWarning - surfaceDefaultNegative = other.surfaceDefaultNegative - surfaceDefaultClear = other.surfaceDefaultClear - surfaceDefaultTransparentDeep = other.surfaceDefaultTransparentDeep - surfaceDefaultAccentMinorHover = other.surfaceDefaultAccentMinorHover - surfaceDefaultAccentMinorActive = other.surfaceDefaultAccentMinorActive - surfaceDefaultTransparentAccentHover = other.surfaceDefaultTransparentAccentHover - surfaceDefaultTransparentAccentActive = other.surfaceDefaultTransparentAccentActive - surfaceDefaultInfoHover = other.surfaceDefaultInfoHover - surfaceDefaultInfoActive = other.surfaceDefaultInfoActive - surfaceDefaultPositiveMinorHover = other.surfaceDefaultPositiveMinorHover - surfaceDefaultPositiveMinorActive = other.surfaceDefaultPositiveMinorActive - surfaceDefaultWarningMinorHover = other.surfaceDefaultWarningMinorHover - surfaceDefaultWarningMinorActive = other.surfaceDefaultWarningMinorActive - surfaceDefaultNegativeMinorHover = other.surfaceDefaultNegativeMinorHover - surfaceDefaultNegativeMinorActive = other.surfaceDefaultNegativeMinorActive - surfaceDefaultInfoMinorHover = other.surfaceDefaultInfoMinorHover - surfaceDefaultInfoMinorActive = other.surfaceDefaultInfoMinorActive - surfaceDefaultTransparentPositiveHover = other.surfaceDefaultTransparentPositiveHover - surfaceDefaultTransparentPositiveActive = other.surfaceDefaultTransparentPositiveActive - surfaceDefaultTransparentWarningHover = other.surfaceDefaultTransparentWarningHover - surfaceDefaultTransparentWarningActive = other.surfaceDefaultTransparentWarningActive - surfaceDefaultTransparentNegativeHover = other.surfaceDefaultTransparentNegativeHover - surfaceDefaultTransparentNegativeActive = other.surfaceDefaultTransparentNegativeActive - surfaceDefaultTransparentInfoHover = other.surfaceDefaultTransparentInfoHover - surfaceDefaultTransparentInfoActive = other.surfaceDefaultTransparentInfoActive - surfaceDefaultAccentMinor = other.surfaceDefaultAccentMinor - surfaceDefaultTransparentAccent = other.surfaceDefaultTransparentAccent - surfaceDefaultPositiveMinor = other.surfaceDefaultPositiveMinor - surfaceDefaultWarningMinor = other.surfaceDefaultWarningMinor - surfaceDefaultNegativeMinor = other.surfaceDefaultNegativeMinor - surfaceDefaultTransparentPositive = other.surfaceDefaultTransparentPositive - surfaceDefaultTransparentWarning = other.surfaceDefaultTransparentWarning - surfaceDefaultTransparentNegative = other.surfaceDefaultTransparentNegative - surfaceDefaultInfo = other.surfaceDefaultInfo - surfaceDefaultInfoMinor = other.surfaceDefaultInfoMinor - surfaceDefaultTransparentInfo = other.surfaceDefaultTransparentInfo - surfaceDefaultSolidDefaultHover = other.surfaceDefaultSolidDefaultHover - surfaceDefaultSolidDefaultActive = other.surfaceDefaultSolidDefaultActive - surfaceDefaultSolidPrimaryHover = other.surfaceDefaultSolidPrimaryHover - surfaceDefaultSolidPrimaryActive = other.surfaceDefaultSolidPrimaryActive - surfaceDefaultSolidSecondaryHover = other.surfaceDefaultSolidSecondaryHover - surfaceDefaultSolidSecondaryActive = other.surfaceDefaultSolidSecondaryActive - surfaceDefaultSolidTertiaryHover = other.surfaceDefaultSolidTertiaryHover - surfaceDefaultSolidTertiaryActive = other.surfaceDefaultSolidTertiaryActive - surfaceDefaultSolidCardHover = other.surfaceDefaultSolidCardHover - surfaceDefaultSolidCardActive = other.surfaceDefaultSolidCardActive - surfaceDefaultTransparentDefaultHover = other.surfaceDefaultTransparentDefaultHover - surfaceDefaultTransparentDefaultActive = other.surfaceDefaultTransparentDefaultActive - surfaceDefaultTransparentPrimaryHover = other.surfaceDefaultTransparentPrimaryHover - surfaceDefaultTransparentPrimaryActive = other.surfaceDefaultTransparentPrimaryActive - surfaceDefaultTransparentSecondaryHover = other.surfaceDefaultTransparentSecondaryHover - surfaceDefaultTransparentSecondaryActive = other.surfaceDefaultTransparentSecondaryActive - surfaceDefaultTransparentTertiaryHover = other.surfaceDefaultTransparentTertiaryHover - surfaceDefaultTransparentTertiaryActive = other.surfaceDefaultTransparentTertiaryActive - surfaceDefaultTransparentCardHover = other.surfaceDefaultTransparentCardHover - surfaceDefaultTransparentCardActive = other.surfaceDefaultTransparentCardActive - surfaceDefaultAccentHover = other.surfaceDefaultAccentHover - surfaceDefaultAccentActive = other.surfaceDefaultAccentActive - surfaceDefaultPositiveHover = other.surfaceDefaultPositiveHover - surfaceDefaultPositiveActive = other.surfaceDefaultPositiveActive - surfaceDefaultWarningHover = other.surfaceDefaultWarningHover - surfaceDefaultWarningActive = other.surfaceDefaultWarningActive - surfaceDefaultNegativeHover = other.surfaceDefaultNegativeHover - surfaceDefaultNegativeActive = other.surfaceDefaultNegativeActive - surfaceDefaultClearHover = other.surfaceDefaultClearHover - surfaceDefaultClearActive = other.surfaceDefaultClearActive - surfaceDefaultTransparentDeepHover = other.surfaceDefaultTransparentDeepHover - surfaceDefaultTransparentDeepActive = other.surfaceDefaultTransparentDeepActive - surfaceOnDarkSolidPrimary = other.surfaceOnDarkSolidPrimary - surfaceOnDarkSolidPrimaryBrightness = other.surfaceOnDarkSolidPrimaryBrightness - surfaceOnDarkSolidSecondary = other.surfaceOnDarkSolidSecondary - surfaceOnDarkSolidTertiary = other.surfaceOnDarkSolidTertiary - surfaceOnDarkSolidCard = other.surfaceOnDarkSolidCard - surfaceOnDarkSolidCardBrightness = other.surfaceOnDarkSolidCardBrightness - surfaceOnDarkTransparentDefault = other.surfaceOnDarkTransparentDefault - surfaceOnDarkAccent = other.surfaceOnDarkAccent - surfaceOnDarkPositive = other.surfaceOnDarkPositive - surfaceOnDarkWarning = other.surfaceOnDarkWarning - surfaceOnDarkNegative = other.surfaceOnDarkNegative - surfaceOnDarkClear = other.surfaceOnDarkClear - surfaceOnDarkTransparentDeep = other.surfaceOnDarkTransparentDeep - surfaceOnDarkAccentMinor = other.surfaceOnDarkAccentMinor - surfaceOnDarkAccentMinorHover = other.surfaceOnDarkAccentMinorHover - surfaceOnDarkAccentMinorActive = other.surfaceOnDarkAccentMinorActive - surfaceOnDarkTransparentAccent = other.surfaceOnDarkTransparentAccent - surfaceOnDarkTransparentAccentHover = other.surfaceOnDarkTransparentAccentHover - surfaceOnDarkTransparentAccentActive = other.surfaceOnDarkTransparentAccentActive - surfaceOnDarkSurfaceInfoHover = other.surfaceOnDarkSurfaceInfoHover - surfaceOnDarkSurfaceInfoActive = other.surfaceOnDarkSurfaceInfoActive - surfaceOnDarkPositiveMinor = other.surfaceOnDarkPositiveMinor - surfaceOnDarkPositiveMinorHover = other.surfaceOnDarkPositiveMinorHover - surfaceOnDarkPositiveMinorActive = other.surfaceOnDarkPositiveMinorActive - surfaceOnDarkWarningMinor = other.surfaceOnDarkWarningMinor - surfaceOnDarkWarningMinorHover = other.surfaceOnDarkWarningMinorHover - surfaceOnDarkWarningMinorActive = other.surfaceOnDarkWarningMinorActive - surfaceOnDarkNegativeMinor = other.surfaceOnDarkNegativeMinor - surfaceOnDarkNegativeMinorHover = other.surfaceOnDarkNegativeMinorHover - surfaceOnDarkNegativeMinorActive = other.surfaceOnDarkNegativeMinorActive - surfaceOnDarkInfoMinorHover = other.surfaceOnDarkInfoMinorHover - surfaceOnDarkInfoMinorActive = other.surfaceOnDarkInfoMinorActive - surfaceOnDarkTransparentPositiveHover = other.surfaceOnDarkTransparentPositiveHover - surfaceOnDarkTransparentPositiveActive = other.surfaceOnDarkTransparentPositiveActive - surfaceOnDarkTransparentWarningHover = other.surfaceOnDarkTransparentWarningHover - surfaceOnDarkTransparentWarningActive = other.surfaceOnDarkTransparentWarningActive - surfaceOnDarkTransparentNegativeHover = other.surfaceOnDarkTransparentNegativeHover - surfaceOnDarkTransparentNegativeActive = other.surfaceOnDarkTransparentNegativeActive - surfaceOnDarkTransparentInfoHover = other.surfaceOnDarkTransparentInfoHover - surfaceOnDarkTransparentInfoActive = other.surfaceOnDarkTransparentInfoActive - surfaceOnDarkSolidDefault = other.surfaceOnDarkSolidDefault - surfaceOnDarkSolidDefaultHover = other.surfaceOnDarkSolidDefaultHover - surfaceOnDarkSolidDefaultActive = other.surfaceOnDarkSolidDefaultActive - surfaceOnDarkTransparentPrimary = other.surfaceOnDarkTransparentPrimary - surfaceOnDarkTransparentPrimaryHover = other.surfaceOnDarkTransparentPrimaryHover - surfaceOnDarkTransparentPrimaryActive = other.surfaceOnDarkTransparentPrimaryActive - surfaceOnDarkTransparentSecondary = other.surfaceOnDarkTransparentSecondary - surfaceOnDarkTransparentSecondaryHover = other.surfaceOnDarkTransparentSecondaryHover - surfaceOnDarkTransparentSecondaryActive = other.surfaceOnDarkTransparentSecondaryActive - surfaceOnDarkTransparentTertiary = other.surfaceOnDarkTransparentTertiary - surfaceOnDarkTransparentTertiaryHover = other.surfaceOnDarkTransparentTertiaryHover - surfaceOnDarkTransparentTertiaryActive = other.surfaceOnDarkTransparentTertiaryActive - surfaceOnDarkTransparentCard = other.surfaceOnDarkTransparentCard - surfaceOnDarkTransparentCardBrightness = other.surfaceOnDarkTransparentCardBrightness - surfaceOnDarkTransparentCardHover = other.surfaceOnDarkTransparentCardHover - surfaceOnDarkTransparentCardActive = other.surfaceOnDarkTransparentCardActive - surfaceOnDarkTransparentPositive = other.surfaceOnDarkTransparentPositive - surfaceOnDarkTransparentWarning = other.surfaceOnDarkTransparentWarning - surfaceOnDarkTransparentNegative = other.surfaceOnDarkTransparentNegative - surfaceOnDarkSurfaceInfo = other.surfaceOnDarkSurfaceInfo - surfaceOnDarkInfoMinor = other.surfaceOnDarkInfoMinor - surfaceOnDarkTransparentInfo = other.surfaceOnDarkTransparentInfo - surfaceOnDarkSolidPrimaryHover = other.surfaceOnDarkSolidPrimaryHover - surfaceOnDarkSolidPrimaryActive = other.surfaceOnDarkSolidPrimaryActive - surfaceOnDarkSolidSecondaryHover = other.surfaceOnDarkSolidSecondaryHover - surfaceOnDarkSolidSecondaryActive = other.surfaceOnDarkSolidSecondaryActive - surfaceOnDarkSolidTertiaryHover = other.surfaceOnDarkSolidTertiaryHover - surfaceOnDarkSolidTertiaryActive = other.surfaceOnDarkSolidTertiaryActive - surfaceOnDarkSolidCardHover = other.surfaceOnDarkSolidCardHover - surfaceOnDarkSolidCardActive = other.surfaceOnDarkSolidCardActive - surfaceOnDarkTransparentDefaultHover = other.surfaceOnDarkTransparentDefaultHover - surfaceOnDarkTransparentDefaultActive = other.surfaceOnDarkTransparentDefaultActive - surfaceOnDarkAccentHover = other.surfaceOnDarkAccentHover - surfaceOnDarkAccentActive = other.surfaceOnDarkAccentActive - surfaceOnDarkPositiveHover = other.surfaceOnDarkPositiveHover - surfaceOnDarkPositiveActive = other.surfaceOnDarkPositiveActive - surfaceOnDarkWarningHover = other.surfaceOnDarkWarningHover - surfaceOnDarkWarningActive = other.surfaceOnDarkWarningActive - surfaceOnDarkNegativeHover = other.surfaceOnDarkNegativeHover - surfaceOnDarkNegativeActive = other.surfaceOnDarkNegativeActive - surfaceOnDarkClearHover = other.surfaceOnDarkClearHover - surfaceOnDarkClearActive = other.surfaceOnDarkClearActive - surfaceOnDarkTransparentDeepHover = other.surfaceOnDarkTransparentDeepHover - surfaceOnDarkTransparentDeepActive = other.surfaceOnDarkTransparentDeepActive - surfaceOnLightSolidDefault = other.surfaceOnLightSolidDefault - surfaceOnLightSolidPrimary = other.surfaceOnLightSolidPrimary - surfaceOnLightSolidPrimaryBrightness = other.surfaceOnLightSolidPrimaryBrightness - surfaceOnLightSolidSecondary = other.surfaceOnLightSolidSecondary - surfaceOnLightSolidTertiary = other.surfaceOnLightSolidTertiary - surfaceOnLightSolidCard = other.surfaceOnLightSolidCard - surfaceOnLightSolidCardBrightness = other.surfaceOnLightSolidCardBrightness - surfaceOnLightTransparentDefault = other.surfaceOnLightTransparentDefault - surfaceOnLightTransparentPrimary = other.surfaceOnLightTransparentPrimary - surfaceOnLightTransparentSecondary = other.surfaceOnLightTransparentSecondary - surfaceOnLightTransparentTertiary = other.surfaceOnLightTransparentTertiary - surfaceOnLightTransparentCard = other.surfaceOnLightTransparentCard - surfaceOnLightTransparentCardBrightness = other.surfaceOnLightTransparentCardBrightness - surfaceOnLightAccent = other.surfaceOnLightAccent - surfaceOnLightPositive = other.surfaceOnLightPositive - surfaceOnLightWarning = other.surfaceOnLightWarning - surfaceOnLightNegative = other.surfaceOnLightNegative - surfaceOnLightClear = other.surfaceOnLightClear - surfaceOnLightTransparentDeep = other.surfaceOnLightTransparentDeep - surfaceOnLightAccentMinor = other.surfaceOnLightAccentMinor - surfaceOnLightAccentMinorHover = other.surfaceOnLightAccentMinorHover - surfaceOnLightAccentMinorActive = other.surfaceOnLightAccentMinorActive - surfaceOnLightTransparentAccent = other.surfaceOnLightTransparentAccent - surfaceOnLightTransparentAccentHover = other.surfaceOnLightTransparentAccentHover - surfaceOnLightTransparentAccentActive = other.surfaceOnLightTransparentAccentActive - surfaceOnLightInfoHover = other.surfaceOnLightInfoHover - surfaceOnLightInfoActive = other.surfaceOnLightInfoActive - surfaceOnLightPositiveMinor = other.surfaceOnLightPositiveMinor - surfaceOnLightPositiveMinorHover = other.surfaceOnLightPositiveMinorHover - surfaceOnLightPositiveMinorActive = other.surfaceOnLightPositiveMinorActive - surfaceOnLightWarningMinor = other.surfaceOnLightWarningMinor - surfaceOnLightWarningMinorHover = other.surfaceOnLightWarningMinorHover - surfaceOnLightWarningMinorActive = other.surfaceOnLightWarningMinorActive - surfaceOnLightNegativeMinor = other.surfaceOnLightNegativeMinor - surfaceOnLightNegativeMinorHover = other.surfaceOnLightNegativeMinorHover - surfaceOnLightNegativeMinorActive = other.surfaceOnLightNegativeMinorActive - surfaceOnLightInfoMinorHover = other.surfaceOnLightInfoMinorHover - surfaceOnLightInfoMinorActive = other.surfaceOnLightInfoMinorActive - surfaceOnLightTransparentPositiveHover = other.surfaceOnLightTransparentPositiveHover - surfaceOnLightTransparentPositiveActive = other.surfaceOnLightTransparentPositiveActive - surfaceOnLightTransparentWarningHover = other.surfaceOnLightTransparentWarningHover - surfaceOnLightTransparentWarningActive = other.surfaceOnLightTransparentWarningActive - surfaceOnLightTransparentNegativeHover = other.surfaceOnLightTransparentNegativeHover - surfaceOnLightTransparentNegativeActive = other.surfaceOnLightTransparentNegativeActive - surfaceOnLightTransparentInfoHover = other.surfaceOnLightTransparentInfoHover - surfaceOnLightTransparentInfoActive = other.surfaceOnLightTransparentInfoActive - surfaceOnLightTransparentPositive = other.surfaceOnLightTransparentPositive - surfaceOnLightTransparentWarning = other.surfaceOnLightTransparentWarning - surfaceOnLightTransparentNegative = other.surfaceOnLightTransparentNegative - surfaceOnLightInfo = other.surfaceOnLightInfo - surfaceOnLightInfoMinor = other.surfaceOnLightInfoMinor - surfaceOnLightTransparentInfo = other.surfaceOnLightTransparentInfo - surfaceOnLightSolidDefaultHover = other.surfaceOnLightSolidDefaultHover - surfaceOnLightSolidDefaultActive = other.surfaceOnLightSolidDefaultActive - surfaceOnLightSolidPrimaryHover = other.surfaceOnLightSolidPrimaryHover - surfaceOnLightSolidPrimaryActive = other.surfaceOnLightSolidPrimaryActive - surfaceOnLightSolidSecondaryHover = other.surfaceOnLightSolidSecondaryHover - surfaceOnLightSolidSecondaryActive = other.surfaceOnLightSolidSecondaryActive - surfaceOnLightSolidTertiaryHover = other.surfaceOnLightSolidTertiaryHover - surfaceOnLightSolidTertiaryActive = other.surfaceOnLightSolidTertiaryActive - surfaceOnLightSolidCardHover = other.surfaceOnLightSolidCardHover - surfaceOnLightSolidCardActive = other.surfaceOnLightSolidCardActive - surfaceOnLightTransparentDefaultHover = other.surfaceOnLightTransparentDefaultHover - surfaceOnLightTransparentDefaultActive = other.surfaceOnLightTransparentDefaultActive - surfaceOnLightTransparentPrimaryHover = other.surfaceOnLightTransparentPrimaryHover - surfaceOnLightTransparentPrimaryActive = other.surfaceOnLightTransparentPrimaryActive - surfaceOnLightTransparentSecondaryHover = other.surfaceOnLightTransparentSecondaryHover - surfaceOnLightTransparentSecondaryActive = other.surfaceOnLightTransparentSecondaryActive - surfaceOnLightTransparentTertiaryHover = other.surfaceOnLightTransparentTertiaryHover - surfaceOnLightTransparentTertiaryActive = other.surfaceOnLightTransparentTertiaryActive - surfaceOnLightTransparentCardHover = other.surfaceOnLightTransparentCardHover - surfaceOnLightTransparentCardActive = other.surfaceOnLightTransparentCardActive - surfaceOnLightAccentHover = other.surfaceOnLightAccentHover - surfaceOnLightAccentActive = other.surfaceOnLightAccentActive - surfaceOnLightPositiveHover = other.surfaceOnLightPositiveHover - surfaceOnLightPositiveActive = other.surfaceOnLightPositiveActive - surfaceOnLightWarningHover = other.surfaceOnLightWarningHover - surfaceOnLightWarningActive = other.surfaceOnLightWarningActive - surfaceOnLightNegativeHover = other.surfaceOnLightNegativeHover - surfaceOnLightNegativeActive = other.surfaceOnLightNegativeActive - surfaceOnLightClearHover = other.surfaceOnLightClearHover - surfaceOnLightClearActive = other.surfaceOnLightClearActive - surfaceOnLightTransparentDeepHover = other.surfaceOnLightTransparentDeepHover - surfaceOnLightTransparentDeepActive = other.surfaceOnLightTransparentDeepActive - surfaceInverseSolidDefault = other.surfaceInverseSolidDefault - surfaceInverseSolidPrimary = other.surfaceInverseSolidPrimary - surfaceInverseSolidPrimaryBrightness = other.surfaceInverseSolidPrimaryBrightness - surfaceInverseSolidSecondary = other.surfaceInverseSolidSecondary - surfaceInverseSolidTertiary = other.surfaceInverseSolidTertiary - surfaceInverseSolidCard = other.surfaceInverseSolidCard - surfaceInverseSolidCardBrightness = other.surfaceInverseSolidCardBrightness - surfaceInverseTransparentDefault = other.surfaceInverseTransparentDefault - surfaceInverseTransparentPrimary = other.surfaceInverseTransparentPrimary - surfaceInverseTransparentSecondary = other.surfaceInverseTransparentSecondary - surfaceInverseTransparentTertiary = other.surfaceInverseTransparentTertiary - surfaceInverseTransparentCard = other.surfaceInverseTransparentCard - surfaceInverseTransparentCardBrightness = other.surfaceInverseTransparentCardBrightness - surfaceInverseAccent = other.surfaceInverseAccent - surfaceInversePositive = other.surfaceInversePositive - surfaceInverseWarning = other.surfaceInverseWarning - surfaceInverseNegative = other.surfaceInverseNegative - surfaceInverseClear = other.surfaceInverseClear - surfaceInverseSolidDefaultHover = other.surfaceInverseSolidDefaultHover - surfaceInverseSolidDefaultActive = other.surfaceInverseSolidDefaultActive - surfaceInverseSolidPrimaryHover = other.surfaceInverseSolidPrimaryHover - surfaceInverseSolidPrimaryActive = other.surfaceInverseSolidPrimaryActive - surfaceInverseSolidSecondaryHover = other.surfaceInverseSolidSecondaryHover - surfaceInverseSolidSecondaryActive = other.surfaceInverseSolidSecondaryActive - surfaceInverseSolidTertiaryHover = other.surfaceInverseSolidTertiaryHover - surfaceInverseSolidTertiaryActive = other.surfaceInverseSolidTertiaryActive - surfaceInverseSolidCardHover = other.surfaceInverseSolidCardHover - surfaceInverseSolidCardActive = other.surfaceInverseSolidCardActive - surfaceInverseTransparentDefaultHover = other.surfaceInverseTransparentDefaultHover - surfaceInverseTransparentDefaultActive = other.surfaceInverseTransparentDefaultActive - surfaceInverseTransparentPrimaryHover = other.surfaceInverseTransparentPrimaryHover - surfaceInverseTransparentPrimaryActive = other.surfaceInverseTransparentPrimaryActive - surfaceInverseTransparentSecondaryHover = other.surfaceInverseTransparentSecondaryHover - surfaceInverseTransparentSecondaryActive = other.surfaceInverseTransparentSecondaryActive - surfaceInverseTransparentTertiaryHover = other.surfaceInverseTransparentTertiaryHover - surfaceInverseTransparentTertiaryActive = other.surfaceInverseTransparentTertiaryActive - surfaceInverseTransparentCardHover = other.surfaceInverseTransparentCardHover - surfaceInverseTransparentCardActive = other.surfaceInverseTransparentCardActive - surfaceInverseAccentHover = other.surfaceInverseAccentHover - surfaceInverseAccentActive = other.surfaceInverseAccentActive - surfaceInversePositiveHover = other.surfaceInversePositiveHover - surfaceInversePositiveActive = other.surfaceInversePositiveActive - surfaceInverseWarningHover = other.surfaceInverseWarningHover - surfaceInverseWarningActive = other.surfaceInverseWarningActive - surfaceInverseNegativeHover = other.surfaceInverseNegativeHover - surfaceInverseNegativeActive = other.surfaceInverseNegativeActive - surfaceInverseClearHover = other.surfaceInverseClearHover - surfaceInverseClearActive = other.surfaceInverseClearActive - surfaceInverseTransparentDeep = other.surfaceInverseTransparentDeep - surfaceInverseTransparentDeepHover = other.surfaceInverseTransparentDeepHover - surfaceInverseTransparentDeepActive = other.surfaceInverseTransparentDeepActive - surfaceInverseAccentMinor = other.surfaceInverseAccentMinor - surfaceInverseAccentMinorHover = other.surfaceInverseAccentMinorHover - surfaceInverseAccentMinorActive = other.surfaceInverseAccentMinorActive - surfaceInverseTransparentAccent = other.surfaceInverseTransparentAccent - surfaceInverseTransparentAccentHover = other.surfaceInverseTransparentAccentHover - surfaceInverseTransparentAccentActive = other.surfaceInverseTransparentAccentActive - surfaceInverseInfo = other.surfaceInverseInfo - surfaceInverseInfoHover = other.surfaceInverseInfoHover - surfaceInverseInfoActive = other.surfaceInverseInfoActive - surfaceInversePositiveMinor = other.surfaceInversePositiveMinor - surfaceInversePositiveMinorHover = other.surfaceInversePositiveMinorHover - surfaceInversePositiveMinorActive = other.surfaceInversePositiveMinorActive - surfaceInverseWarningMinor = other.surfaceInverseWarningMinor - surfaceInverseWarningMinorHover = other.surfaceInverseWarningMinorHover - surfaceInverseWarningMinorActive = other.surfaceInverseWarningMinorActive - surfaceInverseNegativeMinor = other.surfaceInverseNegativeMinor - surfaceInverseNegativeMinorHover = other.surfaceInverseNegativeMinorHover - surfaceInverseNegativeMinorActive = other.surfaceInverseNegativeMinorActive - surfaceInverseInfoMinor = other.surfaceInverseInfoMinor - surfaceInverseInfoMinorHover = other.surfaceInverseInfoMinorHover - surfaceInverseInfoMinorActive = other.surfaceInverseInfoMinorActive - surfaceInverseTransparentPositive = other.surfaceInverseTransparentPositive - surfaceInverseTransparentPositiveHover = other.surfaceInverseTransparentPositiveHover - surfaceInverseTransparentPositiveActive = other.surfaceInverseTransparentPositiveActive - surfaceInverseTransparentWarning = other.surfaceInverseTransparentWarning - surfaceInverseTransparentWarningHover = other.surfaceInverseTransparentWarningHover - surfaceInverseTransparentWarningActive = other.surfaceInverseTransparentWarningActive - surfaceInverseTransparentNegative = other.surfaceInverseTransparentNegative - surfaceInverseTransparentNegativeHover = other.surfaceInverseTransparentNegativeHover - surfaceInverseTransparentNegativeActive = other.surfaceInverseTransparentNegativeActive - surfaceInverseTransparentInfo = other.surfaceInverseTransparentInfo - surfaceInverseTransparentInfoHover = other.surfaceInverseTransparentInfoHover - surfaceInverseTransparentInfoActive = other.surfaceInverseTransparentInfoActive - backgroundDefaultPrimary = other.backgroundDefaultPrimary - backgroundDefaultPrimaryBrightness = other.backgroundDefaultPrimaryBrightness - backgroundDefaultSecondary = other.backgroundDefaultSecondary - backgroundDefaultTertiary = other.backgroundDefaultTertiary - backgroundDarkPrimary = other.backgroundDarkPrimary - backgroundDarkSecondary = other.backgroundDarkSecondary - backgroundDarkTertiary = other.backgroundDarkTertiary - backgroundLightPrimary = other.backgroundLightPrimary - backgroundLightSecondary = other.backgroundLightSecondary - backgroundLightTertiary = other.backgroundLightTertiary - backgroundInversePrimaryBrightness = other.backgroundInversePrimaryBrightness - backgroundInverseSecondary = other.backgroundInverseSecondary - backgroundInverseTertiary = other.backgroundInverseTertiary - backgroundInversePrimary = other.backgroundInversePrimary - overlayDefaultSoft = other.overlayDefaultSoft - overlayDefaultHard = other.overlayDefaultHard - overlayDefaultBlur = other.overlayDefaultBlur - overlayOnDarkSoft = other.overlayOnDarkSoft - overlayOnDarkHard = other.overlayOnDarkHard - overlayOnDarkBlur = other.overlayOnDarkBlur - overlayOnLightSoft = other.overlayOnLightSoft - overlayOnLightHard = other.overlayOnLightHard - overlayOnLightBlur = other.overlayOnLightBlur - overlayInverseHard = other.overlayInverseHard - overlayInverseSoft = other.overlayInverseSoft - overlayInverseBlur = other.overlayInverseBlur - outlineDefaultSecondaryHover = other.outlineDefaultSecondaryHover - outlineDefaultSecondaryActive = other.outlineDefaultSecondaryActive - outlineDefaultTertiaryHover = other.outlineDefaultTertiaryHover - outlineDefaultTertiaryActive = other.outlineDefaultTertiaryActive - outlineDefaultDefaultHover = other.outlineDefaultDefaultHover - outlineDefaultDefaultActive = other.outlineDefaultDefaultActive - outlineDefaultTransparentPrimaryHover = other.outlineDefaultTransparentPrimaryHover - outlineDefaultTransparentPrimaryActive = other.outlineDefaultTransparentPrimaryActive - outlineDefaultTransparentSecondaryHover = other.outlineDefaultTransparentSecondaryHover - outlineDefaultTransparentSecondaryActive = other.outlineDefaultTransparentSecondaryActive - outlineDefaultTransparentTertiaryHover = other.outlineDefaultTransparentTertiaryHover - outlineDefaultTransparentTertiaryActive = other.outlineDefaultTransparentTertiaryActive - outlineDefaultTransparentClearHover = other.outlineDefaultTransparentClearHover - outlineDefaultTransparentClearActive = other.outlineDefaultTransparentClearActive - outlineDefaultAccentHover = other.outlineDefaultAccentHover - outlineDefaultAccentActive = other.outlineDefaultAccentActive - outlineDefaultAccentMinorHover = other.outlineDefaultAccentMinorHover - outlineDefaultAccentMinorActive = other.outlineDefaultAccentMinorActive - outlineDefaultTransparentAccentHover = other.outlineDefaultTransparentAccentHover - outlineDefaultTransparentAccentActive = other.outlineDefaultTransparentAccentActive - outlineDefaultPositiveHover = other.outlineDefaultPositiveHover - outlineDefaultPositiveActive = other.outlineDefaultPositiveActive - outlineDefaultWarningHover = other.outlineDefaultWarningHover - outlineDefaultWarningActive = other.outlineDefaultWarningActive - outlineDefaultNegativeHover = other.outlineDefaultNegativeHover - outlineDefaultNegativeActive = other.outlineDefaultNegativeActive - outlineDefaultInfoHover = other.outlineDefaultInfoHover - outlineDefaultInfoActive = other.outlineDefaultInfoActive - outlineDefaultPositiveMinorHover = other.outlineDefaultPositiveMinorHover - outlineDefaultPositiveMinorActive = other.outlineDefaultPositiveMinorActive - outlineDefaultWarningMinorHover = other.outlineDefaultWarningMinorHover - outlineDefaultWarningMinorActive = other.outlineDefaultWarningMinorActive - outlineDefaultNegativeMinorHover = other.outlineDefaultNegativeMinorHover - outlineDefaultNegativeMinorActive = other.outlineDefaultNegativeMinorActive - outlineDefaultInfoMinorHover = other.outlineDefaultInfoMinorHover - outlineDefaultInfoMinorActive = other.outlineDefaultInfoMinorActive - outlineDefaultTransparentPositiveHover = other.outlineDefaultTransparentPositiveHover - outlineDefaultTransparentPositiveActive = other.outlineDefaultTransparentPositiveActive - outlineDefaultTransparentWarningHover = other.outlineDefaultTransparentWarningHover - outlineDefaultTransparentWarningActive = other.outlineDefaultTransparentWarningActive - outlineDefaultNegativeTransparentHover = other.outlineDefaultNegativeTransparentHover - outlineDefaultNegativeTransparentActive = other.outlineDefaultNegativeTransparentActive - outlineDefaultTransparentInfoHover = other.outlineDefaultTransparentInfoHover - outlineDefaultTransparentInfoActive = other.outlineDefaultTransparentInfoActive - outlineDefaultPrimaryHover = other.outlineDefaultPrimaryHover - outlineDefaultPrimaryActive = other.outlineDefaultPrimaryActive - outlineDefaultTransparentPrimary = other.outlineDefaultTransparentPrimary - outlineDefaultTransparentSecondary = other.outlineDefaultTransparentSecondary - outlineDefaultTransparentTertiary = other.outlineDefaultTransparentTertiary - outlineDefaultTransparentClear = other.outlineDefaultTransparentClear - outlineDefaultAccent = other.outlineDefaultAccent - outlineDefaultAccentMinor = other.outlineDefaultAccentMinor - outlineDefaultTransparentAccent = other.outlineDefaultTransparentAccent - outlineDefaultPositive = other.outlineDefaultPositive - outlineDefaultWarning = other.outlineDefaultWarning - outlineDefaultNegative = other.outlineDefaultNegative - outlineDefaultPositiveMinor = other.outlineDefaultPositiveMinor - outlineDefaultWarningMinor = other.outlineDefaultWarningMinor - outlineDefaultNegativeMinor = other.outlineDefaultNegativeMinor - outlineDefaultTransparentPositive = other.outlineDefaultTransparentPositive - outlineDefaultTransparentWarning = other.outlineDefaultTransparentWarning - outlineDefaultTransparentNegative = other.outlineDefaultTransparentNegative - outlineDefaultTransparentNegativeHover = other.outlineDefaultTransparentNegativeHover - outlineDefaultTransparentNegativeActive = other.outlineDefaultTransparentNegativeActive - outlineDefaultInfo = other.outlineDefaultInfo - outlineDefaultInfoMinor = other.outlineDefaultInfoMinor - outlineDefaultTransparentInfo = other.outlineDefaultTransparentInfo - outlineDefaultSolidPrimaryHover = other.outlineDefaultSolidPrimaryHover - outlineDefaultSolidPrimaryActive = other.outlineDefaultSolidPrimaryActive - outlineDefaultSolidSecondaryHover = other.outlineDefaultSolidSecondaryHover - outlineDefaultSolidSecondaryActive = other.outlineDefaultSolidSecondaryActive - outlineDefaultSolidTertiaryHover = other.outlineDefaultSolidTertiaryHover - outlineDefaultSolidTertiaryActive = other.outlineDefaultSolidTertiaryActive - outlineDefaultSolidDefaultHover = other.outlineDefaultSolidDefaultHover - outlineDefaultSolidDefaultActive = other.outlineDefaultSolidDefaultActive - outlineDefaultSolidPrimary = other.outlineDefaultSolidPrimary - outlineDefaultSolidSecondary = other.outlineDefaultSolidSecondary - outlineDefaultSolidTertiary = other.outlineDefaultSolidTertiary - outlineDefaultSolidDefault = other.outlineDefaultSolidDefault - outlineOnDarkSecondaryHover = other.outlineOnDarkSecondaryHover - outlineOnDarkSecondaryActive = other.outlineOnDarkSecondaryActive - outlineOnDarkTertiaryHover = other.outlineOnDarkTertiaryHover - outlineOnDarkTertiaryActive = other.outlineOnDarkTertiaryActive - outlineOnDarkDefaultHover = other.outlineOnDarkDefaultHover - outlineOnDarkDefaultActive = other.outlineOnDarkDefaultActive - outlineOnDarkTransparentPrimary = other.outlineOnDarkTransparentPrimary - outlineOnDarkTransparentPrimaryHover = other.outlineOnDarkTransparentPrimaryHover - outlineOnDarkTransparentPrimaryActive = other.outlineOnDarkTransparentPrimaryActive - outlineOnDarkTransparentSecondary = other.outlineOnDarkTransparentSecondary - outlineOnDarkTransparentSecondaryHover = other.outlineOnDarkTransparentSecondaryHover - outlineOnDarkTransparentSecondaryActive = other.outlineOnDarkTransparentSecondaryActive - outlineOnDarkTransparentTertiary = other.outlineOnDarkTransparentTertiary - outlineOnDarkTransparentTertiaryHover = other.outlineOnDarkTransparentTertiaryHover - outlineOnDarkTransparentTertiaryActive = other.outlineOnDarkTransparentTertiaryActive - outlineOnDarkAccent = other.outlineOnDarkAccent - outlineOnDarkAccentHover = other.outlineOnDarkAccentHover - outlineOnDarkAccentActive = other.outlineOnDarkAccentActive - outlineOnDarkAccentMinor = other.outlineOnDarkAccentMinor - outlineOnDarkAccentMinorHover = other.outlineOnDarkAccentMinorHover - outlineOnDarkAccentMinorActive = other.outlineOnDarkAccentMinorActive - outlineOnDarkTransparentAccent = other.outlineOnDarkTransparentAccent - outlineOnDarkTransparentAccentHover = other.outlineOnDarkTransparentAccentHover - outlineOnDarkTransparentAccentActive = other.outlineOnDarkTransparentAccentActive - outlineOnDarkPositive = other.outlineOnDarkPositive - outlineOnDarkPositiveHover = other.outlineOnDarkPositiveHover - outlineOnDarkPositiveActive = other.outlineOnDarkPositiveActive - outlineOnDarkWarning = other.outlineOnDarkWarning - outlineOnDarkWarningHover = other.outlineOnDarkWarningHover - outlineOnDarkWarningActive = other.outlineOnDarkWarningActive - outlineOnDarkNegative = other.outlineOnDarkNegative - outlineOnDarkNegativeHover = other.outlineOnDarkNegativeHover - outlineOnDarkNegativeActive = other.outlineOnDarkNegativeActive - outlineOnDarkInfoHover = other.outlineOnDarkInfoHover - outlineOnDarkInfoActive = other.outlineOnDarkInfoActive - outlineOnDarkPositiveMinor = other.outlineOnDarkPositiveMinor - outlineOnDarkPositiveMinorHover = other.outlineOnDarkPositiveMinorHover - outlineOnDarkPositiveMinorActive = other.outlineOnDarkPositiveMinorActive - outlineOnDarkWarningMinor = other.outlineOnDarkWarningMinor - outlineOnDarkWarningMinorHover = other.outlineOnDarkWarningMinorHover - outlineOnDarkWarningMinorActive = other.outlineOnDarkWarningMinorActive - outlineOnDarkNegativeMinor = other.outlineOnDarkNegativeMinor - outlineOnDarkNegativeMinorHover = other.outlineOnDarkNegativeMinorHover - outlineOnDarkNegativeMinorActive = other.outlineOnDarkNegativeMinorActive - outlineOnDarkInfoMinorHover = other.outlineOnDarkInfoMinorHover - outlineOnDarkInfoMinorActive = other.outlineOnDarkInfoMinorActive - outlineOnDarkTransparentPositive = other.outlineOnDarkTransparentPositive - outlineOnDarkTransparentPositiveHover = other.outlineOnDarkTransparentPositiveHover - outlineOnDarkTransparentPositiveActive = other.outlineOnDarkTransparentPositiveActive - outlineOnDarkTransparentWarning = other.outlineOnDarkTransparentWarning - outlineOnDarkTransparentWarningHover = other.outlineOnDarkTransparentWarningHover - outlineOnDarkTransparentWarningActive = other.outlineOnDarkTransparentWarningActive - outlineOnDarkNegativeTransparent = other.outlineOnDarkNegativeTransparent - outlineOnDarkNegativeTransparentHover = other.outlineOnDarkNegativeTransparentHover - outlineOnDarkNegativeTransparentActive = other.outlineOnDarkNegativeTransparentActive - outlineOnDarkTransparentInfoHover = other.outlineOnDarkTransparentInfoHover - outlineOnDarkTransparentInfoActive = other.outlineOnDarkTransparentInfoActive - outlineOnDarkPrimaryHover = other.outlineOnDarkPrimaryHover - outlineOnDarkPrimaryActive = other.outlineOnDarkPrimaryActive - outlineOnDarkInfo = other.outlineOnDarkInfo - outlineOnDarkInfoMinor = other.outlineOnDarkInfoMinor - outlineOnDarkTransparentInfo = other.outlineOnDarkTransparentInfo - outlineOnDarkSolidPrimary = other.outlineOnDarkSolidPrimary - outlineOnDarkSolidPrimaryHover = other.outlineOnDarkSolidPrimaryHover - outlineOnDarkSolidPrimaryActive = other.outlineOnDarkSolidPrimaryActive - outlineOnDarkSolidSecondary = other.outlineOnDarkSolidSecondary - outlineOnDarkSolidSecondaryHover = other.outlineOnDarkSolidSecondaryHover - outlineOnDarkSolidSecondaryActive = other.outlineOnDarkSolidSecondaryActive - outlineOnDarkSolidTertiary = other.outlineOnDarkSolidTertiary - outlineOnDarkSolidTertiaryHover = other.outlineOnDarkSolidTertiaryHover - outlineOnDarkSolidTertiaryActive = other.outlineOnDarkSolidTertiaryActive - outlineOnDarkSolidDefault = other.outlineOnDarkSolidDefault - outlineOnDarkSolidDefaultHover = other.outlineOnDarkSolidDefaultHover - outlineOnDarkSolidDefaultActive = other.outlineOnDarkSolidDefaultActive - outlineOnLightSecondaryHover = other.outlineOnLightSecondaryHover - outlineOnLightSecondaryActive = other.outlineOnLightSecondaryActive - outlineOnLightTertiaryHover = other.outlineOnLightTertiaryHover - outlineOnLightTertiaryActive = other.outlineOnLightTertiaryActive - outlineOnLightDefaultHover = other.outlineOnLightDefaultHover - outlineOnLightDefaultActive = other.outlineOnLightDefaultActive - outlineOnLightTransparentPrimary = other.outlineOnLightTransparentPrimary - outlineOnLightTransparentPrimaryHover = other.outlineOnLightTransparentPrimaryHover - outlineOnLightTransparentPrimaryActive = other.outlineOnLightTransparentPrimaryActive - outlineOnLightTransparentSecondary = other.outlineOnLightTransparentSecondary - outlineOnLightTransparentSecondaryHover = other.outlineOnLightTransparentSecondaryHover - outlineOnLightTransparentSecondaryActive = other.outlineOnLightTransparentSecondaryActive - outlineOnLightTransparentTertiary = other.outlineOnLightTransparentTertiary - outlineOnLightTransparentTertiaryHover = other.outlineOnLightTransparentTertiaryHover - outlineOnLightTransparentTertiaryActive = other.outlineOnLightTransparentTertiaryActive - outlineOnLightAccent = other.outlineOnLightAccent - outlineOnLightAccentHover = other.outlineOnLightAccentHover - outlineOnLightAccentActive = other.outlineOnLightAccentActive - outlineOnLightAccentMinor = other.outlineOnLightAccentMinor - outlineOnLightAccentMinorHover = other.outlineOnLightAccentMinorHover - outlineOnLightAccentMinorActive = other.outlineOnLightAccentMinorActive - outlineOnLightTransparentAccent = other.outlineOnLightTransparentAccent - outlineOnLightTransparentAccentHover = other.outlineOnLightTransparentAccentHover - outlineOnLightTransparentAccentActive = other.outlineOnLightTransparentAccentActive - outlineOnLightPositive = other.outlineOnLightPositive - outlineOnLightPositiveHover = other.outlineOnLightPositiveHover - outlineOnLightPositiveActive = other.outlineOnLightPositiveActive - outlineOnLightWarning = other.outlineOnLightWarning - outlineOnLightWarningHover = other.outlineOnLightWarningHover - outlineOnLightWarningActive = other.outlineOnLightWarningActive - outlineOnLightNegative = other.outlineOnLightNegative - outlineOnLightNegativeHover = other.outlineOnLightNegativeHover - outlineOnLightNegativeActive = other.outlineOnLightNegativeActive - outlineOnLightInfoHover = other.outlineOnLightInfoHover - outlineOnLightInfoActive = other.outlineOnLightInfoActive - outlineOnLightPositiveMinor = other.outlineOnLightPositiveMinor - outlineOnLightPositiveMinorHover = other.outlineOnLightPositiveMinorHover - outlineOnLightPositiveMinorActive = other.outlineOnLightPositiveMinorActive - outlineOnLightWarningMinor = other.outlineOnLightWarningMinor - outlineOnLightWarningMinorHover = other.outlineOnLightWarningMinorHover - outlineOnLightWarningMinorActive = other.outlineOnLightWarningMinorActive - outlineOnLightNegativeMinor = other.outlineOnLightNegativeMinor - outlineOnLightNegativeMinorHover = other.outlineOnLightNegativeMinorHover - outlineOnLightNegativeMinorActive = other.outlineOnLightNegativeMinorActive - outlineOnLightInfoMinorHover = other.outlineOnLightInfoMinorHover - outlineOnLightInfoMinorActive = other.outlineOnLightInfoMinorActive - outlineOnLightTransparentPositive = other.outlineOnLightTransparentPositive - outlineOnLightTransparentPositiveHover = other.outlineOnLightTransparentPositiveHover - outlineOnLightTransparentPositiveActive = other.outlineOnLightTransparentPositiveActive - outlineOnLightTransparentWarning = other.outlineOnLightTransparentWarning - outlineOnLightTransparentWarningHover = other.outlineOnLightTransparentWarningHover - outlineOnLightTransparentWarningActive = other.outlineOnLightTransparentWarningActive - outlineOnLightNegativeTransparent = other.outlineOnLightNegativeTransparent - outlineOnLightNegativeTransparentHover = other.outlineOnLightNegativeTransparentHover - outlineOnLightNegativeTransparentActive = other.outlineOnLightNegativeTransparentActive - outlineOnLightTransparentInfoHover = other.outlineOnLightTransparentInfoHover - outlineOnLightTransparentInfoActive = other.outlineOnLightTransparentInfoActive - outlineOnLightPrimaryHover = other.outlineOnLightPrimaryHover - outlineOnLightPrimaryActive = other.outlineOnLightPrimaryActive - outlineOnLightInfo = other.outlineOnLightInfo - outlineOnLightInfoMinor = other.outlineOnLightInfoMinor - outlineOnLightTransparentInfo = other.outlineOnLightTransparentInfo - outlineOnLightSolidTertiaryHover = other.outlineOnLightSolidTertiaryHover - outlineOnLightSolidTertiaryActive = other.outlineOnLightSolidTertiaryActive - outlineOnLightSolidDefaultHover = other.outlineOnLightSolidDefaultHover - outlineOnLightSolidDefaultActive = other.outlineOnLightSolidDefaultActive - outlineOnLightSolidPrimaryHover = other.outlineOnLightSolidPrimaryHover - outlineOnLightSolidPrimaryActive = other.outlineOnLightSolidPrimaryActive - outlineOnLightSolidSecondaryHover = other.outlineOnLightSolidSecondaryHover - outlineOnLightSolidSecondaryActive = other.outlineOnLightSolidSecondaryActive - outlineOnLightSolidPrimary = other.outlineOnLightSolidPrimary - outlineOnLightSolidSecondary = other.outlineOnLightSolidSecondary - outlineOnLightSolidTertiary = other.outlineOnLightSolidTertiary - outlineOnLightSolidDefault = other.outlineOnLightSolidDefault - outlineInversePrimaryHover = other.outlineInversePrimaryHover - outlineInversePrimaryActive = other.outlineInversePrimaryActive - outlineInverseSecondaryHover = other.outlineInverseSecondaryHover - outlineInverseSecondaryActive = other.outlineInverseSecondaryActive - outlineInverseTertiaryHover = other.outlineInverseTertiaryHover - outlineInverseTertiaryActive = other.outlineInverseTertiaryActive - outlineInverseDefaultHover = other.outlineInverseDefaultHover - outlineInverseDefaultActive = other.outlineInverseDefaultActive - outlineInverseTransparentPrimaryHover = other.outlineInverseTransparentPrimaryHover - outlineInverseTransparentPrimaryActive = other.outlineInverseTransparentPrimaryActive - outlineInverseTransparentSecondaryHover = other.outlineInverseTransparentSecondaryHover - outlineInverseTransparentSecondaryActive = other.outlineInverseTransparentSecondaryActive - outlineInverseTransparentTertiaryHover = other.outlineInverseTransparentTertiaryHover - outlineInverseTransparentTertiaryActive = other.outlineInverseTransparentTertiaryActive - outlineInverseTransparentClearHover = other.outlineInverseTransparentClearHover - outlineInverseTransparentClearActive = other.outlineInverseTransparentClearActive - outlineInverseAccentHover = other.outlineInverseAccentHover - outlineInverseAccentActive = other.outlineInverseAccentActive - outlineInverseAccentMinorHover = other.outlineInverseAccentMinorHover - outlineInverseAccentMinorActive = other.outlineInverseAccentMinorActive - outlineInverseTransparentAccentHover = other.outlineInverseTransparentAccentHover - outlineInverseTransparentAccentActive = other.outlineInverseTransparentAccentActive - outlineInversePositiveHover = other.outlineInversePositiveHover - outlineInversePositiveActive = other.outlineInversePositiveActive - outlineInverseWarningHover = other.outlineInverseWarningHover - outlineInverseWarningActive = other.outlineInverseWarningActive - outlineInverseNegativeHover = other.outlineInverseNegativeHover - outlineInverseNegativeActive = other.outlineInverseNegativeActive - outlineInverseInfoHover = other.outlineInverseInfoHover - outlineInverseInfoActive = other.outlineInverseInfoActive - outlineInversePositiveMinorHover = other.outlineInversePositiveMinorHover - outlineInversePositiveMinorActive = other.outlineInversePositiveMinorActive - outlineInverseWarningMinorHover = other.outlineInverseWarningMinorHover - outlineInverseWarningMinorActive = other.outlineInverseWarningMinorActive - outlineInverseNegativeMinorHover = other.outlineInverseNegativeMinorHover - outlineInverseNegativeMinorActive = other.outlineInverseNegativeMinorActive - outlineInverseInfoMinorHover = other.outlineInverseInfoMinorHover - outlineInverseInfoMinorActive = other.outlineInverseInfoMinorActive - outlineInverseTransparentPositiveHover = other.outlineInverseTransparentPositiveHover - outlineInverseTransparentPositiveActive = other.outlineInverseTransparentPositiveActive - outlineInverseTransparentWarningHover = other.outlineInverseTransparentWarningHover - outlineInverseTransparentWarningActive = other.outlineInverseTransparentWarningActive - outlineInverseTransparentNegativeHover = other.outlineInverseTransparentNegativeHover - outlineInverseTransparentNegativeActive = other.outlineInverseTransparentNegativeActive - outlineInverseTransparentInfoHover = other.outlineInverseTransparentInfoHover - outlineInverseTransparentInfoActive = other.outlineInverseTransparentInfoActive - outlineInverseTransparentPrimary = other.outlineInverseTransparentPrimary - outlineInverseTransparentSecondary = other.outlineInverseTransparentSecondary - outlineInverseTransparentTertiary = other.outlineInverseTransparentTertiary - outlineInverseTransparentClear = other.outlineInverseTransparentClear - outlineInverseAccent = other.outlineInverseAccent - outlineInverseAccentMinor = other.outlineInverseAccentMinor - outlineInverseTransparentAccent = other.outlineInverseTransparentAccent - outlineInversePositive = other.outlineInversePositive - outlineInverseWarning = other.outlineInverseWarning - outlineInverseNegative = other.outlineInverseNegative - outlineInverseInfo = other.outlineInverseInfo - outlineInversePositiveMinor = other.outlineInversePositiveMinor - outlineInverseWarningMinor = other.outlineInverseWarningMinor - outlineInverseNegativeMinor = other.outlineInverseNegativeMinor - outlineInverseInfoMinor = other.outlineInverseInfoMinor - outlineInverseTransparentPositive = other.outlineInverseTransparentPositive - outlineInverseTransparentWarning = other.outlineInverseTransparentWarning - outlineInverseTransparentNegative = other.outlineInverseTransparentNegative - outlineInverseTransparentInfo = other.outlineInverseTransparentInfo - outlineInverseSolidPrimaryHover = other.outlineInverseSolidPrimaryHover - outlineInverseSolidPrimaryActive = other.outlineInverseSolidPrimaryActive - outlineInverseSolidSecondaryHover = other.outlineInverseSolidSecondaryHover - outlineInverseSolidSecondaryActive = other.outlineInverseSolidSecondaryActive - outlineInverseSolidTertiaryHover = other.outlineInverseSolidTertiaryHover - outlineInverseSolidTertiaryActive = other.outlineInverseSolidTertiaryActive - outlineInverseSolidDefaultHover = other.outlineInverseSolidDefaultHover - outlineInverseSolidDefaultActive = other.outlineInverseSolidDefaultActive - outlineInverseSolidPrimary = other.outlineInverseSolidPrimary - outlineInverseSolidSecondary = other.outlineInverseSolidSecondary - outlineInverseSolidTertiary = other.outlineInverseSolidTertiary - outlineInverseSolidDefault = other.outlineInverseSolidDefault - dataDefaultYellow = other.dataDefaultYellow - dataDefaultYellowHover = other.dataDefaultYellowHover - dataDefaultYellowActive = other.dataDefaultYellowActive - dataDefaultYellowMinor = other.dataDefaultYellowMinor - dataDefaultYellowMinorHover = other.dataDefaultYellowMinorHover - dataDefaultYellowMinorActive = other.dataDefaultYellowMinorActive - dataDefaultYellowTransparent = other.dataDefaultYellowTransparent - dataDefaultYellowTransparentHover = other.dataDefaultYellowTransparentHover - dataDefaultYellowTransparentActive = other.dataDefaultYellowTransparentActive - dataOnDarkYellow = other.dataOnDarkYellow - dataOnDarkYellowHover = other.dataOnDarkYellowHover - dataOnDarkYellowActive = other.dataOnDarkYellowActive - dataOnDarkYellowMinor = other.dataOnDarkYellowMinor - dataOnDarkYellowMinorHover = other.dataOnDarkYellowMinorHover - dataOnDarkYellowMinorActive = other.dataOnDarkYellowMinorActive - dataOnDarkYellowTransparent = other.dataOnDarkYellowTransparent - dataOnDarkYellowTransparentHover = other.dataOnDarkYellowTransparentHover - dataOnDarkYellowTransparentActive = other.dataOnDarkYellowTransparentActive - dataOnLightYellow = other.dataOnLightYellow - dataOnLightYellowHover = other.dataOnLightYellowHover - dataOnLightYellowActive = other.dataOnLightYellowActive - dataOnLightYellowMinor = other.dataOnLightYellowMinor - dataOnLightYellowMinorHover = other.dataOnLightYellowMinorHover - dataOnLightYellowMinorActive = other.dataOnLightYellowMinorActive - dataOnLightYellowTransparent = other.dataOnLightYellowTransparent - dataOnLightYellowTransparentHover = other.dataOnLightYellowTransparentHover - dataOnLightYellowTransparentActive = other.dataOnLightYellowTransparentActive - dataInverseYellow = other.dataInverseYellow - dataInverseYellowHover = other.dataInverseYellowHover - dataInverseYellowActive = other.dataInverseYellowActive - dataInverseYellowMinor = other.dataInverseYellowMinor - dataInverseYellowMinorHover = other.dataInverseYellowMinorHover - dataInverseYellowMinorActive = other.dataInverseYellowMinorActive - dataInverseYellowTransparent = other.dataInverseYellowTransparent - dataInverseYellowTransparentHover = other.dataInverseYellowTransparentHover - dataInverseYellowTransparentActive = other.dataInverseYellowTransparentActive -} - -private fun MutableMap.add( - attribute: String, - defaultTokenValue: Color, - overwriteMap: Map, -) { - this[attribute] = overwriteMap[attribute] ?: defaultTokenValue -} - -/** - * Цвета [PlasmaGigaAppColors] для светлой темы - */ -@Suppress("LongMethod") -public fun lightPlasmaGigaAppColors(overrideColors: ColorOverrideScope.() -> Unit = {}): PlasmaGigaAppColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overwrite = colorOverrideScope.overrideMap - val initial = mutableMapOf() - initial.add("textDefaultPrimary", LightColorTokens.TextDefaultPrimary, overwrite) - initial.add( - "textDefaultPrimaryBrightness", - LightColorTokens.TextDefaultPrimaryBrightness, - overwrite, - ) - initial.add("textDefaultSecondary", LightColorTokens.TextDefaultSecondary, overwrite) - initial.add("textDefaultTertiary", LightColorTokens.TextDefaultTertiary, overwrite) - initial.add("textDefaultParagraph", LightColorTokens.TextDefaultParagraph, overwrite) - initial.add("textDefaultAccent", LightColorTokens.TextDefaultAccent, overwrite) - initial.add("textDefaultPositive", LightColorTokens.TextDefaultPositive, overwrite) - initial.add("textDefaultWarning", LightColorTokens.TextDefaultWarning, overwrite) - initial.add("textDefaultNegative", LightColorTokens.TextDefaultNegative, overwrite) - initial.add( - "textDefaultAccentMinorHover", - LightColorTokens.TextDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMinorActive", - LightColorTokens.TextDefaultAccentMinorActive, - overwrite, - ) - initial.add("textDefaultInfoHover", LightColorTokens.TextDefaultInfoHover, overwrite) - initial.add("textDefaultInfoActive", LightColorTokens.TextDefaultInfoActive, overwrite) - initial.add( - "textDefaultPositiveMinorHover", - LightColorTokens.TextDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "textDefaultPositiveMinorActive", - LightColorTokens.TextDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "textDefaultWarningMinorHover", - LightColorTokens.TextDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "textDefaultWarningMinorActive", - LightColorTokens.TextDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorHover", - LightColorTokens.TextDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorActive", - LightColorTokens.TextDefaultNegativeMinorActive, - overwrite, - ) - initial.add("textDefaultInfoMinorHover", LightColorTokens.TextDefaultInfoMinorHover, overwrite) - initial.add( - "textDefaultInfoMinorActive", - LightColorTokens.TextDefaultInfoMinorActive, - overwrite, - ) - initial.add("textDefaultAccentMinor", LightColorTokens.TextDefaultAccentMinor, overwrite) - initial.add("textDefaultPositiveMinor", LightColorTokens.TextDefaultPositiveMinor, overwrite) - initial.add("textDefaultWarningMinor", LightColorTokens.TextDefaultWarningMinor, overwrite) - initial.add("textDefaultNegativeMinor", LightColorTokens.TextDefaultNegativeMinor, overwrite) - initial.add("textDefaultInfo", LightColorTokens.TextDefaultInfo, overwrite) - initial.add("textDefaultInfoMinor", LightColorTokens.TextDefaultInfoMinor, overwrite) - initial.add("textDefaultPrimaryHover", LightColorTokens.TextDefaultPrimaryHover, overwrite) - initial.add("textDefaultPrimaryActive", LightColorTokens.TextDefaultPrimaryActive, overwrite) - initial.add("textDefaultSecondaryHover", LightColorTokens.TextDefaultSecondaryHover, overwrite) - initial.add( - "textDefaultSecondaryActive", - LightColorTokens.TextDefaultSecondaryActive, - overwrite, - ) - initial.add("textDefaultTertiaryHover", LightColorTokens.TextDefaultTertiaryHover, overwrite) - initial.add("textDefaultTertiaryActive", LightColorTokens.TextDefaultTertiaryActive, overwrite) - initial.add("textDefaultParagraphHover", LightColorTokens.TextDefaultParagraphHover, overwrite) - initial.add( - "textDefaultParagraphActive", - LightColorTokens.TextDefaultParagraphActive, - overwrite, - ) - initial.add("textDefaultAccentHover", LightColorTokens.TextDefaultAccentHover, overwrite) - initial.add("textDefaultAccentActive", LightColorTokens.TextDefaultAccentActive, overwrite) - initial.add("textDefaultPositiveHover", LightColorTokens.TextDefaultPositiveHover, overwrite) - initial.add("textDefaultPositiveActive", LightColorTokens.TextDefaultPositiveActive, overwrite) - initial.add("textDefaultWarningHover", LightColorTokens.TextDefaultWarningHover, overwrite) - initial.add("textDefaultWarningActive", LightColorTokens.TextDefaultWarningActive, overwrite) - initial.add("textDefaultNegativeHover", LightColorTokens.TextDefaultNegativeHover, overwrite) - initial.add("textDefaultNegativeActive", LightColorTokens.TextDefaultNegativeActive, overwrite) - initial.add("textOnDarkPrimary", LightColorTokens.TextOnDarkPrimary, overwrite) - initial.add( - "textOnDarkPrimaryBrightness", - LightColorTokens.TextOnDarkPrimaryBrightness, - overwrite, - ) - initial.add("textOnDarkSecondary", LightColorTokens.TextOnDarkSecondary, overwrite) - initial.add("textOnDarkTertiary", LightColorTokens.TextOnDarkTertiary, overwrite) - initial.add("textOnDarkParagraph", LightColorTokens.TextOnDarkParagraph, overwrite) - initial.add("textOnDarkAccent", LightColorTokens.TextOnDarkAccent, overwrite) - initial.add("textOnDarkPositive", LightColorTokens.TextOnDarkPositive, overwrite) - initial.add("textOnDarkWarning", LightColorTokens.TextOnDarkWarning, overwrite) - initial.add("textOnDarkNegative", LightColorTokens.TextOnDarkNegative, overwrite) - initial.add("textOnDarkAccentMinor", LightColorTokens.TextOnDarkAccentMinor, overwrite) - initial.add( - "textOnDarkAccentMinorHover", - LightColorTokens.TextOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentMinorActive", - LightColorTokens.TextOnDarkAccentMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoHover", LightColorTokens.TextOnDarkInfoHover, overwrite) - initial.add("textOnDarkInfoActive", LightColorTokens.TextOnDarkInfoActive, overwrite) - initial.add("textOnDarkPositiveMinor", LightColorTokens.TextOnDarkPositiveMinor, overwrite) - initial.add( - "textOnDarkPositiveMinorHover", - LightColorTokens.TextOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnDarkPositiveMinorActive", - LightColorTokens.TextOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("textOnDarkWarningMinor", LightColorTokens.TextOnDarkWarningMinor, overwrite) - initial.add( - "textOnDarkWarningMinorHover", - LightColorTokens.TextOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorActive", - LightColorTokens.TextOnDarkWarningMinorActive, - overwrite, - ) - initial.add("textOnDarkNegativeMinor", LightColorTokens.TextOnDarkNegativeMinor, overwrite) - initial.add( - "textOnDarkNegativeMinorHover", - LightColorTokens.TextOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorActive", - LightColorTokens.TextOnDarkNegativeMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoMinorHover", LightColorTokens.TextOnDarkInfoMinorHover, overwrite) - initial.add("textOnDarkInfoMinorActive", LightColorTokens.TextOnDarkInfoMinorActive, overwrite) - initial.add("textOnDarkInfoMinor", LightColorTokens.TextOnDarkInfoMinor, overwrite) - initial.add("textOnDarkInfo", LightColorTokens.TextOnDarkInfo, overwrite) - initial.add("textOnDarkPrimaryHover", LightColorTokens.TextOnDarkPrimaryHover, overwrite) - initial.add("textOnDarkPrimaryActive", LightColorTokens.TextOnDarkPrimaryActive, overwrite) - initial.add("textOnDarkSecondaryHover", LightColorTokens.TextOnDarkSecondaryHover, overwrite) - initial.add("textOnDarkSecondaryActive", LightColorTokens.TextOnDarkSecondaryActive, overwrite) - initial.add("textOnDarkTertiaryHover", LightColorTokens.TextOnDarkTertiaryHover, overwrite) - initial.add("textOnDarkTertiaryActive", LightColorTokens.TextOnDarkTertiaryActive, overwrite) - initial.add("textOnDarkParagraphHover", LightColorTokens.TextOnDarkParagraphHover, overwrite) - initial.add("textOnDarkParagraphActive", LightColorTokens.TextOnDarkParagraphActive, overwrite) - initial.add("textOnDarkAccentHover", LightColorTokens.TextOnDarkAccentHover, overwrite) - initial.add("textOnDarkAccentActive", LightColorTokens.TextOnDarkAccentActive, overwrite) - initial.add("textOnDarkPositiveHover", LightColorTokens.TextOnDarkPositiveHover, overwrite) - initial.add("textOnDarkPositiveActive", LightColorTokens.TextOnDarkPositiveActive, overwrite) - initial.add("textOnDarkWarningHover", LightColorTokens.TextOnDarkWarningHover, overwrite) - initial.add("textOnDarkWarningActive", LightColorTokens.TextOnDarkWarningActive, overwrite) - initial.add("textOnDarkNegativeHover", LightColorTokens.TextOnDarkNegativeHover, overwrite) - initial.add("textOnDarkNegativeActive", LightColorTokens.TextOnDarkNegativeActive, overwrite) - initial.add("textOnLightPrimary", LightColorTokens.TextOnLightPrimary, overwrite) - initial.add( - "textOnLightPrimaryBrightness", - LightColorTokens.TextOnLightPrimaryBrightness, - overwrite, - ) - initial.add("textOnLightSecondary", LightColorTokens.TextOnLightSecondary, overwrite) - initial.add("textOnLightTertiary", LightColorTokens.TextOnLightTertiary, overwrite) - initial.add("textOnLightParagraph", LightColorTokens.TextOnLightParagraph, overwrite) - initial.add("textOnLightAccent", LightColorTokens.TextOnLightAccent, overwrite) - initial.add("textOnLightPositive", LightColorTokens.TextOnLightPositive, overwrite) - initial.add("textOnLightWarning", LightColorTokens.TextOnLightWarning, overwrite) - initial.add("textOnLightAccentMinor", LightColorTokens.TextOnLightAccentMinor, overwrite) - initial.add( - "textOnLightAccentMinorHover", - LightColorTokens.TextOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMinorActive", - LightColorTokens.TextOnLightAccentMinorActive, - overwrite, - ) - initial.add("textOnLightInfoHover", LightColorTokens.TextOnLightInfoHover, overwrite) - initial.add("textOnLightInfoActive", LightColorTokens.TextOnLightInfoActive, overwrite) - initial.add("textOnLightPositiveMinor", LightColorTokens.TextOnLightPositiveMinor, overwrite) - initial.add( - "textOnLightPositiveMinorHover", - LightColorTokens.TextOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnLightPositiveMinorActive", - LightColorTokens.TextOnLightPositiveMinorActive, - overwrite, - ) - initial.add("textOnLightWarningMinor", LightColorTokens.TextOnLightWarningMinor, overwrite) - initial.add( - "textOnLightWarningMinorHover", - LightColorTokens.TextOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "textOnLightWarningMinorActive", - LightColorTokens.TextOnLightWarningMinorActive, - overwrite, - ) - initial.add("textOnLightNegativeMinor", LightColorTokens.TextOnLightNegativeMinor, overwrite) - initial.add( - "textOnLightNegativeMinorHover", - LightColorTokens.TextOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorActive", - LightColorTokens.TextOnLightNegativeMinorActive, - overwrite, - ) - initial.add("textOnLightInfoMinorHover", LightColorTokens.TextOnLightInfoMinorHover, overwrite) - initial.add( - "textOnLightInfoMinorActive", - LightColorTokens.TextOnLightInfoMinorActive, - overwrite, - ) - initial.add("textOnLightNegative", LightColorTokens.TextOnLightNegative, overwrite) - initial.add("textOnLightNegativeHover", LightColorTokens.TextOnLightNegativeHover, overwrite) - initial.add("textOnLightNegativeActive", LightColorTokens.TextOnLightNegativeActive, overwrite) - initial.add("textOnLightInfo", LightColorTokens.TextOnLightInfo, overwrite) - initial.add("textOnLightInfoMinor", LightColorTokens.TextOnLightInfoMinor, overwrite) - initial.add("textOnLightPrimaryHover", LightColorTokens.TextOnLightPrimaryHover, overwrite) - initial.add("textOnLightPrimaryActive", LightColorTokens.TextOnLightPrimaryActive, overwrite) - initial.add("textOnLightSecondaryHover", LightColorTokens.TextOnLightSecondaryHover, overwrite) - initial.add( - "textOnLightSecondaryActive", - LightColorTokens.TextOnLightSecondaryActive, - overwrite, - ) - initial.add("textOnLightTertiaryHover", LightColorTokens.TextOnLightTertiaryHover, overwrite) - initial.add("textOnLightTertiaryActive", LightColorTokens.TextOnLightTertiaryActive, overwrite) - initial.add("textOnLightParagraphHover", LightColorTokens.TextOnLightParagraphHover, overwrite) - initial.add( - "textOnLightParagraphActive", - LightColorTokens.TextOnLightParagraphActive, - overwrite, - ) - initial.add("textOnLightAccentHover", LightColorTokens.TextOnLightAccentHover, overwrite) - initial.add("textOnLightAccentActive", LightColorTokens.TextOnLightAccentActive, overwrite) - initial.add("textOnLightPositiveHover", LightColorTokens.TextOnLightPositiveHover, overwrite) - initial.add("textOnLightPositiveActive", LightColorTokens.TextOnLightPositiveActive, overwrite) - initial.add("textOnLightWarningHover", LightColorTokens.TextOnLightWarningHover, overwrite) - initial.add("textOnLightWarningActive", LightColorTokens.TextOnLightWarningActive, overwrite) - initial.add("textInversePrimary", LightColorTokens.TextInversePrimary, overwrite) - initial.add( - "textInversePrimaryBrightness", - LightColorTokens.TextInversePrimaryBrightness, - overwrite, - ) - initial.add("textInverseSecondary", LightColorTokens.TextInverseSecondary, overwrite) - initial.add("textInverseTertiary", LightColorTokens.TextInverseTertiary, overwrite) - initial.add("textInverseParagraph", LightColorTokens.TextInverseParagraph, overwrite) - initial.add("textInversePositive", LightColorTokens.TextInversePositive, overwrite) - initial.add("textInverseWarning", LightColorTokens.TextInverseWarning, overwrite) - initial.add("textInverseNegative", LightColorTokens.TextInverseNegative, overwrite) - initial.add("textInversePrimaryHover", LightColorTokens.TextInversePrimaryHover, overwrite) - initial.add("textInversePrimaryActive", LightColorTokens.TextInversePrimaryActive, overwrite) - initial.add("textInverseSecondaryHover", LightColorTokens.TextInverseSecondaryHover, overwrite) - initial.add( - "textInverseSecondaryActive", - LightColorTokens.TextInverseSecondaryActive, - overwrite, - ) - initial.add("textInverseTertiaryHover", LightColorTokens.TextInverseTertiaryHover, overwrite) - initial.add("textInverseTertiaryActive", LightColorTokens.TextInverseTertiaryActive, overwrite) - initial.add("textInverseParagraphHover", LightColorTokens.TextInverseParagraphHover, overwrite) - initial.add( - "textInverseParagraphActive", - LightColorTokens.TextInverseParagraphActive, - overwrite, - ) - initial.add("textInverseAccentHover", LightColorTokens.TextInverseAccentHover, overwrite) - initial.add("textInverseAccentActive", LightColorTokens.TextInverseAccentActive, overwrite) - initial.add("textInversePositiveHover", LightColorTokens.TextInversePositiveHover, overwrite) - initial.add("textInversePositiveActive", LightColorTokens.TextInversePositiveActive, overwrite) - initial.add("textInverseWarningHover", LightColorTokens.TextInverseWarningHover, overwrite) - initial.add("textInverseWarningActive", LightColorTokens.TextInverseWarningActive, overwrite) - initial.add("textInverseNegativeHover", LightColorTokens.TextInverseNegativeHover, overwrite) - initial.add("textInverseNegativeActive", LightColorTokens.TextInverseNegativeActive, overwrite) - initial.add("textInverseAccentMinor", LightColorTokens.TextInverseAccentMinor, overwrite) - initial.add( - "textInverseAccentMinorHover", - LightColorTokens.TextInverseAccentMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMinorActive", - LightColorTokens.TextInverseAccentMinorActive, - overwrite, - ) - initial.add("textInverseInfoHover", LightColorTokens.TextInverseInfoHover, overwrite) - initial.add("textInverseInfoActive", LightColorTokens.TextInverseInfoActive, overwrite) - initial.add( - "textInversePositiveMinorHover", - LightColorTokens.TextInversePositiveMinorHover, - overwrite, - ) - initial.add( - "textInversePositiveMinorActive", - LightColorTokens.TextInversePositiveMinorActive, - overwrite, - ) - initial.add( - "textInverseWarningMinorHover", - LightColorTokens.TextInverseWarningMinorHover, - overwrite, - ) - initial.add( - "textInverseWarningMinorActive", - LightColorTokens.TextInverseWarningMinorActive, - overwrite, - ) - initial.add( - "textInverseNegativeMinorHover", - LightColorTokens.TextInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "textInverseNegativeMinorActive", - LightColorTokens.TextInverseNegativeMinorActive, - overwrite, - ) - initial.add("textInverseInfoMinorHover", LightColorTokens.TextInverseInfoMinorHover, overwrite) - initial.add( - "textInverseInfoMinorActive", - LightColorTokens.TextInverseInfoMinorActive, - overwrite, - ) - initial.add("textInverseAccent", LightColorTokens.TextInverseAccent, overwrite) - initial.add("textInverseInfo", LightColorTokens.TextInverseInfo, overwrite) - initial.add("textInversePositiveMinor", LightColorTokens.TextInversePositiveMinor, overwrite) - initial.add("textInverseWarningMinor", LightColorTokens.TextInverseWarningMinor, overwrite) - initial.add("textInverseNegativeMinor", LightColorTokens.TextInverseNegativeMinor, overwrite) - initial.add("textInverseInfoMinor", LightColorTokens.TextInverseInfoMinor, overwrite) - initial.add( - "surfaceDefaultSolidDefault", - LightColorTokens.SurfaceDefaultSolidDefault, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimary", - LightColorTokens.SurfaceDefaultSolidPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryBrightness", - LightColorTokens.SurfaceDefaultSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondary", - LightColorTokens.SurfaceDefaultSolidSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiary", - LightColorTokens.SurfaceDefaultSolidTertiary, - overwrite, - ) - initial.add("surfaceDefaultSolidCard", LightColorTokens.SurfaceDefaultSolidCard, overwrite) - initial.add( - "surfaceDefaultSolidCardBrightness", - LightColorTokens.SurfaceDefaultSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefault", - LightColorTokens.SurfaceDefaultTransparentDefault, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimary", - LightColorTokens.SurfaceDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondary", - LightColorTokens.SurfaceDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiary", - LightColorTokens.SurfaceDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCard", - LightColorTokens.SurfaceDefaultTransparentCard, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardBrightness", - LightColorTokens.SurfaceDefaultTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceDefaultAccent", LightColorTokens.SurfaceDefaultAccent, overwrite) - initial.add("surfaceDefaultPositive", LightColorTokens.SurfaceDefaultPositive, overwrite) - initial.add("surfaceDefaultWarning", LightColorTokens.SurfaceDefaultWarning, overwrite) - initial.add("surfaceDefaultNegative", LightColorTokens.SurfaceDefaultNegative, overwrite) - initial.add("surfaceDefaultClear", LightColorTokens.SurfaceDefaultClear, overwrite) - initial.add( - "surfaceDefaultTransparentDeep", - LightColorTokens.SurfaceDefaultTransparentDeep, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorHover", - LightColorTokens.SurfaceDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorActive", - LightColorTokens.SurfaceDefaultAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentHover", - LightColorTokens.SurfaceDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentActive", - LightColorTokens.SurfaceDefaultTransparentAccentActive, - overwrite, - ) - initial.add("surfaceDefaultInfoHover", LightColorTokens.SurfaceDefaultInfoHover, overwrite) - initial.add("surfaceDefaultInfoActive", LightColorTokens.SurfaceDefaultInfoActive, overwrite) - initial.add( - "surfaceDefaultPositiveMinorHover", - LightColorTokens.SurfaceDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinorActive", - LightColorTokens.SurfaceDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorHover", - LightColorTokens.SurfaceDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorActive", - LightColorTokens.SurfaceDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorHover", - LightColorTokens.SurfaceDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorActive", - LightColorTokens.SurfaceDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorHover", - LightColorTokens.SurfaceDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorActive", - LightColorTokens.SurfaceDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveHover", - LightColorTokens.SurfaceDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveActive", - LightColorTokens.SurfaceDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningHover", - LightColorTokens.SurfaceDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningActive", - LightColorTokens.SurfaceDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeHover", - LightColorTokens.SurfaceDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeActive", - LightColorTokens.SurfaceDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoHover", - LightColorTokens.SurfaceDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoActive", - LightColorTokens.SurfaceDefaultTransparentInfoActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMinor", LightColorTokens.SurfaceDefaultAccentMinor, overwrite) - initial.add( - "surfaceDefaultTransparentAccent", - LightColorTokens.SurfaceDefaultTransparentAccent, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinor", - LightColorTokens.SurfaceDefaultPositiveMinor, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinor", - LightColorTokens.SurfaceDefaultWarningMinor, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinor", - LightColorTokens.SurfaceDefaultNegativeMinor, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositive", - LightColorTokens.SurfaceDefaultTransparentPositive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarning", - LightColorTokens.SurfaceDefaultTransparentWarning, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegative", - LightColorTokens.SurfaceDefaultTransparentNegative, - overwrite, - ) - initial.add("surfaceDefaultInfo", LightColorTokens.SurfaceDefaultInfo, overwrite) - initial.add("surfaceDefaultInfoMinor", LightColorTokens.SurfaceDefaultInfoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentInfo", - LightColorTokens.SurfaceDefaultTransparentInfo, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultHover", - LightColorTokens.SurfaceDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultActive", - LightColorTokens.SurfaceDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryHover", - LightColorTokens.SurfaceDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryActive", - LightColorTokens.SurfaceDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryHover", - LightColorTokens.SurfaceDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryActive", - LightColorTokens.SurfaceDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryHover", - LightColorTokens.SurfaceDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryActive", - LightColorTokens.SurfaceDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardHover", - LightColorTokens.SurfaceDefaultSolidCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardActive", - LightColorTokens.SurfaceDefaultSolidCardActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefaultHover", - LightColorTokens.SurfaceDefaultTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefaultActive", - LightColorTokens.SurfaceDefaultTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryHover", - LightColorTokens.SurfaceDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryActive", - LightColorTokens.SurfaceDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryHover", - LightColorTokens.SurfaceDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryActive", - LightColorTokens.SurfaceDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryHover", - LightColorTokens.SurfaceDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryActive", - LightColorTokens.SurfaceDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardHover", - LightColorTokens.SurfaceDefaultTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardActive", - LightColorTokens.SurfaceDefaultTransparentCardActive, - overwrite, - ) - initial.add("surfaceDefaultAccentHover", LightColorTokens.SurfaceDefaultAccentHover, overwrite) - initial.add( - "surfaceDefaultAccentActive", - LightColorTokens.SurfaceDefaultAccentActive, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveHover", - LightColorTokens.SurfaceDefaultPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveActive", - LightColorTokens.SurfaceDefaultPositiveActive, - overwrite, - ) - initial.add( - "surfaceDefaultWarningHover", - LightColorTokens.SurfaceDefaultWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningActive", - LightColorTokens.SurfaceDefaultWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeHover", - LightColorTokens.SurfaceDefaultNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeActive", - LightColorTokens.SurfaceDefaultNegativeActive, - overwrite, - ) - initial.add("surfaceDefaultClearHover", LightColorTokens.SurfaceDefaultClearHover, overwrite) - initial.add("surfaceDefaultClearActive", LightColorTokens.SurfaceDefaultClearActive, overwrite) - initial.add( - "surfaceDefaultTransparentDeepHover", - LightColorTokens.SurfaceDefaultTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepActive", - LightColorTokens.SurfaceDefaultTransparentDeepActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidPrimary", LightColorTokens.SurfaceOnDarkSolidPrimary, overwrite) - initial.add( - "surfaceOnDarkSolidPrimaryBrightness", - LightColorTokens.SurfaceOnDarkSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondary", - LightColorTokens.SurfaceOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiary", - LightColorTokens.SurfaceOnDarkSolidTertiary, - overwrite, - ) - initial.add("surfaceOnDarkSolidCard", LightColorTokens.SurfaceOnDarkSolidCard, overwrite) - initial.add( - "surfaceOnDarkSolidCardBrightness", - LightColorTokens.SurfaceOnDarkSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefault", - LightColorTokens.SurfaceOnDarkTransparentDefault, - overwrite, - ) - initial.add("surfaceOnDarkAccent", LightColorTokens.SurfaceOnDarkAccent, overwrite) - initial.add("surfaceOnDarkPositive", LightColorTokens.SurfaceOnDarkPositive, overwrite) - initial.add("surfaceOnDarkWarning", LightColorTokens.SurfaceOnDarkWarning, overwrite) - initial.add("surfaceOnDarkNegative", LightColorTokens.SurfaceOnDarkNegative, overwrite) - initial.add("surfaceOnDarkClear", LightColorTokens.SurfaceOnDarkClear, overwrite) - initial.add( - "surfaceOnDarkTransparentDeep", - LightColorTokens.SurfaceOnDarkTransparentDeep, - overwrite, - ) - initial.add("surfaceOnDarkAccentMinor", LightColorTokens.SurfaceOnDarkAccentMinor, overwrite) - initial.add( - "surfaceOnDarkAccentMinorHover", - LightColorTokens.SurfaceOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorActive", - LightColorTokens.SurfaceOnDarkAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccent", - LightColorTokens.SurfaceOnDarkTransparentAccent, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentHover", - LightColorTokens.SurfaceOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentActive", - LightColorTokens.SurfaceOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSurfaceInfoHover", - LightColorTokens.SurfaceOnDarkSurfaceInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSurfaceInfoActive", - LightColorTokens.SurfaceOnDarkSurfaceInfoActive, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinor", - LightColorTokens.SurfaceOnDarkPositiveMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinorHover", - LightColorTokens.SurfaceOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinorActive", - LightColorTokens.SurfaceOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkWarningMinor", LightColorTokens.SurfaceOnDarkWarningMinor, overwrite) - initial.add( - "surfaceOnDarkWarningMinorHover", - LightColorTokens.SurfaceOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorActive", - LightColorTokens.SurfaceOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinor", - LightColorTokens.SurfaceOnDarkNegativeMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorHover", - LightColorTokens.SurfaceOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorActive", - LightColorTokens.SurfaceOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorHover", - LightColorTokens.SurfaceOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorActive", - LightColorTokens.SurfaceOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveHover", - LightColorTokens.SurfaceOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveActive", - LightColorTokens.SurfaceOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningHover", - LightColorTokens.SurfaceOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningActive", - LightColorTokens.SurfaceOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeHover", - LightColorTokens.SurfaceOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeActive", - LightColorTokens.SurfaceOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoHover", - LightColorTokens.SurfaceOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoActive", - LightColorTokens.SurfaceOnDarkTransparentInfoActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidDefault", LightColorTokens.SurfaceOnDarkSolidDefault, overwrite) - initial.add( - "surfaceOnDarkSolidDefaultHover", - LightColorTokens.SurfaceOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultActive", - LightColorTokens.SurfaceOnDarkSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimary", - LightColorTokens.SurfaceOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryHover", - LightColorTokens.SurfaceOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryActive", - LightColorTokens.SurfaceOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondary", - LightColorTokens.SurfaceOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryHover", - LightColorTokens.SurfaceOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryActive", - LightColorTokens.SurfaceOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiary", - LightColorTokens.SurfaceOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryHover", - LightColorTokens.SurfaceOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryActive", - LightColorTokens.SurfaceOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCard", - LightColorTokens.SurfaceOnDarkTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardBrightness", - LightColorTokens.SurfaceOnDarkTransparentCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardHover", - LightColorTokens.SurfaceOnDarkTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardActive", - LightColorTokens.SurfaceOnDarkTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositive", - LightColorTokens.SurfaceOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarning", - LightColorTokens.SurfaceOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegative", - LightColorTokens.SurfaceOnDarkTransparentNegative, - overwrite, - ) - initial.add("surfaceOnDarkSurfaceInfo", LightColorTokens.SurfaceOnDarkSurfaceInfo, overwrite) - initial.add("surfaceOnDarkInfoMinor", LightColorTokens.SurfaceOnDarkInfoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentInfo", - LightColorTokens.SurfaceOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryHover", - LightColorTokens.SurfaceOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryActive", - LightColorTokens.SurfaceOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryHover", - LightColorTokens.SurfaceOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryActive", - LightColorTokens.SurfaceOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryHover", - LightColorTokens.SurfaceOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryActive", - LightColorTokens.SurfaceOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardHover", - LightColorTokens.SurfaceOnDarkSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardActive", - LightColorTokens.SurfaceOnDarkSolidCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefaultHover", - LightColorTokens.SurfaceOnDarkTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefaultActive", - LightColorTokens.SurfaceOnDarkTransparentDefaultActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentHover", LightColorTokens.SurfaceOnDarkAccentHover, overwrite) - initial.add("surfaceOnDarkAccentActive", LightColorTokens.SurfaceOnDarkAccentActive, overwrite) - initial.add( - "surfaceOnDarkPositiveHover", - LightColorTokens.SurfaceOnDarkPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveActive", - LightColorTokens.SurfaceOnDarkPositiveActive, - overwrite, - ) - initial.add("surfaceOnDarkWarningHover", LightColorTokens.SurfaceOnDarkWarningHover, overwrite) - initial.add( - "surfaceOnDarkWarningActive", - LightColorTokens.SurfaceOnDarkWarningActive, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeHover", - LightColorTokens.SurfaceOnDarkNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeActive", - LightColorTokens.SurfaceOnDarkNegativeActive, - overwrite, - ) - initial.add("surfaceOnDarkClearHover", LightColorTokens.SurfaceOnDarkClearHover, overwrite) - initial.add("surfaceOnDarkClearActive", LightColorTokens.SurfaceOnDarkClearActive, overwrite) - initial.add( - "surfaceOnDarkTransparentDeepHover", - LightColorTokens.SurfaceOnDarkTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepActive", - LightColorTokens.SurfaceOnDarkTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefault", - LightColorTokens.SurfaceOnLightSolidDefault, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimary", - LightColorTokens.SurfaceOnLightSolidPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryBrightness", - LightColorTokens.SurfaceOnLightSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondary", - LightColorTokens.SurfaceOnLightSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiary", - LightColorTokens.SurfaceOnLightSolidTertiary, - overwrite, - ) - initial.add("surfaceOnLightSolidCard", LightColorTokens.SurfaceOnLightSolidCard, overwrite) - initial.add( - "surfaceOnLightSolidCardBrightness", - LightColorTokens.SurfaceOnLightSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefault", - LightColorTokens.SurfaceOnLightTransparentDefault, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimary", - LightColorTokens.SurfaceOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondary", - LightColorTokens.SurfaceOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiary", - LightColorTokens.SurfaceOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCard", - LightColorTokens.SurfaceOnLightTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardBrightness", - LightColorTokens.SurfaceOnLightTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnLightAccent", LightColorTokens.SurfaceOnLightAccent, overwrite) - initial.add("surfaceOnLightPositive", LightColorTokens.SurfaceOnLightPositive, overwrite) - initial.add("surfaceOnLightWarning", LightColorTokens.SurfaceOnLightWarning, overwrite) - initial.add("surfaceOnLightNegative", LightColorTokens.SurfaceOnLightNegative, overwrite) - initial.add("surfaceOnLightClear", LightColorTokens.SurfaceOnLightClear, overwrite) - initial.add( - "surfaceOnLightTransparentDeep", - LightColorTokens.SurfaceOnLightTransparentDeep, - overwrite, - ) - initial.add("surfaceOnLightAccentMinor", LightColorTokens.SurfaceOnLightAccentMinor, overwrite) - initial.add( - "surfaceOnLightAccentMinorHover", - LightColorTokens.SurfaceOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorActive", - LightColorTokens.SurfaceOnLightAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccent", - LightColorTokens.SurfaceOnLightTransparentAccent, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentHover", - LightColorTokens.SurfaceOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentActive", - LightColorTokens.SurfaceOnLightTransparentAccentActive, - overwrite, - ) - initial.add("surfaceOnLightInfoHover", LightColorTokens.SurfaceOnLightInfoHover, overwrite) - initial.add("surfaceOnLightInfoActive", LightColorTokens.SurfaceOnLightInfoActive, overwrite) - initial.add( - "surfaceOnLightPositiveMinor", - LightColorTokens.SurfaceOnLightPositiveMinor, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorHover", - LightColorTokens.SurfaceOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorActive", - LightColorTokens.SurfaceOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinor", - LightColorTokens.SurfaceOnLightWarningMinor, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorHover", - LightColorTokens.SurfaceOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorActive", - LightColorTokens.SurfaceOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinor", - LightColorTokens.SurfaceOnLightNegativeMinor, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorHover", - LightColorTokens.SurfaceOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorActive", - LightColorTokens.SurfaceOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorHover", - LightColorTokens.SurfaceOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorActive", - LightColorTokens.SurfaceOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveHover", - LightColorTokens.SurfaceOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveActive", - LightColorTokens.SurfaceOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningHover", - LightColorTokens.SurfaceOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningActive", - LightColorTokens.SurfaceOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeHover", - LightColorTokens.SurfaceOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeActive", - LightColorTokens.SurfaceOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoHover", - LightColorTokens.SurfaceOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoActive", - LightColorTokens.SurfaceOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositive", - LightColorTokens.SurfaceOnLightTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarning", - LightColorTokens.SurfaceOnLightTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegative", - LightColorTokens.SurfaceOnLightTransparentNegative, - overwrite, - ) - initial.add("surfaceOnLightInfo", LightColorTokens.SurfaceOnLightInfo, overwrite) - initial.add("surfaceOnLightInfoMinor", LightColorTokens.SurfaceOnLightInfoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentInfo", - LightColorTokens.SurfaceOnLightTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultHover", - LightColorTokens.SurfaceOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultActive", - LightColorTokens.SurfaceOnLightSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryHover", - LightColorTokens.SurfaceOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryActive", - LightColorTokens.SurfaceOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryHover", - LightColorTokens.SurfaceOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryActive", - LightColorTokens.SurfaceOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryHover", - LightColorTokens.SurfaceOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryActive", - LightColorTokens.SurfaceOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardHover", - LightColorTokens.SurfaceOnLightSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardActive", - LightColorTokens.SurfaceOnLightSolidCardActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefaultHover", - LightColorTokens.SurfaceOnLightTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefaultActive", - LightColorTokens.SurfaceOnLightTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryHover", - LightColorTokens.SurfaceOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryActive", - LightColorTokens.SurfaceOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryHover", - LightColorTokens.SurfaceOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryActive", - LightColorTokens.SurfaceOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryHover", - LightColorTokens.SurfaceOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryActive", - LightColorTokens.SurfaceOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardHover", - LightColorTokens.SurfaceOnLightTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardActive", - LightColorTokens.SurfaceOnLightTransparentCardActive, - overwrite, - ) - initial.add("surfaceOnLightAccentHover", LightColorTokens.SurfaceOnLightAccentHover, overwrite) - initial.add( - "surfaceOnLightAccentActive", - LightColorTokens.SurfaceOnLightAccentActive, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveHover", - LightColorTokens.SurfaceOnLightPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveActive", - LightColorTokens.SurfaceOnLightPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnLightWarningHover", - LightColorTokens.SurfaceOnLightWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningActive", - LightColorTokens.SurfaceOnLightWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeHover", - LightColorTokens.SurfaceOnLightNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeActive", - LightColorTokens.SurfaceOnLightNegativeActive, - overwrite, - ) - initial.add("surfaceOnLightClearHover", LightColorTokens.SurfaceOnLightClearHover, overwrite) - initial.add("surfaceOnLightClearActive", LightColorTokens.SurfaceOnLightClearActive, overwrite) - initial.add( - "surfaceOnLightTransparentDeepHover", - LightColorTokens.SurfaceOnLightTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepActive", - LightColorTokens.SurfaceOnLightTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefault", - LightColorTokens.SurfaceInverseSolidDefault, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimary", - LightColorTokens.SurfaceInverseSolidPrimary, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryBrightness", - LightColorTokens.SurfaceInverseSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondary", - LightColorTokens.SurfaceInverseSolidSecondary, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiary", - LightColorTokens.SurfaceInverseSolidTertiary, - overwrite, - ) - initial.add("surfaceInverseSolidCard", LightColorTokens.SurfaceInverseSolidCard, overwrite) - initial.add( - "surfaceInverseSolidCardBrightness", - LightColorTokens.SurfaceInverseSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefault", - LightColorTokens.SurfaceInverseTransparentDefault, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimary", - LightColorTokens.SurfaceInverseTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondary", - LightColorTokens.SurfaceInverseTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiary", - LightColorTokens.SurfaceInverseTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCard", - LightColorTokens.SurfaceInverseTransparentCard, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardBrightness", - LightColorTokens.SurfaceInverseTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceInverseAccent", LightColorTokens.SurfaceInverseAccent, overwrite) - initial.add("surfaceInversePositive", LightColorTokens.SurfaceInversePositive, overwrite) - initial.add("surfaceInverseWarning", LightColorTokens.SurfaceInverseWarning, overwrite) - initial.add("surfaceInverseNegative", LightColorTokens.SurfaceInverseNegative, overwrite) - initial.add("surfaceInverseClear", LightColorTokens.SurfaceInverseClear, overwrite) - initial.add( - "surfaceInverseSolidDefaultHover", - LightColorTokens.SurfaceInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultActive", - LightColorTokens.SurfaceInverseSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryHover", - LightColorTokens.SurfaceInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryActive", - LightColorTokens.SurfaceInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryHover", - LightColorTokens.SurfaceInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryActive", - LightColorTokens.SurfaceInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryHover", - LightColorTokens.SurfaceInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryActive", - LightColorTokens.SurfaceInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardHover", - LightColorTokens.SurfaceInverseSolidCardHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardActive", - LightColorTokens.SurfaceInverseSolidCardActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefaultHover", - LightColorTokens.SurfaceInverseTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefaultActive", - LightColorTokens.SurfaceInverseTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryHover", - LightColorTokens.SurfaceInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryActive", - LightColorTokens.SurfaceInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryHover", - LightColorTokens.SurfaceInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryActive", - LightColorTokens.SurfaceInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryHover", - LightColorTokens.SurfaceInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryActive", - LightColorTokens.SurfaceInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardHover", - LightColorTokens.SurfaceInverseTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardActive", - LightColorTokens.SurfaceInverseTransparentCardActive, - overwrite, - ) - initial.add("surfaceInverseAccentHover", LightColorTokens.SurfaceInverseAccentHover, overwrite) - initial.add( - "surfaceInverseAccentActive", - LightColorTokens.SurfaceInverseAccentActive, - overwrite, - ) - initial.add( - "surfaceInversePositiveHover", - LightColorTokens.SurfaceInversePositiveHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveActive", - LightColorTokens.SurfaceInversePositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseWarningHover", - LightColorTokens.SurfaceInverseWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningActive", - LightColorTokens.SurfaceInverseWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeHover", - LightColorTokens.SurfaceInverseNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeActive", - LightColorTokens.SurfaceInverseNegativeActive, - overwrite, - ) - initial.add("surfaceInverseClearHover", LightColorTokens.SurfaceInverseClearHover, overwrite) - initial.add("surfaceInverseClearActive", LightColorTokens.SurfaceInverseClearActive, overwrite) - initial.add( - "surfaceInverseTransparentDeep", - LightColorTokens.SurfaceInverseTransparentDeep, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepHover", - LightColorTokens.SurfaceInverseTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepActive", - LightColorTokens.SurfaceInverseTransparentDeepActive, - overwrite, - ) - initial.add("surfaceInverseAccentMinor", LightColorTokens.SurfaceInverseAccentMinor, overwrite) - initial.add( - "surfaceInverseAccentMinorHover", - LightColorTokens.SurfaceInverseAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorActive", - LightColorTokens.SurfaceInverseAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccent", - LightColorTokens.SurfaceInverseTransparentAccent, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentHover", - LightColorTokens.SurfaceInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentActive", - LightColorTokens.SurfaceInverseTransparentAccentActive, - overwrite, - ) - initial.add("surfaceInverseInfo", LightColorTokens.SurfaceInverseInfo, overwrite) - initial.add("surfaceInverseInfoHover", LightColorTokens.SurfaceInverseInfoHover, overwrite) - initial.add("surfaceInverseInfoActive", LightColorTokens.SurfaceInverseInfoActive, overwrite) - initial.add( - "surfaceInversePositiveMinor", - LightColorTokens.SurfaceInversePositiveMinor, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorHover", - LightColorTokens.SurfaceInversePositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorActive", - LightColorTokens.SurfaceInversePositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinor", - LightColorTokens.SurfaceInverseWarningMinor, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorHover", - LightColorTokens.SurfaceInverseWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorActive", - LightColorTokens.SurfaceInverseWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinor", - LightColorTokens.SurfaceInverseNegativeMinor, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorHover", - LightColorTokens.SurfaceInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorActive", - LightColorTokens.SurfaceInverseNegativeMinorActive, - overwrite, - ) - initial.add("surfaceInverseInfoMinor", LightColorTokens.SurfaceInverseInfoMinor, overwrite) - initial.add( - "surfaceInverseInfoMinorHover", - LightColorTokens.SurfaceInverseInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorActive", - LightColorTokens.SurfaceInverseInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositive", - LightColorTokens.SurfaceInverseTransparentPositive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveHover", - LightColorTokens.SurfaceInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveActive", - LightColorTokens.SurfaceInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarning", - LightColorTokens.SurfaceInverseTransparentWarning, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningHover", - LightColorTokens.SurfaceInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningActive", - LightColorTokens.SurfaceInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegative", - LightColorTokens.SurfaceInverseTransparentNegative, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeHover", - LightColorTokens.SurfaceInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeActive", - LightColorTokens.SurfaceInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfo", - LightColorTokens.SurfaceInverseTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoHover", - LightColorTokens.SurfaceInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoActive", - LightColorTokens.SurfaceInverseTransparentInfoActive, - overwrite, - ) - initial.add("backgroundDefaultPrimary", LightColorTokens.BackgroundDefaultPrimary, overwrite) - initial.add( - "backgroundDefaultPrimaryBrightness", - LightColorTokens.BackgroundDefaultPrimaryBrightness, - overwrite, - ) - initial.add( - "backgroundDefaultSecondary", - LightColorTokens.BackgroundDefaultSecondary, - overwrite, - ) - initial.add("backgroundDefaultTertiary", LightColorTokens.BackgroundDefaultTertiary, overwrite) - initial.add("backgroundDarkPrimary", LightColorTokens.BackgroundDarkPrimary, overwrite) - initial.add("backgroundDarkSecondary", LightColorTokens.BackgroundDarkSecondary, overwrite) - initial.add("backgroundDarkTertiary", LightColorTokens.BackgroundDarkTertiary, overwrite) - initial.add("backgroundLightPrimary", LightColorTokens.BackgroundLightPrimary, overwrite) - initial.add("backgroundLightSecondary", LightColorTokens.BackgroundLightSecondary, overwrite) - initial.add("backgroundLightTertiary", LightColorTokens.BackgroundLightTertiary, overwrite) - initial.add( - "backgroundInversePrimaryBrightness", - LightColorTokens.BackgroundInversePrimaryBrightness, - overwrite, - ) - initial.add( - "backgroundInverseSecondary", - LightColorTokens.BackgroundInverseSecondary, - overwrite, - ) - initial.add("backgroundInverseTertiary", LightColorTokens.BackgroundInverseTertiary, overwrite) - initial.add("backgroundInversePrimary", LightColorTokens.BackgroundInversePrimary, overwrite) - initial.add("overlayDefaultSoft", LightColorTokens.OverlayDefaultSoft, overwrite) - initial.add("overlayDefaultHard", LightColorTokens.OverlayDefaultHard, overwrite) - initial.add("overlayDefaultBlur", LightColorTokens.OverlayDefaultBlur, overwrite) - initial.add("overlayOnDarkSoft", LightColorTokens.OverlayOnDarkSoft, overwrite) - initial.add("overlayOnDarkHard", LightColorTokens.OverlayOnDarkHard, overwrite) - initial.add("overlayOnDarkBlur", LightColorTokens.OverlayOnDarkBlur, overwrite) - initial.add("overlayOnLightSoft", LightColorTokens.OverlayOnLightSoft, overwrite) - initial.add("overlayOnLightHard", LightColorTokens.OverlayOnLightHard, overwrite) - initial.add("overlayOnLightBlur", LightColorTokens.OverlayOnLightBlur, overwrite) - initial.add("overlayInverseHard", LightColorTokens.OverlayInverseHard, overwrite) - initial.add("overlayInverseSoft", LightColorTokens.OverlayInverseSoft, overwrite) - initial.add("overlayInverseBlur", LightColorTokens.OverlayInverseBlur, overwrite) - initial.add( - "outlineDefaultSecondaryHover", - LightColorTokens.OutlineDefaultSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSecondaryActive", - LightColorTokens.OutlineDefaultSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTertiaryHover", - LightColorTokens.OutlineDefaultTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTertiaryActive", - LightColorTokens.OutlineDefaultTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultDefaultHover", - LightColorTokens.OutlineDefaultDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultDefaultActive", - LightColorTokens.OutlineDefaultDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryHover", - LightColorTokens.OutlineDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryActive", - LightColorTokens.OutlineDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryHover", - LightColorTokens.OutlineDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryActive", - LightColorTokens.OutlineDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryHover", - LightColorTokens.OutlineDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryActive", - LightColorTokens.OutlineDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClearHover", - LightColorTokens.OutlineDefaultTransparentClearHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClearActive", - LightColorTokens.OutlineDefaultTransparentClearActive, - overwrite, - ) - initial.add("outlineDefaultAccentHover", LightColorTokens.OutlineDefaultAccentHover, overwrite) - initial.add( - "outlineDefaultAccentActive", - LightColorTokens.OutlineDefaultAccentActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorHover", - LightColorTokens.OutlineDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorActive", - LightColorTokens.OutlineDefaultAccentMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentHover", - LightColorTokens.OutlineDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentActive", - LightColorTokens.OutlineDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineDefaultPositiveHover", - LightColorTokens.OutlineDefaultPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveActive", - LightColorTokens.OutlineDefaultPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningHover", - LightColorTokens.OutlineDefaultWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningActive", - LightColorTokens.OutlineDefaultWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeHover", - LightColorTokens.OutlineDefaultNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeActive", - LightColorTokens.OutlineDefaultNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfoHover", LightColorTokens.OutlineDefaultInfoHover, overwrite) - initial.add("outlineDefaultInfoActive", LightColorTokens.OutlineDefaultInfoActive, overwrite) - initial.add( - "outlineDefaultPositiveMinorHover", - LightColorTokens.OutlineDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveMinorActive", - LightColorTokens.OutlineDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorHover", - LightColorTokens.OutlineDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorActive", - LightColorTokens.OutlineDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorHover", - LightColorTokens.OutlineDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorActive", - LightColorTokens.OutlineDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorHover", - LightColorTokens.OutlineDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorActive", - LightColorTokens.OutlineDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveHover", - LightColorTokens.OutlineDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveActive", - LightColorTokens.OutlineDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningHover", - LightColorTokens.OutlineDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningActive", - LightColorTokens.OutlineDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeTransparentHover", - LightColorTokens.OutlineDefaultNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeTransparentActive", - LightColorTokens.OutlineDefaultNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoHover", - LightColorTokens.OutlineDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoActive", - LightColorTokens.OutlineDefaultTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineDefaultPrimaryHover", - LightColorTokens.OutlineDefaultPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultPrimaryActive", - LightColorTokens.OutlineDefaultPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimary", - LightColorTokens.OutlineDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondary", - LightColorTokens.OutlineDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiary", - LightColorTokens.OutlineDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClear", - LightColorTokens.OutlineDefaultTransparentClear, - overwrite, - ) - initial.add("outlineDefaultAccent", LightColorTokens.OutlineDefaultAccent, overwrite) - initial.add("outlineDefaultAccentMinor", LightColorTokens.OutlineDefaultAccentMinor, overwrite) - initial.add( - "outlineDefaultTransparentAccent", - LightColorTokens.OutlineDefaultTransparentAccent, - overwrite, - ) - initial.add("outlineDefaultPositive", LightColorTokens.OutlineDefaultPositive, overwrite) - initial.add("outlineDefaultWarning", LightColorTokens.OutlineDefaultWarning, overwrite) - initial.add("outlineDefaultNegative", LightColorTokens.OutlineDefaultNegative, overwrite) - initial.add( - "outlineDefaultPositiveMinor", - LightColorTokens.OutlineDefaultPositiveMinor, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinor", - LightColorTokens.OutlineDefaultWarningMinor, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinor", - LightColorTokens.OutlineDefaultNegativeMinor, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositive", - LightColorTokens.OutlineDefaultTransparentPositive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarning", - LightColorTokens.OutlineDefaultTransparentWarning, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegative", - LightColorTokens.OutlineDefaultTransparentNegative, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeHover", - LightColorTokens.OutlineDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeActive", - LightColorTokens.OutlineDefaultTransparentNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfo", LightColorTokens.OutlineDefaultInfo, overwrite) - initial.add("outlineDefaultInfoMinor", LightColorTokens.OutlineDefaultInfoMinor, overwrite) - initial.add( - "outlineDefaultTransparentInfo", - LightColorTokens.OutlineDefaultTransparentInfo, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryHover", - LightColorTokens.OutlineDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryActive", - LightColorTokens.OutlineDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryHover", - LightColorTokens.OutlineDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryActive", - LightColorTokens.OutlineDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryHover", - LightColorTokens.OutlineDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryActive", - LightColorTokens.OutlineDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultHover", - LightColorTokens.OutlineDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultActive", - LightColorTokens.OutlineDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimary", - LightColorTokens.OutlineDefaultSolidPrimary, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondary", - LightColorTokens.OutlineDefaultSolidSecondary, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiary", - LightColorTokens.OutlineDefaultSolidTertiary, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefault", - LightColorTokens.OutlineDefaultSolidDefault, - overwrite, - ) - initial.add( - "outlineOnDarkSecondaryHover", - LightColorTokens.OutlineOnDarkSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSecondaryActive", - LightColorTokens.OutlineOnDarkSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTertiaryHover", - LightColorTokens.OutlineOnDarkTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTertiaryActive", - LightColorTokens.OutlineOnDarkTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkDefaultHover", LightColorTokens.OutlineOnDarkDefaultHover, overwrite) - initial.add( - "outlineOnDarkDefaultActive", - LightColorTokens.OutlineOnDarkDefaultActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimary", - LightColorTokens.OutlineOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryHover", - LightColorTokens.OutlineOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryActive", - LightColorTokens.OutlineOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondary", - LightColorTokens.OutlineOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryHover", - LightColorTokens.OutlineOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryActive", - LightColorTokens.OutlineOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiary", - LightColorTokens.OutlineOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryHover", - LightColorTokens.OutlineOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryActive", - LightColorTokens.OutlineOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkAccent", LightColorTokens.OutlineOnDarkAccent, overwrite) - initial.add("outlineOnDarkAccentHover", LightColorTokens.OutlineOnDarkAccentHover, overwrite) - initial.add("outlineOnDarkAccentActive", LightColorTokens.OutlineOnDarkAccentActive, overwrite) - initial.add("outlineOnDarkAccentMinor", LightColorTokens.OutlineOnDarkAccentMinor, overwrite) - initial.add( - "outlineOnDarkAccentMinorHover", - LightColorTokens.OutlineOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorActive", - LightColorTokens.OutlineOnDarkAccentMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccent", - LightColorTokens.OutlineOnDarkTransparentAccent, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentHover", - LightColorTokens.OutlineOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentActive", - LightColorTokens.OutlineOnDarkTransparentAccentActive, - overwrite, - ) - initial.add("outlineOnDarkPositive", LightColorTokens.OutlineOnDarkPositive, overwrite) - initial.add( - "outlineOnDarkPositiveHover", - LightColorTokens.OutlineOnDarkPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveActive", - LightColorTokens.OutlineOnDarkPositiveActive, - overwrite, - ) - initial.add("outlineOnDarkWarning", LightColorTokens.OutlineOnDarkWarning, overwrite) - initial.add("outlineOnDarkWarningHover", LightColorTokens.OutlineOnDarkWarningHover, overwrite) - initial.add( - "outlineOnDarkWarningActive", - LightColorTokens.OutlineOnDarkWarningActive, - overwrite, - ) - initial.add("outlineOnDarkNegative", LightColorTokens.OutlineOnDarkNegative, overwrite) - initial.add( - "outlineOnDarkNegativeHover", - LightColorTokens.OutlineOnDarkNegativeHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeActive", - LightColorTokens.OutlineOnDarkNegativeActive, - overwrite, - ) - initial.add("outlineOnDarkInfoHover", LightColorTokens.OutlineOnDarkInfoHover, overwrite) - initial.add("outlineOnDarkInfoActive", LightColorTokens.OutlineOnDarkInfoActive, overwrite) - initial.add( - "outlineOnDarkPositiveMinor", - LightColorTokens.OutlineOnDarkPositiveMinor, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveMinorHover", - LightColorTokens.OutlineOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveMinorActive", - LightColorTokens.OutlineOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("outlineOnDarkWarningMinor", LightColorTokens.OutlineOnDarkWarningMinor, overwrite) - initial.add( - "outlineOnDarkWarningMinorHover", - LightColorTokens.OutlineOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorActive", - LightColorTokens.OutlineOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinor", - LightColorTokens.OutlineOnDarkNegativeMinor, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorHover", - LightColorTokens.OutlineOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorActive", - LightColorTokens.OutlineOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorHover", - LightColorTokens.OutlineOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorActive", - LightColorTokens.OutlineOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositive", - LightColorTokens.OutlineOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveHover", - LightColorTokens.OutlineOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveActive", - LightColorTokens.OutlineOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarning", - LightColorTokens.OutlineOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningHover", - LightColorTokens.OutlineOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningActive", - LightColorTokens.OutlineOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparent", - LightColorTokens.OutlineOnDarkNegativeTransparent, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparentHover", - LightColorTokens.OutlineOnDarkNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparentActive", - LightColorTokens.OutlineOnDarkNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoHover", - LightColorTokens.OutlineOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoActive", - LightColorTokens.OutlineOnDarkTransparentInfoActive, - overwrite, - ) - initial.add("outlineOnDarkPrimaryHover", LightColorTokens.OutlineOnDarkPrimaryHover, overwrite) - initial.add( - "outlineOnDarkPrimaryActive", - LightColorTokens.OutlineOnDarkPrimaryActive, - overwrite, - ) - initial.add("outlineOnDarkInfo", LightColorTokens.OutlineOnDarkInfo, overwrite) - initial.add("outlineOnDarkInfoMinor", LightColorTokens.OutlineOnDarkInfoMinor, overwrite) - initial.add( - "outlineOnDarkTransparentInfo", - LightColorTokens.OutlineOnDarkTransparentInfo, - overwrite, - ) - initial.add("outlineOnDarkSolidPrimary", LightColorTokens.OutlineOnDarkSolidPrimary, overwrite) - initial.add( - "outlineOnDarkSolidPrimaryHover", - LightColorTokens.OutlineOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryActive", - LightColorTokens.OutlineOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondary", - LightColorTokens.OutlineOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryHover", - LightColorTokens.OutlineOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryActive", - LightColorTokens.OutlineOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiary", - LightColorTokens.OutlineOnDarkSolidTertiary, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryHover", - LightColorTokens.OutlineOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryActive", - LightColorTokens.OutlineOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkSolidDefault", LightColorTokens.OutlineOnDarkSolidDefault, overwrite) - initial.add( - "outlineOnDarkSolidDefaultHover", - LightColorTokens.OutlineOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultActive", - LightColorTokens.OutlineOnDarkSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightSecondaryHover", - LightColorTokens.OutlineOnLightSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSecondaryActive", - LightColorTokens.OutlineOnLightSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTertiaryHover", - LightColorTokens.OutlineOnLightTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTertiaryActive", - LightColorTokens.OutlineOnLightTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnLightDefaultHover", - LightColorTokens.OutlineOnLightDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightDefaultActive", - LightColorTokens.OutlineOnLightDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimary", - LightColorTokens.OutlineOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryHover", - LightColorTokens.OutlineOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryActive", - LightColorTokens.OutlineOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondary", - LightColorTokens.OutlineOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryHover", - LightColorTokens.OutlineOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryActive", - LightColorTokens.OutlineOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiary", - LightColorTokens.OutlineOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryHover", - LightColorTokens.OutlineOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryActive", - LightColorTokens.OutlineOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnLightAccent", LightColorTokens.OutlineOnLightAccent, overwrite) - initial.add("outlineOnLightAccentHover", LightColorTokens.OutlineOnLightAccentHover, overwrite) - initial.add( - "outlineOnLightAccentActive", - LightColorTokens.OutlineOnLightAccentActive, - overwrite, - ) - initial.add("outlineOnLightAccentMinor", LightColorTokens.OutlineOnLightAccentMinor, overwrite) - initial.add( - "outlineOnLightAccentMinorHover", - LightColorTokens.OutlineOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorActive", - LightColorTokens.OutlineOnLightAccentMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccent", - LightColorTokens.OutlineOnLightTransparentAccent, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentHover", - LightColorTokens.OutlineOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentActive", - LightColorTokens.OutlineOnLightTransparentAccentActive, - overwrite, - ) - initial.add("outlineOnLightPositive", LightColorTokens.OutlineOnLightPositive, overwrite) - initial.add( - "outlineOnLightPositiveHover", - LightColorTokens.OutlineOnLightPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveActive", - LightColorTokens.OutlineOnLightPositiveActive, - overwrite, - ) - initial.add("outlineOnLightWarning", LightColorTokens.OutlineOnLightWarning, overwrite) - initial.add( - "outlineOnLightWarningHover", - LightColorTokens.OutlineOnLightWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningActive", - LightColorTokens.OutlineOnLightWarningActive, - overwrite, - ) - initial.add("outlineOnLightNegative", LightColorTokens.OutlineOnLightNegative, overwrite) - initial.add( - "outlineOnLightNegativeHover", - LightColorTokens.OutlineOnLightNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeActive", - LightColorTokens.OutlineOnLightNegativeActive, - overwrite, - ) - initial.add("outlineOnLightInfoHover", LightColorTokens.OutlineOnLightInfoHover, overwrite) - initial.add("outlineOnLightInfoActive", LightColorTokens.OutlineOnLightInfoActive, overwrite) - initial.add( - "outlineOnLightPositiveMinor", - LightColorTokens.OutlineOnLightPositiveMinor, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorHover", - LightColorTokens.OutlineOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorActive", - LightColorTokens.OutlineOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinor", - LightColorTokens.OutlineOnLightWarningMinor, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorHover", - LightColorTokens.OutlineOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorActive", - LightColorTokens.OutlineOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinor", - LightColorTokens.OutlineOnLightNegativeMinor, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorHover", - LightColorTokens.OutlineOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorActive", - LightColorTokens.OutlineOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorHover", - LightColorTokens.OutlineOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorActive", - LightColorTokens.OutlineOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositive", - LightColorTokens.OutlineOnLightTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveHover", - LightColorTokens.OutlineOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveActive", - LightColorTokens.OutlineOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarning", - LightColorTokens.OutlineOnLightTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningHover", - LightColorTokens.OutlineOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningActive", - LightColorTokens.OutlineOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparent", - LightColorTokens.OutlineOnLightNegativeTransparent, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparentHover", - LightColorTokens.OutlineOnLightNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparentActive", - LightColorTokens.OutlineOnLightNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoHover", - LightColorTokens.OutlineOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoActive", - LightColorTokens.OutlineOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineOnLightPrimaryHover", - LightColorTokens.OutlineOnLightPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightPrimaryActive", - LightColorTokens.OutlineOnLightPrimaryActive, - overwrite, - ) - initial.add("outlineOnLightInfo", LightColorTokens.OutlineOnLightInfo, overwrite) - initial.add("outlineOnLightInfoMinor", LightColorTokens.OutlineOnLightInfoMinor, overwrite) - initial.add( - "outlineOnLightTransparentInfo", - LightColorTokens.OutlineOnLightTransparentInfo, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryHover", - LightColorTokens.OutlineOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryActive", - LightColorTokens.OutlineOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultHover", - LightColorTokens.OutlineOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultActive", - LightColorTokens.OutlineOnLightSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryHover", - LightColorTokens.OutlineOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryActive", - LightColorTokens.OutlineOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryHover", - LightColorTokens.OutlineOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryActive", - LightColorTokens.OutlineOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimary", - LightColorTokens.OutlineOnLightSolidPrimary, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondary", - LightColorTokens.OutlineOnLightSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiary", - LightColorTokens.OutlineOnLightSolidTertiary, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefault", - LightColorTokens.OutlineOnLightSolidDefault, - overwrite, - ) - initial.add( - "outlineInversePrimaryHover", - LightColorTokens.OutlineInversePrimaryHover, - overwrite, - ) - initial.add( - "outlineInversePrimaryActive", - LightColorTokens.OutlineInversePrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSecondaryHover", - LightColorTokens.OutlineInverseSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSecondaryActive", - LightColorTokens.OutlineInverseSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTertiaryHover", - LightColorTokens.OutlineInverseTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTertiaryActive", - LightColorTokens.OutlineInverseTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseDefaultHover", - LightColorTokens.OutlineInverseDefaultHover, - overwrite, - ) - initial.add( - "outlineInverseDefaultActive", - LightColorTokens.OutlineInverseDefaultActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryHover", - LightColorTokens.OutlineInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryActive", - LightColorTokens.OutlineInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryHover", - LightColorTokens.OutlineInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryActive", - LightColorTokens.OutlineInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryHover", - LightColorTokens.OutlineInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryActive", - LightColorTokens.OutlineInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentClearHover", - LightColorTokens.OutlineInverseTransparentClearHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentClearActive", - LightColorTokens.OutlineInverseTransparentClearActive, - overwrite, - ) - initial.add("outlineInverseAccentHover", LightColorTokens.OutlineInverseAccentHover, overwrite) - initial.add( - "outlineInverseAccentActive", - LightColorTokens.OutlineInverseAccentActive, - overwrite, - ) - initial.add( - "outlineInverseAccentMinorHover", - LightColorTokens.OutlineInverseAccentMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMinorActive", - LightColorTokens.OutlineInverseAccentMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentHover", - LightColorTokens.OutlineInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentActive", - LightColorTokens.OutlineInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineInversePositiveHover", - LightColorTokens.OutlineInversePositiveHover, - overwrite, - ) - initial.add( - "outlineInversePositiveActive", - LightColorTokens.OutlineInversePositiveActive, - overwrite, - ) - initial.add( - "outlineInverseWarningHover", - LightColorTokens.OutlineInverseWarningHover, - overwrite, - ) - initial.add( - "outlineInverseWarningActive", - LightColorTokens.OutlineInverseWarningActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeHover", - LightColorTokens.OutlineInverseNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeActive", - LightColorTokens.OutlineInverseNegativeActive, - overwrite, - ) - initial.add("outlineInverseInfoHover", LightColorTokens.OutlineInverseInfoHover, overwrite) - initial.add("outlineInverseInfoActive", LightColorTokens.OutlineInverseInfoActive, overwrite) - initial.add( - "outlineInversePositiveMinorHover", - LightColorTokens.OutlineInversePositiveMinorHover, - overwrite, - ) - initial.add( - "outlineInversePositiveMinorActive", - LightColorTokens.OutlineInversePositiveMinorActive, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorHover", - LightColorTokens.OutlineInverseWarningMinorHover, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorActive", - LightColorTokens.OutlineInverseWarningMinorActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorHover", - LightColorTokens.OutlineInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorActive", - LightColorTokens.OutlineInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorHover", - LightColorTokens.OutlineInverseInfoMinorHover, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorActive", - LightColorTokens.OutlineInverseInfoMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveHover", - LightColorTokens.OutlineInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveActive", - LightColorTokens.OutlineInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningHover", - LightColorTokens.OutlineInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningActive", - LightColorTokens.OutlineInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeHover", - LightColorTokens.OutlineInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeActive", - LightColorTokens.OutlineInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoHover", - LightColorTokens.OutlineInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoActive", - LightColorTokens.OutlineInverseTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimary", - LightColorTokens.OutlineInverseTransparentPrimary, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondary", - LightColorTokens.OutlineInverseTransparentSecondary, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiary", - LightColorTokens.OutlineInverseTransparentTertiary, - overwrite, - ) - initial.add( - "outlineInverseTransparentClear", - LightColorTokens.OutlineInverseTransparentClear, - overwrite, - ) - initial.add("outlineInverseAccent", LightColorTokens.OutlineInverseAccent, overwrite) - initial.add("outlineInverseAccentMinor", LightColorTokens.OutlineInverseAccentMinor, overwrite) - initial.add( - "outlineInverseTransparentAccent", - LightColorTokens.OutlineInverseTransparentAccent, - overwrite, - ) - initial.add("outlineInversePositive", LightColorTokens.OutlineInversePositive, overwrite) - initial.add("outlineInverseWarning", LightColorTokens.OutlineInverseWarning, overwrite) - initial.add("outlineInverseNegative", LightColorTokens.OutlineInverseNegative, overwrite) - initial.add("outlineInverseInfo", LightColorTokens.OutlineInverseInfo, overwrite) - initial.add( - "outlineInversePositiveMinor", - LightColorTokens.OutlineInversePositiveMinor, - overwrite, - ) - initial.add( - "outlineInverseWarningMinor", - LightColorTokens.OutlineInverseWarningMinor, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinor", - LightColorTokens.OutlineInverseNegativeMinor, - overwrite, - ) - initial.add("outlineInverseInfoMinor", LightColorTokens.OutlineInverseInfoMinor, overwrite) - initial.add( - "outlineInverseTransparentPositive", - LightColorTokens.OutlineInverseTransparentPositive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarning", - LightColorTokens.OutlineInverseTransparentWarning, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegative", - LightColorTokens.OutlineInverseTransparentNegative, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfo", - LightColorTokens.OutlineInverseTransparentInfo, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryHover", - LightColorTokens.OutlineInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryActive", - LightColorTokens.OutlineInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryHover", - LightColorTokens.OutlineInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryActive", - LightColorTokens.OutlineInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryHover", - LightColorTokens.OutlineInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryActive", - LightColorTokens.OutlineInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidDefaultHover", - LightColorTokens.OutlineInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineInverseSolidDefaultActive", - LightColorTokens.OutlineInverseSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimary", - LightColorTokens.OutlineInverseSolidPrimary, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondary", - LightColorTokens.OutlineInverseSolidSecondary, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiary", - LightColorTokens.OutlineInverseSolidTertiary, - overwrite, - ) - initial.add( - "outlineInverseSolidDefault", - LightColorTokens.OutlineInverseSolidDefault, - overwrite, - ) - initial.add("dataDefaultYellow", LightColorTokens.DataDefaultYellow, overwrite) - initial.add("dataDefaultYellowHover", LightColorTokens.DataDefaultYellowHover, overwrite) - initial.add("dataDefaultYellowActive", LightColorTokens.DataDefaultYellowActive, overwrite) - initial.add("dataDefaultYellowMinor", LightColorTokens.DataDefaultYellowMinor, overwrite) - initial.add( - "dataDefaultYellowMinorHover", - LightColorTokens.DataDefaultYellowMinorHover, - overwrite, - ) - initial.add( - "dataDefaultYellowMinorActive", - LightColorTokens.DataDefaultYellowMinorActive, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparent", - LightColorTokens.DataDefaultYellowTransparent, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentHover", - LightColorTokens.DataDefaultYellowTransparentHover, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentActive", - LightColorTokens.DataDefaultYellowTransparentActive, - overwrite, - ) - initial.add("dataOnDarkYellow", LightColorTokens.DataOnDarkYellow, overwrite) - initial.add("dataOnDarkYellowHover", LightColorTokens.DataOnDarkYellowHover, overwrite) - initial.add("dataOnDarkYellowActive", LightColorTokens.DataOnDarkYellowActive, overwrite) - initial.add("dataOnDarkYellowMinor", LightColorTokens.DataOnDarkYellowMinor, overwrite) - initial.add( - "dataOnDarkYellowMinorHover", - LightColorTokens.DataOnDarkYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowMinorActive", - LightColorTokens.DataOnDarkYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparent", - LightColorTokens.DataOnDarkYellowTransparent, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentHover", - LightColorTokens.DataOnDarkYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentActive", - LightColorTokens.DataOnDarkYellowTransparentActive, - overwrite, - ) - initial.add("dataOnLightYellow", LightColorTokens.DataOnLightYellow, overwrite) - initial.add("dataOnLightYellowHover", LightColorTokens.DataOnLightYellowHover, overwrite) - initial.add("dataOnLightYellowActive", LightColorTokens.DataOnLightYellowActive, overwrite) - initial.add("dataOnLightYellowMinor", LightColorTokens.DataOnLightYellowMinor, overwrite) - initial.add( - "dataOnLightYellowMinorHover", - LightColorTokens.DataOnLightYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnLightYellowMinorActive", - LightColorTokens.DataOnLightYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparent", - LightColorTokens.DataOnLightYellowTransparent, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentHover", - LightColorTokens.DataOnLightYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentActive", - LightColorTokens.DataOnLightYellowTransparentActive, - overwrite, - ) - initial.add("dataInverseYellow", LightColorTokens.DataInverseYellow, overwrite) - initial.add("dataInverseYellowHover", LightColorTokens.DataInverseYellowHover, overwrite) - initial.add("dataInverseYellowActive", LightColorTokens.DataInverseYellowActive, overwrite) - initial.add("dataInverseYellowMinor", LightColorTokens.DataInverseYellowMinor, overwrite) - initial.add( - "dataInverseYellowMinorHover", - LightColorTokens.DataInverseYellowMinorHover, - overwrite, - ) - initial.add( - "dataInverseYellowMinorActive", - LightColorTokens.DataInverseYellowMinorActive, - overwrite, - ) - initial.add( - "dataInverseYellowTransparent", - LightColorTokens.DataInverseYellowTransparent, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentHover", - LightColorTokens.DataInverseYellowTransparentHover, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentActive", - LightColorTokens.DataInverseYellowTransparentActive, - overwrite, - ) - return PlasmaGigaAppColors(initial) -} - -/** - * Цвета [PlasmaGigaAppColors] для темной темы - */ -@Suppress("LongMethod") -public fun darkPlasmaGigaAppColors(overrideColors: ColorOverrideScope.() -> Unit = {}): PlasmaGigaAppColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overwrite = colorOverrideScope.overrideMap - val initial = mutableMapOf() - initial.add("textDefaultPrimary", DarkColorTokens.TextDefaultPrimary, overwrite) - initial.add( - "textDefaultPrimaryBrightness", - DarkColorTokens.TextDefaultPrimaryBrightness, - overwrite, - ) - initial.add("textDefaultSecondary", DarkColorTokens.TextDefaultSecondary, overwrite) - initial.add("textDefaultTertiary", DarkColorTokens.TextDefaultTertiary, overwrite) - initial.add("textDefaultParagraph", DarkColorTokens.TextDefaultParagraph, overwrite) - initial.add("textDefaultAccent", DarkColorTokens.TextDefaultAccent, overwrite) - initial.add("textDefaultPositive", DarkColorTokens.TextDefaultPositive, overwrite) - initial.add("textDefaultWarning", DarkColorTokens.TextDefaultWarning, overwrite) - initial.add("textDefaultNegative", DarkColorTokens.TextDefaultNegative, overwrite) - initial.add( - "textDefaultAccentMinorHover", - DarkColorTokens.TextDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMinorActive", - DarkColorTokens.TextDefaultAccentMinorActive, - overwrite, - ) - initial.add("textDefaultInfoHover", DarkColorTokens.TextDefaultInfoHover, overwrite) - initial.add("textDefaultInfoActive", DarkColorTokens.TextDefaultInfoActive, overwrite) - initial.add( - "textDefaultPositiveMinorHover", - DarkColorTokens.TextDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "textDefaultPositiveMinorActive", - DarkColorTokens.TextDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "textDefaultWarningMinorHover", - DarkColorTokens.TextDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "textDefaultWarningMinorActive", - DarkColorTokens.TextDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorHover", - DarkColorTokens.TextDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorActive", - DarkColorTokens.TextDefaultNegativeMinorActive, - overwrite, - ) - initial.add("textDefaultInfoMinorHover", DarkColorTokens.TextDefaultInfoMinorHover, overwrite) - initial.add("textDefaultInfoMinorActive", DarkColorTokens.TextDefaultInfoMinorActive, overwrite) - initial.add("textDefaultAccentMinor", DarkColorTokens.TextDefaultAccentMinor, overwrite) - initial.add("textDefaultPositiveMinor", DarkColorTokens.TextDefaultPositiveMinor, overwrite) - initial.add("textDefaultWarningMinor", DarkColorTokens.TextDefaultWarningMinor, overwrite) - initial.add("textDefaultNegativeMinor", DarkColorTokens.TextDefaultNegativeMinor, overwrite) - initial.add("textDefaultInfo", DarkColorTokens.TextDefaultInfo, overwrite) - initial.add("textDefaultInfoMinor", DarkColorTokens.TextDefaultInfoMinor, overwrite) - initial.add("textDefaultPrimaryHover", DarkColorTokens.TextDefaultPrimaryHover, overwrite) - initial.add("textDefaultPrimaryActive", DarkColorTokens.TextDefaultPrimaryActive, overwrite) - initial.add("textDefaultSecondaryHover", DarkColorTokens.TextDefaultSecondaryHover, overwrite) - initial.add("textDefaultSecondaryActive", DarkColorTokens.TextDefaultSecondaryActive, overwrite) - initial.add("textDefaultTertiaryHover", DarkColorTokens.TextDefaultTertiaryHover, overwrite) - initial.add("textDefaultTertiaryActive", DarkColorTokens.TextDefaultTertiaryActive, overwrite) - initial.add("textDefaultParagraphHover", DarkColorTokens.TextDefaultParagraphHover, overwrite) - initial.add("textDefaultParagraphActive", DarkColorTokens.TextDefaultParagraphActive, overwrite) - initial.add("textDefaultAccentHover", DarkColorTokens.TextDefaultAccentHover, overwrite) - initial.add("textDefaultAccentActive", DarkColorTokens.TextDefaultAccentActive, overwrite) - initial.add("textDefaultPositiveHover", DarkColorTokens.TextDefaultPositiveHover, overwrite) - initial.add("textDefaultPositiveActive", DarkColorTokens.TextDefaultPositiveActive, overwrite) - initial.add("textDefaultWarningHover", DarkColorTokens.TextDefaultWarningHover, overwrite) - initial.add("textDefaultWarningActive", DarkColorTokens.TextDefaultWarningActive, overwrite) - initial.add("textDefaultNegativeHover", DarkColorTokens.TextDefaultNegativeHover, overwrite) - initial.add("textDefaultNegativeActive", DarkColorTokens.TextDefaultNegativeActive, overwrite) - initial.add("textOnDarkPrimary", DarkColorTokens.TextOnDarkPrimary, overwrite) - initial.add( - "textOnDarkPrimaryBrightness", - DarkColorTokens.TextOnDarkPrimaryBrightness, - overwrite, - ) - initial.add("textOnDarkSecondary", DarkColorTokens.TextOnDarkSecondary, overwrite) - initial.add("textOnDarkTertiary", DarkColorTokens.TextOnDarkTertiary, overwrite) - initial.add("textOnDarkParagraph", DarkColorTokens.TextOnDarkParagraph, overwrite) - initial.add("textOnDarkAccent", DarkColorTokens.TextOnDarkAccent, overwrite) - initial.add("textOnDarkPositive", DarkColorTokens.TextOnDarkPositive, overwrite) - initial.add("textOnDarkWarning", DarkColorTokens.TextOnDarkWarning, overwrite) - initial.add("textOnDarkNegative", DarkColorTokens.TextOnDarkNegative, overwrite) - initial.add("textOnDarkAccentMinor", DarkColorTokens.TextOnDarkAccentMinor, overwrite) - initial.add("textOnDarkAccentMinorHover", DarkColorTokens.TextOnDarkAccentMinorHover, overwrite) - initial.add( - "textOnDarkAccentMinorActive", - DarkColorTokens.TextOnDarkAccentMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoHover", DarkColorTokens.TextOnDarkInfoHover, overwrite) - initial.add("textOnDarkInfoActive", DarkColorTokens.TextOnDarkInfoActive, overwrite) - initial.add("textOnDarkPositiveMinor", DarkColorTokens.TextOnDarkPositiveMinor, overwrite) - initial.add( - "textOnDarkPositiveMinorHover", - DarkColorTokens.TextOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnDarkPositiveMinorActive", - DarkColorTokens.TextOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("textOnDarkWarningMinor", DarkColorTokens.TextOnDarkWarningMinor, overwrite) - initial.add( - "textOnDarkWarningMinorHover", - DarkColorTokens.TextOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorActive", - DarkColorTokens.TextOnDarkWarningMinorActive, - overwrite, - ) - initial.add("textOnDarkNegativeMinor", DarkColorTokens.TextOnDarkNegativeMinor, overwrite) - initial.add( - "textOnDarkNegativeMinorHover", - DarkColorTokens.TextOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorActive", - DarkColorTokens.TextOnDarkNegativeMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoMinorHover", DarkColorTokens.TextOnDarkInfoMinorHover, overwrite) - initial.add("textOnDarkInfoMinorActive", DarkColorTokens.TextOnDarkInfoMinorActive, overwrite) - initial.add("textOnDarkInfoMinor", DarkColorTokens.TextOnDarkInfoMinor, overwrite) - initial.add("textOnDarkInfo", DarkColorTokens.TextOnDarkInfo, overwrite) - initial.add("textOnDarkPrimaryHover", DarkColorTokens.TextOnDarkPrimaryHover, overwrite) - initial.add("textOnDarkPrimaryActive", DarkColorTokens.TextOnDarkPrimaryActive, overwrite) - initial.add("textOnDarkSecondaryHover", DarkColorTokens.TextOnDarkSecondaryHover, overwrite) - initial.add("textOnDarkSecondaryActive", DarkColorTokens.TextOnDarkSecondaryActive, overwrite) - initial.add("textOnDarkTertiaryHover", DarkColorTokens.TextOnDarkTertiaryHover, overwrite) - initial.add("textOnDarkTertiaryActive", DarkColorTokens.TextOnDarkTertiaryActive, overwrite) - initial.add("textOnDarkParagraphHover", DarkColorTokens.TextOnDarkParagraphHover, overwrite) - initial.add("textOnDarkParagraphActive", DarkColorTokens.TextOnDarkParagraphActive, overwrite) - initial.add("textOnDarkAccentHover", DarkColorTokens.TextOnDarkAccentHover, overwrite) - initial.add("textOnDarkAccentActive", DarkColorTokens.TextOnDarkAccentActive, overwrite) - initial.add("textOnDarkPositiveHover", DarkColorTokens.TextOnDarkPositiveHover, overwrite) - initial.add("textOnDarkPositiveActive", DarkColorTokens.TextOnDarkPositiveActive, overwrite) - initial.add("textOnDarkWarningHover", DarkColorTokens.TextOnDarkWarningHover, overwrite) - initial.add("textOnDarkWarningActive", DarkColorTokens.TextOnDarkWarningActive, overwrite) - initial.add("textOnDarkNegativeHover", DarkColorTokens.TextOnDarkNegativeHover, overwrite) - initial.add("textOnDarkNegativeActive", DarkColorTokens.TextOnDarkNegativeActive, overwrite) - initial.add("textOnLightPrimary", DarkColorTokens.TextOnLightPrimary, overwrite) - initial.add( - "textOnLightPrimaryBrightness", - DarkColorTokens.TextOnLightPrimaryBrightness, - overwrite, - ) - initial.add("textOnLightSecondary", DarkColorTokens.TextOnLightSecondary, overwrite) - initial.add("textOnLightTertiary", DarkColorTokens.TextOnLightTertiary, overwrite) - initial.add("textOnLightParagraph", DarkColorTokens.TextOnLightParagraph, overwrite) - initial.add("textOnLightAccent", DarkColorTokens.TextOnLightAccent, overwrite) - initial.add("textOnLightPositive", DarkColorTokens.TextOnLightPositive, overwrite) - initial.add("textOnLightWarning", DarkColorTokens.TextOnLightWarning, overwrite) - initial.add("textOnLightAccentMinor", DarkColorTokens.TextOnLightAccentMinor, overwrite) - initial.add( - "textOnLightAccentMinorHover", - DarkColorTokens.TextOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMinorActive", - DarkColorTokens.TextOnLightAccentMinorActive, - overwrite, - ) - initial.add("textOnLightInfoHover", DarkColorTokens.TextOnLightInfoHover, overwrite) - initial.add("textOnLightInfoActive", DarkColorTokens.TextOnLightInfoActive, overwrite) - initial.add("textOnLightPositiveMinor", DarkColorTokens.TextOnLightPositiveMinor, overwrite) - initial.add( - "textOnLightPositiveMinorHover", - DarkColorTokens.TextOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnLightPositiveMinorActive", - DarkColorTokens.TextOnLightPositiveMinorActive, - overwrite, - ) - initial.add("textOnLightWarningMinor", DarkColorTokens.TextOnLightWarningMinor, overwrite) - initial.add( - "textOnLightWarningMinorHover", - DarkColorTokens.TextOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "textOnLightWarningMinorActive", - DarkColorTokens.TextOnLightWarningMinorActive, - overwrite, - ) - initial.add("textOnLightNegativeMinor", DarkColorTokens.TextOnLightNegativeMinor, overwrite) - initial.add( - "textOnLightNegativeMinorHover", - DarkColorTokens.TextOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorActive", - DarkColorTokens.TextOnLightNegativeMinorActive, - overwrite, - ) - initial.add("textOnLightInfoMinorHover", DarkColorTokens.TextOnLightInfoMinorHover, overwrite) - initial.add("textOnLightInfoMinorActive", DarkColorTokens.TextOnLightInfoMinorActive, overwrite) - initial.add("textOnLightNegative", DarkColorTokens.TextOnLightNegative, overwrite) - initial.add("textOnLightNegativeHover", DarkColorTokens.TextOnLightNegativeHover, overwrite) - initial.add("textOnLightNegativeActive", DarkColorTokens.TextOnLightNegativeActive, overwrite) - initial.add("textOnLightInfo", DarkColorTokens.TextOnLightInfo, overwrite) - initial.add("textOnLightInfoMinor", DarkColorTokens.TextOnLightInfoMinor, overwrite) - initial.add("textOnLightPrimaryHover", DarkColorTokens.TextOnLightPrimaryHover, overwrite) - initial.add("textOnLightPrimaryActive", DarkColorTokens.TextOnLightPrimaryActive, overwrite) - initial.add("textOnLightSecondaryHover", DarkColorTokens.TextOnLightSecondaryHover, overwrite) - initial.add("textOnLightSecondaryActive", DarkColorTokens.TextOnLightSecondaryActive, overwrite) - initial.add("textOnLightTertiaryHover", DarkColorTokens.TextOnLightTertiaryHover, overwrite) - initial.add("textOnLightTertiaryActive", DarkColorTokens.TextOnLightTertiaryActive, overwrite) - initial.add("textOnLightParagraphHover", DarkColorTokens.TextOnLightParagraphHover, overwrite) - initial.add("textOnLightParagraphActive", DarkColorTokens.TextOnLightParagraphActive, overwrite) - initial.add("textOnLightAccentHover", DarkColorTokens.TextOnLightAccentHover, overwrite) - initial.add("textOnLightAccentActive", DarkColorTokens.TextOnLightAccentActive, overwrite) - initial.add("textOnLightPositiveHover", DarkColorTokens.TextOnLightPositiveHover, overwrite) - initial.add("textOnLightPositiveActive", DarkColorTokens.TextOnLightPositiveActive, overwrite) - initial.add("textOnLightWarningHover", DarkColorTokens.TextOnLightWarningHover, overwrite) - initial.add("textOnLightWarningActive", DarkColorTokens.TextOnLightWarningActive, overwrite) - initial.add("textInversePrimary", DarkColorTokens.TextInversePrimary, overwrite) - initial.add( - "textInversePrimaryBrightness", - DarkColorTokens.TextInversePrimaryBrightness, - overwrite, - ) - initial.add("textInverseSecondary", DarkColorTokens.TextInverseSecondary, overwrite) - initial.add("textInverseTertiary", DarkColorTokens.TextInverseTertiary, overwrite) - initial.add("textInverseParagraph", DarkColorTokens.TextInverseParagraph, overwrite) - initial.add("textInversePositive", DarkColorTokens.TextInversePositive, overwrite) - initial.add("textInverseWarning", DarkColorTokens.TextInverseWarning, overwrite) - initial.add("textInverseNegative", DarkColorTokens.TextInverseNegative, overwrite) - initial.add("textInversePrimaryHover", DarkColorTokens.TextInversePrimaryHover, overwrite) - initial.add("textInversePrimaryActive", DarkColorTokens.TextInversePrimaryActive, overwrite) - initial.add("textInverseSecondaryHover", DarkColorTokens.TextInverseSecondaryHover, overwrite) - initial.add("textInverseSecondaryActive", DarkColorTokens.TextInverseSecondaryActive, overwrite) - initial.add("textInverseTertiaryHover", DarkColorTokens.TextInverseTertiaryHover, overwrite) - initial.add("textInverseTertiaryActive", DarkColorTokens.TextInverseTertiaryActive, overwrite) - initial.add("textInverseParagraphHover", DarkColorTokens.TextInverseParagraphHover, overwrite) - initial.add("textInverseParagraphActive", DarkColorTokens.TextInverseParagraphActive, overwrite) - initial.add("textInverseAccentHover", DarkColorTokens.TextInverseAccentHover, overwrite) - initial.add("textInverseAccentActive", DarkColorTokens.TextInverseAccentActive, overwrite) - initial.add("textInversePositiveHover", DarkColorTokens.TextInversePositiveHover, overwrite) - initial.add("textInversePositiveActive", DarkColorTokens.TextInversePositiveActive, overwrite) - initial.add("textInverseWarningHover", DarkColorTokens.TextInverseWarningHover, overwrite) - initial.add("textInverseWarningActive", DarkColorTokens.TextInverseWarningActive, overwrite) - initial.add("textInverseNegativeHover", DarkColorTokens.TextInverseNegativeHover, overwrite) - initial.add("textInverseNegativeActive", DarkColorTokens.TextInverseNegativeActive, overwrite) - initial.add("textInverseAccentMinor", DarkColorTokens.TextInverseAccentMinor, overwrite) - initial.add( - "textInverseAccentMinorHover", - DarkColorTokens.TextInverseAccentMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMinorActive", - DarkColorTokens.TextInverseAccentMinorActive, - overwrite, - ) - initial.add("textInverseInfoHover", DarkColorTokens.TextInverseInfoHover, overwrite) - initial.add("textInverseInfoActive", DarkColorTokens.TextInverseInfoActive, overwrite) - initial.add( - "textInversePositiveMinorHover", - DarkColorTokens.TextInversePositiveMinorHover, - overwrite, - ) - initial.add( - "textInversePositiveMinorActive", - DarkColorTokens.TextInversePositiveMinorActive, - overwrite, - ) - initial.add( - "textInverseWarningMinorHover", - DarkColorTokens.TextInverseWarningMinorHover, - overwrite, - ) - initial.add( - "textInverseWarningMinorActive", - DarkColorTokens.TextInverseWarningMinorActive, - overwrite, - ) - initial.add( - "textInverseNegativeMinorHover", - DarkColorTokens.TextInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "textInverseNegativeMinorActive", - DarkColorTokens.TextInverseNegativeMinorActive, - overwrite, - ) - initial.add("textInverseInfoMinorHover", DarkColorTokens.TextInverseInfoMinorHover, overwrite) - initial.add("textInverseInfoMinorActive", DarkColorTokens.TextInverseInfoMinorActive, overwrite) - initial.add("textInverseAccent", DarkColorTokens.TextInverseAccent, overwrite) - initial.add("textInverseInfo", DarkColorTokens.TextInverseInfo, overwrite) - initial.add("textInversePositiveMinor", DarkColorTokens.TextInversePositiveMinor, overwrite) - initial.add("textInverseWarningMinor", DarkColorTokens.TextInverseWarningMinor, overwrite) - initial.add("textInverseNegativeMinor", DarkColorTokens.TextInverseNegativeMinor, overwrite) - initial.add("textInverseInfoMinor", DarkColorTokens.TextInverseInfoMinor, overwrite) - initial.add("surfaceDefaultSolidDefault", DarkColorTokens.SurfaceDefaultSolidDefault, overwrite) - initial.add("surfaceDefaultSolidPrimary", DarkColorTokens.SurfaceDefaultSolidPrimary, overwrite) - initial.add( - "surfaceDefaultSolidPrimaryBrightness", - DarkColorTokens.SurfaceDefaultSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondary", - DarkColorTokens.SurfaceDefaultSolidSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiary", - DarkColorTokens.SurfaceDefaultSolidTertiary, - overwrite, - ) - initial.add("surfaceDefaultSolidCard", DarkColorTokens.SurfaceDefaultSolidCard, overwrite) - initial.add( - "surfaceDefaultSolidCardBrightness", - DarkColorTokens.SurfaceDefaultSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefault", - DarkColorTokens.SurfaceDefaultTransparentDefault, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimary", - DarkColorTokens.SurfaceDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondary", - DarkColorTokens.SurfaceDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiary", - DarkColorTokens.SurfaceDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCard", - DarkColorTokens.SurfaceDefaultTransparentCard, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardBrightness", - DarkColorTokens.SurfaceDefaultTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceDefaultAccent", DarkColorTokens.SurfaceDefaultAccent, overwrite) - initial.add("surfaceDefaultPositive", DarkColorTokens.SurfaceDefaultPositive, overwrite) - initial.add("surfaceDefaultWarning", DarkColorTokens.SurfaceDefaultWarning, overwrite) - initial.add("surfaceDefaultNegative", DarkColorTokens.SurfaceDefaultNegative, overwrite) - initial.add("surfaceDefaultClear", DarkColorTokens.SurfaceDefaultClear, overwrite) - initial.add( - "surfaceDefaultTransparentDeep", - DarkColorTokens.SurfaceDefaultTransparentDeep, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorHover", - DarkColorTokens.SurfaceDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorActive", - DarkColorTokens.SurfaceDefaultAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentHover", - DarkColorTokens.SurfaceDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentActive", - DarkColorTokens.SurfaceDefaultTransparentAccentActive, - overwrite, - ) - initial.add("surfaceDefaultInfoHover", DarkColorTokens.SurfaceDefaultInfoHover, overwrite) - initial.add("surfaceDefaultInfoActive", DarkColorTokens.SurfaceDefaultInfoActive, overwrite) - initial.add( - "surfaceDefaultPositiveMinorHover", - DarkColorTokens.SurfaceDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinorActive", - DarkColorTokens.SurfaceDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorHover", - DarkColorTokens.SurfaceDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorActive", - DarkColorTokens.SurfaceDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorHover", - DarkColorTokens.SurfaceDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorActive", - DarkColorTokens.SurfaceDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorHover", - DarkColorTokens.SurfaceDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorActive", - DarkColorTokens.SurfaceDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveHover", - DarkColorTokens.SurfaceDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveActive", - DarkColorTokens.SurfaceDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningHover", - DarkColorTokens.SurfaceDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningActive", - DarkColorTokens.SurfaceDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeHover", - DarkColorTokens.SurfaceDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeActive", - DarkColorTokens.SurfaceDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoHover", - DarkColorTokens.SurfaceDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoActive", - DarkColorTokens.SurfaceDefaultTransparentInfoActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMinor", DarkColorTokens.SurfaceDefaultAccentMinor, overwrite) - initial.add( - "surfaceDefaultTransparentAccent", - DarkColorTokens.SurfaceDefaultTransparentAccent, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinor", - DarkColorTokens.SurfaceDefaultPositiveMinor, - overwrite, - ) - initial.add("surfaceDefaultWarningMinor", DarkColorTokens.SurfaceDefaultWarningMinor, overwrite) - initial.add( - "surfaceDefaultNegativeMinor", - DarkColorTokens.SurfaceDefaultNegativeMinor, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositive", - DarkColorTokens.SurfaceDefaultTransparentPositive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarning", - DarkColorTokens.SurfaceDefaultTransparentWarning, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegative", - DarkColorTokens.SurfaceDefaultTransparentNegative, - overwrite, - ) - initial.add("surfaceDefaultInfo", DarkColorTokens.SurfaceDefaultInfo, overwrite) - initial.add("surfaceDefaultInfoMinor", DarkColorTokens.SurfaceDefaultInfoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentInfo", - DarkColorTokens.SurfaceDefaultTransparentInfo, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultHover", - DarkColorTokens.SurfaceDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultActive", - DarkColorTokens.SurfaceDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryHover", - DarkColorTokens.SurfaceDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryActive", - DarkColorTokens.SurfaceDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryHover", - DarkColorTokens.SurfaceDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryActive", - DarkColorTokens.SurfaceDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryHover", - DarkColorTokens.SurfaceDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryActive", - DarkColorTokens.SurfaceDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardHover", - DarkColorTokens.SurfaceDefaultSolidCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardActive", - DarkColorTokens.SurfaceDefaultSolidCardActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefaultHover", - DarkColorTokens.SurfaceDefaultTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDefaultActive", - DarkColorTokens.SurfaceDefaultTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryHover", - DarkColorTokens.SurfaceDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryActive", - DarkColorTokens.SurfaceDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryHover", - DarkColorTokens.SurfaceDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryActive", - DarkColorTokens.SurfaceDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryHover", - DarkColorTokens.SurfaceDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryActive", - DarkColorTokens.SurfaceDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardHover", - DarkColorTokens.SurfaceDefaultTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardActive", - DarkColorTokens.SurfaceDefaultTransparentCardActive, - overwrite, - ) - initial.add("surfaceDefaultAccentHover", DarkColorTokens.SurfaceDefaultAccentHover, overwrite) - initial.add("surfaceDefaultAccentActive", DarkColorTokens.SurfaceDefaultAccentActive, overwrite) - initial.add( - "surfaceDefaultPositiveHover", - DarkColorTokens.SurfaceDefaultPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveActive", - DarkColorTokens.SurfaceDefaultPositiveActive, - overwrite, - ) - initial.add("surfaceDefaultWarningHover", DarkColorTokens.SurfaceDefaultWarningHover, overwrite) - initial.add( - "surfaceDefaultWarningActive", - DarkColorTokens.SurfaceDefaultWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeHover", - DarkColorTokens.SurfaceDefaultNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeActive", - DarkColorTokens.SurfaceDefaultNegativeActive, - overwrite, - ) - initial.add("surfaceDefaultClearHover", DarkColorTokens.SurfaceDefaultClearHover, overwrite) - initial.add("surfaceDefaultClearActive", DarkColorTokens.SurfaceDefaultClearActive, overwrite) - initial.add( - "surfaceDefaultTransparentDeepHover", - DarkColorTokens.SurfaceDefaultTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepActive", - DarkColorTokens.SurfaceDefaultTransparentDeepActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidPrimary", DarkColorTokens.SurfaceOnDarkSolidPrimary, overwrite) - initial.add( - "surfaceOnDarkSolidPrimaryBrightness", - DarkColorTokens.SurfaceOnDarkSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondary", - DarkColorTokens.SurfaceOnDarkSolidSecondary, - overwrite, - ) - initial.add("surfaceOnDarkSolidTertiary", DarkColorTokens.SurfaceOnDarkSolidTertiary, overwrite) - initial.add("surfaceOnDarkSolidCard", DarkColorTokens.SurfaceOnDarkSolidCard, overwrite) - initial.add( - "surfaceOnDarkSolidCardBrightness", - DarkColorTokens.SurfaceOnDarkSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefault", - DarkColorTokens.SurfaceOnDarkTransparentDefault, - overwrite, - ) - initial.add("surfaceOnDarkAccent", DarkColorTokens.SurfaceOnDarkAccent, overwrite) - initial.add("surfaceOnDarkPositive", DarkColorTokens.SurfaceOnDarkPositive, overwrite) - initial.add("surfaceOnDarkWarning", DarkColorTokens.SurfaceOnDarkWarning, overwrite) - initial.add("surfaceOnDarkNegative", DarkColorTokens.SurfaceOnDarkNegative, overwrite) - initial.add("surfaceOnDarkClear", DarkColorTokens.SurfaceOnDarkClear, overwrite) - initial.add( - "surfaceOnDarkTransparentDeep", - DarkColorTokens.SurfaceOnDarkTransparentDeep, - overwrite, - ) - initial.add("surfaceOnDarkAccentMinor", DarkColorTokens.SurfaceOnDarkAccentMinor, overwrite) - initial.add( - "surfaceOnDarkAccentMinorHover", - DarkColorTokens.SurfaceOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorActive", - DarkColorTokens.SurfaceOnDarkAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccent", - DarkColorTokens.SurfaceOnDarkTransparentAccent, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSurfaceInfoHover", - DarkColorTokens.SurfaceOnDarkSurfaceInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSurfaceInfoActive", - DarkColorTokens.SurfaceOnDarkSurfaceInfoActive, - overwrite, - ) - initial.add("surfaceOnDarkPositiveMinor", DarkColorTokens.SurfaceOnDarkPositiveMinor, overwrite) - initial.add( - "surfaceOnDarkPositiveMinorHover", - DarkColorTokens.SurfaceOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinorActive", - DarkColorTokens.SurfaceOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkWarningMinor", DarkColorTokens.SurfaceOnDarkWarningMinor, overwrite) - initial.add( - "surfaceOnDarkWarningMinorHover", - DarkColorTokens.SurfaceOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorActive", - DarkColorTokens.SurfaceOnDarkWarningMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkNegativeMinor", DarkColorTokens.SurfaceOnDarkNegativeMinor, overwrite) - initial.add( - "surfaceOnDarkNegativeMinorHover", - DarkColorTokens.SurfaceOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorActive", - DarkColorTokens.SurfaceOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorHover", - DarkColorTokens.SurfaceOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorActive", - DarkColorTokens.SurfaceOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveHover", - DarkColorTokens.SurfaceOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveActive", - DarkColorTokens.SurfaceOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningHover", - DarkColorTokens.SurfaceOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningActive", - DarkColorTokens.SurfaceOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeHover", - DarkColorTokens.SurfaceOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeActive", - DarkColorTokens.SurfaceOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoHover", - DarkColorTokens.SurfaceOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoActive", - DarkColorTokens.SurfaceOnDarkTransparentInfoActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidDefault", DarkColorTokens.SurfaceOnDarkSolidDefault, overwrite) - initial.add( - "surfaceOnDarkSolidDefaultHover", - DarkColorTokens.SurfaceOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultActive", - DarkColorTokens.SurfaceOnDarkSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimary", - DarkColorTokens.SurfaceOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryHover", - DarkColorTokens.SurfaceOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryActive", - DarkColorTokens.SurfaceOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondary", - DarkColorTokens.SurfaceOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryHover", - DarkColorTokens.SurfaceOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryActive", - DarkColorTokens.SurfaceOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiary", - DarkColorTokens.SurfaceOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryHover", - DarkColorTokens.SurfaceOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryActive", - DarkColorTokens.SurfaceOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCard", - DarkColorTokens.SurfaceOnDarkTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardBrightness", - DarkColorTokens.SurfaceOnDarkTransparentCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardHover", - DarkColorTokens.SurfaceOnDarkTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardActive", - DarkColorTokens.SurfaceOnDarkTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositive", - DarkColorTokens.SurfaceOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarning", - DarkColorTokens.SurfaceOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegative", - DarkColorTokens.SurfaceOnDarkTransparentNegative, - overwrite, - ) - initial.add("surfaceOnDarkSurfaceInfo", DarkColorTokens.SurfaceOnDarkSurfaceInfo, overwrite) - initial.add("surfaceOnDarkInfoMinor", DarkColorTokens.SurfaceOnDarkInfoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentInfo", - DarkColorTokens.SurfaceOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryHover", - DarkColorTokens.SurfaceOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryActive", - DarkColorTokens.SurfaceOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryHover", - DarkColorTokens.SurfaceOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryActive", - DarkColorTokens.SurfaceOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryHover", - DarkColorTokens.SurfaceOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryActive", - DarkColorTokens.SurfaceOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardHover", - DarkColorTokens.SurfaceOnDarkSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardActive", - DarkColorTokens.SurfaceOnDarkSolidCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefaultHover", - DarkColorTokens.SurfaceOnDarkTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDefaultActive", - DarkColorTokens.SurfaceOnDarkTransparentDefaultActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentHover", DarkColorTokens.SurfaceOnDarkAccentHover, overwrite) - initial.add("surfaceOnDarkAccentActive", DarkColorTokens.SurfaceOnDarkAccentActive, overwrite) - initial.add("surfaceOnDarkPositiveHover", DarkColorTokens.SurfaceOnDarkPositiveHover, overwrite) - initial.add( - "surfaceOnDarkPositiveActive", - DarkColorTokens.SurfaceOnDarkPositiveActive, - overwrite, - ) - initial.add("surfaceOnDarkWarningHover", DarkColorTokens.SurfaceOnDarkWarningHover, overwrite) - initial.add("surfaceOnDarkWarningActive", DarkColorTokens.SurfaceOnDarkWarningActive, overwrite) - initial.add("surfaceOnDarkNegativeHover", DarkColorTokens.SurfaceOnDarkNegativeHover, overwrite) - initial.add( - "surfaceOnDarkNegativeActive", - DarkColorTokens.SurfaceOnDarkNegativeActive, - overwrite, - ) - initial.add("surfaceOnDarkClearHover", DarkColorTokens.SurfaceOnDarkClearHover, overwrite) - initial.add("surfaceOnDarkClearActive", DarkColorTokens.SurfaceOnDarkClearActive, overwrite) - initial.add( - "surfaceOnDarkTransparentDeepHover", - DarkColorTokens.SurfaceOnDarkTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepActive", - DarkColorTokens.SurfaceOnDarkTransparentDeepActive, - overwrite, - ) - initial.add("surfaceOnLightSolidDefault", DarkColorTokens.SurfaceOnLightSolidDefault, overwrite) - initial.add("surfaceOnLightSolidPrimary", DarkColorTokens.SurfaceOnLightSolidPrimary, overwrite) - initial.add( - "surfaceOnLightSolidPrimaryBrightness", - DarkColorTokens.SurfaceOnLightSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondary", - DarkColorTokens.SurfaceOnLightSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiary", - DarkColorTokens.SurfaceOnLightSolidTertiary, - overwrite, - ) - initial.add("surfaceOnLightSolidCard", DarkColorTokens.SurfaceOnLightSolidCard, overwrite) - initial.add( - "surfaceOnLightSolidCardBrightness", - DarkColorTokens.SurfaceOnLightSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefault", - DarkColorTokens.SurfaceOnLightTransparentDefault, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimary", - DarkColorTokens.SurfaceOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondary", - DarkColorTokens.SurfaceOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiary", - DarkColorTokens.SurfaceOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCard", - DarkColorTokens.SurfaceOnLightTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardBrightness", - DarkColorTokens.SurfaceOnLightTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnLightAccent", DarkColorTokens.SurfaceOnLightAccent, overwrite) - initial.add("surfaceOnLightPositive", DarkColorTokens.SurfaceOnLightPositive, overwrite) - initial.add("surfaceOnLightWarning", DarkColorTokens.SurfaceOnLightWarning, overwrite) - initial.add("surfaceOnLightNegative", DarkColorTokens.SurfaceOnLightNegative, overwrite) - initial.add("surfaceOnLightClear", DarkColorTokens.SurfaceOnLightClear, overwrite) - initial.add( - "surfaceOnLightTransparentDeep", - DarkColorTokens.SurfaceOnLightTransparentDeep, - overwrite, - ) - initial.add("surfaceOnLightAccentMinor", DarkColorTokens.SurfaceOnLightAccentMinor, overwrite) - initial.add( - "surfaceOnLightAccentMinorHover", - DarkColorTokens.SurfaceOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorActive", - DarkColorTokens.SurfaceOnLightAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccent", - DarkColorTokens.SurfaceOnLightTransparentAccent, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentHover", - DarkColorTokens.SurfaceOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentActive", - DarkColorTokens.SurfaceOnLightTransparentAccentActive, - overwrite, - ) - initial.add("surfaceOnLightInfoHover", DarkColorTokens.SurfaceOnLightInfoHover, overwrite) - initial.add("surfaceOnLightInfoActive", DarkColorTokens.SurfaceOnLightInfoActive, overwrite) - initial.add( - "surfaceOnLightPositiveMinor", - DarkColorTokens.SurfaceOnLightPositiveMinor, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorHover", - DarkColorTokens.SurfaceOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorActive", - DarkColorTokens.SurfaceOnLightPositiveMinorActive, - overwrite, - ) - initial.add("surfaceOnLightWarningMinor", DarkColorTokens.SurfaceOnLightWarningMinor, overwrite) - initial.add( - "surfaceOnLightWarningMinorHover", - DarkColorTokens.SurfaceOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorActive", - DarkColorTokens.SurfaceOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinor", - DarkColorTokens.SurfaceOnLightNegativeMinor, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorHover", - DarkColorTokens.SurfaceOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorActive", - DarkColorTokens.SurfaceOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorHover", - DarkColorTokens.SurfaceOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorActive", - DarkColorTokens.SurfaceOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveHover", - DarkColorTokens.SurfaceOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveActive", - DarkColorTokens.SurfaceOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningHover", - DarkColorTokens.SurfaceOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningActive", - DarkColorTokens.SurfaceOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeHover", - DarkColorTokens.SurfaceOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeActive", - DarkColorTokens.SurfaceOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoHover", - DarkColorTokens.SurfaceOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoActive", - DarkColorTokens.SurfaceOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositive", - DarkColorTokens.SurfaceOnLightTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarning", - DarkColorTokens.SurfaceOnLightTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegative", - DarkColorTokens.SurfaceOnLightTransparentNegative, - overwrite, - ) - initial.add("surfaceOnLightInfo", DarkColorTokens.SurfaceOnLightInfo, overwrite) - initial.add("surfaceOnLightInfoMinor", DarkColorTokens.SurfaceOnLightInfoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentInfo", - DarkColorTokens.SurfaceOnLightTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultHover", - DarkColorTokens.SurfaceOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultActive", - DarkColorTokens.SurfaceOnLightSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryHover", - DarkColorTokens.SurfaceOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryActive", - DarkColorTokens.SurfaceOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryHover", - DarkColorTokens.SurfaceOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryActive", - DarkColorTokens.SurfaceOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryHover", - DarkColorTokens.SurfaceOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryActive", - DarkColorTokens.SurfaceOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardHover", - DarkColorTokens.SurfaceOnLightSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardActive", - DarkColorTokens.SurfaceOnLightSolidCardActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefaultHover", - DarkColorTokens.SurfaceOnLightTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDefaultActive", - DarkColorTokens.SurfaceOnLightTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryHover", - DarkColorTokens.SurfaceOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryActive", - DarkColorTokens.SurfaceOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryHover", - DarkColorTokens.SurfaceOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryActive", - DarkColorTokens.SurfaceOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryHover", - DarkColorTokens.SurfaceOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryActive", - DarkColorTokens.SurfaceOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardHover", - DarkColorTokens.SurfaceOnLightTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardActive", - DarkColorTokens.SurfaceOnLightTransparentCardActive, - overwrite, - ) - initial.add("surfaceOnLightAccentHover", DarkColorTokens.SurfaceOnLightAccentHover, overwrite) - initial.add("surfaceOnLightAccentActive", DarkColorTokens.SurfaceOnLightAccentActive, overwrite) - initial.add( - "surfaceOnLightPositiveHover", - DarkColorTokens.SurfaceOnLightPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveActive", - DarkColorTokens.SurfaceOnLightPositiveActive, - overwrite, - ) - initial.add("surfaceOnLightWarningHover", DarkColorTokens.SurfaceOnLightWarningHover, overwrite) - initial.add( - "surfaceOnLightWarningActive", - DarkColorTokens.SurfaceOnLightWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeHover", - DarkColorTokens.SurfaceOnLightNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeActive", - DarkColorTokens.SurfaceOnLightNegativeActive, - overwrite, - ) - initial.add("surfaceOnLightClearHover", DarkColorTokens.SurfaceOnLightClearHover, overwrite) - initial.add("surfaceOnLightClearActive", DarkColorTokens.SurfaceOnLightClearActive, overwrite) - initial.add( - "surfaceOnLightTransparentDeepHover", - DarkColorTokens.SurfaceOnLightTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepActive", - DarkColorTokens.SurfaceOnLightTransparentDeepActive, - overwrite, - ) - initial.add("surfaceInverseSolidDefault", DarkColorTokens.SurfaceInverseSolidDefault, overwrite) - initial.add("surfaceInverseSolidPrimary", DarkColorTokens.SurfaceInverseSolidPrimary, overwrite) - initial.add( - "surfaceInverseSolidPrimaryBrightness", - DarkColorTokens.SurfaceInverseSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondary", - DarkColorTokens.SurfaceInverseSolidSecondary, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiary", - DarkColorTokens.SurfaceInverseSolidTertiary, - overwrite, - ) - initial.add("surfaceInverseSolidCard", DarkColorTokens.SurfaceInverseSolidCard, overwrite) - initial.add( - "surfaceInverseSolidCardBrightness", - DarkColorTokens.SurfaceInverseSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefault", - DarkColorTokens.SurfaceInverseTransparentDefault, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimary", - DarkColorTokens.SurfaceInverseTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondary", - DarkColorTokens.SurfaceInverseTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiary", - DarkColorTokens.SurfaceInverseTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCard", - DarkColorTokens.SurfaceInverseTransparentCard, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardBrightness", - DarkColorTokens.SurfaceInverseTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceInverseAccent", DarkColorTokens.SurfaceInverseAccent, overwrite) - initial.add("surfaceInversePositive", DarkColorTokens.SurfaceInversePositive, overwrite) - initial.add("surfaceInverseWarning", DarkColorTokens.SurfaceInverseWarning, overwrite) - initial.add("surfaceInverseNegative", DarkColorTokens.SurfaceInverseNegative, overwrite) - initial.add("surfaceInverseClear", DarkColorTokens.SurfaceInverseClear, overwrite) - initial.add( - "surfaceInverseSolidDefaultHover", - DarkColorTokens.SurfaceInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultActive", - DarkColorTokens.SurfaceInverseSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryHover", - DarkColorTokens.SurfaceInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryActive", - DarkColorTokens.SurfaceInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryHover", - DarkColorTokens.SurfaceInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryActive", - DarkColorTokens.SurfaceInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryHover", - DarkColorTokens.SurfaceInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryActive", - DarkColorTokens.SurfaceInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardHover", - DarkColorTokens.SurfaceInverseSolidCardHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardActive", - DarkColorTokens.SurfaceInverseSolidCardActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefaultHover", - DarkColorTokens.SurfaceInverseTransparentDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDefaultActive", - DarkColorTokens.SurfaceInverseTransparentDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryHover", - DarkColorTokens.SurfaceInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryActive", - DarkColorTokens.SurfaceInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryHover", - DarkColorTokens.SurfaceInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryActive", - DarkColorTokens.SurfaceInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryHover", - DarkColorTokens.SurfaceInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryActive", - DarkColorTokens.SurfaceInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardHover", - DarkColorTokens.SurfaceInverseTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardActive", - DarkColorTokens.SurfaceInverseTransparentCardActive, - overwrite, - ) - initial.add("surfaceInverseAccentHover", DarkColorTokens.SurfaceInverseAccentHover, overwrite) - initial.add("surfaceInverseAccentActive", DarkColorTokens.SurfaceInverseAccentActive, overwrite) - initial.add( - "surfaceInversePositiveHover", - DarkColorTokens.SurfaceInversePositiveHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveActive", - DarkColorTokens.SurfaceInversePositiveActive, - overwrite, - ) - initial.add("surfaceInverseWarningHover", DarkColorTokens.SurfaceInverseWarningHover, overwrite) - initial.add( - "surfaceInverseWarningActive", - DarkColorTokens.SurfaceInverseWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeHover", - DarkColorTokens.SurfaceInverseNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeActive", - DarkColorTokens.SurfaceInverseNegativeActive, - overwrite, - ) - initial.add("surfaceInverseClearHover", DarkColorTokens.SurfaceInverseClearHover, overwrite) - initial.add("surfaceInverseClearActive", DarkColorTokens.SurfaceInverseClearActive, overwrite) - initial.add( - "surfaceInverseTransparentDeep", - DarkColorTokens.SurfaceInverseTransparentDeep, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepHover", - DarkColorTokens.SurfaceInverseTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepActive", - DarkColorTokens.SurfaceInverseTransparentDeepActive, - overwrite, - ) - initial.add("surfaceInverseAccentMinor", DarkColorTokens.SurfaceInverseAccentMinor, overwrite) - initial.add( - "surfaceInverseAccentMinorHover", - DarkColorTokens.SurfaceInverseAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorActive", - DarkColorTokens.SurfaceInverseAccentMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccent", - DarkColorTokens.SurfaceInverseTransparentAccent, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentHover", - DarkColorTokens.SurfaceInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentActive", - DarkColorTokens.SurfaceInverseTransparentAccentActive, - overwrite, - ) - initial.add("surfaceInverseInfo", DarkColorTokens.SurfaceInverseInfo, overwrite) - initial.add("surfaceInverseInfoHover", DarkColorTokens.SurfaceInverseInfoHover, overwrite) - initial.add("surfaceInverseInfoActive", DarkColorTokens.SurfaceInverseInfoActive, overwrite) - initial.add( - "surfaceInversePositiveMinor", - DarkColorTokens.SurfaceInversePositiveMinor, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorHover", - DarkColorTokens.SurfaceInversePositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorActive", - DarkColorTokens.SurfaceInversePositiveMinorActive, - overwrite, - ) - initial.add("surfaceInverseWarningMinor", DarkColorTokens.SurfaceInverseWarningMinor, overwrite) - initial.add( - "surfaceInverseWarningMinorHover", - DarkColorTokens.SurfaceInverseWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorActive", - DarkColorTokens.SurfaceInverseWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinor", - DarkColorTokens.SurfaceInverseNegativeMinor, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorHover", - DarkColorTokens.SurfaceInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorActive", - DarkColorTokens.SurfaceInverseNegativeMinorActive, - overwrite, - ) - initial.add("surfaceInverseInfoMinor", DarkColorTokens.SurfaceInverseInfoMinor, overwrite) - initial.add( - "surfaceInverseInfoMinorHover", - DarkColorTokens.SurfaceInverseInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorActive", - DarkColorTokens.SurfaceInverseInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositive", - DarkColorTokens.SurfaceInverseTransparentPositive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveHover", - DarkColorTokens.SurfaceInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveActive", - DarkColorTokens.SurfaceInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarning", - DarkColorTokens.SurfaceInverseTransparentWarning, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningHover", - DarkColorTokens.SurfaceInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningActive", - DarkColorTokens.SurfaceInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegative", - DarkColorTokens.SurfaceInverseTransparentNegative, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeHover", - DarkColorTokens.SurfaceInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeActive", - DarkColorTokens.SurfaceInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfo", - DarkColorTokens.SurfaceInverseTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoHover", - DarkColorTokens.SurfaceInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoActive", - DarkColorTokens.SurfaceInverseTransparentInfoActive, - overwrite, - ) - initial.add("backgroundDefaultPrimary", DarkColorTokens.BackgroundDefaultPrimary, overwrite) - initial.add( - "backgroundDefaultPrimaryBrightness", - DarkColorTokens.BackgroundDefaultPrimaryBrightness, - overwrite, - ) - initial.add("backgroundDefaultSecondary", DarkColorTokens.BackgroundDefaultSecondary, overwrite) - initial.add("backgroundDefaultTertiary", DarkColorTokens.BackgroundDefaultTertiary, overwrite) - initial.add("backgroundDarkPrimary", DarkColorTokens.BackgroundDarkPrimary, overwrite) - initial.add("backgroundDarkSecondary", DarkColorTokens.BackgroundDarkSecondary, overwrite) - initial.add("backgroundDarkTertiary", DarkColorTokens.BackgroundDarkTertiary, overwrite) - initial.add("backgroundLightPrimary", DarkColorTokens.BackgroundLightPrimary, overwrite) - initial.add("backgroundLightSecondary", DarkColorTokens.BackgroundLightSecondary, overwrite) - initial.add("backgroundLightTertiary", DarkColorTokens.BackgroundLightTertiary, overwrite) - initial.add( - "backgroundInversePrimaryBrightness", - DarkColorTokens.BackgroundInversePrimaryBrightness, - overwrite, - ) - initial.add("backgroundInverseSecondary", DarkColorTokens.BackgroundInverseSecondary, overwrite) - initial.add("backgroundInverseTertiary", DarkColorTokens.BackgroundInverseTertiary, overwrite) - initial.add("backgroundInversePrimary", DarkColorTokens.BackgroundInversePrimary, overwrite) - initial.add("overlayDefaultSoft", DarkColorTokens.OverlayDefaultSoft, overwrite) - initial.add("overlayDefaultHard", DarkColorTokens.OverlayDefaultHard, overwrite) - initial.add("overlayDefaultBlur", DarkColorTokens.OverlayDefaultBlur, overwrite) - initial.add("overlayOnDarkSoft", DarkColorTokens.OverlayOnDarkSoft, overwrite) - initial.add("overlayOnDarkHard", DarkColorTokens.OverlayOnDarkHard, overwrite) - initial.add("overlayOnDarkBlur", DarkColorTokens.OverlayOnDarkBlur, overwrite) - initial.add("overlayOnLightSoft", DarkColorTokens.OverlayOnLightSoft, overwrite) - initial.add("overlayOnLightHard", DarkColorTokens.OverlayOnLightHard, overwrite) - initial.add("overlayOnLightBlur", DarkColorTokens.OverlayOnLightBlur, overwrite) - initial.add("overlayInverseHard", DarkColorTokens.OverlayInverseHard, overwrite) - initial.add("overlayInverseSoft", DarkColorTokens.OverlayInverseSoft, overwrite) - initial.add("overlayInverseBlur", DarkColorTokens.OverlayInverseBlur, overwrite) - initial.add( - "outlineDefaultSecondaryHover", - DarkColorTokens.OutlineDefaultSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSecondaryActive", - DarkColorTokens.OutlineDefaultSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTertiaryHover", - DarkColorTokens.OutlineDefaultTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTertiaryActive", - DarkColorTokens.OutlineDefaultTertiaryActive, - overwrite, - ) - initial.add("outlineDefaultDefaultHover", DarkColorTokens.OutlineDefaultDefaultHover, overwrite) - initial.add( - "outlineDefaultDefaultActive", - DarkColorTokens.OutlineDefaultDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryHover", - DarkColorTokens.OutlineDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryActive", - DarkColorTokens.OutlineDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryHover", - DarkColorTokens.OutlineDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryActive", - DarkColorTokens.OutlineDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryHover", - DarkColorTokens.OutlineDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryActive", - DarkColorTokens.OutlineDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClearHover", - DarkColorTokens.OutlineDefaultTransparentClearHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClearActive", - DarkColorTokens.OutlineDefaultTransparentClearActive, - overwrite, - ) - initial.add("outlineDefaultAccentHover", DarkColorTokens.OutlineDefaultAccentHover, overwrite) - initial.add("outlineDefaultAccentActive", DarkColorTokens.OutlineDefaultAccentActive, overwrite) - initial.add( - "outlineDefaultAccentMinorHover", - DarkColorTokens.OutlineDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorActive", - DarkColorTokens.OutlineDefaultAccentMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentHover", - DarkColorTokens.OutlineDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentActive", - DarkColorTokens.OutlineDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineDefaultPositiveHover", - DarkColorTokens.OutlineDefaultPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveActive", - DarkColorTokens.OutlineDefaultPositiveActive, - overwrite, - ) - initial.add("outlineDefaultWarningHover", DarkColorTokens.OutlineDefaultWarningHover, overwrite) - initial.add( - "outlineDefaultWarningActive", - DarkColorTokens.OutlineDefaultWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeHover", - DarkColorTokens.OutlineDefaultNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeActive", - DarkColorTokens.OutlineDefaultNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfoHover", DarkColorTokens.OutlineDefaultInfoHover, overwrite) - initial.add("outlineDefaultInfoActive", DarkColorTokens.OutlineDefaultInfoActive, overwrite) - initial.add( - "outlineDefaultPositiveMinorHover", - DarkColorTokens.OutlineDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveMinorActive", - DarkColorTokens.OutlineDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorHover", - DarkColorTokens.OutlineDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorActive", - DarkColorTokens.OutlineDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorHover", - DarkColorTokens.OutlineDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorActive", - DarkColorTokens.OutlineDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorHover", - DarkColorTokens.OutlineDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorActive", - DarkColorTokens.OutlineDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveHover", - DarkColorTokens.OutlineDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveActive", - DarkColorTokens.OutlineDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningHover", - DarkColorTokens.OutlineDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningActive", - DarkColorTokens.OutlineDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeTransparentHover", - DarkColorTokens.OutlineDefaultNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeTransparentActive", - DarkColorTokens.OutlineDefaultNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoHover", - DarkColorTokens.OutlineDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoActive", - DarkColorTokens.OutlineDefaultTransparentInfoActive, - overwrite, - ) - initial.add("outlineDefaultPrimaryHover", DarkColorTokens.OutlineDefaultPrimaryHover, overwrite) - initial.add( - "outlineDefaultPrimaryActive", - DarkColorTokens.OutlineDefaultPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimary", - DarkColorTokens.OutlineDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondary", - DarkColorTokens.OutlineDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiary", - DarkColorTokens.OutlineDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentClear", - DarkColorTokens.OutlineDefaultTransparentClear, - overwrite, - ) - initial.add("outlineDefaultAccent", DarkColorTokens.OutlineDefaultAccent, overwrite) - initial.add("outlineDefaultAccentMinor", DarkColorTokens.OutlineDefaultAccentMinor, overwrite) - initial.add( - "outlineDefaultTransparentAccent", - DarkColorTokens.OutlineDefaultTransparentAccent, - overwrite, - ) - initial.add("outlineDefaultPositive", DarkColorTokens.OutlineDefaultPositive, overwrite) - initial.add("outlineDefaultWarning", DarkColorTokens.OutlineDefaultWarning, overwrite) - initial.add("outlineDefaultNegative", DarkColorTokens.OutlineDefaultNegative, overwrite) - initial.add( - "outlineDefaultPositiveMinor", - DarkColorTokens.OutlineDefaultPositiveMinor, - overwrite, - ) - initial.add("outlineDefaultWarningMinor", DarkColorTokens.OutlineDefaultWarningMinor, overwrite) - initial.add( - "outlineDefaultNegativeMinor", - DarkColorTokens.OutlineDefaultNegativeMinor, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositive", - DarkColorTokens.OutlineDefaultTransparentPositive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarning", - DarkColorTokens.OutlineDefaultTransparentWarning, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegative", - DarkColorTokens.OutlineDefaultTransparentNegative, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeHover", - DarkColorTokens.OutlineDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeActive", - DarkColorTokens.OutlineDefaultTransparentNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfo", DarkColorTokens.OutlineDefaultInfo, overwrite) - initial.add("outlineDefaultInfoMinor", DarkColorTokens.OutlineDefaultInfoMinor, overwrite) - initial.add( - "outlineDefaultTransparentInfo", - DarkColorTokens.OutlineDefaultTransparentInfo, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryHover", - DarkColorTokens.OutlineDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryActive", - DarkColorTokens.OutlineDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryHover", - DarkColorTokens.OutlineDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryActive", - DarkColorTokens.OutlineDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryHover", - DarkColorTokens.OutlineDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryActive", - DarkColorTokens.OutlineDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultHover", - DarkColorTokens.OutlineDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultActive", - DarkColorTokens.OutlineDefaultSolidDefaultActive, - overwrite, - ) - initial.add("outlineDefaultSolidPrimary", DarkColorTokens.OutlineDefaultSolidPrimary, overwrite) - initial.add( - "outlineDefaultSolidSecondary", - DarkColorTokens.OutlineDefaultSolidSecondary, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiary", - DarkColorTokens.OutlineDefaultSolidTertiary, - overwrite, - ) - initial.add("outlineDefaultSolidDefault", DarkColorTokens.OutlineDefaultSolidDefault, overwrite) - initial.add( - "outlineOnDarkSecondaryHover", - DarkColorTokens.OutlineOnDarkSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSecondaryActive", - DarkColorTokens.OutlineOnDarkSecondaryActive, - overwrite, - ) - initial.add("outlineOnDarkTertiaryHover", DarkColorTokens.OutlineOnDarkTertiaryHover, overwrite) - initial.add( - "outlineOnDarkTertiaryActive", - DarkColorTokens.OutlineOnDarkTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkDefaultHover", DarkColorTokens.OutlineOnDarkDefaultHover, overwrite) - initial.add("outlineOnDarkDefaultActive", DarkColorTokens.OutlineOnDarkDefaultActive, overwrite) - initial.add( - "outlineOnDarkTransparentPrimary", - DarkColorTokens.OutlineOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryHover", - DarkColorTokens.OutlineOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryActive", - DarkColorTokens.OutlineOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondary", - DarkColorTokens.OutlineOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryHover", - DarkColorTokens.OutlineOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryActive", - DarkColorTokens.OutlineOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiary", - DarkColorTokens.OutlineOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryHover", - DarkColorTokens.OutlineOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryActive", - DarkColorTokens.OutlineOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkAccent", DarkColorTokens.OutlineOnDarkAccent, overwrite) - initial.add("outlineOnDarkAccentHover", DarkColorTokens.OutlineOnDarkAccentHover, overwrite) - initial.add("outlineOnDarkAccentActive", DarkColorTokens.OutlineOnDarkAccentActive, overwrite) - initial.add("outlineOnDarkAccentMinor", DarkColorTokens.OutlineOnDarkAccentMinor, overwrite) - initial.add( - "outlineOnDarkAccentMinorHover", - DarkColorTokens.OutlineOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorActive", - DarkColorTokens.OutlineOnDarkAccentMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccent", - DarkColorTokens.OutlineOnDarkTransparentAccent, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentHover", - DarkColorTokens.OutlineOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentActive", - DarkColorTokens.OutlineOnDarkTransparentAccentActive, - overwrite, - ) - initial.add("outlineOnDarkPositive", DarkColorTokens.OutlineOnDarkPositive, overwrite) - initial.add("outlineOnDarkPositiveHover", DarkColorTokens.OutlineOnDarkPositiveHover, overwrite) - initial.add( - "outlineOnDarkPositiveActive", - DarkColorTokens.OutlineOnDarkPositiveActive, - overwrite, - ) - initial.add("outlineOnDarkWarning", DarkColorTokens.OutlineOnDarkWarning, overwrite) - initial.add("outlineOnDarkWarningHover", DarkColorTokens.OutlineOnDarkWarningHover, overwrite) - initial.add("outlineOnDarkWarningActive", DarkColorTokens.OutlineOnDarkWarningActive, overwrite) - initial.add("outlineOnDarkNegative", DarkColorTokens.OutlineOnDarkNegative, overwrite) - initial.add("outlineOnDarkNegativeHover", DarkColorTokens.OutlineOnDarkNegativeHover, overwrite) - initial.add( - "outlineOnDarkNegativeActive", - DarkColorTokens.OutlineOnDarkNegativeActive, - overwrite, - ) - initial.add("outlineOnDarkInfoHover", DarkColorTokens.OutlineOnDarkInfoHover, overwrite) - initial.add("outlineOnDarkInfoActive", DarkColorTokens.OutlineOnDarkInfoActive, overwrite) - initial.add("outlineOnDarkPositiveMinor", DarkColorTokens.OutlineOnDarkPositiveMinor, overwrite) - initial.add( - "outlineOnDarkPositiveMinorHover", - DarkColorTokens.OutlineOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveMinorActive", - DarkColorTokens.OutlineOnDarkPositiveMinorActive, - overwrite, - ) - initial.add("outlineOnDarkWarningMinor", DarkColorTokens.OutlineOnDarkWarningMinor, overwrite) - initial.add( - "outlineOnDarkWarningMinorHover", - DarkColorTokens.OutlineOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorActive", - DarkColorTokens.OutlineOnDarkWarningMinorActive, - overwrite, - ) - initial.add("outlineOnDarkNegativeMinor", DarkColorTokens.OutlineOnDarkNegativeMinor, overwrite) - initial.add( - "outlineOnDarkNegativeMinorHover", - DarkColorTokens.OutlineOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorActive", - DarkColorTokens.OutlineOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorHover", - DarkColorTokens.OutlineOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorActive", - DarkColorTokens.OutlineOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositive", - DarkColorTokens.OutlineOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveHover", - DarkColorTokens.OutlineOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveActive", - DarkColorTokens.OutlineOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarning", - DarkColorTokens.OutlineOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningHover", - DarkColorTokens.OutlineOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningActive", - DarkColorTokens.OutlineOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparent", - DarkColorTokens.OutlineOnDarkNegativeTransparent, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparentHover", - DarkColorTokens.OutlineOnDarkNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeTransparentActive", - DarkColorTokens.OutlineOnDarkNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoHover", - DarkColorTokens.OutlineOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoActive", - DarkColorTokens.OutlineOnDarkTransparentInfoActive, - overwrite, - ) - initial.add("outlineOnDarkPrimaryHover", DarkColorTokens.OutlineOnDarkPrimaryHover, overwrite) - initial.add("outlineOnDarkPrimaryActive", DarkColorTokens.OutlineOnDarkPrimaryActive, overwrite) - initial.add("outlineOnDarkInfo", DarkColorTokens.OutlineOnDarkInfo, overwrite) - initial.add("outlineOnDarkInfoMinor", DarkColorTokens.OutlineOnDarkInfoMinor, overwrite) - initial.add( - "outlineOnDarkTransparentInfo", - DarkColorTokens.OutlineOnDarkTransparentInfo, - overwrite, - ) - initial.add("outlineOnDarkSolidPrimary", DarkColorTokens.OutlineOnDarkSolidPrimary, overwrite) - initial.add( - "outlineOnDarkSolidPrimaryHover", - DarkColorTokens.OutlineOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryActive", - DarkColorTokens.OutlineOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondary", - DarkColorTokens.OutlineOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryHover", - DarkColorTokens.OutlineOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryActive", - DarkColorTokens.OutlineOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add("outlineOnDarkSolidTertiary", DarkColorTokens.OutlineOnDarkSolidTertiary, overwrite) - initial.add( - "outlineOnDarkSolidTertiaryHover", - DarkColorTokens.OutlineOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryActive", - DarkColorTokens.OutlineOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkSolidDefault", DarkColorTokens.OutlineOnDarkSolidDefault, overwrite) - initial.add( - "outlineOnDarkSolidDefaultHover", - DarkColorTokens.OutlineOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultActive", - DarkColorTokens.OutlineOnDarkSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightSecondaryHover", - DarkColorTokens.OutlineOnLightSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSecondaryActive", - DarkColorTokens.OutlineOnLightSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTertiaryHover", - DarkColorTokens.OutlineOnLightTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTertiaryActive", - DarkColorTokens.OutlineOnLightTertiaryActive, - overwrite, - ) - initial.add("outlineOnLightDefaultHover", DarkColorTokens.OutlineOnLightDefaultHover, overwrite) - initial.add( - "outlineOnLightDefaultActive", - DarkColorTokens.OutlineOnLightDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimary", - DarkColorTokens.OutlineOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryHover", - DarkColorTokens.OutlineOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryActive", - DarkColorTokens.OutlineOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondary", - DarkColorTokens.OutlineOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryHover", - DarkColorTokens.OutlineOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryActive", - DarkColorTokens.OutlineOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiary", - DarkColorTokens.OutlineOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryHover", - DarkColorTokens.OutlineOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryActive", - DarkColorTokens.OutlineOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnLightAccent", DarkColorTokens.OutlineOnLightAccent, overwrite) - initial.add("outlineOnLightAccentHover", DarkColorTokens.OutlineOnLightAccentHover, overwrite) - initial.add("outlineOnLightAccentActive", DarkColorTokens.OutlineOnLightAccentActive, overwrite) - initial.add("outlineOnLightAccentMinor", DarkColorTokens.OutlineOnLightAccentMinor, overwrite) - initial.add( - "outlineOnLightAccentMinorHover", - DarkColorTokens.OutlineOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorActive", - DarkColorTokens.OutlineOnLightAccentMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccent", - DarkColorTokens.OutlineOnLightTransparentAccent, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentHover", - DarkColorTokens.OutlineOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentActive", - DarkColorTokens.OutlineOnLightTransparentAccentActive, - overwrite, - ) - initial.add("outlineOnLightPositive", DarkColorTokens.OutlineOnLightPositive, overwrite) - initial.add( - "outlineOnLightPositiveHover", - DarkColorTokens.OutlineOnLightPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveActive", - DarkColorTokens.OutlineOnLightPositiveActive, - overwrite, - ) - initial.add("outlineOnLightWarning", DarkColorTokens.OutlineOnLightWarning, overwrite) - initial.add("outlineOnLightWarningHover", DarkColorTokens.OutlineOnLightWarningHover, overwrite) - initial.add( - "outlineOnLightWarningActive", - DarkColorTokens.OutlineOnLightWarningActive, - overwrite, - ) - initial.add("outlineOnLightNegative", DarkColorTokens.OutlineOnLightNegative, overwrite) - initial.add( - "outlineOnLightNegativeHover", - DarkColorTokens.OutlineOnLightNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeActive", - DarkColorTokens.OutlineOnLightNegativeActive, - overwrite, - ) - initial.add("outlineOnLightInfoHover", DarkColorTokens.OutlineOnLightInfoHover, overwrite) - initial.add("outlineOnLightInfoActive", DarkColorTokens.OutlineOnLightInfoActive, overwrite) - initial.add( - "outlineOnLightPositiveMinor", - DarkColorTokens.OutlineOnLightPositiveMinor, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorHover", - DarkColorTokens.OutlineOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorActive", - DarkColorTokens.OutlineOnLightPositiveMinorActive, - overwrite, - ) - initial.add("outlineOnLightWarningMinor", DarkColorTokens.OutlineOnLightWarningMinor, overwrite) - initial.add( - "outlineOnLightWarningMinorHover", - DarkColorTokens.OutlineOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorActive", - DarkColorTokens.OutlineOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinor", - DarkColorTokens.OutlineOnLightNegativeMinor, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorHover", - DarkColorTokens.OutlineOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorActive", - DarkColorTokens.OutlineOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorHover", - DarkColorTokens.OutlineOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorActive", - DarkColorTokens.OutlineOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositive", - DarkColorTokens.OutlineOnLightTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveHover", - DarkColorTokens.OutlineOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveActive", - DarkColorTokens.OutlineOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarning", - DarkColorTokens.OutlineOnLightTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningHover", - DarkColorTokens.OutlineOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningActive", - DarkColorTokens.OutlineOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparent", - DarkColorTokens.OutlineOnLightNegativeTransparent, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparentHover", - DarkColorTokens.OutlineOnLightNegativeTransparentHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeTransparentActive", - DarkColorTokens.OutlineOnLightNegativeTransparentActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoHover", - DarkColorTokens.OutlineOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoActive", - DarkColorTokens.OutlineOnLightTransparentInfoActive, - overwrite, - ) - initial.add("outlineOnLightPrimaryHover", DarkColorTokens.OutlineOnLightPrimaryHover, overwrite) - initial.add( - "outlineOnLightPrimaryActive", - DarkColorTokens.OutlineOnLightPrimaryActive, - overwrite, - ) - initial.add("outlineOnLightInfo", DarkColorTokens.OutlineOnLightInfo, overwrite) - initial.add("outlineOnLightInfoMinor", DarkColorTokens.OutlineOnLightInfoMinor, overwrite) - initial.add( - "outlineOnLightTransparentInfo", - DarkColorTokens.OutlineOnLightTransparentInfo, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryHover", - DarkColorTokens.OutlineOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryActive", - DarkColorTokens.OutlineOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultHover", - DarkColorTokens.OutlineOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultActive", - DarkColorTokens.OutlineOnLightSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryHover", - DarkColorTokens.OutlineOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryActive", - DarkColorTokens.OutlineOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryHover", - DarkColorTokens.OutlineOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryActive", - DarkColorTokens.OutlineOnLightSolidSecondaryActive, - overwrite, - ) - initial.add("outlineOnLightSolidPrimary", DarkColorTokens.OutlineOnLightSolidPrimary, overwrite) - initial.add( - "outlineOnLightSolidSecondary", - DarkColorTokens.OutlineOnLightSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiary", - DarkColorTokens.OutlineOnLightSolidTertiary, - overwrite, - ) - initial.add("outlineOnLightSolidDefault", DarkColorTokens.OutlineOnLightSolidDefault, overwrite) - initial.add("outlineInversePrimaryHover", DarkColorTokens.OutlineInversePrimaryHover, overwrite) - initial.add( - "outlineInversePrimaryActive", - DarkColorTokens.OutlineInversePrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSecondaryHover", - DarkColorTokens.OutlineInverseSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSecondaryActive", - DarkColorTokens.OutlineInverseSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTertiaryHover", - DarkColorTokens.OutlineInverseTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTertiaryActive", - DarkColorTokens.OutlineInverseTertiaryActive, - overwrite, - ) - initial.add("outlineInverseDefaultHover", DarkColorTokens.OutlineInverseDefaultHover, overwrite) - initial.add( - "outlineInverseDefaultActive", - DarkColorTokens.OutlineInverseDefaultActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryHover", - DarkColorTokens.OutlineInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryActive", - DarkColorTokens.OutlineInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryHover", - DarkColorTokens.OutlineInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryActive", - DarkColorTokens.OutlineInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryHover", - DarkColorTokens.OutlineInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryActive", - DarkColorTokens.OutlineInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentClearHover", - DarkColorTokens.OutlineInverseTransparentClearHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentClearActive", - DarkColorTokens.OutlineInverseTransparentClearActive, - overwrite, - ) - initial.add("outlineInverseAccentHover", DarkColorTokens.OutlineInverseAccentHover, overwrite) - initial.add("outlineInverseAccentActive", DarkColorTokens.OutlineInverseAccentActive, overwrite) - initial.add( - "outlineInverseAccentMinorHover", - DarkColorTokens.OutlineInverseAccentMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMinorActive", - DarkColorTokens.OutlineInverseAccentMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentHover", - DarkColorTokens.OutlineInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentActive", - DarkColorTokens.OutlineInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineInversePositiveHover", - DarkColorTokens.OutlineInversePositiveHover, - overwrite, - ) - initial.add( - "outlineInversePositiveActive", - DarkColorTokens.OutlineInversePositiveActive, - overwrite, - ) - initial.add("outlineInverseWarningHover", DarkColorTokens.OutlineInverseWarningHover, overwrite) - initial.add( - "outlineInverseWarningActive", - DarkColorTokens.OutlineInverseWarningActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeHover", - DarkColorTokens.OutlineInverseNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeActive", - DarkColorTokens.OutlineInverseNegativeActive, - overwrite, - ) - initial.add("outlineInverseInfoHover", DarkColorTokens.OutlineInverseInfoHover, overwrite) - initial.add("outlineInverseInfoActive", DarkColorTokens.OutlineInverseInfoActive, overwrite) - initial.add( - "outlineInversePositiveMinorHover", - DarkColorTokens.OutlineInversePositiveMinorHover, - overwrite, - ) - initial.add( - "outlineInversePositiveMinorActive", - DarkColorTokens.OutlineInversePositiveMinorActive, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorHover", - DarkColorTokens.OutlineInverseWarningMinorHover, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorActive", - DarkColorTokens.OutlineInverseWarningMinorActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorHover", - DarkColorTokens.OutlineInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorActive", - DarkColorTokens.OutlineInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorHover", - DarkColorTokens.OutlineInverseInfoMinorHover, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorActive", - DarkColorTokens.OutlineInverseInfoMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveHover", - DarkColorTokens.OutlineInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveActive", - DarkColorTokens.OutlineInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningHover", - DarkColorTokens.OutlineInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningActive", - DarkColorTokens.OutlineInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeHover", - DarkColorTokens.OutlineInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeActive", - DarkColorTokens.OutlineInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoHover", - DarkColorTokens.OutlineInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoActive", - DarkColorTokens.OutlineInverseTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimary", - DarkColorTokens.OutlineInverseTransparentPrimary, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondary", - DarkColorTokens.OutlineInverseTransparentSecondary, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiary", - DarkColorTokens.OutlineInverseTransparentTertiary, - overwrite, - ) - initial.add( - "outlineInverseTransparentClear", - DarkColorTokens.OutlineInverseTransparentClear, - overwrite, - ) - initial.add("outlineInverseAccent", DarkColorTokens.OutlineInverseAccent, overwrite) - initial.add("outlineInverseAccentMinor", DarkColorTokens.OutlineInverseAccentMinor, overwrite) - initial.add( - "outlineInverseTransparentAccent", - DarkColorTokens.OutlineInverseTransparentAccent, - overwrite, - ) - initial.add("outlineInversePositive", DarkColorTokens.OutlineInversePositive, overwrite) - initial.add("outlineInverseWarning", DarkColorTokens.OutlineInverseWarning, overwrite) - initial.add("outlineInverseNegative", DarkColorTokens.OutlineInverseNegative, overwrite) - initial.add("outlineInverseInfo", DarkColorTokens.OutlineInverseInfo, overwrite) - initial.add( - "outlineInversePositiveMinor", - DarkColorTokens.OutlineInversePositiveMinor, - overwrite, - ) - initial.add("outlineInverseWarningMinor", DarkColorTokens.OutlineInverseWarningMinor, overwrite) - initial.add( - "outlineInverseNegativeMinor", - DarkColorTokens.OutlineInverseNegativeMinor, - overwrite, - ) - initial.add("outlineInverseInfoMinor", DarkColorTokens.OutlineInverseInfoMinor, overwrite) - initial.add( - "outlineInverseTransparentPositive", - DarkColorTokens.OutlineInverseTransparentPositive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarning", - DarkColorTokens.OutlineInverseTransparentWarning, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegative", - DarkColorTokens.OutlineInverseTransparentNegative, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfo", - DarkColorTokens.OutlineInverseTransparentInfo, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryHover", - DarkColorTokens.OutlineInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryActive", - DarkColorTokens.OutlineInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryHover", - DarkColorTokens.OutlineInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryActive", - DarkColorTokens.OutlineInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryHover", - DarkColorTokens.OutlineInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryActive", - DarkColorTokens.OutlineInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidDefaultHover", - DarkColorTokens.OutlineInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineInverseSolidDefaultActive", - DarkColorTokens.OutlineInverseSolidDefaultActive, - overwrite, - ) - initial.add("outlineInverseSolidPrimary", DarkColorTokens.OutlineInverseSolidPrimary, overwrite) - initial.add( - "outlineInverseSolidSecondary", - DarkColorTokens.OutlineInverseSolidSecondary, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiary", - DarkColorTokens.OutlineInverseSolidTertiary, - overwrite, - ) - initial.add("outlineInverseSolidDefault", DarkColorTokens.OutlineInverseSolidDefault, overwrite) - initial.add("dataDefaultYellow", DarkColorTokens.DataDefaultYellow, overwrite) - initial.add("dataDefaultYellowHover", DarkColorTokens.DataDefaultYellowHover, overwrite) - initial.add("dataDefaultYellowActive", DarkColorTokens.DataDefaultYellowActive, overwrite) - initial.add("dataDefaultYellowMinor", DarkColorTokens.DataDefaultYellowMinor, overwrite) - initial.add( - "dataDefaultYellowMinorHover", - DarkColorTokens.DataDefaultYellowMinorHover, - overwrite, - ) - initial.add( - "dataDefaultYellowMinorActive", - DarkColorTokens.DataDefaultYellowMinorActive, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparent", - DarkColorTokens.DataDefaultYellowTransparent, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentHover", - DarkColorTokens.DataDefaultYellowTransparentHover, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentActive", - DarkColorTokens.DataDefaultYellowTransparentActive, - overwrite, - ) - initial.add("dataOnDarkYellow", DarkColorTokens.DataOnDarkYellow, overwrite) - initial.add("dataOnDarkYellowHover", DarkColorTokens.DataOnDarkYellowHover, overwrite) - initial.add("dataOnDarkYellowActive", DarkColorTokens.DataOnDarkYellowActive, overwrite) - initial.add("dataOnDarkYellowMinor", DarkColorTokens.DataOnDarkYellowMinor, overwrite) - initial.add("dataOnDarkYellowMinorHover", DarkColorTokens.DataOnDarkYellowMinorHover, overwrite) - initial.add( - "dataOnDarkYellowMinorActive", - DarkColorTokens.DataOnDarkYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparent", - DarkColorTokens.DataOnDarkYellowTransparent, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentHover", - DarkColorTokens.DataOnDarkYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentActive", - DarkColorTokens.DataOnDarkYellowTransparentActive, - overwrite, - ) - initial.add("dataOnLightYellow", DarkColorTokens.DataOnLightYellow, overwrite) - initial.add("dataOnLightYellowHover", DarkColorTokens.DataOnLightYellowHover, overwrite) - initial.add("dataOnLightYellowActive", DarkColorTokens.DataOnLightYellowActive, overwrite) - initial.add("dataOnLightYellowMinor", DarkColorTokens.DataOnLightYellowMinor, overwrite) - initial.add( - "dataOnLightYellowMinorHover", - DarkColorTokens.DataOnLightYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnLightYellowMinorActive", - DarkColorTokens.DataOnLightYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparent", - DarkColorTokens.DataOnLightYellowTransparent, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentHover", - DarkColorTokens.DataOnLightYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentActive", - DarkColorTokens.DataOnLightYellowTransparentActive, - overwrite, - ) - initial.add("dataInverseYellow", DarkColorTokens.DataInverseYellow, overwrite) - initial.add("dataInverseYellowHover", DarkColorTokens.DataInverseYellowHover, overwrite) - initial.add("dataInverseYellowActive", DarkColorTokens.DataInverseYellowActive, overwrite) - initial.add("dataInverseYellowMinor", DarkColorTokens.DataInverseYellowMinor, overwrite) - initial.add( - "dataInverseYellowMinorHover", - DarkColorTokens.DataInverseYellowMinorHover, - overwrite, - ) - initial.add( - "dataInverseYellowMinorActive", - DarkColorTokens.DataInverseYellowMinorActive, - overwrite, - ) - initial.add( - "dataInverseYellowTransparent", - DarkColorTokens.DataInverseYellowTransparent, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentHover", - DarkColorTokens.DataInverseYellowTransparentHover, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentActive", - DarkColorTokens.DataInverseYellowTransparentActive, - overwrite, - ) - return PlasmaGigaAppColors(initial) -} - -private fun Map.obtain(name: String): MutableState = - mutableStateOf(get(name)!!, structuralEqualityPolicy()) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppGradients.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppGradients.kt deleted file mode 100644 index f7c0e0d93f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppGradients.kt +++ /dev/null @@ -1,1683 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.drawBehind -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.ShaderBrush -import com.sdds.compose.uikit.graphics.Gradients -import com.sdds.plasma.giga.app.tokens.DarkGradientTokens -import com.sdds.plasma.giga.app.tokens.LightGradientTokens -import kotlin.Float -import kotlin.FloatArray -import kotlin.String -import kotlin.Suppress -import kotlin.Unit -import kotlin.collections.List -import kotlin.collections.Map -import kotlin.collections.MutableMap - -/** - * Градиенты PlasmaGigaApp - */ -@Immutable -public class PlasmaGigaAppGradients( - private val gradients: Map>, -) { - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradient: List by gradients - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientActive: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradient: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientActive: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradient: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientActive: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientHover: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientActive: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradient: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradient: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientHover: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientActive: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientActive: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradient: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientHover: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientActive: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientActive: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradient: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientHover: List by gradients - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientActive: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientActive: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradient: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientHover: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientActive: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientActive: List by gradients - - /** - * Возвращает копию [PlasmaGigaAppGradients]. Предоставляет возможность переопределять - * градиенты. - */ - public fun copy(overrideGradients: GradientOverrideScope.() -> Unit = {}): PlasmaGigaAppGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overrideMap = gradientOverrideScope.overrideMap - return PlasmaGigaAppGradients(gradients.mapValues { overrideMap[it.key] ?: it.value }) - } -} - -/** - * Скоуп переопределения градиентов - */ -public class GradientOverrideScope { - private val _overrideMap: MutableMap> = mutableMapOf() - - internal val overrideMap: Map> - get() = _overrideMap.toMap() - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradient: String = "textDefaultAccentGradient" - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientHover: String = "textDefaultAccentGradientHover" - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientActive: String = "textDefaultAccentGradientActive" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradient: String = "textOnDarkAccentGradient" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientHover: String = "textOnDarkAccentGradientHover" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientActive: String = "textOnDarkAccentGradientActive" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradient: String = "textOnLightAccentGradient" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientHover: String = "textOnLightAccentGradientHover" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientActive: String = "textOnLightAccentGradientActive" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientHover: String = "textInverseAccentGradientHover" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientActive: String = "textInverseAccentGradientActive" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradient: String = "textInverseAccentGradient" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradient: String = "surfaceDefaultAccentGradient" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientHover: String = "surfaceDefaultAccentGradientHover" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientActive: String = "surfaceDefaultAccentGradientActive" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradient: String = "surfaceDefaultSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientHover: String = "surfaceDefaultSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientActive: String = "surfaceDefaultSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradient: String = "surfaceDefaultSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientHover: String = - "surfaceDefaultSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientActive: String = - "surfaceDefaultSkeletonDeepGradientActive" - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradient: String = "surfaceOnDarkAccentGradient" - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientHover: String = "surfaceOnDarkAccentGradientHover" - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientActive: String = "surfaceOnDarkAccentGradientActive" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradient: String = "surfaceOnDarkSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientHover: String = "surfaceOnDarkSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientActive: String = "surfaceOnDarkSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradient: String = "surfaceOnDarkSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientHover: String = - "surfaceOnDarkSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientActive: String = - "surfaceOnDarkSkeletonDeepGradientActive" - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradient: String = "surfaceOnLightAccentGradient" - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientHover: String = "surfaceOnLightAccentGradientHover" - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientActive: String = "surfaceOnLightAccentGradientActive" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradient: String = "surfaceOnLightSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientHover: String = "surfaceOnLightSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientActive: String = "surfaceOnLightSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradient: String = "surfaceOnLightSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientHover: String = - "surfaceOnLightSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientActive: String = - "surfaceOnLightSkeletonDeepGradientActive" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradient: String = "surfaceInverseAccentGradient" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientHover: String = "surfaceInverseAccentGradientHover" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientActive: String = "surfaceInverseAccentGradientActive" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradient: String = "surfaceInverseSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientHover: String = "surfaceInverseSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientActive: String = "surfaceInverseSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradient: String = "surfaceInverseSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientHover: String = - "surfaceInverseSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientActive: String = - "surfaceInverseSkeletonDeepGradientActive" - - /** - * Переопределяет аттрибут градиента. - */ - public infix fun String.overrideBy(gradient: List) { - _overrideMap[this] = gradient - } -} - -internal val LocalPlasmaGigaAppGradients: ProvidableCompositionLocal = - staticCompositionLocalOf { - lightPlasmaGigaAppGradients() - } - -private fun MutableMap>.add( - attribute: String, - defaultTokenValue: List, - overwriteMap: Map>, -) { - this[attribute] = overwriteMap[attribute] ?: defaultTokenValue -} - -/** - * Градиенты [PlasmaGigaAppGradients] для светлой темы - */ -@Suppress("LongMethod") -public fun lightPlasmaGigaAppGradients(overrideGradients: GradientOverrideScope.() -> Unit = {}): - PlasmaGigaAppGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overwrite = gradientOverrideScope.overrideMap - val initial = mutableMapOf>() - initial.add( - "textDefaultAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradient.colors, - LightGradientTokens.TextDefaultAccentGradient.positions, - LightGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientHover.colors, - LightGradientTokens.TextDefaultAccentGradientHover.positions, - LightGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientActive.colors, - LightGradientTokens.TextDefaultAccentGradientActive.positions, - LightGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradient.colors, - LightGradientTokens.TextOnDarkAccentGradient.positions, - LightGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientHover.colors, - LightGradientTokens.TextOnDarkAccentGradientHover.positions, - LightGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientActive.colors, - LightGradientTokens.TextOnDarkAccentGradientActive.positions, - LightGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradient.colors, - LightGradientTokens.TextOnLightAccentGradient.positions, - LightGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientHover.colors, - LightGradientTokens.TextOnLightAccentGradientHover.positions, - LightGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientActive.colors, - LightGradientTokens.TextOnLightAccentGradientActive.positions, - LightGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientHover.colors, - LightGradientTokens.TextInverseAccentGradientHover.positions, - LightGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientActive.colors, - LightGradientTokens.TextInverseAccentGradientActive.positions, - LightGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradient.colors, - LightGradientTokens.TextInverseAccentGradient.positions, - LightGradientTokens.TextInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradient.colors, - LightGradientTokens.SurfaceDefaultAccentGradient.positions, - LightGradientTokens.SurfaceDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientHover.colors, - LightGradientTokens.SurfaceDefaultAccentGradientHover.positions, - LightGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientActive.colors, - LightGradientTokens.SurfaceDefaultAccentGradientActive.positions, - LightGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradient.colors, - LightGradientTokens.SurfaceOnDarkAccentGradient.positions, - LightGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradient.colors, - LightGradientTokens.SurfaceOnLightAccentGradient.positions, - LightGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientHover.colors, - LightGradientTokens.SurfaceOnLightAccentGradientHover.positions, - LightGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientActive.colors, - LightGradientTokens.SurfaceOnLightAccentGradientActive.positions, - LightGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradient.colors, - LightGradientTokens.SurfaceInverseAccentGradient.positions, - LightGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientHover.colors, - LightGradientTokens.SurfaceInverseAccentGradientHover.positions, - LightGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientActive.colors, - LightGradientTokens.SurfaceInverseAccentGradientActive.positions, - LightGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - return PlasmaGigaAppGradients(initial) -} - -/** - * Градиенты [PlasmaGigaAppGradients] для темной темы - */ -@Suppress("LongMethod") -public fun darkPlasmaGigaAppGradients(overrideGradients: GradientOverrideScope.() -> Unit = {}): - PlasmaGigaAppGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overwrite = gradientOverrideScope.overrideMap - val initial = mutableMapOf>() - initial.add( - "textDefaultAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradient.colors, - DarkGradientTokens.TextDefaultAccentGradient.positions, - DarkGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientHover.colors, - DarkGradientTokens.TextDefaultAccentGradientHover.positions, - DarkGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientActive.colors, - DarkGradientTokens.TextDefaultAccentGradientActive.positions, - DarkGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradient.colors, - DarkGradientTokens.TextOnDarkAccentGradient.positions, - DarkGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientHover.colors, - DarkGradientTokens.TextOnDarkAccentGradientHover.positions, - DarkGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientActive.colors, - DarkGradientTokens.TextOnDarkAccentGradientActive.positions, - DarkGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradient.colors, - DarkGradientTokens.TextOnLightAccentGradient.positions, - DarkGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientHover.colors, - DarkGradientTokens.TextOnLightAccentGradientHover.positions, - DarkGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientActive.colors, - DarkGradientTokens.TextOnLightAccentGradientActive.positions, - DarkGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientHover.colors, - DarkGradientTokens.TextInverseAccentGradientHover.positions, - DarkGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientActive.colors, - DarkGradientTokens.TextInverseAccentGradientActive.positions, - DarkGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradient.colors, - DarkGradientTokens.TextInverseAccentGradient.positions, - DarkGradientTokens.TextInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.colors, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.positions, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.angle, - ), - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.colors, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.positions, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientHover.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientActive.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradient.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradient.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradient.colors, - DarkGradientTokens.SurfaceOnLightAccentGradient.positions, - DarkGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradient.colors, - DarkGradientTokens.SurfaceInverseAccentGradient.positions, - DarkGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientHover.colors, - DarkGradientTokens.SurfaceInverseAccentGradientHover.positions, - DarkGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientActive.colors, - DarkGradientTokens.SurfaceInverseAccentGradientActive.positions, - DarkGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - return PlasmaGigaAppGradients(initial) -} - -internal fun linearGradient( - colors: List, - positions: FloatArray, - angle: Float = 0f, - startPoint: Offset? = null, - endPoint: Offset? = null, -): ShaderBrush = Gradients.Linear(colors, positions.toList(), angle, startPoint, endPoint) - -internal fun radialGradient( - colors: List, - positions: FloatArray, - radius: Float, - centerX: Float, - centerY: Float, -): ShaderBrush = Gradients.Radial(colors, positions.toList(), radius, centerX, centerY) - -internal fun sweepGradient( - colors: List, - positions: FloatArray, - centerX: Float, - centerY: Float, -): ShaderBrush = Gradients.Sweep(colors, positions.toList(), centerX, centerY) - -internal fun singleColor(color: Color): ShaderBrush = Gradients.Linear( - listOf(color, color), - listOf(0f, 1f), -) - -/** - * Модификатор, позволяющий применить композитный градиент. - */ -@Composable -public fun Modifier.compositeGradient(brushes: List): Modifier = this then - Modifier.drawBehind { brushes.forEach(::drawRect) } diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShadows.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShadows.kt deleted file mode 100644 index 221139c714..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShadows.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.unit.DpOffset -import com.sdds.compose.uikit.shadow.ShadowAppearance -import com.sdds.compose.uikit.shadow.ShadowLayer -import com.sdds.plasma.giga.app.tokens.ShadowTokens -import kotlin.Suppress - -/** - * Тени PlasmaGigaApp - */ -@Immutable -public data class PlasmaGigaAppShadows( - /** - * shadow down soft s - */ - public val downSoftS: ShadowAppearance = ShadowAppearance(), - /** - * shadow down soft m - */ - public val downSoftM: ShadowAppearance = ShadowAppearance(), - /** - * shadow down soft l - */ - public val downSoftL: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard s - */ - public val downHardS: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard m - */ - public val downHardM: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard l - */ - public val downHardL: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft s - */ - public val upSoftS: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft m - */ - public val upSoftM: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft l - */ - public val upSoftL: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard s - */ - public val upHardS: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard m - */ - public val upHardM: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard l - */ - public val upHardL: ShadowAppearance = ShadowAppearance(), -) - -internal val LocalPlasmaGigaAppShadows: ProvidableCompositionLocal = - staticCompositionLocalOf { - PlasmaGigaAppShadows() - } - -/** - * Возвращает [PlasmaGigaAppShadows] - */ -@Suppress("LongMethod") -public fun defaultPlasmaGigaAppShadows(): PlasmaGigaAppShadows = PlasmaGigaAppShadows( - downSoftS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftSLayer1.offsetX, - y = ShadowTokens.DownSoftSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftSLayer1.spreadRadius, - blurRadius = ShadowTokens.DownSoftSLayer1.blurRadius, - color = ShadowTokens.DownSoftSLayer1.color, - fallbackElevation = ShadowTokens.DownSoftSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftSLayer2.offsetX, - y = ShadowTokens.DownSoftSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftSLayer2.spreadRadius, - blurRadius = ShadowTokens.DownSoftSLayer2.blurRadius, - color = ShadowTokens.DownSoftSLayer2.color, - fallbackElevation = ShadowTokens.DownSoftSLayer2.fallbackElevation, - ), - ), - ), - downSoftM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftM.offsetX, - y = ShadowTokens.DownSoftM.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftM.spreadRadius, - blurRadius = ShadowTokens.DownSoftM.blurRadius, - color = ShadowTokens.DownSoftM.color, - fallbackElevation = ShadowTokens.DownSoftM.fallbackElevation, - ), - ), - ), - downSoftL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftL.offsetX, - y = ShadowTokens.DownSoftL.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftL.spreadRadius, - blurRadius = ShadowTokens.DownSoftL.blurRadius, - color = ShadowTokens.DownSoftL.color, - fallbackElevation = ShadowTokens.DownSoftL.fallbackElevation, - ), - ), - ), - downHardS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardSLayer1.offsetX, - y = ShadowTokens.DownHardSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.DownHardSLayer1.spreadRadius, - blurRadius = ShadowTokens.DownHardSLayer1.blurRadius, - color = ShadowTokens.DownHardSLayer1.color, - fallbackElevation = ShadowTokens.DownHardSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardSLayer2.offsetX, - y = ShadowTokens.DownHardSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.DownHardSLayer2.spreadRadius, - blurRadius = ShadowTokens.DownHardSLayer2.blurRadius, - color = ShadowTokens.DownHardSLayer2.color, - fallbackElevation = ShadowTokens.DownHardSLayer2.fallbackElevation, - ), - ), - ), - downHardM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardM.offsetX, - y = ShadowTokens.DownHardM.offsetY, - ), - spreadRadius = ShadowTokens.DownHardM.spreadRadius, - blurRadius = ShadowTokens.DownHardM.blurRadius, - color = ShadowTokens.DownHardM.color, - fallbackElevation = ShadowTokens.DownHardM.fallbackElevation, - ), - ), - ), - downHardL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardL.offsetX, - y = ShadowTokens.DownHardL.offsetY, - ), - spreadRadius = ShadowTokens.DownHardL.spreadRadius, - blurRadius = ShadowTokens.DownHardL.blurRadius, - color = ShadowTokens.DownHardL.color, - fallbackElevation = ShadowTokens.DownHardL.fallbackElevation, - ), - ), - ), - upSoftS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftSLayer1.offsetX, - y = ShadowTokens.UpSoftSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftSLayer1.spreadRadius, - blurRadius = ShadowTokens.UpSoftSLayer1.blurRadius, - color = ShadowTokens.UpSoftSLayer1.color, - fallbackElevation = ShadowTokens.UpSoftSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftSLayer2.offsetX, - y = ShadowTokens.UpSoftSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftSLayer2.spreadRadius, - blurRadius = ShadowTokens.UpSoftSLayer2.blurRadius, - color = ShadowTokens.UpSoftSLayer2.color, - fallbackElevation = ShadowTokens.UpSoftSLayer2.fallbackElevation, - ), - ), - ), - upSoftM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftM.offsetX, - y = ShadowTokens.UpSoftM.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftM.spreadRadius, - blurRadius = ShadowTokens.UpSoftM.blurRadius, - color = ShadowTokens.UpSoftM.color, - fallbackElevation = ShadowTokens.UpSoftM.fallbackElevation, - ), - ), - ), - upSoftL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftL.offsetX, - y = ShadowTokens.UpSoftL.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftL.spreadRadius, - blurRadius = ShadowTokens.UpSoftL.blurRadius, - color = ShadowTokens.UpSoftL.color, - fallbackElevation = ShadowTokens.UpSoftL.fallbackElevation, - ), - ), - ), - upHardS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardSLayer1.offsetX, - y = ShadowTokens.UpHardSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.UpHardSLayer1.spreadRadius, - blurRadius = ShadowTokens.UpHardSLayer1.blurRadius, - color = ShadowTokens.UpHardSLayer1.color, - fallbackElevation = ShadowTokens.UpHardSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardSLayer2.offsetX, - y = ShadowTokens.UpHardSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.UpHardSLayer2.spreadRadius, - blurRadius = ShadowTokens.UpHardSLayer2.blurRadius, - color = ShadowTokens.UpHardSLayer2.color, - fallbackElevation = ShadowTokens.UpHardSLayer2.fallbackElevation, - ), - ), - ), - upHardM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardM.offsetX, - y = ShadowTokens.UpHardM.offsetY, - ), - spreadRadius = ShadowTokens.UpHardM.spreadRadius, - blurRadius = ShadowTokens.UpHardM.blurRadius, - color = ShadowTokens.UpHardM.color, - fallbackElevation = ShadowTokens.UpHardM.fallbackElevation, - ), - ), - ), - upHardL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardL.offsetX, - y = ShadowTokens.UpHardL.offsetY, - ), - spreadRadius = ShadowTokens.UpHardL.spreadRadius, - blurRadius = ShadowTokens.UpHardL.blurRadius, - color = ShadowTokens.UpHardL.color, - fallbackElevation = ShadowTokens.UpHardL.fallbackElevation, - ), - ), - ), -) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShapes.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShapes.kt deleted file mode 100644 index 91931a6697..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppShapes.kt +++ /dev/null @@ -1,62 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.foundation.shape.CornerBasedShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import com.sdds.plasma.giga.app.tokens.RoundShapeTokens - -/** - * Формы PlasmaGigaApp - */ -@Immutable -public data class PlasmaGigaAppShapes( - /** - * borderRadius xxs - */ - public val roundXxs: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xs - */ - public val roundXs: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius s - */ - public val roundS: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius m - */ - public val roundM: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius l - */ - public val roundL: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xl - */ - public val roundXl: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xxl - */ - public val roundXxl: CornerBasedShape = RoundedCornerShape(0), -) - -internal val LocalPlasmaGigaAppShapes: ProvidableCompositionLocal = - staticCompositionLocalOf { - PlasmaGigaAppShapes() - } - -/** - * Возвращает [PlasmaGigaAppShapes] - */ -public fun defaultPlasmaGigaAppShapes(): PlasmaGigaAppShapes = PlasmaGigaAppShapes( - roundXxs = RoundShapeTokens.RoundXxs, - roundXs = RoundShapeTokens.RoundXs, - roundS = RoundShapeTokens.RoundS, - roundM = RoundShapeTokens.RoundM, - roundL = RoundShapeTokens.RoundL, - roundXl = RoundShapeTokens.RoundXl, - roundXxl = RoundShapeTokens.RoundXxl, -) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppSpacing.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppSpacing.kt deleted file mode 100644 index d83538cccf..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppSpacing.kt +++ /dev/null @@ -1,102 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.plasma.giga.app.tokens.SpacingTokens - -/** - * Отступы PlasmaGigaApp - */ -@Immutable -public data class PlasmaGigaAppSpacing( - /** - * spacing 0x - */ - public val spacing0x: Dp = 0.dp, - /** - * spacing 1x - */ - public val spacing1x: Dp = 0.dp, - /** - * spacing 2x - */ - public val spacing2x: Dp = 0.dp, - /** - * spacing 3x - */ - public val spacing3x: Dp = 0.dp, - /** - * spacing 4x - */ - public val spacing4x: Dp = 0.dp, - /** - * spacing 6x - */ - public val spacing6x: Dp = 0.dp, - /** - * spacing 8x - */ - public val spacing8x: Dp = 0.dp, - /** - * spacing 10x - */ - public val spacing10x: Dp = 0.dp, - /** - * spacing 12x - */ - public val spacing12x: Dp = 0.dp, - /** - * spacing 16x - */ - public val spacing16x: Dp = 0.dp, - /** - * spacing 20x - */ - public val spacing20x: Dp = 0.dp, - /** - * spacing 24x - */ - public val spacing24x: Dp = 0.dp, - /** - * spacing 32x - */ - public val spacing32x: Dp = 0.dp, - /** - * spacing 40x - */ - public val spacing40x: Dp = 0.dp, - /** - * spacing 60x - */ - public val spacing60x: Dp = 0.dp, -) - -internal val LocalPlasmaGigaAppSpacing: ProvidableCompositionLocal = - staticCompositionLocalOf { - PlasmaGigaAppSpacing() - } - -/** - * Возвращает [PlasmaGigaAppSpacing] - */ -public fun defaultPlasmaGigaAppSpacing(): PlasmaGigaAppSpacing = PlasmaGigaAppSpacing( - spacing0x = SpacingTokens.spacing0x, - spacing1x = SpacingTokens.spacing1x, - spacing2x = SpacingTokens.spacing2x, - spacing3x = SpacingTokens.spacing3x, - spacing4x = SpacingTokens.spacing4x, - spacing6x = SpacingTokens.spacing6x, - spacing8x = SpacingTokens.spacing8x, - spacing10x = SpacingTokens.spacing10x, - spacing12x = SpacingTokens.spacing12x, - spacing16x = SpacingTokens.spacing16x, - spacing20x = SpacingTokens.spacing20x, - spacing24x = SpacingTokens.spacing24x, - spacing32x = SpacingTokens.spacing32x, - spacing40x = SpacingTokens.spacing40x, - spacing60x = SpacingTokens.spacing60x, -) diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTheme.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTheme.kt deleted file mode 100644 index bbf2cfc63b..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTheme.kt +++ /dev/null @@ -1,118 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.foundation.text.selection.LocalTextSelectionColors -import androidx.compose.foundation.text.selection.TextSelectionColors -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.ReadOnlyComposable -import androidx.compose.runtime.remember -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ProvideTextStyle -import com.sdds.compose.uikit.fs.FocusSelectorBorders -import com.sdds.compose.uikit.fs.FocusSelectorScales -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import kotlin.Unit - -/** - * Аттрибуты темы PlasmaGigaAppTheme - */ -public object PlasmaGigaAppTheme { - /** - * Аттрибуты цвета - */ - public val colors: PlasmaGigaAppColors - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppColors.current - - /** - * Аттрибуты градиентов - */ - public val gradients: PlasmaGigaAppGradients - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppGradients.current - - /** - * Аттрибуты форм - */ - public val shapes: PlasmaGigaAppShapes - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppShapes.current - - /** - * Аттрибуты теней - */ - public val shadows: PlasmaGigaAppShadows - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppShadows.current - - /** - * Аттрибуты отступов - */ - public val spacing: PlasmaGigaAppSpacing - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppSpacing.current - - /** - * Аттрибуты типографики - */ - public val typography: PlasmaGigaAppTypography - @Composable - @ReadOnlyComposable - get() = LocalPlasmaGigaAppTypography.current -} - -/** - * Базовая тема PlasmaGigaApp - */ -@Composable -public fun PlasmaGigaAppTheme( - colors: PlasmaGigaAppColors = PlasmaGigaAppTheme.colors, - gradients: PlasmaGigaAppGradients = PlasmaGigaAppTheme.gradients, - shapes: PlasmaGigaAppShapes = defaultPlasmaGigaAppShapes(), - shadows: PlasmaGigaAppShadows = defaultPlasmaGigaAppShadows(), - typography: PlasmaGigaAppTypography = dynamicPlasmaGigaAppTypography(), - spacing: PlasmaGigaAppSpacing = defaultPlasmaGigaAppSpacing(), - content: @Composable () -> Unit, -) { - val rememberColors = remember { colors.copy() }.apply { updateColorsFrom(colors) } - - val textSelectionColors = remember { - TextSelectionColors( - handleColor = rememberColors.textDefaultAccent, - backgroundColor = rememberColors.textDefaultAccent.copy(0.3f), - ) - } - - CompositionLocalProvider( - LocalPlasmaGigaAppColors provides rememberColors, - LocalPlasmaGigaAppGradients provides gradients, - LocalPlasmaGigaAppTypography provides typography, - LocalPlasmaGigaAppShapes provides shapes, - LocalPlasmaGigaAppShadows provides shadows, - LocalPlasmaGigaAppSpacing provides spacing, - LocalTextSelectionColors provides textSelectionColors, - LocalFocusSelectorSettings provides FocusSelectorSettings.builder() - .border( - FocusSelectorBorders.solid( - strokeWidth = 1.dp, - strokeInsets = 2.dp, - color = rememberColors.surfaceDefaultAccent, - ), - ) - .scale(FocusSelectorScales.none()) - .build(), - content = { - ProvideTextStyle( - value = typography.bodyMNormal.copy(color = rememberColors.textDefaultPrimary), - content = content, - ) - }, - ) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTypography.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTypography.kt deleted file mode 100644 index ea940011b9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/PlasmaGigaAppTypography.kt +++ /dev/null @@ -1,423 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.plasma.giga.app.tokens.TypographyLargeTokens -import com.sdds.plasma.giga.app.tokens.TypographyMediumTokens -import com.sdds.plasma.giga.app.tokens.TypographySmallTokens - -/** - * Типографика PlasmaGigaApp - */ -@Immutable -public data class PlasmaGigaAppTypography internal constructor( - /** - * typography l display-l - */ - public val displayLNormal: TextStyle = TextStyle.Default, - /** - * typography l display-l-bold - */ - public val displayLBold: TextStyle = TextStyle.Default, - /** - * typography l display-m - */ - public val displayMNormal: TextStyle = TextStyle.Default, - /** - * typography l display-m-bold - */ - public val displayMBold: TextStyle = TextStyle.Default, - /** - * typography l display-s - */ - public val displaySNormal: TextStyle = TextStyle.Default, - /** - * typography l display-s-bold - */ - public val displaySBold: TextStyle = TextStyle.Default, - /** - * typography l header-h1 - */ - public val headerH1Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h1-bold - */ - public val headerH1Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h2 - */ - public val headerH2Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h2-bold - */ - public val headerH2Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h3 - */ - public val headerH3Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h3-bold - */ - public val headerH3Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h4 - */ - public val headerH4Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h4-bold - */ - public val headerH4Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h5 - */ - public val headerH5Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h5-bold - */ - public val headerH5Bold: TextStyle = TextStyle.Default, - /** - * typography l body-l - */ - public val bodyLNormal: TextStyle = TextStyle.Default, - /** - * typography l body-l-bold - */ - public val bodyLBold: TextStyle = TextStyle.Default, - /** - * typography l body-m - */ - public val bodyMNormal: TextStyle = TextStyle.Default, - /** - * typography l body-m-bold - */ - public val bodyMBold: TextStyle = TextStyle.Default, - /** - * typography l body-s - */ - public val bodySNormal: TextStyle = TextStyle.Default, - /** - * typography l body-s-bold - */ - public val bodySBold: TextStyle = TextStyle.Default, - /** - * typography l body-xs - */ - public val bodyXsNormal: TextStyle = TextStyle.Default, - /** - * typography l body-xs-bold - */ - public val bodyXsBold: TextStyle = TextStyle.Default, - /** - * typography l body-xxs - */ - public val bodyXxsNormal: TextStyle = TextStyle.Default, - /** - * typography l body-xxs-bold - */ - public val bodyXxsBold: TextStyle = TextStyle.Default, - /** - * typography l text-l - */ - public val textLNormal: TextStyle = TextStyle.Default, - /** - * typography l text-l-bold - */ - public val textLBold: TextStyle = TextStyle.Default, - /** - * typography l text-m - */ - public val textMNormal: TextStyle = TextStyle.Default, - /** - * typography l text-m-bold - */ - public val textMBold: TextStyle = TextStyle.Default, - /** - * typography l text-s - */ - public val textSNormal: TextStyle = TextStyle.Default, - /** - * typography l text-s-bold - */ - public val textSBold: TextStyle = TextStyle.Default, - /** - * typography l text-xs - */ - public val textXsNormal: TextStyle = TextStyle.Default, - /** - * typography l text-xs-bold - */ - public val textXsBold: TextStyle = TextStyle.Default, - /** - * typography l display-l-medium - */ - public val displayLMedium: TextStyle = TextStyle.Default, - /** - * typography l display-m-medium - */ - public val displayMMedium: TextStyle = TextStyle.Default, - /** - * typography l display-s-medium - */ - public val displaySMedium: TextStyle = TextStyle.Default, - /** - * typography l header-h1-medium - */ - public val headerH1Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h2-medium - */ - public val headerH2Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h3-medium - */ - public val headerH3Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h4-medium - */ - public val headerH4Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h5-medium - */ - public val headerH5Medium: TextStyle = TextStyle.Default, - /** - * typography l body-l-medium - */ - public val bodyLMedium: TextStyle = TextStyle.Default, - /** - * typography l body-m-medium - */ - public val bodyMMedium: TextStyle = TextStyle.Default, - /** - * typography l body-s-medium - */ - public val bodySMedium: TextStyle = TextStyle.Default, - /** - * typography l body-xs-medium - */ - public val bodyXsMedium: TextStyle = TextStyle.Default, - /** - * typography l body-xxs-medium - */ - public val bodyXxsMedium: TextStyle = TextStyle.Default, - /** - * typography l text-l-medium - */ - public val textLMedium: TextStyle = TextStyle.Default, - /** - * typography l text-m-medium - */ - public val textMMedium: TextStyle = TextStyle.Default, - /** - * typography l text-s-medium - */ - public val textSMedium: TextStyle = TextStyle.Default, - /** - * typography l text-xs-medium - */ - public val textXsMedium: TextStyle = TextStyle.Default, -) - -internal val LocalPlasmaGigaAppTypography: ProvidableCompositionLocal = - staticCompositionLocalOf { - PlasmaGigaAppTypography() - } - -/** - * Возвращает [PlasmaGigaAppTypography] для WindowSizeClass.Compact - */ -public fun smallPlasmaGigaAppTypography(): PlasmaGigaAppTypography = PlasmaGigaAppTypography( - displayLNormal = TypographySmallTokens.DisplayLNormal, - displayLBold = TypographySmallTokens.DisplayLBold, - displayMNormal = TypographySmallTokens.DisplayMNormal, - displayMBold = TypographySmallTokens.DisplayMBold, - displaySNormal = TypographySmallTokens.DisplaySNormal, - displaySBold = TypographySmallTokens.DisplaySBold, - headerH1Normal = TypographySmallTokens.HeaderH1Normal, - headerH1Bold = TypographySmallTokens.HeaderH1Bold, - headerH2Normal = TypographySmallTokens.HeaderH2Normal, - headerH2Bold = TypographySmallTokens.HeaderH2Bold, - headerH3Normal = TypographySmallTokens.HeaderH3Normal, - headerH3Bold = TypographySmallTokens.HeaderH3Bold, - headerH4Normal = TypographySmallTokens.HeaderH4Normal, - headerH4Bold = TypographySmallTokens.HeaderH4Bold, - headerH5Normal = TypographySmallTokens.HeaderH5Normal, - headerH5Bold = TypographySmallTokens.HeaderH5Bold, - bodyLNormal = TypographySmallTokens.BodyLNormal, - bodyLBold = TypographySmallTokens.BodyLBold, - bodyMNormal = TypographySmallTokens.BodyMNormal, - bodyMBold = TypographySmallTokens.BodyMBold, - bodySNormal = TypographySmallTokens.BodySNormal, - bodySBold = TypographySmallTokens.BodySBold, - bodyXsNormal = TypographySmallTokens.BodyXsNormal, - bodyXsBold = TypographySmallTokens.BodyXsBold, - bodyXxsNormal = TypographySmallTokens.BodyXxsNormal, - bodyXxsBold = TypographySmallTokens.BodyXxsBold, - textLNormal = TypographySmallTokens.TextLNormal, - textLBold = TypographySmallTokens.TextLBold, - textMNormal = TypographySmallTokens.TextMNormal, - textMBold = TypographySmallTokens.TextMBold, - textSNormal = TypographySmallTokens.TextSNormal, - textSBold = TypographySmallTokens.TextSBold, - textXsNormal = TypographySmallTokens.TextXsNormal, - textXsBold = TypographySmallTokens.TextXsBold, - displayLMedium = TypographySmallTokens.DisplayLMedium, - displayMMedium = TypographySmallTokens.DisplayMMedium, - displaySMedium = TypographySmallTokens.DisplaySMedium, - headerH1Medium = TypographySmallTokens.HeaderH1Medium, - headerH2Medium = TypographySmallTokens.HeaderH2Medium, - headerH3Medium = TypographySmallTokens.HeaderH3Medium, - headerH4Medium = TypographySmallTokens.HeaderH4Medium, - headerH5Medium = TypographySmallTokens.HeaderH5Medium, - bodyLMedium = TypographySmallTokens.BodyLMedium, - bodyMMedium = TypographySmallTokens.BodyMMedium, - bodySMedium = TypographySmallTokens.BodySMedium, - bodyXsMedium = TypographySmallTokens.BodyXsMedium, - bodyXxsMedium = TypographySmallTokens.BodyXxsMedium, - textLMedium = TypographySmallTokens.TextLMedium, - textMMedium = TypographySmallTokens.TextMMedium, - textSMedium = TypographySmallTokens.TextSMedium, - textXsMedium = TypographySmallTokens.TextXsMedium, -) - -/** - * Возвращает [PlasmaGigaAppTypography] для WindowSizeClass.Medium - */ -public fun mediumPlasmaGigaAppTypography(): PlasmaGigaAppTypography = PlasmaGigaAppTypography( - displayLNormal = TypographyMediumTokens.DisplayLNormal, - displayLBold = TypographyMediumTokens.DisplayLBold, - displayMNormal = TypographyMediumTokens.DisplayMNormal, - displayMBold = TypographyMediumTokens.DisplayMBold, - displaySNormal = TypographyMediumTokens.DisplaySNormal, - displaySBold = TypographyMediumTokens.DisplaySBold, - headerH1Normal = TypographyMediumTokens.HeaderH1Normal, - headerH1Bold = TypographyMediumTokens.HeaderH1Bold, - headerH2Normal = TypographyMediumTokens.HeaderH2Normal, - headerH2Bold = TypographyMediumTokens.HeaderH2Bold, - headerH3Normal = TypographyMediumTokens.HeaderH3Normal, - headerH3Bold = TypographyMediumTokens.HeaderH3Bold, - headerH4Normal = TypographyMediumTokens.HeaderH4Normal, - headerH4Bold = TypographyMediumTokens.HeaderH4Bold, - headerH5Normal = TypographyMediumTokens.HeaderH5Normal, - headerH5Bold = TypographyMediumTokens.HeaderH5Bold, - bodyLNormal = TypographyMediumTokens.BodyLNormal, - bodyLBold = TypographyMediumTokens.BodyLBold, - bodyMNormal = TypographyMediumTokens.BodyMNormal, - bodyMBold = TypographyMediumTokens.BodyMBold, - bodySNormal = TypographyMediumTokens.BodySNormal, - bodySBold = TypographyMediumTokens.BodySBold, - bodyXsNormal = TypographyMediumTokens.BodyXsNormal, - bodyXsBold = TypographyMediumTokens.BodyXsBold, - bodyXxsNormal = TypographyMediumTokens.BodyXxsNormal, - bodyXxsBold = TypographyMediumTokens.BodyXxsBold, - textLNormal = TypographyMediumTokens.TextLNormal, - textLBold = TypographyMediumTokens.TextLBold, - textMNormal = TypographyMediumTokens.TextMNormal, - textMBold = TypographyMediumTokens.TextMBold, - textSNormal = TypographyMediumTokens.TextSNormal, - textSBold = TypographyMediumTokens.TextSBold, - textXsNormal = TypographyMediumTokens.TextXsNormal, - textXsBold = TypographyMediumTokens.TextXsBold, - displayLMedium = TypographyMediumTokens.DisplayLMedium, - displayMMedium = TypographyMediumTokens.DisplayMMedium, - displaySMedium = TypographyMediumTokens.DisplaySMedium, - headerH1Medium = TypographyMediumTokens.HeaderH1Medium, - headerH2Medium = TypographyMediumTokens.HeaderH2Medium, - headerH3Medium = TypographyMediumTokens.HeaderH3Medium, - headerH4Medium = TypographyMediumTokens.HeaderH4Medium, - headerH5Medium = TypographyMediumTokens.HeaderH5Medium, - bodyLMedium = TypographyMediumTokens.BodyLMedium, - bodyMMedium = TypographyMediumTokens.BodyMMedium, - bodySMedium = TypographyMediumTokens.BodySMedium, - bodyXsMedium = TypographyMediumTokens.BodyXsMedium, - bodyXxsMedium = TypographyMediumTokens.BodyXxsMedium, - textLMedium = TypographyMediumTokens.TextLMedium, - textMMedium = TypographyMediumTokens.TextMMedium, - textSMedium = TypographyMediumTokens.TextSMedium, - textXsMedium = TypographyMediumTokens.TextXsMedium, -) - -/** - * Возвращает [PlasmaGigaAppTypography] для WindowSizeClass.Expanded - */ -public fun largePlasmaGigaAppTypography(): PlasmaGigaAppTypography = PlasmaGigaAppTypography( - displayLNormal = TypographyLargeTokens.DisplayLNormal, - displayLBold = TypographyLargeTokens.DisplayLBold, - displayMNormal = TypographyLargeTokens.DisplayMNormal, - displayMBold = TypographyLargeTokens.DisplayMBold, - displaySNormal = TypographyLargeTokens.DisplaySNormal, - displaySBold = TypographyLargeTokens.DisplaySBold, - headerH1Normal = TypographyLargeTokens.HeaderH1Normal, - headerH1Bold = TypographyLargeTokens.HeaderH1Bold, - headerH2Normal = TypographyLargeTokens.HeaderH2Normal, - headerH2Bold = TypographyLargeTokens.HeaderH2Bold, - headerH3Normal = TypographyLargeTokens.HeaderH3Normal, - headerH3Bold = TypographyLargeTokens.HeaderH3Bold, - headerH4Normal = TypographyLargeTokens.HeaderH4Normal, - headerH4Bold = TypographyLargeTokens.HeaderH4Bold, - headerH5Normal = TypographyLargeTokens.HeaderH5Normal, - headerH5Bold = TypographyLargeTokens.HeaderH5Bold, - bodyLNormal = TypographyLargeTokens.BodyLNormal, - bodyLBold = TypographyLargeTokens.BodyLBold, - bodyMNormal = TypographyLargeTokens.BodyMNormal, - bodyMBold = TypographyLargeTokens.BodyMBold, - bodySNormal = TypographyLargeTokens.BodySNormal, - bodySBold = TypographyLargeTokens.BodySBold, - bodyXsNormal = TypographyLargeTokens.BodyXsNormal, - bodyXsBold = TypographyLargeTokens.BodyXsBold, - bodyXxsNormal = TypographyLargeTokens.BodyXxsNormal, - bodyXxsBold = TypographyLargeTokens.BodyXxsBold, - textLNormal = TypographyLargeTokens.TextLNormal, - textLBold = TypographyLargeTokens.TextLBold, - textMNormal = TypographyLargeTokens.TextMNormal, - textMBold = TypographyLargeTokens.TextMBold, - textSNormal = TypographyLargeTokens.TextSNormal, - textSBold = TypographyLargeTokens.TextSBold, - textXsNormal = TypographyLargeTokens.TextXsNormal, - textXsBold = TypographyLargeTokens.TextXsBold, - displayLMedium = TypographyLargeTokens.DisplayLMedium, - displayMMedium = TypographyLargeTokens.DisplayMMedium, - displaySMedium = TypographyLargeTokens.DisplaySMedium, - headerH1Medium = TypographyLargeTokens.HeaderH1Medium, - headerH2Medium = TypographyLargeTokens.HeaderH2Medium, - headerH3Medium = TypographyLargeTokens.HeaderH3Medium, - headerH4Medium = TypographyLargeTokens.HeaderH4Medium, - headerH5Medium = TypographyLargeTokens.HeaderH5Medium, - bodyLMedium = TypographyLargeTokens.BodyLMedium, - bodyMMedium = TypographyLargeTokens.BodyMMedium, - bodySMedium = TypographyLargeTokens.BodySMedium, - bodyXsMedium = TypographyLargeTokens.BodyXsMedium, - bodyXxsMedium = TypographyLargeTokens.BodyXxsMedium, - textLMedium = TypographyLargeTokens.TextLMedium, - textMMedium = TypographyLargeTokens.TextMMedium, - textSMedium = TypographyLargeTokens.TextSMedium, - textXsMedium = TypographyLargeTokens.TextXsMedium, -) - -/** - * Возвращает разные [PlasmaGigaAppTypography] в зависимости от ширины окна. Значение динамически - * изменяется при изменении ширины окна. - */ -@Composable -public fun dynamicPlasmaGigaAppTypography(): PlasmaGigaAppTypography { - val widthClass = collectWindowSizeInfoAsState().value.widthClass - return when (widthClass) { - WindowSizeClass.Expanded -> largePlasmaGigaAppTypography() - WindowSizeClass.Medium -> mediumPlasmaGigaAppTypography() - WindowSizeClass.Compact -> smallPlasmaGigaAppTypography() - } -} - -/** - * Возвращает значение в dp - брейкпоинт по ширине для указанного класса размерности. - */ -public fun WindowSizeClass.widthBreakPoint(): Dp = when (this) { - WindowSizeClass.Expanded -> 960.0.dp - WindowSizeClass.Medium -> 560.0.dp - WindowSizeClass.Compact -> 0.dp -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/WindowSize.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/WindowSize.kt deleted file mode 100644 index 1510c17270..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/WindowSize.kt +++ /dev/null @@ -1,77 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.State -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.platform.LocalContext -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.dp - -/** - * Класс размерности окна. - * См. [developer.android.com](https://developer.android.com/guide/topics/large-screens/support-different-screen-sizes) - */ -enum class WindowSizeClass { - Compact, - Medium, - Expanded, -} - -/** - * Возвращает значение в dp - брейкпоинт по высоте для указанного класса размерности. - */ -fun WindowSizeClass.heightBreakPoint(): Dp = - when (this) { - WindowSizeClass.Compact -> 0.dp - WindowSizeClass.Medium -> 480.dp - WindowSizeClass.Expanded -> 900.dp - } - -/** - * Информация о размерности окна - * @property widthClass класс размерности ширины окна - * @property heightClass класс размерности высоты окна - */ -data class WindowSizeInfo( - val widthClass: WindowSizeClass = WindowSizeClass.Medium, - val heightClass: WindowSizeClass = WindowSizeClass.Medium, -) - -/** - * Возвращает информацию о размерности окна как state - */ -@Composable -fun collectWindowSizeInfoAsState(): State { - val info = remember { mutableStateOf(WindowSizeInfo()) } - val context = LocalContext.current - val mediumWidthBreakPoint = WindowSizeClass.Medium.widthBreakPoint().px - val mediumHeightBreakPoint = WindowSizeClass.Medium.heightBreakPoint().px - val expandedWidthBreakPoint = WindowSizeClass.Expanded.widthBreakPoint().px - val expandedHeightBreakPoint = WindowSizeClass.Expanded.heightBreakPoint().px - - info.value = remember(context, LocalConfiguration.current) { - val displayMetrics = context.resources.displayMetrics - val size = IntSize(displayMetrics.widthPixels, displayMetrics.heightPixels) - val widthClass = when { - size.width < mediumWidthBreakPoint -> WindowSizeClass.Compact - size.width in mediumWidthBreakPoint until expandedWidthBreakPoint -> WindowSizeClass.Medium - else -> WindowSizeClass.Expanded - } - val heightClass = when { - size.height < mediumHeightBreakPoint -> WindowSizeClass.Compact - size.height in mediumHeightBreakPoint until expandedHeightBreakPoint -> WindowSizeClass.Medium - else -> WindowSizeClass.Expanded - } - WindowSizeInfo(widthClass, heightClass) - } - - return info -} - -private val Dp.px: Int - @Composable - get() = with(LocalDensity.current) { this@px.roundToPx() } diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeDefault.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeDefault.kt deleted file mode 100644 index cdabe8a67a..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeDefault.kt +++ /dev/null @@ -1,34 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme.subthemes - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients -import kotlin.Boolean -import kotlin.Unit - -/** - * Подтема PlasmaGigaAppTheme.Default - */ -@Composable -public fun PlasmaGigaAppTheme.Default( - isDark: Boolean = isSystemInDarkTheme(), - content: @Composable - () -> Unit, -) { - val colors = if (isDark) { - darkPlasmaGigaAppColors() - } else { - lightPlasmaGigaAppColors() - } - val gradients = if (isDark) { - darkPlasmaGigaAppGradients() - } else { - lightPlasmaGigaAppGradients() - } - PlasmaGigaAppTheme(colors = colors, gradients = gradients, content = content) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeInverse.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeInverse.kt deleted file mode 100644 index a276e237a9..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeInverse.kt +++ /dev/null @@ -1,1398 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme.subthemes - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.linearGradient -import com.sdds.plasma.giga.app.tokens.DarkColorTokens -import com.sdds.plasma.giga.app.tokens.DarkGradientTokens -import com.sdds.plasma.giga.app.tokens.LightColorTokens -import com.sdds.plasma.giga.app.tokens.LightGradientTokens -import kotlin.Boolean -import kotlin.Unit - -private val darkInverseColors: PlasmaGigaAppColors by lazy { - darkPlasmaGigaAppColors { - textInversePrimary.overrideBy(DarkColorTokens.TextDefaultPrimary) - textInversePrimaryBrightness.overrideBy(DarkColorTokens.TextDefaultPrimaryBrightness) - textInverseSecondary.overrideBy(DarkColorTokens.TextDefaultSecondary) - textInverseTertiary.overrideBy(DarkColorTokens.TextDefaultTertiary) - textInverseParagraph.overrideBy(DarkColorTokens.TextDefaultParagraph) - textInversePrimaryHover.overrideBy(DarkColorTokens.TextDefaultPrimaryHover) - textInversePrimaryActive.overrideBy(DarkColorTokens.TextDefaultPrimaryActive) - textInverseSecondaryHover.overrideBy(DarkColorTokens.TextDefaultSecondaryHover) - textInverseSecondaryActive.overrideBy(DarkColorTokens.TextDefaultSecondaryActive) - textInverseTertiaryHover.overrideBy(DarkColorTokens.TextDefaultTertiaryHover) - textInverseTertiaryActive.overrideBy(DarkColorTokens.TextDefaultTertiaryActive) - textInverseParagraphHover.overrideBy(DarkColorTokens.TextDefaultParagraphHover) - textInverseParagraphActive.overrideBy(DarkColorTokens.TextDefaultParagraphActive) - textInverseAccentHover.overrideBy(DarkColorTokens.TextDefaultAccentHover) - textInverseAccentActive.overrideBy(DarkColorTokens.TextDefaultAccentActive) - textInversePositiveHover.overrideBy(DarkColorTokens.TextDefaultPositiveHover) - textInversePositiveActive.overrideBy(DarkColorTokens.TextDefaultPositiveActive) - textInverseWarningHover.overrideBy(DarkColorTokens.TextDefaultWarningHover) - textInverseWarningActive.overrideBy(DarkColorTokens.TextDefaultWarningActive) - textInverseNegativeHover.overrideBy(DarkColorTokens.TextDefaultNegativeHover) - textInverseNegativeActive.overrideBy(DarkColorTokens.TextDefaultNegativeActive) - textInverseAccentMinorHover.overrideBy(DarkColorTokens.TextDefaultAccentMinorHover) - textInverseAccentMinorActive.overrideBy(DarkColorTokens.TextDefaultAccentMinorActive) - textInverseAccent.overrideBy(DarkColorTokens.TextDefaultAccent) - textInverseAccentMinor.overrideBy(DarkColorTokens.TextDefaultAccentMinor) - textInversePositive.overrideBy(DarkColorTokens.TextDefaultPositive) - textInverseWarning.overrideBy(DarkColorTokens.TextDefaultWarning) - textInverseNegative.overrideBy(DarkColorTokens.TextDefaultNegative) - textInverseInfo.overrideBy(DarkColorTokens.TextDefaultInfo) - textInverseInfoHover.overrideBy(DarkColorTokens.TextDefaultInfoHover) - textInverseInfoActive.overrideBy(DarkColorTokens.TextDefaultInfoActive) - textInversePositiveMinor.overrideBy(DarkColorTokens.TextDefaultPositiveMinor) - textInversePositiveMinorHover.overrideBy(DarkColorTokens.TextDefaultPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(DarkColorTokens.TextDefaultPositiveMinorActive) - textInverseWarningMinor.overrideBy(DarkColorTokens.TextDefaultWarningMinor) - textInverseWarningMinorHover.overrideBy(DarkColorTokens.TextDefaultWarningMinorHover) - textInverseWarningMinorActive.overrideBy(DarkColorTokens.TextDefaultWarningMinorActive) - textInverseNegativeMinor.overrideBy(DarkColorTokens.TextDefaultNegativeMinor) - textInverseNegativeMinorHover.overrideBy(DarkColorTokens.TextDefaultNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(DarkColorTokens.TextDefaultNegativeMinorActive) - textInverseInfoMinor.overrideBy(DarkColorTokens.TextDefaultInfoMinor) - textInverseInfoMinorHover.overrideBy(DarkColorTokens.TextDefaultInfoMinorHover) - textInverseInfoMinorActive.overrideBy(DarkColorTokens.TextDefaultInfoMinorActive) - surfaceInverseSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceDefaultSolidPrimaryBrightness) - surfaceInverseSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceDefaultSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDefault) - surfaceInverseTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceDefaultTransparentCardBrightness) - surfaceInversePositive.overrideBy(DarkColorTokens.SurfaceDefaultPositive) - surfaceInverseWarning.overrideBy(DarkColorTokens.SurfaceDefaultWarning) - surfaceInverseNegative.overrideBy(DarkColorTokens.SurfaceDefaultNegative) - surfaceInverseSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceDefaultSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceDefaultSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceDefaultSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceDefaultSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceDefaultSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceDefaultSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceDefaultSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceDefaultSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(DarkColorTokens.SurfaceDefaultSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(DarkColorTokens.SurfaceDefaultSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy( - DarkColorTokens.SurfaceDefaultTransparentSecondaryActive, - ) - surfaceInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentCardActive) - surfaceInverseAccentHover.overrideBy(DarkColorTokens.SurfaceDefaultAccentHover) - surfaceInverseAccentActive.overrideBy(DarkColorTokens.SurfaceDefaultAccentActive) - surfaceInversePositiveHover.overrideBy(DarkColorTokens.SurfaceDefaultPositiveHover) - surfaceInversePositiveActive.overrideBy(DarkColorTokens.SurfaceDefaultPositiveActive) - surfaceInverseWarningHover.overrideBy(DarkColorTokens.SurfaceDefaultWarningHover) - surfaceInverseWarningActive.overrideBy(DarkColorTokens.SurfaceDefaultWarningActive) - surfaceInverseNegativeHover.overrideBy(DarkColorTokens.SurfaceDefaultNegativeHover) - surfaceInverseNegativeActive.overrideBy(DarkColorTokens.SurfaceDefaultNegativeActive) - surfaceInverseClearHover.overrideBy(DarkColorTokens.SurfaceDefaultClearHover) - surfaceInverseClearActive.overrideBy(DarkColorTokens.SurfaceDefaultClearActive) - surfaceInverseSolidCard.overrideBy(DarkColorTokens.SurfaceDefaultSolidCard) - surfaceInverseSolidPrimary.overrideBy(DarkColorTokens.SurfaceDefaultSolidPrimary) - surfaceInverseSolidSecondary.overrideBy(DarkColorTokens.SurfaceDefaultSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(DarkColorTokens.SurfaceDefaultSolidTertiary) - surfaceInverseSolidDefault.overrideBy(DarkColorTokens.SurfaceDefaultSolidDefault) - surfaceInverseTransparentCard.overrideBy(DarkColorTokens.SurfaceDefaultTransparentCard) - surfaceInverseTransparentPrimary.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(DarkColorTokens.SurfaceDefaultTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(DarkColorTokens.SurfaceDefaultTransparentTertiary) - surfaceInverseTransparentDeep.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentDeepActive) - surfaceInverseClear.overrideBy(DarkColorTokens.SurfaceDefaultClear) - surfaceInverseAccent.overrideBy(DarkColorTokens.SurfaceDefaultAccent) - surfaceInverseAccentMinor.overrideBy(DarkColorTokens.SurfaceDefaultAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(DarkColorTokens.SurfaceDefaultAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(DarkColorTokens.SurfaceDefaultAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(DarkColorTokens.SurfaceDefaultTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentAccentActive) - surfaceInverseInfo.overrideBy(DarkColorTokens.SurfaceDefaultInfo) - surfaceInverseInfoHover.overrideBy(DarkColorTokens.SurfaceDefaultInfoHover) - surfaceInverseInfoActive.overrideBy(DarkColorTokens.SurfaceDefaultInfoActive) - surfaceInversePositiveMinor.overrideBy(DarkColorTokens.SurfaceDefaultPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(DarkColorTokens.SurfaceDefaultPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(DarkColorTokens.SurfaceDefaultPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(DarkColorTokens.SurfaceDefaultWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(DarkColorTokens.SurfaceDefaultWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(DarkColorTokens.SurfaceDefaultWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(DarkColorTokens.SurfaceDefaultNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceDefaultNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceDefaultNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(DarkColorTokens.SurfaceDefaultInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(DarkColorTokens.SurfaceDefaultInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(DarkColorTokens.SurfaceDefaultInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(DarkColorTokens.SurfaceDefaultTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(DarkColorTokens.SurfaceDefaultTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(DarkColorTokens.SurfaceDefaultTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceDefaultTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceDefaultTransparentInfoActive) - backgroundInversePrimaryBrightness.overrideBy(DarkColorTokens.BackgroundDefaultPrimaryBrightness) - backgroundInverseSecondary.overrideBy(DarkColorTokens.BackgroundDefaultSecondary) - backgroundInverseTertiary.overrideBy(DarkColorTokens.BackgroundDefaultTertiary) - backgroundInversePrimary.overrideBy(DarkColorTokens.BackgroundDefaultPrimary) - overlayInverseSoft.overrideBy(DarkColorTokens.OverlayDefaultSoft) - overlayInverseHard.overrideBy(DarkColorTokens.OverlayDefaultHard) - overlayInverseBlur.overrideBy(DarkColorTokens.OverlayDefaultBlur) - outlineInversePrimaryHover.overrideBy(DarkColorTokens.OutlineDefaultPrimaryHover) - outlineInversePrimaryActive.overrideBy(DarkColorTokens.OutlineDefaultPrimaryActive) - outlineInverseSecondaryHover.overrideBy(DarkColorTokens.OutlineDefaultSecondaryHover) - outlineInverseSecondaryActive.overrideBy(DarkColorTokens.OutlineDefaultSecondaryActive) - outlineInverseTertiaryHover.overrideBy(DarkColorTokens.OutlineDefaultTertiaryHover) - outlineInverseTertiaryActive.overrideBy(DarkColorTokens.OutlineDefaultTertiaryActive) - outlineInverseDefaultHover.overrideBy(DarkColorTokens.OutlineDefaultDefaultHover) - outlineInverseDefaultActive.overrideBy(DarkColorTokens.OutlineDefaultDefaultActive) - outlineInverseTransparentPrimary.overrideBy(DarkColorTokens.OutlineDefaultTransparentPrimary) - outlineInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentPrimaryActive) - outlineInverseTransparentSecondary.overrideBy(DarkColorTokens.OutlineDefaultTransparentSecondary) - outlineInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy( - DarkColorTokens.OutlineDefaultTransparentSecondaryActive, - ) - outlineInverseTransparentTertiary.overrideBy(DarkColorTokens.OutlineDefaultTransparentTertiary) - outlineInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentTertiaryActive) - outlineInverseTransparentClear.overrideBy(DarkColorTokens.OutlineDefaultTransparentClear) - outlineInverseTransparentClearHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentClearHover) - outlineInverseTransparentClearActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentClearActive) - outlineInverseAccent.overrideBy(DarkColorTokens.OutlineDefaultAccent) - outlineInverseAccentHover.overrideBy(DarkColorTokens.OutlineDefaultAccentHover) - outlineInverseAccentActive.overrideBy(DarkColorTokens.OutlineDefaultAccentActive) - outlineInverseAccentMinor.overrideBy(DarkColorTokens.OutlineDefaultAccentMinor) - outlineInverseAccentMinorHover.overrideBy(DarkColorTokens.OutlineDefaultAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(DarkColorTokens.OutlineDefaultAccentMinorActive) - outlineInverseTransparentAccent.overrideBy(DarkColorTokens.OutlineDefaultTransparentAccent) - outlineInverseTransparentAccentHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentAccentActive) - outlineInversePositive.overrideBy(DarkColorTokens.OutlineDefaultPositive) - outlineInversePositiveHover.overrideBy(DarkColorTokens.OutlineDefaultPositiveHover) - outlineInversePositiveActive.overrideBy(DarkColorTokens.OutlineDefaultPositiveActive) - outlineInverseWarning.overrideBy(DarkColorTokens.OutlineDefaultWarning) - outlineInverseWarningHover.overrideBy(DarkColorTokens.OutlineDefaultWarningHover) - outlineInverseWarningActive.overrideBy(DarkColorTokens.OutlineDefaultWarningActive) - outlineInverseNegative.overrideBy(DarkColorTokens.OutlineDefaultNegative) - outlineInverseNegativeHover.overrideBy(DarkColorTokens.OutlineDefaultNegativeHover) - outlineInverseNegativeActive.overrideBy(DarkColorTokens.OutlineDefaultNegativeActive) - outlineInverseInfo.overrideBy(DarkColorTokens.OutlineDefaultInfo) - outlineInverseInfoHover.overrideBy(DarkColorTokens.OutlineDefaultInfoHover) - outlineInverseInfoActive.overrideBy(DarkColorTokens.OutlineDefaultInfoActive) - outlineInversePositiveMinor.overrideBy(DarkColorTokens.OutlineDefaultPositiveMinor) - outlineInversePositiveMinorHover.overrideBy(DarkColorTokens.OutlineDefaultPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(DarkColorTokens.OutlineDefaultPositiveMinorActive) - outlineInverseWarningMinor.overrideBy(DarkColorTokens.OutlineDefaultWarningMinor) - outlineInverseWarningMinorHover.overrideBy(DarkColorTokens.OutlineDefaultWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(DarkColorTokens.OutlineDefaultWarningMinorActive) - outlineInverseNegativeMinor.overrideBy(DarkColorTokens.OutlineDefaultNegativeMinor) - outlineInverseNegativeMinorHover.overrideBy(DarkColorTokens.OutlineDefaultNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(DarkColorTokens.OutlineDefaultNegativeMinorActive) - outlineInverseInfoMinor.overrideBy(DarkColorTokens.OutlineDefaultInfoMinor) - outlineInverseInfoMinorHover.overrideBy(DarkColorTokens.OutlineDefaultInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(DarkColorTokens.OutlineDefaultInfoMinorActive) - outlineInverseTransparentPositive.overrideBy(DarkColorTokens.OutlineDefaultTransparentPositive) - outlineInverseTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentPositiveActive) - outlineInverseTransparentWarning.overrideBy(DarkColorTokens.OutlineDefaultTransparentWarning) - outlineInverseTransparentWarningHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentWarningActive) - outlineInverseTransparentNegative.overrideBy(DarkColorTokens.OutlineDefaultTransparentNegative) - outlineInverseTransparentNegativeHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentNegativeHover) - outlineInverseTransparentNegativeActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentNegativeActive) - outlineInverseTransparentInfo.overrideBy(DarkColorTokens.OutlineDefaultTransparentInfo) - outlineInverseTransparentInfoHover.overrideBy(DarkColorTokens.OutlineDefaultTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(DarkColorTokens.OutlineDefaultTransparentInfoActive) - outlineInverseSolidPrimary.overrideBy(DarkColorTokens.OutlineDefaultSolidPrimary) - outlineInverseSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineDefaultSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineDefaultSolidPrimaryActive) - outlineInverseSolidSecondary.overrideBy(DarkColorTokens.OutlineDefaultSolidSecondary) - outlineInverseSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineDefaultSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineDefaultSolidSecondaryActive) - outlineInverseSolidTertiary.overrideBy(DarkColorTokens.OutlineDefaultSolidTertiary) - outlineInverseSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineDefaultSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineDefaultSolidTertiaryActive) - outlineInverseSolidDefault.overrideBy(DarkColorTokens.OutlineDefaultSolidDefault) - outlineInverseSolidDefaultHover.overrideBy(DarkColorTokens.OutlineDefaultSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(DarkColorTokens.OutlineDefaultSolidDefaultActive) - dataInverseYellow.overrideBy(DarkColorTokens.DataDefaultYellow) - dataInverseYellowHover.overrideBy(DarkColorTokens.DataDefaultYellowHover) - dataInverseYellowActive.overrideBy(DarkColorTokens.DataDefaultYellowActive) - dataInverseYellowMinor.overrideBy(DarkColorTokens.DataDefaultYellowMinor) - dataInverseYellowMinorHover.overrideBy(DarkColorTokens.DataDefaultYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(DarkColorTokens.DataDefaultYellowMinorActive) - dataInverseYellowTransparent.overrideBy(DarkColorTokens.DataDefaultYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(DarkColorTokens.DataDefaultYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(DarkColorTokens.DataDefaultYellowTransparentActive) - textDefaultPrimary.overrideBy(DarkColorTokens.TextInversePrimary) - textDefaultPrimaryBrightness.overrideBy(DarkColorTokens.TextInversePrimaryBrightness) - textDefaultSecondary.overrideBy(DarkColorTokens.TextInverseSecondary) - textDefaultTertiary.overrideBy(DarkColorTokens.TextInverseTertiary) - textDefaultParagraph.overrideBy(DarkColorTokens.TextInverseParagraph) - textDefaultAccent.overrideBy(DarkColorTokens.TextInverseAccent) - textDefaultPositive.overrideBy(DarkColorTokens.TextInversePositive) - textDefaultWarning.overrideBy(DarkColorTokens.TextInverseWarning) - textDefaultNegative.overrideBy(DarkColorTokens.TextInverseNegative) - textDefaultAccentMinor.overrideBy(DarkColorTokens.TextInverseAccentMinor) - textDefaultAccentMinorHover.overrideBy(DarkColorTokens.TextInverseAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(DarkColorTokens.TextInverseAccentMinorActive) - textDefaultInfoHover.overrideBy(DarkColorTokens.TextInverseInfoHover) - textDefaultInfoActive.overrideBy(DarkColorTokens.TextInverseInfoActive) - textDefaultPositiveMinor.overrideBy(DarkColorTokens.TextInversePositiveMinor) - textDefaultPositiveMinorHover.overrideBy(DarkColorTokens.TextInversePositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(DarkColorTokens.TextInversePositiveMinorActive) - textDefaultWarningMinor.overrideBy(DarkColorTokens.TextInverseWarningMinor) - textDefaultWarningMinorHover.overrideBy(DarkColorTokens.TextInverseWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(DarkColorTokens.TextInverseWarningMinorActive) - textDefaultNegativeMinor.overrideBy(DarkColorTokens.TextInverseNegativeMinor) - textDefaultNegativeMinorHover.overrideBy(DarkColorTokens.TextInverseNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(DarkColorTokens.TextInverseNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(DarkColorTokens.TextInverseInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(DarkColorTokens.TextInverseInfoMinorActive) - textDefaultInfo.overrideBy(DarkColorTokens.TextInverseInfo) - textDefaultInfoMinor.overrideBy(DarkColorTokens.TextInverseInfoMinor) - textDefaultPrimaryHover.overrideBy(DarkColorTokens.TextInversePrimaryHover) - textDefaultPrimaryActive.overrideBy(DarkColorTokens.TextInversePrimaryActive) - textDefaultSecondaryHover.overrideBy(DarkColorTokens.TextInverseSecondaryHover) - textDefaultSecondaryActive.overrideBy(DarkColorTokens.TextInverseSecondaryActive) - textDefaultTertiaryHover.overrideBy(DarkColorTokens.TextInverseTertiaryHover) - textDefaultTertiaryActive.overrideBy(DarkColorTokens.TextInverseTertiaryActive) - textDefaultParagraphHover.overrideBy(DarkColorTokens.TextInverseParagraphHover) - textDefaultParagraphActive.overrideBy(DarkColorTokens.TextInverseParagraphActive) - textDefaultAccentHover.overrideBy(DarkColorTokens.TextInverseAccentHover) - textDefaultAccentActive.overrideBy(DarkColorTokens.TextInverseAccentActive) - textDefaultPositiveHover.overrideBy(DarkColorTokens.TextInversePositiveHover) - textDefaultPositiveActive.overrideBy(DarkColorTokens.TextInversePositiveActive) - textDefaultWarningHover.overrideBy(DarkColorTokens.TextInverseWarningHover) - textDefaultWarningActive.overrideBy(DarkColorTokens.TextInverseWarningActive) - textDefaultNegativeHover.overrideBy(DarkColorTokens.TextInverseNegativeHover) - textDefaultNegativeActive.overrideBy(DarkColorTokens.TextInverseNegativeActive) - surfaceDefaultSolidPrimary.overrideBy(DarkColorTokens.SurfaceInverseSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceInverseSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(DarkColorTokens.SurfaceInverseSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(DarkColorTokens.SurfaceInverseSolidTertiary) - surfaceDefaultSolidCard.overrideBy(DarkColorTokens.SurfaceInverseSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceInverseSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(DarkColorTokens.SurfaceInverseTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(DarkColorTokens.SurfaceInverseTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(DarkColorTokens.SurfaceInverseTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(DarkColorTokens.SurfaceInverseTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(DarkColorTokens.SurfaceInverseTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceInverseTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(DarkColorTokens.SurfaceInverseAccent) - surfaceDefaultPositive.overrideBy(DarkColorTokens.SurfaceInversePositive) - surfaceDefaultWarning.overrideBy(DarkColorTokens.SurfaceInverseWarning) - surfaceDefaultNegative.overrideBy(DarkColorTokens.SurfaceInverseNegative) - surfaceDefaultClear.overrideBy(DarkColorTokens.SurfaceInverseClear) - surfaceDefaultTransparentDeep.overrideBy(DarkColorTokens.SurfaceInverseTransparentDeep) - surfaceDefaultTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentDeepActive) - surfaceDefaultAccentMinor.overrideBy(DarkColorTokens.SurfaceInverseAccentMinor) - surfaceDefaultAccentMinorHover.overrideBy(DarkColorTokens.SurfaceInverseAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(DarkColorTokens.SurfaceInverseAccentMinorActive) - surfaceDefaultTransparentAccent.overrideBy(DarkColorTokens.SurfaceInverseTransparentAccent) - surfaceDefaultTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentAccentActive) - surfaceDefaultInfoHover.overrideBy(DarkColorTokens.SurfaceInverseInfoHover) - surfaceDefaultInfoActive.overrideBy(DarkColorTokens.SurfaceInverseInfoActive) - surfaceDefaultPositiveMinor.overrideBy(DarkColorTokens.SurfaceInversePositiveMinor) - surfaceDefaultPositiveMinorHover.overrideBy(DarkColorTokens.SurfaceInversePositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(DarkColorTokens.SurfaceInversePositiveMinorActive) - surfaceDefaultWarningMinor.overrideBy(DarkColorTokens.SurfaceInverseWarningMinor) - surfaceDefaultWarningMinorHover.overrideBy(DarkColorTokens.SurfaceInverseWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(DarkColorTokens.SurfaceInverseWarningMinorActive) - surfaceDefaultNegativeMinor.overrideBy(DarkColorTokens.SurfaceInverseNegativeMinor) - surfaceDefaultNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceInverseNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceInverseNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(DarkColorTokens.SurfaceInverseInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(DarkColorTokens.SurfaceInverseInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentInfoActive) - surfaceDefaultTransparentPositive.overrideBy(DarkColorTokens.SurfaceInverseTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(DarkColorTokens.SurfaceInverseTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(DarkColorTokens.SurfaceInverseTransparentNegative) - surfaceDefaultSolidDefault.overrideBy(DarkColorTokens.SurfaceInverseSolidDefault) - surfaceDefaultSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceInverseSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceInverseSolidDefaultActive) - surfaceDefaultInfo.overrideBy(DarkColorTokens.SurfaceInverseInfo) - surfaceDefaultInfoMinor.overrideBy(DarkColorTokens.SurfaceInverseInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(DarkColorTokens.SurfaceInverseTransparentInfo) - surfaceDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceInverseSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceInverseSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceInverseSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceInverseSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceInverseSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceInverseSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(DarkColorTokens.SurfaceInverseSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(DarkColorTokens.SurfaceInverseSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy( - DarkColorTokens.SurfaceInverseTransparentSecondaryActive, - ) - surfaceDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(DarkColorTokens.SurfaceInverseTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(DarkColorTokens.SurfaceInverseTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(DarkColorTokens.SurfaceInverseAccentHover) - surfaceDefaultAccentActive.overrideBy(DarkColorTokens.SurfaceInverseAccentActive) - surfaceDefaultPositiveHover.overrideBy(DarkColorTokens.SurfaceInversePositiveHover) - surfaceDefaultPositiveActive.overrideBy(DarkColorTokens.SurfaceInversePositiveActive) - surfaceDefaultWarningHover.overrideBy(DarkColorTokens.SurfaceInverseWarningHover) - surfaceDefaultWarningActive.overrideBy(DarkColorTokens.SurfaceInverseWarningActive) - surfaceDefaultNegativeHover.overrideBy(DarkColorTokens.SurfaceInverseNegativeHover) - surfaceDefaultNegativeActive.overrideBy(DarkColorTokens.SurfaceInverseNegativeActive) - surfaceDefaultClearHover.overrideBy(DarkColorTokens.SurfaceInverseClearHover) - surfaceDefaultClearActive.overrideBy(DarkColorTokens.SurfaceInverseClearActive) - backgroundDefaultPrimary.overrideBy(DarkColorTokens.BackgroundInversePrimary) - backgroundDefaultPrimaryBrightness.overrideBy(DarkColorTokens.BackgroundInversePrimaryBrightness) - backgroundDefaultSecondary.overrideBy(DarkColorTokens.BackgroundInverseSecondary) - backgroundDefaultTertiary.overrideBy(DarkColorTokens.BackgroundInverseTertiary) - overlayDefaultSoft.overrideBy(DarkColorTokens.OverlayInverseSoft) - overlayDefaultHard.overrideBy(DarkColorTokens.OverlayInverseHard) - overlayDefaultBlur.overrideBy(DarkColorTokens.OverlayInverseBlur) - outlineDefaultPrimaryHover.overrideBy(DarkColorTokens.OutlineInversePrimaryHover) - outlineDefaultPrimaryActive.overrideBy(DarkColorTokens.OutlineInversePrimaryActive) - outlineDefaultSecondaryHover.overrideBy(DarkColorTokens.OutlineInverseSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(DarkColorTokens.OutlineInverseSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(DarkColorTokens.OutlineInverseTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(DarkColorTokens.OutlineInverseTertiaryActive) - outlineDefaultDefaultHover.overrideBy(DarkColorTokens.OutlineInverseDefaultHover) - outlineDefaultDefaultActive.overrideBy(DarkColorTokens.OutlineInverseDefaultActive) - outlineDefaultTransparentPrimary.overrideBy(DarkColorTokens.OutlineInverseTransparentPrimary) - outlineDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineInverseTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineInverseTransparentPrimaryActive) - outlineDefaultTransparentSecondary.overrideBy(DarkColorTokens.OutlineInverseTransparentSecondary) - outlineDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineInverseTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy( - DarkColorTokens.OutlineInverseTransparentSecondaryActive, - ) - outlineDefaultTransparentTertiary.overrideBy(DarkColorTokens.OutlineInverseTransparentTertiary) - outlineDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineInverseTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineInverseTransparentTertiaryActive) - outlineDefaultTransparentClear.overrideBy(DarkColorTokens.OutlineInverseTransparentClear) - outlineDefaultTransparentClearHover.overrideBy(DarkColorTokens.OutlineInverseTransparentClearHover) - outlineDefaultTransparentClearActive.overrideBy(DarkColorTokens.OutlineInverseTransparentClearActive) - outlineDefaultAccent.overrideBy(DarkColorTokens.OutlineInverseAccent) - outlineDefaultAccentHover.overrideBy(DarkColorTokens.OutlineInverseAccentHover) - outlineDefaultAccentActive.overrideBy(DarkColorTokens.OutlineInverseAccentActive) - outlineDefaultAccentMinor.overrideBy(DarkColorTokens.OutlineInverseAccentMinor) - outlineDefaultAccentMinorHover.overrideBy(DarkColorTokens.OutlineInverseAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(DarkColorTokens.OutlineInverseAccentMinorActive) - outlineDefaultTransparentAccent.overrideBy(DarkColorTokens.OutlineInverseTransparentAccent) - outlineDefaultTransparentAccentHover.overrideBy(DarkColorTokens.OutlineInverseTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(DarkColorTokens.OutlineInverseTransparentAccentActive) - outlineDefaultPositive.overrideBy(DarkColorTokens.OutlineInversePositive) - outlineDefaultPositiveHover.overrideBy(DarkColorTokens.OutlineInversePositiveHover) - outlineDefaultPositiveActive.overrideBy(DarkColorTokens.OutlineInversePositiveActive) - outlineDefaultWarning.overrideBy(DarkColorTokens.OutlineInverseWarning) - outlineDefaultWarningHover.overrideBy(DarkColorTokens.OutlineInverseWarningHover) - outlineDefaultWarningActive.overrideBy(DarkColorTokens.OutlineInverseWarningActive) - outlineDefaultNegative.overrideBy(DarkColorTokens.OutlineInverseNegative) - outlineDefaultNegativeHover.overrideBy(DarkColorTokens.OutlineInverseNegativeHover) - outlineDefaultNegativeActive.overrideBy(DarkColorTokens.OutlineInverseNegativeActive) - outlineDefaultInfoHover.overrideBy(DarkColorTokens.OutlineInverseInfoHover) - outlineDefaultInfoActive.overrideBy(DarkColorTokens.OutlineInverseInfoActive) - outlineDefaultPositiveMinor.overrideBy(DarkColorTokens.OutlineInversePositiveMinor) - outlineDefaultPositiveMinorHover.overrideBy(DarkColorTokens.OutlineInversePositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(DarkColorTokens.OutlineInversePositiveMinorActive) - outlineDefaultWarningMinor.overrideBy(DarkColorTokens.OutlineInverseWarningMinor) - outlineDefaultWarningMinorHover.overrideBy(DarkColorTokens.OutlineInverseWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(DarkColorTokens.OutlineInverseWarningMinorActive) - outlineDefaultNegativeMinor.overrideBy(DarkColorTokens.OutlineInverseNegativeMinor) - outlineDefaultNegativeMinorHover.overrideBy(DarkColorTokens.OutlineInverseNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(DarkColorTokens.OutlineInverseNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(DarkColorTokens.OutlineInverseInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(DarkColorTokens.OutlineInverseInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineInverseTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineInverseTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(DarkColorTokens.OutlineInverseTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(DarkColorTokens.OutlineInverseTransparentWarningActive) - outlineDefaultTransparentInfoHover.overrideBy(DarkColorTokens.OutlineInverseTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(DarkColorTokens.OutlineInverseTransparentInfoActive) - outlineDefaultTransparentPositive.overrideBy(DarkColorTokens.OutlineInverseTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(DarkColorTokens.OutlineInverseTransparentWarning) - outlineDefaultTransparentNegative.overrideBy(DarkColorTokens.OutlineInverseTransparentNegative) - outlineDefaultTransparentNegativeHover.overrideBy(DarkColorTokens.OutlineInverseTransparentNegativeHover) - outlineDefaultTransparentNegativeActive.overrideBy(DarkColorTokens.OutlineInverseTransparentNegativeActive) - outlineDefaultInfoMinor.overrideBy(DarkColorTokens.OutlineInverseInfoMinor) - outlineDefaultTransparentInfo.overrideBy(DarkColorTokens.OutlineInverseTransparentInfo) - outlineDefaultInfo.overrideBy(DarkColorTokens.OutlineInverseInfo) - outlineDefaultSolidPrimary.overrideBy(DarkColorTokens.OutlineInverseSolidPrimary) - outlineDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineInverseSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineInverseSolidPrimaryActive) - outlineDefaultSolidSecondary.overrideBy(DarkColorTokens.OutlineInverseSolidSecondary) - outlineDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineInverseSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineInverseSolidSecondaryActive) - outlineDefaultSolidTertiary.overrideBy(DarkColorTokens.OutlineInverseSolidTertiary) - outlineDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineInverseSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineInverseSolidTertiaryActive) - outlineDefaultSolidDefault.overrideBy(DarkColorTokens.OutlineInverseSolidDefault) - outlineDefaultSolidDefaultHover.overrideBy(DarkColorTokens.OutlineInverseSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(DarkColorTokens.OutlineInverseSolidDefaultActive) - dataDefaultYellow.overrideBy(DarkColorTokens.DataInverseYellow) - dataDefaultYellowHover.overrideBy(DarkColorTokens.DataInverseYellowHover) - dataDefaultYellowActive.overrideBy(DarkColorTokens.DataInverseYellowActive) - dataDefaultYellowMinor.overrideBy(DarkColorTokens.DataInverseYellowMinor) - dataDefaultYellowMinorHover.overrideBy(DarkColorTokens.DataInverseYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(DarkColorTokens.DataInverseYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(DarkColorTokens.DataInverseYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(DarkColorTokens.DataInverseYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(DarkColorTokens.DataInverseYellowTransparentActive) - } -} - -private val lightInverseColors: PlasmaGigaAppColors by lazy { - lightPlasmaGigaAppColors { - textInversePrimary.overrideBy(LightColorTokens.TextDefaultPrimary) - textInversePrimaryBrightness.overrideBy(LightColorTokens.TextDefaultPrimaryBrightness) - textInverseSecondary.overrideBy(LightColorTokens.TextDefaultSecondary) - textInverseTertiary.overrideBy(LightColorTokens.TextDefaultTertiary) - textInverseParagraph.overrideBy(LightColorTokens.TextDefaultParagraph) - textInversePositive.overrideBy(LightColorTokens.TextDefaultPositive) - textInverseWarning.overrideBy(LightColorTokens.TextDefaultWarning) - textInverseNegative.overrideBy(LightColorTokens.TextDefaultNegative) - textInversePrimaryHover.overrideBy(LightColorTokens.TextDefaultPrimaryHover) - textInversePrimaryActive.overrideBy(LightColorTokens.TextDefaultPrimaryActive) - textInverseSecondaryHover.overrideBy(LightColorTokens.TextDefaultSecondaryHover) - textInverseSecondaryActive.overrideBy(LightColorTokens.TextDefaultSecondaryActive) - textInverseTertiaryHover.overrideBy(LightColorTokens.TextDefaultTertiaryHover) - textInverseTertiaryActive.overrideBy(LightColorTokens.TextDefaultTertiaryActive) - textInverseParagraphHover.overrideBy(LightColorTokens.TextDefaultParagraphHover) - textInverseParagraphActive.overrideBy(LightColorTokens.TextDefaultParagraphActive) - textInverseAccentHover.overrideBy(LightColorTokens.TextDefaultAccentHover) - textInverseAccentActive.overrideBy(LightColorTokens.TextDefaultAccentActive) - textInversePositiveHover.overrideBy(LightColorTokens.TextDefaultPositiveHover) - textInversePositiveActive.overrideBy(LightColorTokens.TextDefaultPositiveActive) - textInverseWarningHover.overrideBy(LightColorTokens.TextDefaultWarningHover) - textInverseWarningActive.overrideBy(LightColorTokens.TextDefaultWarningActive) - textInverseNegativeHover.overrideBy(LightColorTokens.TextDefaultNegativeHover) - textInverseNegativeActive.overrideBy(LightColorTokens.TextDefaultNegativeActive) - textInverseAccentMinor.overrideBy(LightColorTokens.TextDefaultAccentMinor) - textInverseAccentMinorHover.overrideBy(LightColorTokens.TextDefaultAccentMinorHover) - textInverseAccentMinorActive.overrideBy(LightColorTokens.TextDefaultAccentMinorActive) - textInverseInfoHover.overrideBy(LightColorTokens.TextDefaultInfoHover) - textInverseInfoActive.overrideBy(LightColorTokens.TextDefaultInfoActive) - textInversePositiveMinorHover.overrideBy(LightColorTokens.TextDefaultPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(LightColorTokens.TextDefaultPositiveMinorActive) - textInverseWarningMinorHover.overrideBy(LightColorTokens.TextDefaultWarningMinorHover) - textInverseWarningMinorActive.overrideBy(LightColorTokens.TextDefaultWarningMinorActive) - textInverseNegativeMinorHover.overrideBy(LightColorTokens.TextDefaultNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(LightColorTokens.TextDefaultNegativeMinorActive) - textInverseInfoMinorHover.overrideBy(LightColorTokens.TextDefaultInfoMinorHover) - textInverseInfoMinorActive.overrideBy(LightColorTokens.TextDefaultInfoMinorActive) - textInverseAccent.overrideBy(LightColorTokens.TextDefaultAccent) - textInverseInfo.overrideBy(LightColorTokens.TextDefaultInfo) - textInversePositiveMinor.overrideBy(LightColorTokens.TextDefaultPositiveMinor) - textInverseWarningMinor.overrideBy(LightColorTokens.TextDefaultWarningMinor) - textInverseNegativeMinor.overrideBy(LightColorTokens.TextDefaultNegativeMinor) - textInverseInfoMinor.overrideBy(LightColorTokens.TextDefaultInfoMinor) - surfaceInverseSolidDefault.overrideBy(LightColorTokens.SurfaceDefaultSolidDefault) - surfaceInverseSolidPrimary.overrideBy(LightColorTokens.SurfaceDefaultSolidPrimary) - surfaceInverseSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceDefaultSolidPrimaryBrightness) - surfaceInverseSolidSecondary.overrideBy(LightColorTokens.SurfaceDefaultSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(LightColorTokens.SurfaceDefaultSolidTertiary) - surfaceInverseSolidCard.overrideBy(LightColorTokens.SurfaceDefaultSolidCard) - surfaceInverseSolidCardBrightness.overrideBy(LightColorTokens.SurfaceDefaultSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(LightColorTokens.SurfaceDefaultTransparentDefault) - surfaceInverseTransparentPrimary.overrideBy(LightColorTokens.SurfaceDefaultTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(LightColorTokens.SurfaceDefaultTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(LightColorTokens.SurfaceDefaultTransparentTertiary) - surfaceInverseTransparentCard.overrideBy(LightColorTokens.SurfaceDefaultTransparentCard) - surfaceInverseTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceDefaultTransparentCardBrightness) - surfaceInverseAccent.overrideBy(LightColorTokens.SurfaceDefaultAccent) - surfaceInversePositive.overrideBy(LightColorTokens.SurfaceDefaultPositive) - surfaceInverseWarning.overrideBy(LightColorTokens.SurfaceDefaultWarning) - surfaceInverseNegative.overrideBy(LightColorTokens.SurfaceDefaultNegative) - surfaceInverseClear.overrideBy(LightColorTokens.SurfaceDefaultClear) - surfaceInverseSolidDefaultHover.overrideBy(LightColorTokens.SurfaceDefaultSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(LightColorTokens.SurfaceDefaultSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceDefaultSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceDefaultSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceDefaultSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceDefaultSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceDefaultSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceDefaultSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(LightColorTokens.SurfaceDefaultSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(LightColorTokens.SurfaceDefaultSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceDefaultTransparentSecondaryActive, - ) - surfaceInverseTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentCardActive) - surfaceInverseAccentHover.overrideBy(LightColorTokens.SurfaceDefaultAccentHover) - surfaceInverseAccentActive.overrideBy(LightColorTokens.SurfaceDefaultAccentActive) - surfaceInversePositiveHover.overrideBy(LightColorTokens.SurfaceDefaultPositiveHover) - surfaceInversePositiveActive.overrideBy(LightColorTokens.SurfaceDefaultPositiveActive) - surfaceInverseWarningHover.overrideBy(LightColorTokens.SurfaceDefaultWarningHover) - surfaceInverseWarningActive.overrideBy(LightColorTokens.SurfaceDefaultWarningActive) - surfaceInverseNegativeHover.overrideBy(LightColorTokens.SurfaceDefaultNegativeHover) - surfaceInverseNegativeActive.overrideBy(LightColorTokens.SurfaceDefaultNegativeActive) - surfaceInverseClearHover.overrideBy(LightColorTokens.SurfaceDefaultClearHover) - surfaceInverseClearActive.overrideBy(LightColorTokens.SurfaceDefaultClearActive) - surfaceInverseTransparentDeep.overrideBy(LightColorTokens.SurfaceDefaultTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentDeepActive) - surfaceInverseAccentMinor.overrideBy(LightColorTokens.SurfaceDefaultAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(LightColorTokens.SurfaceDefaultAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(LightColorTokens.SurfaceDefaultAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(LightColorTokens.SurfaceDefaultTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentAccentActive) - surfaceInverseInfo.overrideBy(LightColorTokens.SurfaceDefaultInfo) - surfaceInverseInfoHover.overrideBy(LightColorTokens.SurfaceDefaultInfoHover) - surfaceInverseInfoActive.overrideBy(LightColorTokens.SurfaceDefaultInfoActive) - surfaceInversePositiveMinor.overrideBy(LightColorTokens.SurfaceDefaultPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(LightColorTokens.SurfaceDefaultPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(LightColorTokens.SurfaceDefaultPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(LightColorTokens.SurfaceDefaultWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(LightColorTokens.SurfaceDefaultWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(LightColorTokens.SurfaceDefaultWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(LightColorTokens.SurfaceDefaultNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(LightColorTokens.SurfaceDefaultNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(LightColorTokens.SurfaceDefaultNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(LightColorTokens.SurfaceDefaultInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(LightColorTokens.SurfaceDefaultInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(LightColorTokens.SurfaceDefaultInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(LightColorTokens.SurfaceDefaultTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(LightColorTokens.SurfaceDefaultTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(LightColorTokens.SurfaceDefaultTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(LightColorTokens.SurfaceDefaultTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(LightColorTokens.SurfaceDefaultTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(LightColorTokens.SurfaceDefaultTransparentInfoActive) - backgroundInversePrimaryBrightness.overrideBy(LightColorTokens.BackgroundDefaultPrimaryBrightness) - backgroundInverseSecondary.overrideBy(LightColorTokens.BackgroundDefaultSecondary) - backgroundInverseTertiary.overrideBy(LightColorTokens.BackgroundDefaultTertiary) - backgroundInversePrimary.overrideBy(LightColorTokens.BackgroundDefaultPrimary) - overlayInverseHard.overrideBy(LightColorTokens.OverlayDefaultHard) - overlayInverseSoft.overrideBy(LightColorTokens.OverlayDefaultSoft) - overlayInverseBlur.overrideBy(LightColorTokens.OverlayDefaultBlur) - outlineInversePrimaryHover.overrideBy(LightColorTokens.OutlineDefaultPrimaryHover) - outlineInversePrimaryActive.overrideBy(LightColorTokens.OutlineDefaultPrimaryActive) - outlineInverseSecondaryHover.overrideBy(LightColorTokens.OutlineDefaultSecondaryHover) - outlineInverseSecondaryActive.overrideBy(LightColorTokens.OutlineDefaultSecondaryActive) - outlineInverseTertiaryHover.overrideBy(LightColorTokens.OutlineDefaultTertiaryHover) - outlineInverseTertiaryActive.overrideBy(LightColorTokens.OutlineDefaultTertiaryActive) - outlineInverseDefaultHover.overrideBy(LightColorTokens.OutlineDefaultDefaultHover) - outlineInverseDefaultActive.overrideBy(LightColorTokens.OutlineDefaultDefaultActive) - outlineInverseTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineDefaultTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineDefaultTransparentPrimaryActive) - outlineInverseTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineDefaultTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineDefaultTransparentSecondaryActive, - ) - outlineInverseTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineDefaultTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineDefaultTransparentTertiaryActive) - outlineInverseTransparentClearHover.overrideBy(LightColorTokens.OutlineDefaultTransparentClearHover) - outlineInverseTransparentClearActive.overrideBy(LightColorTokens.OutlineDefaultTransparentClearActive) - outlineInverseAccentHover.overrideBy(LightColorTokens.OutlineDefaultAccentHover) - outlineInverseAccentActive.overrideBy(LightColorTokens.OutlineDefaultAccentActive) - outlineInverseAccentMinorHover.overrideBy(LightColorTokens.OutlineDefaultAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(LightColorTokens.OutlineDefaultAccentMinorActive) - outlineInverseTransparentAccentHover.overrideBy(LightColorTokens.OutlineDefaultTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(LightColorTokens.OutlineDefaultTransparentAccentActive) - outlineInversePositiveHover.overrideBy(LightColorTokens.OutlineDefaultPositiveHover) - outlineInversePositiveActive.overrideBy(LightColorTokens.OutlineDefaultPositiveActive) - outlineInverseWarningHover.overrideBy(LightColorTokens.OutlineDefaultWarningHover) - outlineInverseWarningActive.overrideBy(LightColorTokens.OutlineDefaultWarningActive) - outlineInverseNegativeHover.overrideBy(LightColorTokens.OutlineDefaultNegativeHover) - outlineInverseNegativeActive.overrideBy(LightColorTokens.OutlineDefaultNegativeActive) - outlineInverseInfoHover.overrideBy(LightColorTokens.OutlineDefaultInfoHover) - outlineInverseInfoActive.overrideBy(LightColorTokens.OutlineDefaultInfoActive) - outlineInversePositiveMinorHover.overrideBy(LightColorTokens.OutlineDefaultPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(LightColorTokens.OutlineDefaultPositiveMinorActive) - outlineInverseWarningMinorHover.overrideBy(LightColorTokens.OutlineDefaultWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(LightColorTokens.OutlineDefaultWarningMinorActive) - outlineInverseNegativeMinorHover.overrideBy(LightColorTokens.OutlineDefaultNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(LightColorTokens.OutlineDefaultNegativeMinorActive) - outlineInverseInfoMinorHover.overrideBy(LightColorTokens.OutlineDefaultInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(LightColorTokens.OutlineDefaultInfoMinorActive) - outlineInverseTransparentPositiveHover.overrideBy(LightColorTokens.OutlineDefaultTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(LightColorTokens.OutlineDefaultTransparentPositiveActive) - outlineInverseTransparentWarningHover.overrideBy(LightColorTokens.OutlineDefaultTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(LightColorTokens.OutlineDefaultTransparentWarningActive) - outlineInverseTransparentNegativeHover.overrideBy(LightColorTokens.OutlineDefaultTransparentNegativeHover) - outlineInverseTransparentNegativeActive.overrideBy(LightColorTokens.OutlineDefaultTransparentNegativeActive) - outlineInverseTransparentInfoHover.overrideBy(LightColorTokens.OutlineDefaultTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(LightColorTokens.OutlineDefaultTransparentInfoActive) - outlineInverseTransparentPrimary.overrideBy(LightColorTokens.OutlineDefaultTransparentPrimary) - outlineInverseTransparentSecondary.overrideBy(LightColorTokens.OutlineDefaultTransparentSecondary) - outlineInverseTransparentTertiary.overrideBy(LightColorTokens.OutlineDefaultTransparentTertiary) - outlineInverseTransparentClear.overrideBy(LightColorTokens.OutlineDefaultTransparentClear) - outlineInverseAccent.overrideBy(LightColorTokens.OutlineDefaultAccent) - outlineInverseAccentMinor.overrideBy(LightColorTokens.OutlineDefaultAccentMinor) - outlineInverseTransparentAccent.overrideBy(LightColorTokens.OutlineDefaultTransparentAccent) - outlineInversePositive.overrideBy(LightColorTokens.OutlineDefaultPositive) - outlineInverseWarning.overrideBy(LightColorTokens.OutlineDefaultWarning) - outlineInverseNegative.overrideBy(LightColorTokens.OutlineDefaultNegative) - outlineInverseInfo.overrideBy(LightColorTokens.OutlineDefaultInfo) - outlineInversePositiveMinor.overrideBy(LightColorTokens.OutlineDefaultPositiveMinor) - outlineInverseWarningMinor.overrideBy(LightColorTokens.OutlineDefaultWarningMinor) - outlineInverseNegativeMinor.overrideBy(LightColorTokens.OutlineDefaultNegativeMinor) - outlineInverseInfoMinor.overrideBy(LightColorTokens.OutlineDefaultInfoMinor) - outlineInverseTransparentPositive.overrideBy(LightColorTokens.OutlineDefaultTransparentPositive) - outlineInverseTransparentWarning.overrideBy(LightColorTokens.OutlineDefaultTransparentWarning) - outlineInverseTransparentNegative.overrideBy(LightColorTokens.OutlineDefaultTransparentNegative) - outlineInverseTransparentInfo.overrideBy(LightColorTokens.OutlineDefaultTransparentInfo) - outlineInverseSolidPrimaryHover.overrideBy(LightColorTokens.OutlineDefaultSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(LightColorTokens.OutlineDefaultSolidPrimaryActive) - outlineInverseSolidSecondaryHover.overrideBy(LightColorTokens.OutlineDefaultSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(LightColorTokens.OutlineDefaultSolidSecondaryActive) - outlineInverseSolidTertiaryHover.overrideBy(LightColorTokens.OutlineDefaultSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(LightColorTokens.OutlineDefaultSolidTertiaryActive) - outlineInverseSolidDefaultHover.overrideBy(LightColorTokens.OutlineDefaultSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(LightColorTokens.OutlineDefaultSolidDefaultActive) - outlineInverseSolidPrimary.overrideBy(LightColorTokens.OutlineDefaultSolidPrimary) - outlineInverseSolidSecondary.overrideBy(LightColorTokens.OutlineDefaultSolidSecondary) - outlineInverseSolidTertiary.overrideBy(LightColorTokens.OutlineDefaultSolidTertiary) - outlineInverseSolidDefault.overrideBy(LightColorTokens.OutlineDefaultSolidDefault) - dataInverseYellow.overrideBy(LightColorTokens.DataDefaultYellow) - dataInverseYellowHover.overrideBy(LightColorTokens.DataDefaultYellowHover) - dataInverseYellowActive.overrideBy(LightColorTokens.DataDefaultYellowActive) - dataInverseYellowMinor.overrideBy(LightColorTokens.DataDefaultYellowMinor) - dataInverseYellowMinorHover.overrideBy(LightColorTokens.DataDefaultYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(LightColorTokens.DataDefaultYellowMinorActive) - dataInverseYellowTransparent.overrideBy(LightColorTokens.DataDefaultYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(LightColorTokens.DataDefaultYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(LightColorTokens.DataDefaultYellowTransparentActive) - textDefaultPrimary.overrideBy(LightColorTokens.TextInversePrimary) - textDefaultPrimaryBrightness.overrideBy(LightColorTokens.TextInversePrimaryBrightness) - textDefaultSecondary.overrideBy(LightColorTokens.TextInverseSecondary) - textDefaultTertiary.overrideBy(LightColorTokens.TextInverseTertiary) - textDefaultParagraph.overrideBy(LightColorTokens.TextInverseParagraph) - textDefaultAccent.overrideBy(LightColorTokens.TextInverseAccent) - textDefaultPositive.overrideBy(LightColorTokens.TextInversePositive) - textDefaultWarning.overrideBy(LightColorTokens.TextInverseWarning) - textDefaultNegative.overrideBy(LightColorTokens.TextInverseNegative) - textDefaultAccentMinorHover.overrideBy(LightColorTokens.TextInverseAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(LightColorTokens.TextInverseAccentMinorActive) - textDefaultInfoHover.overrideBy(LightColorTokens.TextInverseInfoHover) - textDefaultInfoActive.overrideBy(LightColorTokens.TextInverseInfoActive) - textDefaultPositiveMinorHover.overrideBy(LightColorTokens.TextInversePositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(LightColorTokens.TextInversePositiveMinorActive) - textDefaultWarningMinorHover.overrideBy(LightColorTokens.TextInverseWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(LightColorTokens.TextInverseWarningMinorActive) - textDefaultNegativeMinorHover.overrideBy(LightColorTokens.TextInverseNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(LightColorTokens.TextInverseNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(LightColorTokens.TextInverseInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(LightColorTokens.TextInverseInfoMinorActive) - textDefaultAccentMinor.overrideBy(LightColorTokens.TextInverseAccentMinor) - textDefaultPositiveMinor.overrideBy(LightColorTokens.TextInversePositiveMinor) - textDefaultWarningMinor.overrideBy(LightColorTokens.TextInverseWarningMinor) - textDefaultNegativeMinor.overrideBy(LightColorTokens.TextInverseNegativeMinor) - textDefaultInfo.overrideBy(LightColorTokens.TextInverseInfo) - textDefaultInfoMinor.overrideBy(LightColorTokens.TextInverseInfoMinor) - textDefaultPrimaryHover.overrideBy(LightColorTokens.TextInversePrimaryHover) - textDefaultPrimaryActive.overrideBy(LightColorTokens.TextInversePrimaryActive) - textDefaultSecondaryHover.overrideBy(LightColorTokens.TextInverseSecondaryHover) - textDefaultSecondaryActive.overrideBy(LightColorTokens.TextInverseSecondaryActive) - textDefaultTertiaryHover.overrideBy(LightColorTokens.TextInverseTertiaryHover) - textDefaultTertiaryActive.overrideBy(LightColorTokens.TextInverseTertiaryActive) - textDefaultParagraphHover.overrideBy(LightColorTokens.TextInverseParagraphHover) - textDefaultParagraphActive.overrideBy(LightColorTokens.TextInverseParagraphActive) - textDefaultAccentHover.overrideBy(LightColorTokens.TextInverseAccentHover) - textDefaultAccentActive.overrideBy(LightColorTokens.TextInverseAccentActive) - textDefaultPositiveHover.overrideBy(LightColorTokens.TextInversePositiveHover) - textDefaultPositiveActive.overrideBy(LightColorTokens.TextInversePositiveActive) - textDefaultWarningHover.overrideBy(LightColorTokens.TextInverseWarningHover) - textDefaultWarningActive.overrideBy(LightColorTokens.TextInverseWarningActive) - textDefaultNegativeHover.overrideBy(LightColorTokens.TextInverseNegativeHover) - textDefaultNegativeActive.overrideBy(LightColorTokens.TextInverseNegativeActive) - surfaceDefaultSolidDefault.overrideBy(LightColorTokens.SurfaceInverseSolidDefault) - surfaceDefaultSolidPrimary.overrideBy(LightColorTokens.SurfaceInverseSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceInverseSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(LightColorTokens.SurfaceInverseSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(LightColorTokens.SurfaceInverseSolidTertiary) - surfaceDefaultSolidCard.overrideBy(LightColorTokens.SurfaceInverseSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(LightColorTokens.SurfaceInverseSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(LightColorTokens.SurfaceInverseTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(LightColorTokens.SurfaceInverseTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(LightColorTokens.SurfaceInverseTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(LightColorTokens.SurfaceInverseTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(LightColorTokens.SurfaceInverseTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceInverseTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(LightColorTokens.SurfaceInverseAccent) - surfaceDefaultPositive.overrideBy(LightColorTokens.SurfaceInversePositive) - surfaceDefaultWarning.overrideBy(LightColorTokens.SurfaceInverseWarning) - surfaceDefaultNegative.overrideBy(LightColorTokens.SurfaceInverseNegative) - surfaceDefaultClear.overrideBy(LightColorTokens.SurfaceInverseClear) - surfaceDefaultTransparentDeep.overrideBy(LightColorTokens.SurfaceInverseTransparentDeep) - surfaceDefaultAccentMinorHover.overrideBy(LightColorTokens.SurfaceInverseAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(LightColorTokens.SurfaceInverseAccentMinorActive) - surfaceDefaultTransparentAccentHover.overrideBy(LightColorTokens.SurfaceInverseTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(LightColorTokens.SurfaceInverseTransparentAccentActive) - surfaceDefaultInfoHover.overrideBy(LightColorTokens.SurfaceInverseInfoHover) - surfaceDefaultInfoActive.overrideBy(LightColorTokens.SurfaceInverseInfoActive) - surfaceDefaultPositiveMinorHover.overrideBy(LightColorTokens.SurfaceInversePositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(LightColorTokens.SurfaceInversePositiveMinorActive) - surfaceDefaultWarningMinorHover.overrideBy(LightColorTokens.SurfaceInverseWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(LightColorTokens.SurfaceInverseWarningMinorActive) - surfaceDefaultNegativeMinorHover.overrideBy(LightColorTokens.SurfaceInverseNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(LightColorTokens.SurfaceInverseNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(LightColorTokens.SurfaceInverseInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(LightColorTokens.SurfaceInverseInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceInverseTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceInverseTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(LightColorTokens.SurfaceInverseTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(LightColorTokens.SurfaceInverseTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceInverseTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceInverseTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(LightColorTokens.SurfaceInverseTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(LightColorTokens.SurfaceInverseTransparentInfoActive) - surfaceDefaultAccentMinor.overrideBy(LightColorTokens.SurfaceInverseAccentMinor) - surfaceDefaultTransparentAccent.overrideBy(LightColorTokens.SurfaceInverseTransparentAccent) - surfaceDefaultPositiveMinor.overrideBy(LightColorTokens.SurfaceInversePositiveMinor) - surfaceDefaultWarningMinor.overrideBy(LightColorTokens.SurfaceInverseWarningMinor) - surfaceDefaultNegativeMinor.overrideBy(LightColorTokens.SurfaceInverseNegativeMinor) - surfaceDefaultTransparentPositive.overrideBy(LightColorTokens.SurfaceInverseTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(LightColorTokens.SurfaceInverseTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(LightColorTokens.SurfaceInverseTransparentNegative) - surfaceDefaultInfo.overrideBy(LightColorTokens.SurfaceInverseInfo) - surfaceDefaultInfoMinor.overrideBy(LightColorTokens.SurfaceInverseInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(LightColorTokens.SurfaceInverseTransparentInfo) - surfaceDefaultSolidDefaultHover.overrideBy(LightColorTokens.SurfaceInverseSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(LightColorTokens.SurfaceInverseSolidDefaultActive) - surfaceDefaultSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceInverseSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceInverseSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceInverseSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceInverseSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceInverseSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceInverseSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(LightColorTokens.SurfaceInverseSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(LightColorTokens.SurfaceInverseSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceInverseTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceInverseTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceInverseTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceInverseTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceInverseTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceInverseTransparentSecondaryActive, - ) - surfaceDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceInverseTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceInverseTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(LightColorTokens.SurfaceInverseTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(LightColorTokens.SurfaceInverseTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(LightColorTokens.SurfaceInverseAccentHover) - surfaceDefaultAccentActive.overrideBy(LightColorTokens.SurfaceInverseAccentActive) - surfaceDefaultPositiveHover.overrideBy(LightColorTokens.SurfaceInversePositiveHover) - surfaceDefaultPositiveActive.overrideBy(LightColorTokens.SurfaceInversePositiveActive) - surfaceDefaultWarningHover.overrideBy(LightColorTokens.SurfaceInverseWarningHover) - surfaceDefaultWarningActive.overrideBy(LightColorTokens.SurfaceInverseWarningActive) - surfaceDefaultNegativeHover.overrideBy(LightColorTokens.SurfaceInverseNegativeHover) - surfaceDefaultNegativeActive.overrideBy(LightColorTokens.SurfaceInverseNegativeActive) - surfaceDefaultClearHover.overrideBy(LightColorTokens.SurfaceInverseClearHover) - surfaceDefaultClearActive.overrideBy(LightColorTokens.SurfaceInverseClearActive) - surfaceDefaultTransparentDeepHover.overrideBy(LightColorTokens.SurfaceInverseTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(LightColorTokens.SurfaceInverseTransparentDeepActive) - backgroundDefaultPrimary.overrideBy(LightColorTokens.BackgroundInversePrimary) - backgroundDefaultPrimaryBrightness.overrideBy(LightColorTokens.BackgroundInversePrimaryBrightness) - backgroundDefaultSecondary.overrideBy(LightColorTokens.BackgroundInverseSecondary) - backgroundDefaultTertiary.overrideBy(LightColorTokens.BackgroundInverseTertiary) - overlayDefaultSoft.overrideBy(LightColorTokens.OverlayInverseSoft) - overlayDefaultHard.overrideBy(LightColorTokens.OverlayInverseHard) - overlayDefaultBlur.overrideBy(LightColorTokens.OverlayInverseBlur) - outlineDefaultSecondaryHover.overrideBy(LightColorTokens.OutlineInverseSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(LightColorTokens.OutlineInverseSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(LightColorTokens.OutlineInverseTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(LightColorTokens.OutlineInverseTertiaryActive) - outlineDefaultDefaultHover.overrideBy(LightColorTokens.OutlineInverseDefaultHover) - outlineDefaultDefaultActive.overrideBy(LightColorTokens.OutlineInverseDefaultActive) - outlineDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineInverseTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineInverseTransparentPrimaryActive) - outlineDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineInverseTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineInverseTransparentSecondaryActive, - ) - outlineDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineInverseTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineInverseTransparentTertiaryActive) - outlineDefaultTransparentClearHover.overrideBy(LightColorTokens.OutlineInverseTransparentClearHover) - outlineDefaultTransparentClearActive.overrideBy(LightColorTokens.OutlineInverseTransparentClearActive) - outlineDefaultAccentHover.overrideBy(LightColorTokens.OutlineInverseAccentHover) - outlineDefaultAccentActive.overrideBy(LightColorTokens.OutlineInverseAccentActive) - outlineDefaultAccentMinorHover.overrideBy(LightColorTokens.OutlineInverseAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(LightColorTokens.OutlineInverseAccentMinorActive) - outlineDefaultTransparentAccentHover.overrideBy(LightColorTokens.OutlineInverseTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(LightColorTokens.OutlineInverseTransparentAccentActive) - outlineDefaultPositiveHover.overrideBy(LightColorTokens.OutlineInversePositiveHover) - outlineDefaultPositiveActive.overrideBy(LightColorTokens.OutlineInversePositiveActive) - outlineDefaultWarningHover.overrideBy(LightColorTokens.OutlineInverseWarningHover) - outlineDefaultWarningActive.overrideBy(LightColorTokens.OutlineInverseWarningActive) - outlineDefaultNegativeHover.overrideBy(LightColorTokens.OutlineInverseNegativeHover) - outlineDefaultNegativeActive.overrideBy(LightColorTokens.OutlineInverseNegativeActive) - outlineDefaultInfoHover.overrideBy(LightColorTokens.OutlineInverseInfoHover) - outlineDefaultInfoActive.overrideBy(LightColorTokens.OutlineInverseInfoActive) - outlineDefaultPositiveMinorHover.overrideBy(LightColorTokens.OutlineInversePositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(LightColorTokens.OutlineInversePositiveMinorActive) - outlineDefaultWarningMinorHover.overrideBy(LightColorTokens.OutlineInverseWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(LightColorTokens.OutlineInverseWarningMinorActive) - outlineDefaultNegativeMinorHover.overrideBy(LightColorTokens.OutlineInverseNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(LightColorTokens.OutlineInverseNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(LightColorTokens.OutlineInverseInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(LightColorTokens.OutlineInverseInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(LightColorTokens.OutlineInverseTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(LightColorTokens.OutlineInverseTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(LightColorTokens.OutlineInverseTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(LightColorTokens.OutlineInverseTransparentWarningActive) - outlineDefaultTransparentInfoHover.overrideBy(LightColorTokens.OutlineInverseTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(LightColorTokens.OutlineInverseTransparentInfoActive) - outlineDefaultPrimaryHover.overrideBy(LightColorTokens.OutlineInversePrimaryHover) - outlineDefaultPrimaryActive.overrideBy(LightColorTokens.OutlineInversePrimaryActive) - outlineDefaultTransparentPrimary.overrideBy(LightColorTokens.OutlineInverseTransparentPrimary) - outlineDefaultTransparentSecondary.overrideBy(LightColorTokens.OutlineInverseTransparentSecondary) - outlineDefaultTransparentTertiary.overrideBy(LightColorTokens.OutlineInverseTransparentTertiary) - outlineDefaultTransparentClear.overrideBy(LightColorTokens.OutlineInverseTransparentClear) - outlineDefaultAccent.overrideBy(LightColorTokens.OutlineInverseAccent) - outlineDefaultAccentMinor.overrideBy(LightColorTokens.OutlineInverseAccentMinor) - outlineDefaultTransparentAccent.overrideBy(LightColorTokens.OutlineInverseTransparentAccent) - outlineDefaultPositive.overrideBy(LightColorTokens.OutlineInversePositive) - outlineDefaultWarning.overrideBy(LightColorTokens.OutlineInverseWarning) - outlineDefaultNegative.overrideBy(LightColorTokens.OutlineInverseNegative) - outlineDefaultPositiveMinor.overrideBy(LightColorTokens.OutlineInversePositiveMinor) - outlineDefaultWarningMinor.overrideBy(LightColorTokens.OutlineInverseWarningMinor) - outlineDefaultNegativeMinor.overrideBy(LightColorTokens.OutlineInverseNegativeMinor) - outlineDefaultTransparentPositive.overrideBy(LightColorTokens.OutlineInverseTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(LightColorTokens.OutlineInverseTransparentWarning) - outlineDefaultTransparentNegative.overrideBy(LightColorTokens.OutlineInverseTransparentNegative) - outlineDefaultTransparentNegativeHover.overrideBy(LightColorTokens.OutlineInverseTransparentNegativeHover) - outlineDefaultTransparentNegativeActive.overrideBy(LightColorTokens.OutlineInverseTransparentNegativeActive) - outlineDefaultInfo.overrideBy(LightColorTokens.OutlineInverseInfo) - outlineDefaultInfoMinor.overrideBy(LightColorTokens.OutlineInverseInfoMinor) - outlineDefaultTransparentInfo.overrideBy(LightColorTokens.OutlineInverseTransparentInfo) - outlineDefaultSolidPrimaryHover.overrideBy(LightColorTokens.OutlineInverseSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(LightColorTokens.OutlineInverseSolidPrimaryActive) - outlineDefaultSolidSecondaryHover.overrideBy(LightColorTokens.OutlineInverseSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(LightColorTokens.OutlineInverseSolidSecondaryActive) - outlineDefaultSolidTertiaryHover.overrideBy(LightColorTokens.OutlineInverseSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(LightColorTokens.OutlineInverseSolidTertiaryActive) - outlineDefaultSolidDefaultHover.overrideBy(LightColorTokens.OutlineInverseSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(LightColorTokens.OutlineInverseSolidDefaultActive) - outlineDefaultSolidPrimary.overrideBy(LightColorTokens.OutlineInverseSolidPrimary) - outlineDefaultSolidSecondary.overrideBy(LightColorTokens.OutlineInverseSolidSecondary) - outlineDefaultSolidTertiary.overrideBy(LightColorTokens.OutlineInverseSolidTertiary) - outlineDefaultSolidDefault.overrideBy(LightColorTokens.OutlineInverseSolidDefault) - dataDefaultYellow.overrideBy(LightColorTokens.DataInverseYellow) - dataDefaultYellowHover.overrideBy(LightColorTokens.DataInverseYellowHover) - dataDefaultYellowActive.overrideBy(LightColorTokens.DataInverseYellowActive) - dataDefaultYellowMinor.overrideBy(LightColorTokens.DataInverseYellowMinor) - dataDefaultYellowMinorHover.overrideBy(LightColorTokens.DataInverseYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(LightColorTokens.DataInverseYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(LightColorTokens.DataInverseYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(LightColorTokens.DataInverseYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(LightColorTokens.DataInverseYellowTransparentActive) - } -} - -private val darkInverseGradients: PlasmaGigaAppGradients by lazy { - darkPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientHover.colors, - DarkGradientTokens.TextDefaultAccentGradientHover.positions, - DarkGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientActive.colors, - DarkGradientTokens.TextDefaultAccentGradientActive.positions, - DarkGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradient.colors, - DarkGradientTokens.TextDefaultAccentGradient.positions, - DarkGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientHover.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientActive.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.colors, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.positions, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer0.angle, - ), - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.colors, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.positions, - DarkGradientTokens.SurfaceDefaultAccentGradient.Layer1.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradient.colors, - DarkGradientTokens.TextInverseAccentGradient.positions, - DarkGradientTokens.TextInverseAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientHover.colors, - DarkGradientTokens.TextInverseAccentGradientHover.positions, - DarkGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientActive.colors, - DarkGradientTokens.TextInverseAccentGradientActive.positions, - DarkGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradient.colors, - DarkGradientTokens.SurfaceInverseAccentGradient.positions, - DarkGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientHover.colors, - DarkGradientTokens.SurfaceInverseAccentGradientHover.positions, - DarkGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientActive.colors, - DarkGradientTokens.SurfaceInverseAccentGradientActive.positions, - DarkGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -private val lightInverseGradients: PlasmaGigaAppGradients by lazy { - lightPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientHover.colors, - LightGradientTokens.TextDefaultAccentGradientHover.positions, - LightGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientActive.colors, - LightGradientTokens.TextDefaultAccentGradientActive.positions, - LightGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradient.colors, - LightGradientTokens.TextDefaultAccentGradient.positions, - LightGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradient.colors, - LightGradientTokens.SurfaceDefaultAccentGradient.positions, - LightGradientTokens.SurfaceDefaultAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientHover.colors, - LightGradientTokens.SurfaceDefaultAccentGradientHover.positions, - LightGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientActive.colors, - LightGradientTokens.SurfaceDefaultAccentGradientActive.positions, - LightGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradient.colors, - LightGradientTokens.TextInverseAccentGradient.positions, - LightGradientTokens.TextInverseAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientHover.colors, - LightGradientTokens.TextInverseAccentGradientHover.positions, - LightGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientActive.colors, - LightGradientTokens.TextInverseAccentGradientActive.positions, - LightGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradient.colors, - LightGradientTokens.SurfaceInverseAccentGradient.positions, - LightGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientHover.colors, - LightGradientTokens.SurfaceInverseAccentGradientHover.positions, - LightGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientActive.colors, - LightGradientTokens.SurfaceInverseAccentGradientActive.positions, - LightGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -/** - * Подтема PlasmaGigaAppTheme.Inverse - */ -@Composable -public fun PlasmaGigaAppTheme.Inverse( - isDark: Boolean = isSystemInDarkTheme(), - content: @Composable - () -> Unit, -) { - val colors = if (isDark) { - darkInverseColors - } else { - lightInverseColors - } - val gradients = if (isDark) { - darkInverseGradients - } else { - lightInverseGradients - } - PlasmaGigaAppTheme( - colors = colors, - gradients = gradients, - content = content, - ) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnDark.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnDark.kt deleted file mode 100644 index 42a43c9549..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnDark.kt +++ /dev/null @@ -1,1347 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme.subthemes - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.linearGradient -import com.sdds.plasma.giga.app.tokens.DarkColorTokens -import com.sdds.plasma.giga.app.tokens.DarkGradientTokens -import com.sdds.plasma.giga.app.tokens.LightColorTokens -import com.sdds.plasma.giga.app.tokens.LightGradientTokens -import kotlin.Boolean -import kotlin.Unit - -private val darkOnDarkColors: PlasmaGigaAppColors by lazy { - darkPlasmaGigaAppColors { - textInversePrimary.overrideBy(DarkColorTokens.TextOnLightPrimary) - textInversePrimaryBrightness.overrideBy(DarkColorTokens.TextOnLightPrimaryBrightness) - textInverseSecondary.overrideBy(DarkColorTokens.TextOnLightSecondary) - textInverseTertiary.overrideBy(DarkColorTokens.TextOnLightTertiary) - textInverseParagraph.overrideBy(DarkColorTokens.TextOnLightParagraph) - textInversePrimaryHover.overrideBy(DarkColorTokens.TextOnLightPrimaryHover) - textInversePrimaryActive.overrideBy(DarkColorTokens.TextOnLightPrimaryActive) - textInverseSecondaryHover.overrideBy(DarkColorTokens.TextOnLightSecondaryHover) - textInverseSecondaryActive.overrideBy(DarkColorTokens.TextOnLightSecondaryActive) - textInverseTertiaryHover.overrideBy(DarkColorTokens.TextOnLightTertiaryHover) - textInverseTertiaryActive.overrideBy(DarkColorTokens.TextOnLightTertiaryActive) - textInverseParagraphHover.overrideBy(DarkColorTokens.TextOnLightParagraphHover) - textInverseParagraphActive.overrideBy(DarkColorTokens.TextOnLightParagraphActive) - textInverseAccentHover.overrideBy(DarkColorTokens.TextOnLightAccentHover) - textInverseAccentActive.overrideBy(DarkColorTokens.TextOnLightAccentActive) - textInversePositiveHover.overrideBy(DarkColorTokens.TextOnLightPositiveHover) - textInversePositiveActive.overrideBy(DarkColorTokens.TextOnLightPositiveActive) - textInverseWarningHover.overrideBy(DarkColorTokens.TextOnLightWarningHover) - textInverseWarningActive.overrideBy(DarkColorTokens.TextOnLightWarningActive) - textInverseNegativeHover.overrideBy(DarkColorTokens.TextOnLightNegativeHover) - textInverseNegativeActive.overrideBy(DarkColorTokens.TextOnLightNegativeActive) - textInverseAccentMinorHover.overrideBy(DarkColorTokens.TextOnLightAccentMinorHover) - textInverseAccentMinorActive.overrideBy(DarkColorTokens.TextOnLightAccentMinorActive) - textInverseAccent.overrideBy(DarkColorTokens.TextOnLightAccent) - textInverseAccentMinor.overrideBy(DarkColorTokens.TextOnLightAccentMinor) - textInversePositive.overrideBy(DarkColorTokens.TextOnLightPositive) - textInverseWarning.overrideBy(DarkColorTokens.TextOnLightWarning) - textInverseNegative.overrideBy(DarkColorTokens.TextOnLightNegative) - textInverseInfo.overrideBy(DarkColorTokens.TextOnLightInfo) - textInverseInfoHover.overrideBy(DarkColorTokens.TextOnLightInfoHover) - textInverseInfoActive.overrideBy(DarkColorTokens.TextOnLightInfoActive) - textInversePositiveMinor.overrideBy(DarkColorTokens.TextOnLightPositiveMinor) - textInversePositiveMinorHover.overrideBy(DarkColorTokens.TextOnLightPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(DarkColorTokens.TextOnLightPositiveMinorActive) - textInverseWarningMinor.overrideBy(DarkColorTokens.TextOnLightWarningMinor) - textInverseWarningMinorHover.overrideBy(DarkColorTokens.TextOnLightWarningMinorHover) - textInverseWarningMinorActive.overrideBy(DarkColorTokens.TextOnLightWarningMinorActive) - textInverseNegativeMinor.overrideBy(DarkColorTokens.TextOnLightNegativeMinor) - textInverseNegativeMinorHover.overrideBy(DarkColorTokens.TextOnLightNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(DarkColorTokens.TextOnLightNegativeMinorActive) - textInverseInfoMinor.overrideBy(DarkColorTokens.TextOnLightInfoMinor) - textInverseInfoMinorHover.overrideBy(DarkColorTokens.TextOnLightInfoMinorHover) - textInverseInfoMinorActive.overrideBy(DarkColorTokens.TextOnLightInfoMinorActive) - surfaceInverseSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryBrightness) - surfaceInverseSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefault) - surfaceInverseTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardBrightness) - surfaceInversePositive.overrideBy(DarkColorTokens.SurfaceOnLightPositive) - surfaceInverseWarning.overrideBy(DarkColorTokens.SurfaceOnLightWarning) - surfaceInverseNegative.overrideBy(DarkColorTokens.SurfaceOnLightNegative) - surfaceInverseSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy( - DarkColorTokens.SurfaceOnLightTransparentSecondaryActive, - ) - surfaceInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardActive) - surfaceInverseAccentHover.overrideBy(DarkColorTokens.SurfaceOnLightAccentHover) - surfaceInverseAccentActive.overrideBy(DarkColorTokens.SurfaceOnLightAccentActive) - surfaceInversePositiveHover.overrideBy(DarkColorTokens.SurfaceOnLightPositiveHover) - surfaceInversePositiveActive.overrideBy(DarkColorTokens.SurfaceOnLightPositiveActive) - surfaceInverseWarningHover.overrideBy(DarkColorTokens.SurfaceOnLightWarningHover) - surfaceInverseWarningActive.overrideBy(DarkColorTokens.SurfaceOnLightWarningActive) - surfaceInverseNegativeHover.overrideBy(DarkColorTokens.SurfaceOnLightNegativeHover) - surfaceInverseNegativeActive.overrideBy(DarkColorTokens.SurfaceOnLightNegativeActive) - surfaceInverseClearHover.overrideBy(DarkColorTokens.SurfaceOnLightClearHover) - surfaceInverseClearActive.overrideBy(DarkColorTokens.SurfaceOnLightClearActive) - surfaceInverseSolidCard.overrideBy(DarkColorTokens.SurfaceOnLightSolidCard) - surfaceInverseSolidPrimary.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimary) - surfaceInverseSolidSecondary.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiary) - surfaceInverseSolidDefault.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefault) - surfaceInverseTransparentCard.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCard) - surfaceInverseTransparentPrimary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiary) - surfaceInverseTransparentDeep.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeepActive) - surfaceInverseClear.overrideBy(DarkColorTokens.SurfaceOnLightClear) - surfaceInverseAccent.overrideBy(DarkColorTokens.SurfaceOnLightAccent) - surfaceInverseAccentMinor.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccentActive) - surfaceInverseInfo.overrideBy(DarkColorTokens.SurfaceOnLightInfo) - surfaceInverseInfoHover.overrideBy(DarkColorTokens.SurfaceOnLightInfoHover) - surfaceInverseInfoActive.overrideBy(DarkColorTokens.SurfaceOnLightInfoActive) - surfaceInversePositiveMinor.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfoActive) - overlayInverseSoft.overrideBy(DarkColorTokens.OverlayOnLightSoft) - overlayInverseHard.overrideBy(DarkColorTokens.OverlayOnLightHard) - overlayInverseBlur.overrideBy(DarkColorTokens.OverlayOnLightBlur) - outlineInversePrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightPrimaryHover) - outlineInversePrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightPrimaryActive) - outlineInverseSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightSecondaryHover) - outlineInverseSecondaryActive.overrideBy(DarkColorTokens.OutlineOnLightSecondaryActive) - outlineInverseTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightTertiaryHover) - outlineInverseTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightTertiaryActive) - outlineInverseDefaultHover.overrideBy(DarkColorTokens.OutlineOnLightDefaultHover) - outlineInverseDefaultActive.overrideBy(DarkColorTokens.OutlineOnLightDefaultActive) - outlineInverseTransparentPrimary.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimary) - outlineInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimaryActive) - outlineInverseTransparentSecondary.overrideBy(DarkColorTokens.OutlineOnLightTransparentSecondary) - outlineInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy( - DarkColorTokens.OutlineOnLightTransparentSecondaryActive, - ) - outlineInverseTransparentTertiary.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiary) - outlineInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiaryActive) - outlineInverseAccent.overrideBy(DarkColorTokens.OutlineOnLightAccent) - outlineInverseAccentHover.overrideBy(DarkColorTokens.OutlineOnLightAccentHover) - outlineInverseAccentActive.overrideBy(DarkColorTokens.OutlineOnLightAccentActive) - outlineInverseAccentMinor.overrideBy(DarkColorTokens.OutlineOnLightAccentMinor) - outlineInverseAccentMinorHover.overrideBy(DarkColorTokens.OutlineOnLightAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(DarkColorTokens.OutlineOnLightAccentMinorActive) - outlineInverseTransparentAccent.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccent) - outlineInverseTransparentAccentHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccentActive) - outlineInversePositive.overrideBy(DarkColorTokens.OutlineOnLightPositive) - outlineInversePositiveHover.overrideBy(DarkColorTokens.OutlineOnLightPositiveHover) - outlineInversePositiveActive.overrideBy(DarkColorTokens.OutlineOnLightPositiveActive) - outlineInverseWarning.overrideBy(DarkColorTokens.OutlineOnLightWarning) - outlineInverseWarningHover.overrideBy(DarkColorTokens.OutlineOnLightWarningHover) - outlineInverseWarningActive.overrideBy(DarkColorTokens.OutlineOnLightWarningActive) - outlineInverseNegative.overrideBy(DarkColorTokens.OutlineOnLightNegative) - outlineInverseNegativeHover.overrideBy(DarkColorTokens.OutlineOnLightNegativeHover) - outlineInverseNegativeActive.overrideBy(DarkColorTokens.OutlineOnLightNegativeActive) - outlineInverseInfo.overrideBy(DarkColorTokens.OutlineOnLightInfo) - outlineInverseInfoHover.overrideBy(DarkColorTokens.OutlineOnLightInfoHover) - outlineInverseInfoActive.overrideBy(DarkColorTokens.OutlineOnLightInfoActive) - outlineInversePositiveMinor.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinor) - outlineInversePositiveMinorHover.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinorActive) - outlineInverseWarningMinor.overrideBy(DarkColorTokens.OutlineOnLightWarningMinor) - outlineInverseWarningMinorHover.overrideBy(DarkColorTokens.OutlineOnLightWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(DarkColorTokens.OutlineOnLightWarningMinorActive) - outlineInverseNegativeMinor.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinor) - outlineInverseNegativeMinorHover.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinorActive) - outlineInverseInfoMinor.overrideBy(DarkColorTokens.OutlineOnLightInfoMinor) - outlineInverseInfoMinorHover.overrideBy(DarkColorTokens.OutlineOnLightInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(DarkColorTokens.OutlineOnLightInfoMinorActive) - outlineInverseTransparentPositive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositive) - outlineInverseTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositiveActive) - outlineInverseTransparentWarning.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarning) - outlineInverseTransparentWarningHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarningActive) - outlineInverseTransparentInfo.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfo) - outlineInverseTransparentInfoHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfoActive) - outlineInverseSolidPrimary.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimary) - outlineInverseSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimaryActive) - outlineInverseSolidSecondary.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondary) - outlineInverseSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondaryActive) - outlineInverseSolidTertiary.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiary) - outlineInverseSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiaryActive) - outlineInverseSolidDefault.overrideBy(DarkColorTokens.OutlineOnLightSolidDefault) - outlineInverseSolidDefaultHover.overrideBy(DarkColorTokens.OutlineOnLightSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(DarkColorTokens.OutlineOnLightSolidDefaultActive) - dataInverseYellow.overrideBy(DarkColorTokens.DataOnLightYellow) - dataInverseYellowHover.overrideBy(DarkColorTokens.DataOnLightYellowHover) - dataInverseYellowActive.overrideBy(DarkColorTokens.DataOnLightYellowActive) - dataInverseYellowMinor.overrideBy(DarkColorTokens.DataOnLightYellowMinor) - dataInverseYellowMinorHover.overrideBy(DarkColorTokens.DataOnLightYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(DarkColorTokens.DataOnLightYellowMinorActive) - dataInverseYellowTransparent.overrideBy(DarkColorTokens.DataOnLightYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(DarkColorTokens.DataOnLightYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(DarkColorTokens.DataOnLightYellowTransparentActive) - textDefaultPrimary.overrideBy(DarkColorTokens.TextOnDarkPrimary) - textDefaultPrimaryBrightness.overrideBy(DarkColorTokens.TextOnDarkPrimaryBrightness) - textDefaultSecondary.overrideBy(DarkColorTokens.TextOnDarkSecondary) - textDefaultTertiary.overrideBy(DarkColorTokens.TextOnDarkTertiary) - textDefaultParagraph.overrideBy(DarkColorTokens.TextOnDarkParagraph) - textDefaultAccent.overrideBy(DarkColorTokens.TextOnDarkAccent) - textDefaultPositive.overrideBy(DarkColorTokens.TextOnDarkPositive) - textDefaultWarning.overrideBy(DarkColorTokens.TextOnDarkWarning) - textDefaultNegative.overrideBy(DarkColorTokens.TextOnDarkNegative) - textDefaultAccentMinor.overrideBy(DarkColorTokens.TextOnDarkAccentMinor) - textDefaultAccentMinorHover.overrideBy(DarkColorTokens.TextOnDarkAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(DarkColorTokens.TextOnDarkAccentMinorActive) - textDefaultInfoHover.overrideBy(DarkColorTokens.TextOnDarkInfoHover) - textDefaultInfoActive.overrideBy(DarkColorTokens.TextOnDarkInfoActive) - textDefaultPositiveMinor.overrideBy(DarkColorTokens.TextOnDarkPositiveMinor) - textDefaultPositiveMinorHover.overrideBy(DarkColorTokens.TextOnDarkPositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(DarkColorTokens.TextOnDarkPositiveMinorActive) - textDefaultWarningMinor.overrideBy(DarkColorTokens.TextOnDarkWarningMinor) - textDefaultWarningMinorHover.overrideBy(DarkColorTokens.TextOnDarkWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(DarkColorTokens.TextOnDarkWarningMinorActive) - textDefaultNegativeMinor.overrideBy(DarkColorTokens.TextOnDarkNegativeMinor) - textDefaultNegativeMinorHover.overrideBy(DarkColorTokens.TextOnDarkNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(DarkColorTokens.TextOnDarkNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(DarkColorTokens.TextOnDarkInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(DarkColorTokens.TextOnDarkInfoMinorActive) - textDefaultInfo.overrideBy(DarkColorTokens.TextOnDarkInfo) - textDefaultInfoMinor.overrideBy(DarkColorTokens.TextOnDarkInfoMinor) - textDefaultPrimaryHover.overrideBy(DarkColorTokens.TextOnDarkPrimaryHover) - textDefaultPrimaryActive.overrideBy(DarkColorTokens.TextOnDarkPrimaryActive) - textDefaultSecondaryHover.overrideBy(DarkColorTokens.TextOnDarkSecondaryHover) - textDefaultSecondaryActive.overrideBy(DarkColorTokens.TextOnDarkSecondaryActive) - textDefaultTertiaryHover.overrideBy(DarkColorTokens.TextOnDarkTertiaryHover) - textDefaultTertiaryActive.overrideBy(DarkColorTokens.TextOnDarkTertiaryActive) - textDefaultParagraphHover.overrideBy(DarkColorTokens.TextOnDarkParagraphHover) - textDefaultParagraphActive.overrideBy(DarkColorTokens.TextOnDarkParagraphActive) - textDefaultAccentHover.overrideBy(DarkColorTokens.TextOnDarkAccentHover) - textDefaultAccentActive.overrideBy(DarkColorTokens.TextOnDarkAccentActive) - textDefaultPositiveHover.overrideBy(DarkColorTokens.TextOnDarkPositiveHover) - textDefaultPositiveActive.overrideBy(DarkColorTokens.TextOnDarkPositiveActive) - textDefaultWarningHover.overrideBy(DarkColorTokens.TextOnDarkWarningHover) - textDefaultWarningActive.overrideBy(DarkColorTokens.TextOnDarkWarningActive) - textDefaultNegativeHover.overrideBy(DarkColorTokens.TextOnDarkNegativeHover) - textDefaultNegativeActive.overrideBy(DarkColorTokens.TextOnDarkNegativeActive) - surfaceDefaultSolidPrimary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiary) - surfaceDefaultSolidCard.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(DarkColorTokens.SurfaceOnDarkAccent) - surfaceDefaultPositive.overrideBy(DarkColorTokens.SurfaceOnDarkPositive) - surfaceDefaultWarning.overrideBy(DarkColorTokens.SurfaceOnDarkWarning) - surfaceDefaultNegative.overrideBy(DarkColorTokens.SurfaceOnDarkNegative) - surfaceDefaultClear.overrideBy(DarkColorTokens.SurfaceOnDarkClear) - surfaceDefaultTransparentDeep.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeep) - surfaceDefaultTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeepActive) - surfaceDefaultAccentMinor.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinor) - surfaceDefaultAccentMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinorActive) - surfaceDefaultTransparentAccent.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccent) - surfaceDefaultTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccentActive) - surfaceDefaultPositiveMinor.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinor) - surfaceDefaultPositiveMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinorActive) - surfaceDefaultWarningMinor.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinor) - surfaceDefaultWarningMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinorActive) - surfaceDefaultNegativeMinor.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinor) - surfaceDefaultNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfoActive) - surfaceDefaultTransparentPositive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegative) - surfaceDefaultSolidDefault.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefault) - surfaceDefaultSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefaultActive) - surfaceDefaultInfoMinor.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfo) - surfaceDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondaryActive) - surfaceDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(DarkColorTokens.SurfaceOnDarkAccentHover) - surfaceDefaultAccentActive.overrideBy(DarkColorTokens.SurfaceOnDarkAccentActive) - surfaceDefaultPositiveHover.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveHover) - surfaceDefaultPositiveActive.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveActive) - surfaceDefaultWarningHover.overrideBy(DarkColorTokens.SurfaceOnDarkWarningHover) - surfaceDefaultWarningActive.overrideBy(DarkColorTokens.SurfaceOnDarkWarningActive) - surfaceDefaultNegativeHover.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeHover) - surfaceDefaultNegativeActive.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeActive) - surfaceDefaultClearHover.overrideBy(DarkColorTokens.SurfaceOnDarkClearHover) - surfaceDefaultClearActive.overrideBy(DarkColorTokens.SurfaceOnDarkClearActive) - overlayDefaultSoft.overrideBy(DarkColorTokens.OverlayOnDarkSoft) - overlayDefaultHard.overrideBy(DarkColorTokens.OverlayOnDarkHard) - overlayDefaultBlur.overrideBy(DarkColorTokens.OverlayOnDarkBlur) - outlineDefaultPrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkPrimaryHover) - outlineDefaultPrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkPrimaryActive) - outlineDefaultSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTertiaryActive) - outlineDefaultDefaultHover.overrideBy(DarkColorTokens.OutlineOnDarkDefaultHover) - outlineDefaultDefaultActive.overrideBy(DarkColorTokens.OutlineOnDarkDefaultActive) - outlineDefaultTransparentPrimary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimary) - outlineDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimaryActive) - outlineDefaultTransparentSecondary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondary) - outlineDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondaryActive) - outlineDefaultTransparentTertiary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiary) - outlineDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiaryActive) - outlineDefaultAccent.overrideBy(DarkColorTokens.OutlineOnDarkAccent) - outlineDefaultAccentHover.overrideBy(DarkColorTokens.OutlineOnDarkAccentHover) - outlineDefaultAccentActive.overrideBy(DarkColorTokens.OutlineOnDarkAccentActive) - outlineDefaultAccentMinor.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinor) - outlineDefaultAccentMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinorActive) - outlineDefaultTransparentAccent.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccent) - outlineDefaultTransparentAccentHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccentActive) - outlineDefaultPositive.overrideBy(DarkColorTokens.OutlineOnDarkPositive) - outlineDefaultPositiveHover.overrideBy(DarkColorTokens.OutlineOnDarkPositiveHover) - outlineDefaultPositiveActive.overrideBy(DarkColorTokens.OutlineOnDarkPositiveActive) - outlineDefaultWarning.overrideBy(DarkColorTokens.OutlineOnDarkWarning) - outlineDefaultWarningHover.overrideBy(DarkColorTokens.OutlineOnDarkWarningHover) - outlineDefaultWarningActive.overrideBy(DarkColorTokens.OutlineOnDarkWarningActive) - outlineDefaultNegative.overrideBy(DarkColorTokens.OutlineOnDarkNegative) - outlineDefaultNegativeHover.overrideBy(DarkColorTokens.OutlineOnDarkNegativeHover) - outlineDefaultNegativeActive.overrideBy(DarkColorTokens.OutlineOnDarkNegativeActive) - outlineDefaultInfoHover.overrideBy(DarkColorTokens.OutlineOnDarkInfoHover) - outlineDefaultInfoActive.overrideBy(DarkColorTokens.OutlineOnDarkInfoActive) - outlineDefaultPositiveMinor.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinor) - outlineDefaultPositiveMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinorActive) - outlineDefaultWarningMinor.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinor) - outlineDefaultWarningMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinorActive) - outlineDefaultNegativeMinor.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinor) - outlineDefaultNegativeMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarningActive) - outlineDefaultNegativeTransparentHover.overrideBy(DarkColorTokens.OutlineOnDarkNegativeTransparentHover) - outlineDefaultNegativeTransparentActive.overrideBy(DarkColorTokens.OutlineOnDarkNegativeTransparentActive) - outlineDefaultTransparentInfoHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfoActive) - outlineDefaultTransparentPositive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarning) - outlineDefaultInfoMinor.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinor) - outlineDefaultTransparentInfo.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfo) - outlineDefaultInfo.overrideBy(DarkColorTokens.OutlineOnDarkInfo) - outlineDefaultSolidPrimary.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimary) - outlineDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimaryActive) - outlineDefaultSolidSecondary.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondary) - outlineDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondaryActive) - outlineDefaultSolidTertiary.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiary) - outlineDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiaryActive) - outlineDefaultSolidDefault.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefault) - outlineDefaultSolidDefaultHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefaultActive) - dataDefaultYellow.overrideBy(DarkColorTokens.DataOnDarkYellow) - dataDefaultYellowHover.overrideBy(DarkColorTokens.DataOnDarkYellowHover) - dataDefaultYellowActive.overrideBy(DarkColorTokens.DataOnDarkYellowActive) - dataDefaultYellowMinor.overrideBy(DarkColorTokens.DataOnDarkYellowMinor) - dataDefaultYellowMinorHover.overrideBy(DarkColorTokens.DataOnDarkYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(DarkColorTokens.DataOnDarkYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(DarkColorTokens.DataOnDarkYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(DarkColorTokens.DataOnDarkYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(DarkColorTokens.DataOnDarkYellowTransparentActive) - } -} - -private val lightOnDarkColors: PlasmaGigaAppColors by lazy { - lightPlasmaGigaAppColors { - textInversePrimary.overrideBy(LightColorTokens.TextOnLightPrimary) - textInversePrimaryBrightness.overrideBy(LightColorTokens.TextOnLightPrimaryBrightness) - textInverseSecondary.overrideBy(LightColorTokens.TextOnLightSecondary) - textInverseTertiary.overrideBy(LightColorTokens.TextOnLightTertiary) - textInverseParagraph.overrideBy(LightColorTokens.TextOnLightParagraph) - textInversePositive.overrideBy(LightColorTokens.TextOnLightPositive) - textInverseWarning.overrideBy(LightColorTokens.TextOnLightWarning) - textInverseNegative.overrideBy(LightColorTokens.TextOnLightNegative) - textInversePrimaryHover.overrideBy(LightColorTokens.TextOnLightPrimaryHover) - textInversePrimaryActive.overrideBy(LightColorTokens.TextOnLightPrimaryActive) - textInverseSecondaryHover.overrideBy(LightColorTokens.TextOnLightSecondaryHover) - textInverseSecondaryActive.overrideBy(LightColorTokens.TextOnLightSecondaryActive) - textInverseTertiaryHover.overrideBy(LightColorTokens.TextOnLightTertiaryHover) - textInverseTertiaryActive.overrideBy(LightColorTokens.TextOnLightTertiaryActive) - textInverseParagraphHover.overrideBy(LightColorTokens.TextOnLightParagraphHover) - textInverseParagraphActive.overrideBy(LightColorTokens.TextOnLightParagraphActive) - textInverseAccentHover.overrideBy(LightColorTokens.TextOnLightAccentHover) - textInverseAccentActive.overrideBy(LightColorTokens.TextOnLightAccentActive) - textInversePositiveHover.overrideBy(LightColorTokens.TextOnLightPositiveHover) - textInversePositiveActive.overrideBy(LightColorTokens.TextOnLightPositiveActive) - textInverseWarningHover.overrideBy(LightColorTokens.TextOnLightWarningHover) - textInverseWarningActive.overrideBy(LightColorTokens.TextOnLightWarningActive) - textInverseNegativeHover.overrideBy(LightColorTokens.TextOnLightNegativeHover) - textInverseNegativeActive.overrideBy(LightColorTokens.TextOnLightNegativeActive) - textInverseAccentMinor.overrideBy(LightColorTokens.TextOnLightAccentMinor) - textInverseAccentMinorHover.overrideBy(LightColorTokens.TextOnLightAccentMinorHover) - textInverseAccentMinorActive.overrideBy(LightColorTokens.TextOnLightAccentMinorActive) - textInverseInfoHover.overrideBy(LightColorTokens.TextOnLightInfoHover) - textInverseInfoActive.overrideBy(LightColorTokens.TextOnLightInfoActive) - textInversePositiveMinorHover.overrideBy(LightColorTokens.TextOnLightPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(LightColorTokens.TextOnLightPositiveMinorActive) - textInverseWarningMinorHover.overrideBy(LightColorTokens.TextOnLightWarningMinorHover) - textInverseWarningMinorActive.overrideBy(LightColorTokens.TextOnLightWarningMinorActive) - textInverseNegativeMinorHover.overrideBy(LightColorTokens.TextOnLightNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(LightColorTokens.TextOnLightNegativeMinorActive) - textInverseInfoMinorHover.overrideBy(LightColorTokens.TextOnLightInfoMinorHover) - textInverseInfoMinorActive.overrideBy(LightColorTokens.TextOnLightInfoMinorActive) - textInverseAccent.overrideBy(LightColorTokens.TextOnLightAccent) - textInverseInfo.overrideBy(LightColorTokens.TextOnLightInfo) - textInversePositiveMinor.overrideBy(LightColorTokens.TextOnLightPositiveMinor) - textInverseWarningMinor.overrideBy(LightColorTokens.TextOnLightWarningMinor) - textInverseNegativeMinor.overrideBy(LightColorTokens.TextOnLightNegativeMinor) - textInverseInfoMinor.overrideBy(LightColorTokens.TextOnLightInfoMinor) - surfaceInverseSolidDefault.overrideBy(LightColorTokens.SurfaceOnLightSolidDefault) - surfaceInverseSolidPrimary.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimary) - surfaceInverseSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryBrightness) - surfaceInverseSolidSecondary.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiary) - surfaceInverseSolidCard.overrideBy(LightColorTokens.SurfaceOnLightSolidCard) - surfaceInverseSolidCardBrightness.overrideBy(LightColorTokens.SurfaceOnLightSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefault) - surfaceInverseTransparentPrimary.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(LightColorTokens.SurfaceOnLightTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiary) - surfaceInverseTransparentCard.overrideBy(LightColorTokens.SurfaceOnLightTransparentCard) - surfaceInverseTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardBrightness) - surfaceInverseAccent.overrideBy(LightColorTokens.SurfaceOnLightAccent) - surfaceInversePositive.overrideBy(LightColorTokens.SurfaceOnLightPositive) - surfaceInverseWarning.overrideBy(LightColorTokens.SurfaceOnLightWarning) - surfaceInverseNegative.overrideBy(LightColorTokens.SurfaceOnLightNegative) - surfaceInverseClear.overrideBy(LightColorTokens.SurfaceOnLightClear) - surfaceInverseSolidDefaultHover.overrideBy(LightColorTokens.SurfaceOnLightSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(LightColorTokens.SurfaceOnLightSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(LightColorTokens.SurfaceOnLightSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(LightColorTokens.SurfaceOnLightSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceOnLightTransparentSecondaryActive, - ) - surfaceInverseTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardActive) - surfaceInverseAccentHover.overrideBy(LightColorTokens.SurfaceOnLightAccentHover) - surfaceInverseAccentActive.overrideBy(LightColorTokens.SurfaceOnLightAccentActive) - surfaceInversePositiveHover.overrideBy(LightColorTokens.SurfaceOnLightPositiveHover) - surfaceInversePositiveActive.overrideBy(LightColorTokens.SurfaceOnLightPositiveActive) - surfaceInverseWarningHover.overrideBy(LightColorTokens.SurfaceOnLightWarningHover) - surfaceInverseWarningActive.overrideBy(LightColorTokens.SurfaceOnLightWarningActive) - surfaceInverseNegativeHover.overrideBy(LightColorTokens.SurfaceOnLightNegativeHover) - surfaceInverseNegativeActive.overrideBy(LightColorTokens.SurfaceOnLightNegativeActive) - surfaceInverseClearHover.overrideBy(LightColorTokens.SurfaceOnLightClearHover) - surfaceInverseClearActive.overrideBy(LightColorTokens.SurfaceOnLightClearActive) - surfaceInverseTransparentDeep.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeepActive) - surfaceInverseAccentMinor.overrideBy(LightColorTokens.SurfaceOnLightAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(LightColorTokens.SurfaceOnLightAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(LightColorTokens.SurfaceOnLightAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccentActive) - surfaceInverseInfo.overrideBy(LightColorTokens.SurfaceOnLightInfo) - surfaceInverseInfoHover.overrideBy(LightColorTokens.SurfaceOnLightInfoHover) - surfaceInverseInfoActive.overrideBy(LightColorTokens.SurfaceOnLightInfoActive) - surfaceInversePositiveMinor.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(LightColorTokens.SurfaceOnLightWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(LightColorTokens.SurfaceOnLightWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(LightColorTokens.SurfaceOnLightWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(LightColorTokens.SurfaceOnLightInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(LightColorTokens.SurfaceOnLightInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(LightColorTokens.SurfaceOnLightInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfoActive) - overlayInverseHard.overrideBy(LightColorTokens.OverlayOnLightHard) - overlayInverseSoft.overrideBy(LightColorTokens.OverlayOnLightSoft) - overlayInverseBlur.overrideBy(LightColorTokens.OverlayOnLightBlur) - outlineInversePrimaryHover.overrideBy(LightColorTokens.OutlineOnLightPrimaryHover) - outlineInversePrimaryActive.overrideBy(LightColorTokens.OutlineOnLightPrimaryActive) - outlineInverseSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightSecondaryHover) - outlineInverseSecondaryActive.overrideBy(LightColorTokens.OutlineOnLightSecondaryActive) - outlineInverseTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightTertiaryHover) - outlineInverseTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightTertiaryActive) - outlineInverseDefaultHover.overrideBy(LightColorTokens.OutlineOnLightDefaultHover) - outlineInverseDefaultActive.overrideBy(LightColorTokens.OutlineOnLightDefaultActive) - outlineInverseTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimaryActive) - outlineInverseTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineOnLightTransparentSecondaryActive, - ) - outlineInverseTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiaryActive) - outlineInverseAccentHover.overrideBy(LightColorTokens.OutlineOnLightAccentHover) - outlineInverseAccentActive.overrideBy(LightColorTokens.OutlineOnLightAccentActive) - outlineInverseAccentMinorHover.overrideBy(LightColorTokens.OutlineOnLightAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(LightColorTokens.OutlineOnLightAccentMinorActive) - outlineInverseTransparentAccentHover.overrideBy(LightColorTokens.OutlineOnLightTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(LightColorTokens.OutlineOnLightTransparentAccentActive) - outlineInversePositiveHover.overrideBy(LightColorTokens.OutlineOnLightPositiveHover) - outlineInversePositiveActive.overrideBy(LightColorTokens.OutlineOnLightPositiveActive) - outlineInverseWarningHover.overrideBy(LightColorTokens.OutlineOnLightWarningHover) - outlineInverseWarningActive.overrideBy(LightColorTokens.OutlineOnLightWarningActive) - outlineInverseNegativeHover.overrideBy(LightColorTokens.OutlineOnLightNegativeHover) - outlineInverseNegativeActive.overrideBy(LightColorTokens.OutlineOnLightNegativeActive) - outlineInverseInfoHover.overrideBy(LightColorTokens.OutlineOnLightInfoHover) - outlineInverseInfoActive.overrideBy(LightColorTokens.OutlineOnLightInfoActive) - outlineInversePositiveMinorHover.overrideBy(LightColorTokens.OutlineOnLightPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(LightColorTokens.OutlineOnLightPositiveMinorActive) - outlineInverseWarningMinorHover.overrideBy(LightColorTokens.OutlineOnLightWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(LightColorTokens.OutlineOnLightWarningMinorActive) - outlineInverseNegativeMinorHover.overrideBy(LightColorTokens.OutlineOnLightNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(LightColorTokens.OutlineOnLightNegativeMinorActive) - outlineInverseInfoMinorHover.overrideBy(LightColorTokens.OutlineOnLightInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(LightColorTokens.OutlineOnLightInfoMinorActive) - outlineInverseTransparentPositiveHover.overrideBy(LightColorTokens.OutlineOnLightTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(LightColorTokens.OutlineOnLightTransparentPositiveActive) - outlineInverseTransparentWarningHover.overrideBy(LightColorTokens.OutlineOnLightTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(LightColorTokens.OutlineOnLightTransparentWarningActive) - outlineInverseTransparentInfoHover.overrideBy(LightColorTokens.OutlineOnLightTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(LightColorTokens.OutlineOnLightTransparentInfoActive) - outlineInverseTransparentPrimary.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimary) - outlineInverseTransparentSecondary.overrideBy(LightColorTokens.OutlineOnLightTransparentSecondary) - outlineInverseTransparentTertiary.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiary) - outlineInverseAccent.overrideBy(LightColorTokens.OutlineOnLightAccent) - outlineInverseAccentMinor.overrideBy(LightColorTokens.OutlineOnLightAccentMinor) - outlineInverseTransparentAccent.overrideBy(LightColorTokens.OutlineOnLightTransparentAccent) - outlineInversePositive.overrideBy(LightColorTokens.OutlineOnLightPositive) - outlineInverseWarning.overrideBy(LightColorTokens.OutlineOnLightWarning) - outlineInverseNegative.overrideBy(LightColorTokens.OutlineOnLightNegative) - outlineInverseInfo.overrideBy(LightColorTokens.OutlineOnLightInfo) - outlineInversePositiveMinor.overrideBy(LightColorTokens.OutlineOnLightPositiveMinor) - outlineInverseWarningMinor.overrideBy(LightColorTokens.OutlineOnLightWarningMinor) - outlineInverseNegativeMinor.overrideBy(LightColorTokens.OutlineOnLightNegativeMinor) - outlineInverseInfoMinor.overrideBy(LightColorTokens.OutlineOnLightInfoMinor) - outlineInverseTransparentPositive.overrideBy(LightColorTokens.OutlineOnLightTransparentPositive) - outlineInverseTransparentWarning.overrideBy(LightColorTokens.OutlineOnLightTransparentWarning) - outlineInverseTransparentInfo.overrideBy(LightColorTokens.OutlineOnLightTransparentInfo) - outlineInverseSolidPrimaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidPrimaryActive) - outlineInverseSolidSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidSecondaryActive) - outlineInverseSolidTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidTertiaryActive) - outlineInverseSolidDefaultHover.overrideBy(LightColorTokens.OutlineOnLightSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(LightColorTokens.OutlineOnLightSolidDefaultActive) - outlineInverseSolidPrimary.overrideBy(LightColorTokens.OutlineOnLightSolidPrimary) - outlineInverseSolidSecondary.overrideBy(LightColorTokens.OutlineOnLightSolidSecondary) - outlineInverseSolidTertiary.overrideBy(LightColorTokens.OutlineOnLightSolidTertiary) - outlineInverseSolidDefault.overrideBy(LightColorTokens.OutlineOnLightSolidDefault) - dataInverseYellow.overrideBy(LightColorTokens.DataOnLightYellow) - dataInverseYellowHover.overrideBy(LightColorTokens.DataOnLightYellowHover) - dataInverseYellowActive.overrideBy(LightColorTokens.DataOnLightYellowActive) - dataInverseYellowMinor.overrideBy(LightColorTokens.DataOnLightYellowMinor) - dataInverseYellowMinorHover.overrideBy(LightColorTokens.DataOnLightYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(LightColorTokens.DataOnLightYellowMinorActive) - dataInverseYellowTransparent.overrideBy(LightColorTokens.DataOnLightYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(LightColorTokens.DataOnLightYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(LightColorTokens.DataOnLightYellowTransparentActive) - textDefaultPrimary.overrideBy(LightColorTokens.TextOnDarkPrimary) - textDefaultPrimaryBrightness.overrideBy(LightColorTokens.TextOnDarkPrimaryBrightness) - textDefaultSecondary.overrideBy(LightColorTokens.TextOnDarkSecondary) - textDefaultTertiary.overrideBy(LightColorTokens.TextOnDarkTertiary) - textDefaultParagraph.overrideBy(LightColorTokens.TextOnDarkParagraph) - textDefaultAccent.overrideBy(LightColorTokens.TextOnDarkAccent) - textDefaultPositive.overrideBy(LightColorTokens.TextOnDarkPositive) - textDefaultWarning.overrideBy(LightColorTokens.TextOnDarkWarning) - textDefaultNegative.overrideBy(LightColorTokens.TextOnDarkNegative) - textDefaultAccentMinorHover.overrideBy(LightColorTokens.TextOnDarkAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(LightColorTokens.TextOnDarkAccentMinorActive) - textDefaultInfoHover.overrideBy(LightColorTokens.TextOnDarkInfoHover) - textDefaultInfoActive.overrideBy(LightColorTokens.TextOnDarkInfoActive) - textDefaultPositiveMinorHover.overrideBy(LightColorTokens.TextOnDarkPositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(LightColorTokens.TextOnDarkPositiveMinorActive) - textDefaultWarningMinorHover.overrideBy(LightColorTokens.TextOnDarkWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(LightColorTokens.TextOnDarkWarningMinorActive) - textDefaultNegativeMinorHover.overrideBy(LightColorTokens.TextOnDarkNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(LightColorTokens.TextOnDarkNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(LightColorTokens.TextOnDarkInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(LightColorTokens.TextOnDarkInfoMinorActive) - textDefaultAccentMinor.overrideBy(LightColorTokens.TextOnDarkAccentMinor) - textDefaultPositiveMinor.overrideBy(LightColorTokens.TextOnDarkPositiveMinor) - textDefaultWarningMinor.overrideBy(LightColorTokens.TextOnDarkWarningMinor) - textDefaultNegativeMinor.overrideBy(LightColorTokens.TextOnDarkNegativeMinor) - textDefaultInfo.overrideBy(LightColorTokens.TextOnDarkInfo) - textDefaultInfoMinor.overrideBy(LightColorTokens.TextOnDarkInfoMinor) - textDefaultPrimaryHover.overrideBy(LightColorTokens.TextOnDarkPrimaryHover) - textDefaultPrimaryActive.overrideBy(LightColorTokens.TextOnDarkPrimaryActive) - textDefaultSecondaryHover.overrideBy(LightColorTokens.TextOnDarkSecondaryHover) - textDefaultSecondaryActive.overrideBy(LightColorTokens.TextOnDarkSecondaryActive) - textDefaultTertiaryHover.overrideBy(LightColorTokens.TextOnDarkTertiaryHover) - textDefaultTertiaryActive.overrideBy(LightColorTokens.TextOnDarkTertiaryActive) - textDefaultParagraphHover.overrideBy(LightColorTokens.TextOnDarkParagraphHover) - textDefaultParagraphActive.overrideBy(LightColorTokens.TextOnDarkParagraphActive) - textDefaultAccentHover.overrideBy(LightColorTokens.TextOnDarkAccentHover) - textDefaultAccentActive.overrideBy(LightColorTokens.TextOnDarkAccentActive) - textDefaultPositiveHover.overrideBy(LightColorTokens.TextOnDarkPositiveHover) - textDefaultPositiveActive.overrideBy(LightColorTokens.TextOnDarkPositiveActive) - textDefaultWarningHover.overrideBy(LightColorTokens.TextOnDarkWarningHover) - textDefaultWarningActive.overrideBy(LightColorTokens.TextOnDarkWarningActive) - textDefaultNegativeHover.overrideBy(LightColorTokens.TextOnDarkNegativeHover) - textDefaultNegativeActive.overrideBy(LightColorTokens.TextOnDarkNegativeActive) - surfaceDefaultSolidDefault.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefault) - surfaceDefaultSolidPrimary.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiary) - surfaceDefaultSolidCard.overrideBy(LightColorTokens.SurfaceOnDarkSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(LightColorTokens.SurfaceOnDarkAccent) - surfaceDefaultPositive.overrideBy(LightColorTokens.SurfaceOnDarkPositive) - surfaceDefaultWarning.overrideBy(LightColorTokens.SurfaceOnDarkWarning) - surfaceDefaultNegative.overrideBy(LightColorTokens.SurfaceOnDarkNegative) - surfaceDefaultClear.overrideBy(LightColorTokens.SurfaceOnDarkClear) - surfaceDefaultTransparentDeep.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeep) - surfaceDefaultAccentMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinorActive) - surfaceDefaultTransparentAccentHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccentActive) - surfaceDefaultPositiveMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinorActive) - surfaceDefaultWarningMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinorActive) - surfaceDefaultNegativeMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfoActive) - surfaceDefaultAccentMinor.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinor) - surfaceDefaultTransparentAccent.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccent) - surfaceDefaultPositiveMinor.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinor) - surfaceDefaultWarningMinor.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinor) - surfaceDefaultNegativeMinor.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinor) - surfaceDefaultTransparentPositive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegative) - surfaceDefaultInfoMinor.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfo) - surfaceDefaultSolidDefaultHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefaultActive) - surfaceDefaultSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceOnDarkTransparentSecondaryActive, - ) - surfaceDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(LightColorTokens.SurfaceOnDarkAccentHover) - surfaceDefaultAccentActive.overrideBy(LightColorTokens.SurfaceOnDarkAccentActive) - surfaceDefaultPositiveHover.overrideBy(LightColorTokens.SurfaceOnDarkPositiveHover) - surfaceDefaultPositiveActive.overrideBy(LightColorTokens.SurfaceOnDarkPositiveActive) - surfaceDefaultWarningHover.overrideBy(LightColorTokens.SurfaceOnDarkWarningHover) - surfaceDefaultWarningActive.overrideBy(LightColorTokens.SurfaceOnDarkWarningActive) - surfaceDefaultNegativeHover.overrideBy(LightColorTokens.SurfaceOnDarkNegativeHover) - surfaceDefaultNegativeActive.overrideBy(LightColorTokens.SurfaceOnDarkNegativeActive) - surfaceDefaultClearHover.overrideBy(LightColorTokens.SurfaceOnDarkClearHover) - surfaceDefaultClearActive.overrideBy(LightColorTokens.SurfaceOnDarkClearActive) - surfaceDefaultTransparentDeepHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeepActive) - overlayDefaultSoft.overrideBy(LightColorTokens.OverlayOnDarkSoft) - overlayDefaultHard.overrideBy(LightColorTokens.OverlayOnDarkHard) - overlayDefaultBlur.overrideBy(LightColorTokens.OverlayOnDarkBlur) - outlineDefaultSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(LightColorTokens.OutlineOnDarkSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkTertiaryActive) - outlineDefaultDefaultHover.overrideBy(LightColorTokens.OutlineOnDarkDefaultHover) - outlineDefaultDefaultActive.overrideBy(LightColorTokens.OutlineOnDarkDefaultActive) - outlineDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimaryActive) - outlineDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineOnDarkTransparentSecondaryActive, - ) - outlineDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiaryActive) - outlineDefaultAccentHover.overrideBy(LightColorTokens.OutlineOnDarkAccentHover) - outlineDefaultAccentActive.overrideBy(LightColorTokens.OutlineOnDarkAccentActive) - outlineDefaultAccentMinorHover.overrideBy(LightColorTokens.OutlineOnDarkAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(LightColorTokens.OutlineOnDarkAccentMinorActive) - outlineDefaultTransparentAccentHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccentActive) - outlineDefaultPositiveHover.overrideBy(LightColorTokens.OutlineOnDarkPositiveHover) - outlineDefaultPositiveActive.overrideBy(LightColorTokens.OutlineOnDarkPositiveActive) - outlineDefaultWarningHover.overrideBy(LightColorTokens.OutlineOnDarkWarningHover) - outlineDefaultWarningActive.overrideBy(LightColorTokens.OutlineOnDarkWarningActive) - outlineDefaultNegativeHover.overrideBy(LightColorTokens.OutlineOnDarkNegativeHover) - outlineDefaultNegativeActive.overrideBy(LightColorTokens.OutlineOnDarkNegativeActive) - outlineDefaultInfoHover.overrideBy(LightColorTokens.OutlineOnDarkInfoHover) - outlineDefaultInfoActive.overrideBy(LightColorTokens.OutlineOnDarkInfoActive) - outlineDefaultPositiveMinorHover.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinorActive) - outlineDefaultWarningMinorHover.overrideBy(LightColorTokens.OutlineOnDarkWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(LightColorTokens.OutlineOnDarkWarningMinorActive) - outlineDefaultNegativeMinorHover.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(LightColorTokens.OutlineOnDarkInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(LightColorTokens.OutlineOnDarkInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarningActive) - outlineDefaultNegativeTransparentHover.overrideBy(LightColorTokens.OutlineOnDarkNegativeTransparentHover) - outlineDefaultNegativeTransparentActive.overrideBy(LightColorTokens.OutlineOnDarkNegativeTransparentActive) - outlineDefaultTransparentInfoHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfoActive) - outlineDefaultPrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkPrimaryHover) - outlineDefaultPrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkPrimaryActive) - outlineDefaultTransparentPrimary.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimary) - outlineDefaultTransparentSecondary.overrideBy(LightColorTokens.OutlineOnDarkTransparentSecondary) - outlineDefaultTransparentTertiary.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiary) - outlineDefaultAccent.overrideBy(LightColorTokens.OutlineOnDarkAccent) - outlineDefaultAccentMinor.overrideBy(LightColorTokens.OutlineOnDarkAccentMinor) - outlineDefaultTransparentAccent.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccent) - outlineDefaultPositive.overrideBy(LightColorTokens.OutlineOnDarkPositive) - outlineDefaultWarning.overrideBy(LightColorTokens.OutlineOnDarkWarning) - outlineDefaultNegative.overrideBy(LightColorTokens.OutlineOnDarkNegative) - outlineDefaultPositiveMinor.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinor) - outlineDefaultWarningMinor.overrideBy(LightColorTokens.OutlineOnDarkWarningMinor) - outlineDefaultNegativeMinor.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinor) - outlineDefaultTransparentPositive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarning) - outlineDefaultInfo.overrideBy(LightColorTokens.OutlineOnDarkInfo) - outlineDefaultInfoMinor.overrideBy(LightColorTokens.OutlineOnDarkInfoMinor) - outlineDefaultTransparentInfo.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfo) - outlineDefaultSolidPrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimaryActive) - outlineDefaultSolidSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondaryActive) - outlineDefaultSolidTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiaryActive) - outlineDefaultSolidDefaultHover.overrideBy(LightColorTokens.OutlineOnDarkSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(LightColorTokens.OutlineOnDarkSolidDefaultActive) - outlineDefaultSolidPrimary.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimary) - outlineDefaultSolidSecondary.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondary) - outlineDefaultSolidTertiary.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiary) - outlineDefaultSolidDefault.overrideBy(LightColorTokens.OutlineOnDarkSolidDefault) - dataDefaultYellow.overrideBy(LightColorTokens.DataOnDarkYellow) - dataDefaultYellowHover.overrideBy(LightColorTokens.DataOnDarkYellowHover) - dataDefaultYellowActive.overrideBy(LightColorTokens.DataOnDarkYellowActive) - dataDefaultYellowMinor.overrideBy(LightColorTokens.DataOnDarkYellowMinor) - dataDefaultYellowMinorHover.overrideBy(LightColorTokens.DataOnDarkYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(LightColorTokens.DataOnDarkYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(LightColorTokens.DataOnDarkYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(LightColorTokens.DataOnDarkYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(LightColorTokens.DataOnDarkYellowTransparentActive) - } -} - -private val darkOnDarkGradients: PlasmaGigaAppGradients by lazy { - darkPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientHover.colors, - DarkGradientTokens.TextOnLightAccentGradientHover.positions, - DarkGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientActive.colors, - DarkGradientTokens.TextOnLightAccentGradientActive.positions, - DarkGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradient.colors, - DarkGradientTokens.TextOnLightAccentGradient.positions, - DarkGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradient.colors, - DarkGradientTokens.SurfaceOnLightAccentGradient.positions, - DarkGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradient.colors, - DarkGradientTokens.TextOnDarkAccentGradient.positions, - DarkGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientHover.colors, - DarkGradientTokens.TextOnDarkAccentGradientHover.positions, - DarkGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientActive.colors, - DarkGradientTokens.TextOnDarkAccentGradientActive.positions, - DarkGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradient.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradient.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -private val lightOnDarkGradients: PlasmaGigaAppGradients by lazy { - lightPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientHover.colors, - LightGradientTokens.TextOnLightAccentGradientHover.positions, - LightGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientActive.colors, - LightGradientTokens.TextOnLightAccentGradientActive.positions, - LightGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradient.colors, - LightGradientTokens.TextOnLightAccentGradient.positions, - LightGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradient.colors, - LightGradientTokens.SurfaceOnLightAccentGradient.positions, - LightGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientHover.colors, - LightGradientTokens.SurfaceOnLightAccentGradientHover.positions, - LightGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientActive.colors, - LightGradientTokens.SurfaceOnLightAccentGradientActive.positions, - LightGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradient.colors, - LightGradientTokens.TextOnDarkAccentGradient.positions, - LightGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientHover.colors, - LightGradientTokens.TextOnDarkAccentGradientHover.positions, - LightGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientActive.colors, - LightGradientTokens.TextOnDarkAccentGradientActive.positions, - LightGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradient.colors, - LightGradientTokens.SurfaceOnDarkAccentGradient.positions, - LightGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -/** - * Подтема PlasmaGigaAppTheme.OnDark - */ -@Composable -public fun PlasmaGigaAppTheme.OnDark( - isDark: Boolean = isSystemInDarkTheme(), - content: @Composable - () -> Unit, -) { - val colors = if (isDark) { - darkOnDarkColors - } else { - lightOnDarkColors - } - val gradients = if (isDark) { - darkOnDarkGradients - } else { - lightOnDarkGradients - } - PlasmaGigaAppTheme( - colors = colors, - gradients = gradients, - content = content, - ) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnLight.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnLight.kt deleted file mode 100644 index 2db37bb9a8..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/theme/subthemes/PlasmaGigaAppThemeOnLight.kt +++ /dev/null @@ -1,1347 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.theme.subthemes - -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.linearGradient -import com.sdds.plasma.giga.app.tokens.DarkColorTokens -import com.sdds.plasma.giga.app.tokens.DarkGradientTokens -import com.sdds.plasma.giga.app.tokens.LightColorTokens -import com.sdds.plasma.giga.app.tokens.LightGradientTokens -import kotlin.Boolean -import kotlin.Unit - -private val darkOnLightColors: PlasmaGigaAppColors by lazy { - darkPlasmaGigaAppColors { - textInversePrimary.overrideBy(DarkColorTokens.TextOnDarkPrimary) - textInversePrimaryBrightness.overrideBy(DarkColorTokens.TextOnDarkPrimaryBrightness) - textInverseSecondary.overrideBy(DarkColorTokens.TextOnDarkSecondary) - textInverseTertiary.overrideBy(DarkColorTokens.TextOnDarkTertiary) - textInverseParagraph.overrideBy(DarkColorTokens.TextOnDarkParagraph) - textInversePrimaryHover.overrideBy(DarkColorTokens.TextOnDarkPrimaryHover) - textInversePrimaryActive.overrideBy(DarkColorTokens.TextOnDarkPrimaryActive) - textInverseSecondaryHover.overrideBy(DarkColorTokens.TextOnDarkSecondaryHover) - textInverseSecondaryActive.overrideBy(DarkColorTokens.TextOnDarkSecondaryActive) - textInverseTertiaryHover.overrideBy(DarkColorTokens.TextOnDarkTertiaryHover) - textInverseTertiaryActive.overrideBy(DarkColorTokens.TextOnDarkTertiaryActive) - textInverseParagraphHover.overrideBy(DarkColorTokens.TextOnDarkParagraphHover) - textInverseParagraphActive.overrideBy(DarkColorTokens.TextOnDarkParagraphActive) - textInverseAccentHover.overrideBy(DarkColorTokens.TextOnDarkAccentHover) - textInverseAccentActive.overrideBy(DarkColorTokens.TextOnDarkAccentActive) - textInversePositiveHover.overrideBy(DarkColorTokens.TextOnDarkPositiveHover) - textInversePositiveActive.overrideBy(DarkColorTokens.TextOnDarkPositiveActive) - textInverseWarningHover.overrideBy(DarkColorTokens.TextOnDarkWarningHover) - textInverseWarningActive.overrideBy(DarkColorTokens.TextOnDarkWarningActive) - textInverseNegativeHover.overrideBy(DarkColorTokens.TextOnDarkNegativeHover) - textInverseNegativeActive.overrideBy(DarkColorTokens.TextOnDarkNegativeActive) - textInverseAccentMinorHover.overrideBy(DarkColorTokens.TextOnDarkAccentMinorHover) - textInverseAccentMinorActive.overrideBy(DarkColorTokens.TextOnDarkAccentMinorActive) - textInverseAccent.overrideBy(DarkColorTokens.TextOnDarkAccent) - textInverseAccentMinor.overrideBy(DarkColorTokens.TextOnDarkAccentMinor) - textInversePositive.overrideBy(DarkColorTokens.TextOnDarkPositive) - textInverseWarning.overrideBy(DarkColorTokens.TextOnDarkWarning) - textInverseNegative.overrideBy(DarkColorTokens.TextOnDarkNegative) - textInverseInfo.overrideBy(DarkColorTokens.TextOnDarkInfo) - textInverseInfoHover.overrideBy(DarkColorTokens.TextOnDarkInfoHover) - textInverseInfoActive.overrideBy(DarkColorTokens.TextOnDarkInfoActive) - textInversePositiveMinor.overrideBy(DarkColorTokens.TextOnDarkPositiveMinor) - textInversePositiveMinorHover.overrideBy(DarkColorTokens.TextOnDarkPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(DarkColorTokens.TextOnDarkPositiveMinorActive) - textInverseWarningMinor.overrideBy(DarkColorTokens.TextOnDarkWarningMinor) - textInverseWarningMinorHover.overrideBy(DarkColorTokens.TextOnDarkWarningMinorHover) - textInverseWarningMinorActive.overrideBy(DarkColorTokens.TextOnDarkWarningMinorActive) - textInverseNegativeMinor.overrideBy(DarkColorTokens.TextOnDarkNegativeMinor) - textInverseNegativeMinorHover.overrideBy(DarkColorTokens.TextOnDarkNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(DarkColorTokens.TextOnDarkNegativeMinorActive) - textInverseInfoMinor.overrideBy(DarkColorTokens.TextOnDarkInfoMinor) - textInverseInfoMinorHover.overrideBy(DarkColorTokens.TextOnDarkInfoMinorHover) - textInverseInfoMinorActive.overrideBy(DarkColorTokens.TextOnDarkInfoMinorActive) - surfaceInverseSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryBrightness) - surfaceInverseSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefault) - surfaceInverseTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardBrightness) - surfaceInversePositive.overrideBy(DarkColorTokens.SurfaceOnDarkPositive) - surfaceInverseWarning.overrideBy(DarkColorTokens.SurfaceOnDarkWarning) - surfaceInverseNegative.overrideBy(DarkColorTokens.SurfaceOnDarkNegative) - surfaceInverseSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondaryActive) - surfaceInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCardActive) - surfaceInverseAccentHover.overrideBy(DarkColorTokens.SurfaceOnDarkAccentHover) - surfaceInverseAccentActive.overrideBy(DarkColorTokens.SurfaceOnDarkAccentActive) - surfaceInversePositiveHover.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveHover) - surfaceInversePositiveActive.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveActive) - surfaceInverseWarningHover.overrideBy(DarkColorTokens.SurfaceOnDarkWarningHover) - surfaceInverseWarningActive.overrideBy(DarkColorTokens.SurfaceOnDarkWarningActive) - surfaceInverseNegativeHover.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeHover) - surfaceInverseNegativeActive.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeActive) - surfaceInverseClearHover.overrideBy(DarkColorTokens.SurfaceOnDarkClearHover) - surfaceInverseClearActive.overrideBy(DarkColorTokens.SurfaceOnDarkClearActive) - surfaceInverseSolidCard.overrideBy(DarkColorTokens.SurfaceOnDarkSolidCard) - surfaceInverseSolidPrimary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidPrimary) - surfaceInverseSolidSecondary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(DarkColorTokens.SurfaceOnDarkSolidTertiary) - surfaceInverseSolidDefault.overrideBy(DarkColorTokens.SurfaceOnDarkSolidDefault) - surfaceInverseTransparentCard.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentCard) - surfaceInverseTransparentPrimary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentTertiary) - surfaceInverseTransparentDeep.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentDeepActive) - surfaceInverseClear.overrideBy(DarkColorTokens.SurfaceOnDarkClear) - surfaceInverseAccent.overrideBy(DarkColorTokens.SurfaceOnDarkAccent) - surfaceInverseAccentMinor.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentAccentActive) - surfaceInversePositiveMinor.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(DarkColorTokens.SurfaceOnDarkInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceOnDarkTransparentInfoActive) - overlayInverseSoft.overrideBy(DarkColorTokens.OverlayOnDarkSoft) - overlayInverseHard.overrideBy(DarkColorTokens.OverlayOnDarkHard) - overlayInverseBlur.overrideBy(DarkColorTokens.OverlayOnDarkBlur) - outlineInversePrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkPrimaryHover) - outlineInversePrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkPrimaryActive) - outlineInverseSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSecondaryHover) - outlineInverseSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSecondaryActive) - outlineInverseTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTertiaryHover) - outlineInverseTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTertiaryActive) - outlineInverseDefaultHover.overrideBy(DarkColorTokens.OutlineOnDarkDefaultHover) - outlineInverseDefaultActive.overrideBy(DarkColorTokens.OutlineOnDarkDefaultActive) - outlineInverseTransparentPrimary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimary) - outlineInverseTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPrimaryActive) - outlineInverseTransparentSecondary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondary) - outlineInverseTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentSecondaryActive) - outlineInverseTransparentTertiary.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiary) - outlineInverseTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentTertiaryActive) - outlineInverseAccent.overrideBy(DarkColorTokens.OutlineOnDarkAccent) - outlineInverseAccentHover.overrideBy(DarkColorTokens.OutlineOnDarkAccentHover) - outlineInverseAccentActive.overrideBy(DarkColorTokens.OutlineOnDarkAccentActive) - outlineInverseAccentMinor.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinor) - outlineInverseAccentMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkAccentMinorActive) - outlineInverseTransparentAccent.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccent) - outlineInverseTransparentAccentHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentAccentActive) - outlineInversePositive.overrideBy(DarkColorTokens.OutlineOnDarkPositive) - outlineInversePositiveHover.overrideBy(DarkColorTokens.OutlineOnDarkPositiveHover) - outlineInversePositiveActive.overrideBy(DarkColorTokens.OutlineOnDarkPositiveActive) - outlineInverseWarning.overrideBy(DarkColorTokens.OutlineOnDarkWarning) - outlineInverseWarningHover.overrideBy(DarkColorTokens.OutlineOnDarkWarningHover) - outlineInverseWarningActive.overrideBy(DarkColorTokens.OutlineOnDarkWarningActive) - outlineInverseNegative.overrideBy(DarkColorTokens.OutlineOnDarkNegative) - outlineInverseNegativeHover.overrideBy(DarkColorTokens.OutlineOnDarkNegativeHover) - outlineInverseNegativeActive.overrideBy(DarkColorTokens.OutlineOnDarkNegativeActive) - outlineInverseInfo.overrideBy(DarkColorTokens.OutlineOnDarkInfo) - outlineInverseInfoHover.overrideBy(DarkColorTokens.OutlineOnDarkInfoHover) - outlineInverseInfoActive.overrideBy(DarkColorTokens.OutlineOnDarkInfoActive) - outlineInversePositiveMinor.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinor) - outlineInversePositiveMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkPositiveMinorActive) - outlineInverseWarningMinor.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinor) - outlineInverseWarningMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkWarningMinorActive) - outlineInverseNegativeMinor.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinor) - outlineInverseNegativeMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkNegativeMinorActive) - outlineInverseInfoMinor.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinor) - outlineInverseInfoMinorHover.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(DarkColorTokens.OutlineOnDarkInfoMinorActive) - outlineInverseTransparentPositive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositive) - outlineInverseTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentPositiveActive) - outlineInverseTransparentWarning.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarning) - outlineInverseTransparentWarningHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentWarningActive) - outlineInverseTransparentInfo.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfo) - outlineInverseTransparentInfoHover.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(DarkColorTokens.OutlineOnDarkTransparentInfoActive) - outlineInverseSolidPrimary.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimary) - outlineInverseSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidPrimaryActive) - outlineInverseSolidSecondary.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondary) - outlineInverseSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidSecondaryActive) - outlineInverseSolidTertiary.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiary) - outlineInverseSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidTertiaryActive) - outlineInverseSolidDefault.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefault) - outlineInverseSolidDefaultHover.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(DarkColorTokens.OutlineOnDarkSolidDefaultActive) - dataInverseYellow.overrideBy(DarkColorTokens.DataOnDarkYellow) - dataInverseYellowHover.overrideBy(DarkColorTokens.DataOnDarkYellowHover) - dataInverseYellowActive.overrideBy(DarkColorTokens.DataOnDarkYellowActive) - dataInverseYellowMinor.overrideBy(DarkColorTokens.DataOnDarkYellowMinor) - dataInverseYellowMinorHover.overrideBy(DarkColorTokens.DataOnDarkYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(DarkColorTokens.DataOnDarkYellowMinorActive) - dataInverseYellowTransparent.overrideBy(DarkColorTokens.DataOnDarkYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(DarkColorTokens.DataOnDarkYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(DarkColorTokens.DataOnDarkYellowTransparentActive) - textDefaultPrimary.overrideBy(DarkColorTokens.TextOnLightPrimary) - textDefaultPrimaryBrightness.overrideBy(DarkColorTokens.TextOnLightPrimaryBrightness) - textDefaultSecondary.overrideBy(DarkColorTokens.TextOnLightSecondary) - textDefaultTertiary.overrideBy(DarkColorTokens.TextOnLightTertiary) - textDefaultParagraph.overrideBy(DarkColorTokens.TextOnLightParagraph) - textDefaultAccent.overrideBy(DarkColorTokens.TextOnLightAccent) - textDefaultPositive.overrideBy(DarkColorTokens.TextOnLightPositive) - textDefaultWarning.overrideBy(DarkColorTokens.TextOnLightWarning) - textDefaultNegative.overrideBy(DarkColorTokens.TextOnLightNegative) - textDefaultAccentMinor.overrideBy(DarkColorTokens.TextOnLightAccentMinor) - textDefaultAccentMinorHover.overrideBy(DarkColorTokens.TextOnLightAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(DarkColorTokens.TextOnLightAccentMinorActive) - textDefaultInfoHover.overrideBy(DarkColorTokens.TextOnLightInfoHover) - textDefaultInfoActive.overrideBy(DarkColorTokens.TextOnLightInfoActive) - textDefaultPositiveMinor.overrideBy(DarkColorTokens.TextOnLightPositiveMinor) - textDefaultPositiveMinorHover.overrideBy(DarkColorTokens.TextOnLightPositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(DarkColorTokens.TextOnLightPositiveMinorActive) - textDefaultWarningMinor.overrideBy(DarkColorTokens.TextOnLightWarningMinor) - textDefaultWarningMinorHover.overrideBy(DarkColorTokens.TextOnLightWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(DarkColorTokens.TextOnLightWarningMinorActive) - textDefaultNegativeMinor.overrideBy(DarkColorTokens.TextOnLightNegativeMinor) - textDefaultNegativeMinorHover.overrideBy(DarkColorTokens.TextOnLightNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(DarkColorTokens.TextOnLightNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(DarkColorTokens.TextOnLightInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(DarkColorTokens.TextOnLightInfoMinorActive) - textDefaultInfo.overrideBy(DarkColorTokens.TextOnLightInfo) - textDefaultInfoMinor.overrideBy(DarkColorTokens.TextOnLightInfoMinor) - textDefaultPrimaryHover.overrideBy(DarkColorTokens.TextOnLightPrimaryHover) - textDefaultPrimaryActive.overrideBy(DarkColorTokens.TextOnLightPrimaryActive) - textDefaultSecondaryHover.overrideBy(DarkColorTokens.TextOnLightSecondaryHover) - textDefaultSecondaryActive.overrideBy(DarkColorTokens.TextOnLightSecondaryActive) - textDefaultTertiaryHover.overrideBy(DarkColorTokens.TextOnLightTertiaryHover) - textDefaultTertiaryActive.overrideBy(DarkColorTokens.TextOnLightTertiaryActive) - textDefaultParagraphHover.overrideBy(DarkColorTokens.TextOnLightParagraphHover) - textDefaultParagraphActive.overrideBy(DarkColorTokens.TextOnLightParagraphActive) - textDefaultAccentHover.overrideBy(DarkColorTokens.TextOnLightAccentHover) - textDefaultAccentActive.overrideBy(DarkColorTokens.TextOnLightAccentActive) - textDefaultPositiveHover.overrideBy(DarkColorTokens.TextOnLightPositiveHover) - textDefaultPositiveActive.overrideBy(DarkColorTokens.TextOnLightPositiveActive) - textDefaultWarningHover.overrideBy(DarkColorTokens.TextOnLightWarningHover) - textDefaultWarningActive.overrideBy(DarkColorTokens.TextOnLightWarningActive) - textDefaultNegativeHover.overrideBy(DarkColorTokens.TextOnLightNegativeHover) - textDefaultNegativeActive.overrideBy(DarkColorTokens.TextOnLightNegativeActive) - surfaceDefaultSolidPrimary.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiary) - surfaceDefaultSolidCard.overrideBy(DarkColorTokens.SurfaceOnLightSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(DarkColorTokens.SurfaceOnLightAccent) - surfaceDefaultPositive.overrideBy(DarkColorTokens.SurfaceOnLightPositive) - surfaceDefaultWarning.overrideBy(DarkColorTokens.SurfaceOnLightWarning) - surfaceDefaultNegative.overrideBy(DarkColorTokens.SurfaceOnLightNegative) - surfaceDefaultClear.overrideBy(DarkColorTokens.SurfaceOnLightClear) - surfaceDefaultTransparentDeep.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeep) - surfaceDefaultTransparentDeepHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDeepActive) - surfaceDefaultAccentMinor.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinor) - surfaceDefaultAccentMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightAccentMinorActive) - surfaceDefaultTransparentAccent.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccent) - surfaceDefaultTransparentAccentHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentAccentActive) - surfaceDefaultInfoHover.overrideBy(DarkColorTokens.SurfaceOnLightInfoHover) - surfaceDefaultInfoActive.overrideBy(DarkColorTokens.SurfaceOnLightInfoActive) - surfaceDefaultPositiveMinor.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinor) - surfaceDefaultPositiveMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightPositiveMinorActive) - surfaceDefaultWarningMinor.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinor) - surfaceDefaultWarningMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightWarningMinorActive) - surfaceDefaultNegativeMinor.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinor) - surfaceDefaultNegativeMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfoActive) - surfaceDefaultTransparentPositive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(DarkColorTokens.SurfaceOnLightTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(DarkColorTokens.SurfaceOnLightTransparentNegative) - surfaceDefaultSolidDefault.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefault) - surfaceDefaultSolidDefaultHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidDefaultActive) - surfaceDefaultInfo.overrideBy(DarkColorTokens.SurfaceOnLightInfo) - surfaceDefaultInfoMinor.overrideBy(DarkColorTokens.SurfaceOnLightInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(DarkColorTokens.SurfaceOnLightTransparentInfo) - surfaceDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(DarkColorTokens.SurfaceOnLightSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy( - DarkColorTokens.SurfaceOnLightTransparentSecondaryActive, - ) - surfaceDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(DarkColorTokens.SurfaceOnLightTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(DarkColorTokens.SurfaceOnLightAccentHover) - surfaceDefaultAccentActive.overrideBy(DarkColorTokens.SurfaceOnLightAccentActive) - surfaceDefaultPositiveHover.overrideBy(DarkColorTokens.SurfaceOnLightPositiveHover) - surfaceDefaultPositiveActive.overrideBy(DarkColorTokens.SurfaceOnLightPositiveActive) - surfaceDefaultWarningHover.overrideBy(DarkColorTokens.SurfaceOnLightWarningHover) - surfaceDefaultWarningActive.overrideBy(DarkColorTokens.SurfaceOnLightWarningActive) - surfaceDefaultNegativeHover.overrideBy(DarkColorTokens.SurfaceOnLightNegativeHover) - surfaceDefaultNegativeActive.overrideBy(DarkColorTokens.SurfaceOnLightNegativeActive) - surfaceDefaultClearHover.overrideBy(DarkColorTokens.SurfaceOnLightClearHover) - surfaceDefaultClearActive.overrideBy(DarkColorTokens.SurfaceOnLightClearActive) - overlayDefaultSoft.overrideBy(DarkColorTokens.OverlayOnLightSoft) - overlayDefaultHard.overrideBy(DarkColorTokens.OverlayOnLightHard) - overlayDefaultBlur.overrideBy(DarkColorTokens.OverlayOnLightBlur) - outlineDefaultPrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightPrimaryHover) - outlineDefaultPrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightPrimaryActive) - outlineDefaultSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(DarkColorTokens.OutlineOnLightSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightTertiaryActive) - outlineDefaultDefaultHover.overrideBy(DarkColorTokens.OutlineOnLightDefaultHover) - outlineDefaultDefaultActive.overrideBy(DarkColorTokens.OutlineOnLightDefaultActive) - outlineDefaultTransparentPrimary.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimary) - outlineDefaultTransparentPrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPrimaryActive) - outlineDefaultTransparentSecondary.overrideBy(DarkColorTokens.OutlineOnLightTransparentSecondary) - outlineDefaultTransparentSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy( - DarkColorTokens.OutlineOnLightTransparentSecondaryActive, - ) - outlineDefaultTransparentTertiary.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiary) - outlineDefaultTransparentTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentTertiaryActive) - outlineDefaultAccent.overrideBy(DarkColorTokens.OutlineOnLightAccent) - outlineDefaultAccentHover.overrideBy(DarkColorTokens.OutlineOnLightAccentHover) - outlineDefaultAccentActive.overrideBy(DarkColorTokens.OutlineOnLightAccentActive) - outlineDefaultAccentMinor.overrideBy(DarkColorTokens.OutlineOnLightAccentMinor) - outlineDefaultAccentMinorHover.overrideBy(DarkColorTokens.OutlineOnLightAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(DarkColorTokens.OutlineOnLightAccentMinorActive) - outlineDefaultTransparentAccent.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccent) - outlineDefaultTransparentAccentHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentAccentActive) - outlineDefaultPositive.overrideBy(DarkColorTokens.OutlineOnLightPositive) - outlineDefaultPositiveHover.overrideBy(DarkColorTokens.OutlineOnLightPositiveHover) - outlineDefaultPositiveActive.overrideBy(DarkColorTokens.OutlineOnLightPositiveActive) - outlineDefaultWarning.overrideBy(DarkColorTokens.OutlineOnLightWarning) - outlineDefaultWarningHover.overrideBy(DarkColorTokens.OutlineOnLightWarningHover) - outlineDefaultWarningActive.overrideBy(DarkColorTokens.OutlineOnLightWarningActive) - outlineDefaultNegative.overrideBy(DarkColorTokens.OutlineOnLightNegative) - outlineDefaultNegativeHover.overrideBy(DarkColorTokens.OutlineOnLightNegativeHover) - outlineDefaultNegativeActive.overrideBy(DarkColorTokens.OutlineOnLightNegativeActive) - outlineDefaultInfoHover.overrideBy(DarkColorTokens.OutlineOnLightInfoHover) - outlineDefaultInfoActive.overrideBy(DarkColorTokens.OutlineOnLightInfoActive) - outlineDefaultPositiveMinor.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinor) - outlineDefaultPositiveMinorHover.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(DarkColorTokens.OutlineOnLightPositiveMinorActive) - outlineDefaultWarningMinor.overrideBy(DarkColorTokens.OutlineOnLightWarningMinor) - outlineDefaultWarningMinorHover.overrideBy(DarkColorTokens.OutlineOnLightWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(DarkColorTokens.OutlineOnLightWarningMinorActive) - outlineDefaultNegativeMinor.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinor) - outlineDefaultNegativeMinorHover.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(DarkColorTokens.OutlineOnLightNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(DarkColorTokens.OutlineOnLightInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(DarkColorTokens.OutlineOnLightInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarningActive) - outlineDefaultNegativeTransparentHover.overrideBy(DarkColorTokens.OutlineOnLightNegativeTransparentHover) - outlineDefaultNegativeTransparentActive.overrideBy(DarkColorTokens.OutlineOnLightNegativeTransparentActive) - outlineDefaultTransparentInfoHover.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfoActive) - outlineDefaultTransparentPositive.overrideBy(DarkColorTokens.OutlineOnLightTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(DarkColorTokens.OutlineOnLightTransparentWarning) - outlineDefaultInfoMinor.overrideBy(DarkColorTokens.OutlineOnLightInfoMinor) - outlineDefaultTransparentInfo.overrideBy(DarkColorTokens.OutlineOnLightTransparentInfo) - outlineDefaultInfo.overrideBy(DarkColorTokens.OutlineOnLightInfo) - outlineDefaultSolidPrimary.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimary) - outlineDefaultSolidPrimaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidPrimaryActive) - outlineDefaultSolidSecondary.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondary) - outlineDefaultSolidSecondaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidSecondaryActive) - outlineDefaultSolidTertiary.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiary) - outlineDefaultSolidTertiaryHover.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(DarkColorTokens.OutlineOnLightSolidTertiaryActive) - outlineDefaultSolidDefault.overrideBy(DarkColorTokens.OutlineOnLightSolidDefault) - outlineDefaultSolidDefaultHover.overrideBy(DarkColorTokens.OutlineOnLightSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(DarkColorTokens.OutlineOnLightSolidDefaultActive) - dataDefaultYellow.overrideBy(DarkColorTokens.DataOnLightYellow) - dataDefaultYellowHover.overrideBy(DarkColorTokens.DataOnLightYellowHover) - dataDefaultYellowActive.overrideBy(DarkColorTokens.DataOnLightYellowActive) - dataDefaultYellowMinor.overrideBy(DarkColorTokens.DataOnLightYellowMinor) - dataDefaultYellowMinorHover.overrideBy(DarkColorTokens.DataOnLightYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(DarkColorTokens.DataOnLightYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(DarkColorTokens.DataOnLightYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(DarkColorTokens.DataOnLightYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(DarkColorTokens.DataOnLightYellowTransparentActive) - } -} - -private val lightOnLightColors: PlasmaGigaAppColors by lazy { - lightPlasmaGigaAppColors { - textInversePrimary.overrideBy(LightColorTokens.TextOnDarkPrimary) - textInversePrimaryBrightness.overrideBy(LightColorTokens.TextOnDarkPrimaryBrightness) - textInverseSecondary.overrideBy(LightColorTokens.TextOnDarkSecondary) - textInverseTertiary.overrideBy(LightColorTokens.TextOnDarkTertiary) - textInverseParagraph.overrideBy(LightColorTokens.TextOnDarkParagraph) - textInversePositive.overrideBy(LightColorTokens.TextOnDarkPositive) - textInverseWarning.overrideBy(LightColorTokens.TextOnDarkWarning) - textInverseNegative.overrideBy(LightColorTokens.TextOnDarkNegative) - textInversePrimaryHover.overrideBy(LightColorTokens.TextOnDarkPrimaryHover) - textInversePrimaryActive.overrideBy(LightColorTokens.TextOnDarkPrimaryActive) - textInverseSecondaryHover.overrideBy(LightColorTokens.TextOnDarkSecondaryHover) - textInverseSecondaryActive.overrideBy(LightColorTokens.TextOnDarkSecondaryActive) - textInverseTertiaryHover.overrideBy(LightColorTokens.TextOnDarkTertiaryHover) - textInverseTertiaryActive.overrideBy(LightColorTokens.TextOnDarkTertiaryActive) - textInverseParagraphHover.overrideBy(LightColorTokens.TextOnDarkParagraphHover) - textInverseParagraphActive.overrideBy(LightColorTokens.TextOnDarkParagraphActive) - textInverseAccentHover.overrideBy(LightColorTokens.TextOnDarkAccentHover) - textInverseAccentActive.overrideBy(LightColorTokens.TextOnDarkAccentActive) - textInversePositiveHover.overrideBy(LightColorTokens.TextOnDarkPositiveHover) - textInversePositiveActive.overrideBy(LightColorTokens.TextOnDarkPositiveActive) - textInverseWarningHover.overrideBy(LightColorTokens.TextOnDarkWarningHover) - textInverseWarningActive.overrideBy(LightColorTokens.TextOnDarkWarningActive) - textInverseNegativeHover.overrideBy(LightColorTokens.TextOnDarkNegativeHover) - textInverseNegativeActive.overrideBy(LightColorTokens.TextOnDarkNegativeActive) - textInverseAccentMinor.overrideBy(LightColorTokens.TextOnDarkAccentMinor) - textInverseAccentMinorHover.overrideBy(LightColorTokens.TextOnDarkAccentMinorHover) - textInverseAccentMinorActive.overrideBy(LightColorTokens.TextOnDarkAccentMinorActive) - textInverseInfoHover.overrideBy(LightColorTokens.TextOnDarkInfoHover) - textInverseInfoActive.overrideBy(LightColorTokens.TextOnDarkInfoActive) - textInversePositiveMinorHover.overrideBy(LightColorTokens.TextOnDarkPositiveMinorHover) - textInversePositiveMinorActive.overrideBy(LightColorTokens.TextOnDarkPositiveMinorActive) - textInverseWarningMinorHover.overrideBy(LightColorTokens.TextOnDarkWarningMinorHover) - textInverseWarningMinorActive.overrideBy(LightColorTokens.TextOnDarkWarningMinorActive) - textInverseNegativeMinorHover.overrideBy(LightColorTokens.TextOnDarkNegativeMinorHover) - textInverseNegativeMinorActive.overrideBy(LightColorTokens.TextOnDarkNegativeMinorActive) - textInverseInfoMinorHover.overrideBy(LightColorTokens.TextOnDarkInfoMinorHover) - textInverseInfoMinorActive.overrideBy(LightColorTokens.TextOnDarkInfoMinorActive) - textInverseAccent.overrideBy(LightColorTokens.TextOnDarkAccent) - textInverseInfo.overrideBy(LightColorTokens.TextOnDarkInfo) - textInversePositiveMinor.overrideBy(LightColorTokens.TextOnDarkPositiveMinor) - textInverseWarningMinor.overrideBy(LightColorTokens.TextOnDarkWarningMinor) - textInverseNegativeMinor.overrideBy(LightColorTokens.TextOnDarkNegativeMinor) - textInverseInfoMinor.overrideBy(LightColorTokens.TextOnDarkInfoMinor) - surfaceInverseSolidDefault.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefault) - surfaceInverseSolidPrimary.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimary) - surfaceInverseSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryBrightness) - surfaceInverseSolidSecondary.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondary) - surfaceInverseSolidTertiary.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiary) - surfaceInverseSolidCard.overrideBy(LightColorTokens.SurfaceOnDarkSolidCard) - surfaceInverseSolidCardBrightness.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardBrightness) - surfaceInverseTransparentDefault.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefault) - surfaceInverseTransparentPrimary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimary) - surfaceInverseTransparentSecondary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentSecondary) - surfaceInverseTransparentTertiary.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiary) - surfaceInverseTransparentCard.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCard) - surfaceInverseTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardBrightness) - surfaceInverseAccent.overrideBy(LightColorTokens.SurfaceOnDarkAccent) - surfaceInversePositive.overrideBy(LightColorTokens.SurfaceOnDarkPositive) - surfaceInverseWarning.overrideBy(LightColorTokens.SurfaceOnDarkWarning) - surfaceInverseNegative.overrideBy(LightColorTokens.SurfaceOnDarkNegative) - surfaceInverseClear.overrideBy(LightColorTokens.SurfaceOnDarkClear) - surfaceInverseSolidDefaultHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefaultHover) - surfaceInverseSolidDefaultActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidDefaultActive) - surfaceInverseSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryHover) - surfaceInverseSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidPrimaryActive) - surfaceInverseSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondaryHover) - surfaceInverseSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidSecondaryActive) - surfaceInverseSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiaryHover) - surfaceInverseSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidTertiaryActive) - surfaceInverseSolidCardHover.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardHover) - surfaceInverseSolidCardActive.overrideBy(LightColorTokens.SurfaceOnDarkSolidCardActive) - surfaceInverseTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefaultHover) - surfaceInverseTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDefaultActive) - surfaceInverseTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimaryHover) - surfaceInverseTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPrimaryActive) - surfaceInverseTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentSecondaryHover) - surfaceInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceOnDarkTransparentSecondaryActive, - ) - surfaceInverseTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiaryHover) - surfaceInverseTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentTertiaryActive) - surfaceInverseTransparentCardHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardHover) - surfaceInverseTransparentCardActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentCardActive) - surfaceInverseAccentHover.overrideBy(LightColorTokens.SurfaceOnDarkAccentHover) - surfaceInverseAccentActive.overrideBy(LightColorTokens.SurfaceOnDarkAccentActive) - surfaceInversePositiveHover.overrideBy(LightColorTokens.SurfaceOnDarkPositiveHover) - surfaceInversePositiveActive.overrideBy(LightColorTokens.SurfaceOnDarkPositiveActive) - surfaceInverseWarningHover.overrideBy(LightColorTokens.SurfaceOnDarkWarningHover) - surfaceInverseWarningActive.overrideBy(LightColorTokens.SurfaceOnDarkWarningActive) - surfaceInverseNegativeHover.overrideBy(LightColorTokens.SurfaceOnDarkNegativeHover) - surfaceInverseNegativeActive.overrideBy(LightColorTokens.SurfaceOnDarkNegativeActive) - surfaceInverseClearHover.overrideBy(LightColorTokens.SurfaceOnDarkClearHover) - surfaceInverseClearActive.overrideBy(LightColorTokens.SurfaceOnDarkClearActive) - surfaceInverseTransparentDeep.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeep) - surfaceInverseTransparentDeepHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeepHover) - surfaceInverseTransparentDeepActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentDeepActive) - surfaceInverseAccentMinor.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinor) - surfaceInverseAccentMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinorHover) - surfaceInverseAccentMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkAccentMinorActive) - surfaceInverseTransparentAccent.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccent) - surfaceInverseTransparentAccentHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccentHover) - surfaceInverseTransparentAccentActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentAccentActive) - surfaceInversePositiveMinor.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinor) - surfaceInversePositiveMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinorHover) - surfaceInversePositiveMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkPositiveMinorActive) - surfaceInverseWarningMinor.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinor) - surfaceInverseWarningMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinorHover) - surfaceInverseWarningMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkWarningMinorActive) - surfaceInverseNegativeMinor.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinor) - surfaceInverseNegativeMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinorHover) - surfaceInverseNegativeMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkNegativeMinorActive) - surfaceInverseInfoMinor.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinor) - surfaceInverseInfoMinorHover.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinorHover) - surfaceInverseInfoMinorActive.overrideBy(LightColorTokens.SurfaceOnDarkInfoMinorActive) - surfaceInverseTransparentPositive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositive) - surfaceInverseTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositiveHover) - surfaceInverseTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentPositiveActive) - surfaceInverseTransparentWarning.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarning) - surfaceInverseTransparentWarningHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarningHover) - surfaceInverseTransparentWarningActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentWarningActive) - surfaceInverseTransparentNegative.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegative) - surfaceInverseTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegativeHover) - surfaceInverseTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentNegativeActive) - surfaceInverseTransparentInfo.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfo) - surfaceInverseTransparentInfoHover.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfoHover) - surfaceInverseTransparentInfoActive.overrideBy(LightColorTokens.SurfaceOnDarkTransparentInfoActive) - overlayInverseHard.overrideBy(LightColorTokens.OverlayOnDarkHard) - overlayInverseSoft.overrideBy(LightColorTokens.OverlayOnDarkSoft) - overlayInverseBlur.overrideBy(LightColorTokens.OverlayOnDarkBlur) - outlineInversePrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkPrimaryHover) - outlineInversePrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkPrimaryActive) - outlineInverseSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkSecondaryHover) - outlineInverseSecondaryActive.overrideBy(LightColorTokens.OutlineOnDarkSecondaryActive) - outlineInverseTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkTertiaryHover) - outlineInverseTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkTertiaryActive) - outlineInverseDefaultHover.overrideBy(LightColorTokens.OutlineOnDarkDefaultHover) - outlineInverseDefaultActive.overrideBy(LightColorTokens.OutlineOnDarkDefaultActive) - outlineInverseTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimaryHover) - outlineInverseTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimaryActive) - outlineInverseTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentSecondaryHover) - outlineInverseTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineOnDarkTransparentSecondaryActive, - ) - outlineInverseTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiaryHover) - outlineInverseTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiaryActive) - outlineInverseAccentHover.overrideBy(LightColorTokens.OutlineOnDarkAccentHover) - outlineInverseAccentActive.overrideBy(LightColorTokens.OutlineOnDarkAccentActive) - outlineInverseAccentMinorHover.overrideBy(LightColorTokens.OutlineOnDarkAccentMinorHover) - outlineInverseAccentMinorActive.overrideBy(LightColorTokens.OutlineOnDarkAccentMinorActive) - outlineInverseTransparentAccentHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccentHover) - outlineInverseTransparentAccentActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccentActive) - outlineInversePositiveHover.overrideBy(LightColorTokens.OutlineOnDarkPositiveHover) - outlineInversePositiveActive.overrideBy(LightColorTokens.OutlineOnDarkPositiveActive) - outlineInverseWarningHover.overrideBy(LightColorTokens.OutlineOnDarkWarningHover) - outlineInverseWarningActive.overrideBy(LightColorTokens.OutlineOnDarkWarningActive) - outlineInverseNegativeHover.overrideBy(LightColorTokens.OutlineOnDarkNegativeHover) - outlineInverseNegativeActive.overrideBy(LightColorTokens.OutlineOnDarkNegativeActive) - outlineInverseInfoHover.overrideBy(LightColorTokens.OutlineOnDarkInfoHover) - outlineInverseInfoActive.overrideBy(LightColorTokens.OutlineOnDarkInfoActive) - outlineInversePositiveMinorHover.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinorHover) - outlineInversePositiveMinorActive.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinorActive) - outlineInverseWarningMinorHover.overrideBy(LightColorTokens.OutlineOnDarkWarningMinorHover) - outlineInverseWarningMinorActive.overrideBy(LightColorTokens.OutlineOnDarkWarningMinorActive) - outlineInverseNegativeMinorHover.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinorHover) - outlineInverseNegativeMinorActive.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinorActive) - outlineInverseInfoMinorHover.overrideBy(LightColorTokens.OutlineOnDarkInfoMinorHover) - outlineInverseInfoMinorActive.overrideBy(LightColorTokens.OutlineOnDarkInfoMinorActive) - outlineInverseTransparentPositiveHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositiveHover) - outlineInverseTransparentPositiveActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositiveActive) - outlineInverseTransparentWarningHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarningHover) - outlineInverseTransparentWarningActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarningActive) - outlineInverseTransparentInfoHover.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfoHover) - outlineInverseTransparentInfoActive.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfoActive) - outlineInverseTransparentPrimary.overrideBy(LightColorTokens.OutlineOnDarkTransparentPrimary) - outlineInverseTransparentSecondary.overrideBy(LightColorTokens.OutlineOnDarkTransparentSecondary) - outlineInverseTransparentTertiary.overrideBy(LightColorTokens.OutlineOnDarkTransparentTertiary) - outlineInverseAccent.overrideBy(LightColorTokens.OutlineOnDarkAccent) - outlineInverseAccentMinor.overrideBy(LightColorTokens.OutlineOnDarkAccentMinor) - outlineInverseTransparentAccent.overrideBy(LightColorTokens.OutlineOnDarkTransparentAccent) - outlineInversePositive.overrideBy(LightColorTokens.OutlineOnDarkPositive) - outlineInverseWarning.overrideBy(LightColorTokens.OutlineOnDarkWarning) - outlineInverseNegative.overrideBy(LightColorTokens.OutlineOnDarkNegative) - outlineInverseInfo.overrideBy(LightColorTokens.OutlineOnDarkInfo) - outlineInversePositiveMinor.overrideBy(LightColorTokens.OutlineOnDarkPositiveMinor) - outlineInverseWarningMinor.overrideBy(LightColorTokens.OutlineOnDarkWarningMinor) - outlineInverseNegativeMinor.overrideBy(LightColorTokens.OutlineOnDarkNegativeMinor) - outlineInverseInfoMinor.overrideBy(LightColorTokens.OutlineOnDarkInfoMinor) - outlineInverseTransparentPositive.overrideBy(LightColorTokens.OutlineOnDarkTransparentPositive) - outlineInverseTransparentWarning.overrideBy(LightColorTokens.OutlineOnDarkTransparentWarning) - outlineInverseTransparentInfo.overrideBy(LightColorTokens.OutlineOnDarkTransparentInfo) - outlineInverseSolidPrimaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimaryHover) - outlineInverseSolidPrimaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimaryActive) - outlineInverseSolidSecondaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondaryHover) - outlineInverseSolidSecondaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondaryActive) - outlineInverseSolidTertiaryHover.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiaryHover) - outlineInverseSolidTertiaryActive.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiaryActive) - outlineInverseSolidDefaultHover.overrideBy(LightColorTokens.OutlineOnDarkSolidDefaultHover) - outlineInverseSolidDefaultActive.overrideBy(LightColorTokens.OutlineOnDarkSolidDefaultActive) - outlineInverseSolidPrimary.overrideBy(LightColorTokens.OutlineOnDarkSolidPrimary) - outlineInverseSolidSecondary.overrideBy(LightColorTokens.OutlineOnDarkSolidSecondary) - outlineInverseSolidTertiary.overrideBy(LightColorTokens.OutlineOnDarkSolidTertiary) - outlineInverseSolidDefault.overrideBy(LightColorTokens.OutlineOnDarkSolidDefault) - dataInverseYellow.overrideBy(LightColorTokens.DataOnDarkYellow) - dataInverseYellowHover.overrideBy(LightColorTokens.DataOnDarkYellowHover) - dataInverseYellowActive.overrideBy(LightColorTokens.DataOnDarkYellowActive) - dataInverseYellowMinor.overrideBy(LightColorTokens.DataOnDarkYellowMinor) - dataInverseYellowMinorHover.overrideBy(LightColorTokens.DataOnDarkYellowMinorHover) - dataInverseYellowMinorActive.overrideBy(LightColorTokens.DataOnDarkYellowMinorActive) - dataInverseYellowTransparent.overrideBy(LightColorTokens.DataOnDarkYellowTransparent) - dataInverseYellowTransparentHover.overrideBy(LightColorTokens.DataOnDarkYellowTransparentHover) - dataInverseYellowTransparentActive.overrideBy(LightColorTokens.DataOnDarkYellowTransparentActive) - textDefaultPrimary.overrideBy(LightColorTokens.TextOnLightPrimary) - textDefaultPrimaryBrightness.overrideBy(LightColorTokens.TextOnLightPrimaryBrightness) - textDefaultSecondary.overrideBy(LightColorTokens.TextOnLightSecondary) - textDefaultTertiary.overrideBy(LightColorTokens.TextOnLightTertiary) - textDefaultParagraph.overrideBy(LightColorTokens.TextOnLightParagraph) - textDefaultAccent.overrideBy(LightColorTokens.TextOnLightAccent) - textDefaultPositive.overrideBy(LightColorTokens.TextOnLightPositive) - textDefaultWarning.overrideBy(LightColorTokens.TextOnLightWarning) - textDefaultNegative.overrideBy(LightColorTokens.TextOnLightNegative) - textDefaultAccentMinorHover.overrideBy(LightColorTokens.TextOnLightAccentMinorHover) - textDefaultAccentMinorActive.overrideBy(LightColorTokens.TextOnLightAccentMinorActive) - textDefaultInfoHover.overrideBy(LightColorTokens.TextOnLightInfoHover) - textDefaultInfoActive.overrideBy(LightColorTokens.TextOnLightInfoActive) - textDefaultPositiveMinorHover.overrideBy(LightColorTokens.TextOnLightPositiveMinorHover) - textDefaultPositiveMinorActive.overrideBy(LightColorTokens.TextOnLightPositiveMinorActive) - textDefaultWarningMinorHover.overrideBy(LightColorTokens.TextOnLightWarningMinorHover) - textDefaultWarningMinorActive.overrideBy(LightColorTokens.TextOnLightWarningMinorActive) - textDefaultNegativeMinorHover.overrideBy(LightColorTokens.TextOnLightNegativeMinorHover) - textDefaultNegativeMinorActive.overrideBy(LightColorTokens.TextOnLightNegativeMinorActive) - textDefaultInfoMinorHover.overrideBy(LightColorTokens.TextOnLightInfoMinorHover) - textDefaultInfoMinorActive.overrideBy(LightColorTokens.TextOnLightInfoMinorActive) - textDefaultAccentMinor.overrideBy(LightColorTokens.TextOnLightAccentMinor) - textDefaultPositiveMinor.overrideBy(LightColorTokens.TextOnLightPositiveMinor) - textDefaultWarningMinor.overrideBy(LightColorTokens.TextOnLightWarningMinor) - textDefaultNegativeMinor.overrideBy(LightColorTokens.TextOnLightNegativeMinor) - textDefaultInfo.overrideBy(LightColorTokens.TextOnLightInfo) - textDefaultInfoMinor.overrideBy(LightColorTokens.TextOnLightInfoMinor) - textDefaultPrimaryHover.overrideBy(LightColorTokens.TextOnLightPrimaryHover) - textDefaultPrimaryActive.overrideBy(LightColorTokens.TextOnLightPrimaryActive) - textDefaultSecondaryHover.overrideBy(LightColorTokens.TextOnLightSecondaryHover) - textDefaultSecondaryActive.overrideBy(LightColorTokens.TextOnLightSecondaryActive) - textDefaultTertiaryHover.overrideBy(LightColorTokens.TextOnLightTertiaryHover) - textDefaultTertiaryActive.overrideBy(LightColorTokens.TextOnLightTertiaryActive) - textDefaultParagraphHover.overrideBy(LightColorTokens.TextOnLightParagraphHover) - textDefaultParagraphActive.overrideBy(LightColorTokens.TextOnLightParagraphActive) - textDefaultAccentHover.overrideBy(LightColorTokens.TextOnLightAccentHover) - textDefaultAccentActive.overrideBy(LightColorTokens.TextOnLightAccentActive) - textDefaultPositiveHover.overrideBy(LightColorTokens.TextOnLightPositiveHover) - textDefaultPositiveActive.overrideBy(LightColorTokens.TextOnLightPositiveActive) - textDefaultWarningHover.overrideBy(LightColorTokens.TextOnLightWarningHover) - textDefaultWarningActive.overrideBy(LightColorTokens.TextOnLightWarningActive) - textDefaultNegativeHover.overrideBy(LightColorTokens.TextOnLightNegativeHover) - textDefaultNegativeActive.overrideBy(LightColorTokens.TextOnLightNegativeActive) - surfaceDefaultSolidDefault.overrideBy(LightColorTokens.SurfaceOnLightSolidDefault) - surfaceDefaultSolidPrimary.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimary) - surfaceDefaultSolidPrimaryBrightness.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryBrightness) - surfaceDefaultSolidSecondary.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondary) - surfaceDefaultSolidTertiary.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiary) - surfaceDefaultSolidCard.overrideBy(LightColorTokens.SurfaceOnLightSolidCard) - surfaceDefaultSolidCardBrightness.overrideBy(LightColorTokens.SurfaceOnLightSolidCardBrightness) - surfaceDefaultTransparentDefault.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefault) - surfaceDefaultTransparentPrimary.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimary) - surfaceDefaultTransparentSecondary.overrideBy(LightColorTokens.SurfaceOnLightTransparentSecondary) - surfaceDefaultTransparentTertiary.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiary) - surfaceDefaultTransparentCard.overrideBy(LightColorTokens.SurfaceOnLightTransparentCard) - surfaceDefaultTransparentCardBrightness.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardBrightness) - surfaceDefaultAccent.overrideBy(LightColorTokens.SurfaceOnLightAccent) - surfaceDefaultPositive.overrideBy(LightColorTokens.SurfaceOnLightPositive) - surfaceDefaultWarning.overrideBy(LightColorTokens.SurfaceOnLightWarning) - surfaceDefaultNegative.overrideBy(LightColorTokens.SurfaceOnLightNegative) - surfaceDefaultClear.overrideBy(LightColorTokens.SurfaceOnLightClear) - surfaceDefaultTransparentDeep.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeep) - surfaceDefaultAccentMinorHover.overrideBy(LightColorTokens.SurfaceOnLightAccentMinorHover) - surfaceDefaultAccentMinorActive.overrideBy(LightColorTokens.SurfaceOnLightAccentMinorActive) - surfaceDefaultTransparentAccentHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccentHover) - surfaceDefaultTransparentAccentActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccentActive) - surfaceDefaultInfoHover.overrideBy(LightColorTokens.SurfaceOnLightInfoHover) - surfaceDefaultInfoActive.overrideBy(LightColorTokens.SurfaceOnLightInfoActive) - surfaceDefaultPositiveMinorHover.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinorHover) - surfaceDefaultPositiveMinorActive.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinorActive) - surfaceDefaultWarningMinorHover.overrideBy(LightColorTokens.SurfaceOnLightWarningMinorHover) - surfaceDefaultWarningMinorActive.overrideBy(LightColorTokens.SurfaceOnLightWarningMinorActive) - surfaceDefaultNegativeMinorHover.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinorHover) - surfaceDefaultNegativeMinorActive.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinorActive) - surfaceDefaultInfoMinorHover.overrideBy(LightColorTokens.SurfaceOnLightInfoMinorHover) - surfaceDefaultInfoMinorActive.overrideBy(LightColorTokens.SurfaceOnLightInfoMinorActive) - surfaceDefaultTransparentPositiveHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositiveHover) - surfaceDefaultTransparentPositiveActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositiveActive) - surfaceDefaultTransparentWarningHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarningHover) - surfaceDefaultTransparentWarningActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarningActive) - surfaceDefaultTransparentNegativeHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegativeHover) - surfaceDefaultTransparentNegativeActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegativeActive) - surfaceDefaultTransparentInfoHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfoHover) - surfaceDefaultTransparentInfoActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfoActive) - surfaceDefaultAccentMinor.overrideBy(LightColorTokens.SurfaceOnLightAccentMinor) - surfaceDefaultTransparentAccent.overrideBy(LightColorTokens.SurfaceOnLightTransparentAccent) - surfaceDefaultPositiveMinor.overrideBy(LightColorTokens.SurfaceOnLightPositiveMinor) - surfaceDefaultWarningMinor.overrideBy(LightColorTokens.SurfaceOnLightWarningMinor) - surfaceDefaultNegativeMinor.overrideBy(LightColorTokens.SurfaceOnLightNegativeMinor) - surfaceDefaultTransparentPositive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPositive) - surfaceDefaultTransparentWarning.overrideBy(LightColorTokens.SurfaceOnLightTransparentWarning) - surfaceDefaultTransparentNegative.overrideBy(LightColorTokens.SurfaceOnLightTransparentNegative) - surfaceDefaultInfo.overrideBy(LightColorTokens.SurfaceOnLightInfo) - surfaceDefaultInfoMinor.overrideBy(LightColorTokens.SurfaceOnLightInfoMinor) - surfaceDefaultTransparentInfo.overrideBy(LightColorTokens.SurfaceOnLightTransparentInfo) - surfaceDefaultSolidDefaultHover.overrideBy(LightColorTokens.SurfaceOnLightSolidDefaultHover) - surfaceDefaultSolidDefaultActive.overrideBy(LightColorTokens.SurfaceOnLightSolidDefaultActive) - surfaceDefaultSolidPrimaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryHover) - surfaceDefaultSolidPrimaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidPrimaryActive) - surfaceDefaultSolidSecondaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondaryHover) - surfaceDefaultSolidSecondaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidSecondaryActive) - surfaceDefaultSolidTertiaryHover.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiaryHover) - surfaceDefaultSolidTertiaryActive.overrideBy(LightColorTokens.SurfaceOnLightSolidTertiaryActive) - surfaceDefaultSolidCardHover.overrideBy(LightColorTokens.SurfaceOnLightSolidCardHover) - surfaceDefaultSolidCardActive.overrideBy(LightColorTokens.SurfaceOnLightSolidCardActive) - surfaceDefaultTransparentDefaultHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefaultHover) - surfaceDefaultTransparentDefaultActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentDefaultActive) - surfaceDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimaryHover) - surfaceDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentPrimaryActive) - surfaceDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentSecondaryHover) - surfaceDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.SurfaceOnLightTransparentSecondaryActive, - ) - surfaceDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiaryHover) - surfaceDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentTertiaryActive) - surfaceDefaultTransparentCardHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardHover) - surfaceDefaultTransparentCardActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentCardActive) - surfaceDefaultAccentHover.overrideBy(LightColorTokens.SurfaceOnLightAccentHover) - surfaceDefaultAccentActive.overrideBy(LightColorTokens.SurfaceOnLightAccentActive) - surfaceDefaultPositiveHover.overrideBy(LightColorTokens.SurfaceOnLightPositiveHover) - surfaceDefaultPositiveActive.overrideBy(LightColorTokens.SurfaceOnLightPositiveActive) - surfaceDefaultWarningHover.overrideBy(LightColorTokens.SurfaceOnLightWarningHover) - surfaceDefaultWarningActive.overrideBy(LightColorTokens.SurfaceOnLightWarningActive) - surfaceDefaultNegativeHover.overrideBy(LightColorTokens.SurfaceOnLightNegativeHover) - surfaceDefaultNegativeActive.overrideBy(LightColorTokens.SurfaceOnLightNegativeActive) - surfaceDefaultClearHover.overrideBy(LightColorTokens.SurfaceOnLightClearHover) - surfaceDefaultClearActive.overrideBy(LightColorTokens.SurfaceOnLightClearActive) - surfaceDefaultTransparentDeepHover.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeepHover) - surfaceDefaultTransparentDeepActive.overrideBy(LightColorTokens.SurfaceOnLightTransparentDeepActive) - overlayDefaultSoft.overrideBy(LightColorTokens.OverlayOnLightSoft) - overlayDefaultHard.overrideBy(LightColorTokens.OverlayOnLightHard) - overlayDefaultBlur.overrideBy(LightColorTokens.OverlayOnLightBlur) - outlineDefaultSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightSecondaryHover) - outlineDefaultSecondaryActive.overrideBy(LightColorTokens.OutlineOnLightSecondaryActive) - outlineDefaultTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightTertiaryHover) - outlineDefaultTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightTertiaryActive) - outlineDefaultDefaultHover.overrideBy(LightColorTokens.OutlineOnLightDefaultHover) - outlineDefaultDefaultActive.overrideBy(LightColorTokens.OutlineOnLightDefaultActive) - outlineDefaultTransparentPrimaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimaryHover) - outlineDefaultTransparentPrimaryActive.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimaryActive) - outlineDefaultTransparentSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentSecondaryHover) - outlineDefaultTransparentSecondaryActive.overrideBy( - LightColorTokens.OutlineOnLightTransparentSecondaryActive, - ) - outlineDefaultTransparentTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiaryHover) - outlineDefaultTransparentTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiaryActive) - outlineDefaultAccentHover.overrideBy(LightColorTokens.OutlineOnLightAccentHover) - outlineDefaultAccentActive.overrideBy(LightColorTokens.OutlineOnLightAccentActive) - outlineDefaultAccentMinorHover.overrideBy(LightColorTokens.OutlineOnLightAccentMinorHover) - outlineDefaultAccentMinorActive.overrideBy(LightColorTokens.OutlineOnLightAccentMinorActive) - outlineDefaultTransparentAccentHover.overrideBy(LightColorTokens.OutlineOnLightTransparentAccentHover) - outlineDefaultTransparentAccentActive.overrideBy(LightColorTokens.OutlineOnLightTransparentAccentActive) - outlineDefaultPositiveHover.overrideBy(LightColorTokens.OutlineOnLightPositiveHover) - outlineDefaultPositiveActive.overrideBy(LightColorTokens.OutlineOnLightPositiveActive) - outlineDefaultWarningHover.overrideBy(LightColorTokens.OutlineOnLightWarningHover) - outlineDefaultWarningActive.overrideBy(LightColorTokens.OutlineOnLightWarningActive) - outlineDefaultNegativeHover.overrideBy(LightColorTokens.OutlineOnLightNegativeHover) - outlineDefaultNegativeActive.overrideBy(LightColorTokens.OutlineOnLightNegativeActive) - outlineDefaultInfoHover.overrideBy(LightColorTokens.OutlineOnLightInfoHover) - outlineDefaultInfoActive.overrideBy(LightColorTokens.OutlineOnLightInfoActive) - outlineDefaultPositiveMinorHover.overrideBy(LightColorTokens.OutlineOnLightPositiveMinorHover) - outlineDefaultPositiveMinorActive.overrideBy(LightColorTokens.OutlineOnLightPositiveMinorActive) - outlineDefaultWarningMinorHover.overrideBy(LightColorTokens.OutlineOnLightWarningMinorHover) - outlineDefaultWarningMinorActive.overrideBy(LightColorTokens.OutlineOnLightWarningMinorActive) - outlineDefaultNegativeMinorHover.overrideBy(LightColorTokens.OutlineOnLightNegativeMinorHover) - outlineDefaultNegativeMinorActive.overrideBy(LightColorTokens.OutlineOnLightNegativeMinorActive) - outlineDefaultInfoMinorHover.overrideBy(LightColorTokens.OutlineOnLightInfoMinorHover) - outlineDefaultInfoMinorActive.overrideBy(LightColorTokens.OutlineOnLightInfoMinorActive) - outlineDefaultTransparentPositiveHover.overrideBy(LightColorTokens.OutlineOnLightTransparentPositiveHover) - outlineDefaultTransparentPositiveActive.overrideBy(LightColorTokens.OutlineOnLightTransparentPositiveActive) - outlineDefaultTransparentWarningHover.overrideBy(LightColorTokens.OutlineOnLightTransparentWarningHover) - outlineDefaultTransparentWarningActive.overrideBy(LightColorTokens.OutlineOnLightTransparentWarningActive) - outlineDefaultNegativeTransparentHover.overrideBy(LightColorTokens.OutlineOnLightNegativeTransparentHover) - outlineDefaultNegativeTransparentActive.overrideBy(LightColorTokens.OutlineOnLightNegativeTransparentActive) - outlineDefaultTransparentInfoHover.overrideBy(LightColorTokens.OutlineOnLightTransparentInfoHover) - outlineDefaultTransparentInfoActive.overrideBy(LightColorTokens.OutlineOnLightTransparentInfoActive) - outlineDefaultPrimaryHover.overrideBy(LightColorTokens.OutlineOnLightPrimaryHover) - outlineDefaultPrimaryActive.overrideBy(LightColorTokens.OutlineOnLightPrimaryActive) - outlineDefaultTransparentPrimary.overrideBy(LightColorTokens.OutlineOnLightTransparentPrimary) - outlineDefaultTransparentSecondary.overrideBy(LightColorTokens.OutlineOnLightTransparentSecondary) - outlineDefaultTransparentTertiary.overrideBy(LightColorTokens.OutlineOnLightTransparentTertiary) - outlineDefaultAccent.overrideBy(LightColorTokens.OutlineOnLightAccent) - outlineDefaultAccentMinor.overrideBy(LightColorTokens.OutlineOnLightAccentMinor) - outlineDefaultTransparentAccent.overrideBy(LightColorTokens.OutlineOnLightTransparentAccent) - outlineDefaultPositive.overrideBy(LightColorTokens.OutlineOnLightPositive) - outlineDefaultWarning.overrideBy(LightColorTokens.OutlineOnLightWarning) - outlineDefaultNegative.overrideBy(LightColorTokens.OutlineOnLightNegative) - outlineDefaultPositiveMinor.overrideBy(LightColorTokens.OutlineOnLightPositiveMinor) - outlineDefaultWarningMinor.overrideBy(LightColorTokens.OutlineOnLightWarningMinor) - outlineDefaultNegativeMinor.overrideBy(LightColorTokens.OutlineOnLightNegativeMinor) - outlineDefaultTransparentPositive.overrideBy(LightColorTokens.OutlineOnLightTransparentPositive) - outlineDefaultTransparentWarning.overrideBy(LightColorTokens.OutlineOnLightTransparentWarning) - outlineDefaultInfo.overrideBy(LightColorTokens.OutlineOnLightInfo) - outlineDefaultInfoMinor.overrideBy(LightColorTokens.OutlineOnLightInfoMinor) - outlineDefaultTransparentInfo.overrideBy(LightColorTokens.OutlineOnLightTransparentInfo) - outlineDefaultSolidPrimaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidPrimaryHover) - outlineDefaultSolidPrimaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidPrimaryActive) - outlineDefaultSolidSecondaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidSecondaryHover) - outlineDefaultSolidSecondaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidSecondaryActive) - outlineDefaultSolidTertiaryHover.overrideBy(LightColorTokens.OutlineOnLightSolidTertiaryHover) - outlineDefaultSolidTertiaryActive.overrideBy(LightColorTokens.OutlineOnLightSolidTertiaryActive) - outlineDefaultSolidDefaultHover.overrideBy(LightColorTokens.OutlineOnLightSolidDefaultHover) - outlineDefaultSolidDefaultActive.overrideBy(LightColorTokens.OutlineOnLightSolidDefaultActive) - outlineDefaultSolidPrimary.overrideBy(LightColorTokens.OutlineOnLightSolidPrimary) - outlineDefaultSolidSecondary.overrideBy(LightColorTokens.OutlineOnLightSolidSecondary) - outlineDefaultSolidTertiary.overrideBy(LightColorTokens.OutlineOnLightSolidTertiary) - outlineDefaultSolidDefault.overrideBy(LightColorTokens.OutlineOnLightSolidDefault) - dataDefaultYellow.overrideBy(LightColorTokens.DataOnLightYellow) - dataDefaultYellowHover.overrideBy(LightColorTokens.DataOnLightYellowHover) - dataDefaultYellowActive.overrideBy(LightColorTokens.DataOnLightYellowActive) - dataDefaultYellowMinor.overrideBy(LightColorTokens.DataOnLightYellowMinor) - dataDefaultYellowMinorHover.overrideBy(LightColorTokens.DataOnLightYellowMinorHover) - dataDefaultYellowMinorActive.overrideBy(LightColorTokens.DataOnLightYellowMinorActive) - dataDefaultYellowTransparent.overrideBy(LightColorTokens.DataOnLightYellowTransparent) - dataDefaultYellowTransparentHover.overrideBy(LightColorTokens.DataOnLightYellowTransparentHover) - dataDefaultYellowTransparentActive.overrideBy(LightColorTokens.DataOnLightYellowTransparentActive) - } -} - -private val darkOnLightGradients: PlasmaGigaAppGradients by lazy { - darkPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientHover.colors, - DarkGradientTokens.TextOnDarkAccentGradientHover.positions, - DarkGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientActive.colors, - DarkGradientTokens.TextOnDarkAccentGradientActive.positions, - DarkGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradient.colors, - DarkGradientTokens.TextOnDarkAccentGradient.positions, - DarkGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradient.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradient.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradient.colors, - DarkGradientTokens.TextOnLightAccentGradient.positions, - DarkGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientHover.colors, - DarkGradientTokens.TextOnLightAccentGradientHover.positions, - DarkGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientActive.colors, - DarkGradientTokens.TextOnLightAccentGradientActive.positions, - DarkGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradient.colors, - DarkGradientTokens.SurfaceOnLightAccentGradient.positions, - DarkGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -private val lightOnLightGradients: PlasmaGigaAppGradients by lazy { - lightPlasmaGigaAppGradients { - textInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientHover.colors, - LightGradientTokens.TextOnDarkAccentGradientHover.positions, - LightGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - ) - textInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientActive.colors, - LightGradientTokens.TextOnDarkAccentGradientActive.positions, - LightGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - ) - textInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradient.colors, - LightGradientTokens.TextOnDarkAccentGradient.positions, - LightGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradient.colors, - LightGradientTokens.SurfaceOnDarkAccentGradient.positions, - LightGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - ) - surfaceInverseAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - ) - surfaceInverseAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - ) - surfaceInverseSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceInverseSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - ) - textDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradient.colors, - LightGradientTokens.TextOnLightAccentGradient.positions, - LightGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - ) - textDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientHover.colors, - LightGradientTokens.TextOnLightAccentGradientHover.positions, - LightGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - ) - textDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientActive.colors, - LightGradientTokens.TextOnLightAccentGradientActive.positions, - LightGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultAccentGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradient.colors, - LightGradientTokens.SurfaceOnLightAccentGradient.positions, - LightGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - ) - surfaceDefaultAccentGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientHover.colors, - LightGradientTokens.SurfaceOnLightAccentGradientHover.positions, - LightGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - ) - surfaceDefaultAccentGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientActive.colors, - LightGradientTokens.SurfaceOnLightAccentGradientActive.positions, - LightGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradient.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientHover.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - ) - surfaceDefaultSkeletonDeepGradientActive.overrideBy( - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - ) - } -} - -/** - * Подтема PlasmaGigaAppTheme.OnLight - */ -@Composable -public fun PlasmaGigaAppTheme.OnLight( - isDark: Boolean = isSystemInDarkTheme(), - content: @Composable - () -> Unit, -) { - val colors = if (isDark) { - darkOnLightColors - } else { - lightOnLightColors - } - val gradients = if (isDark) { - darkOnLightGradients - } else { - lightOnLightGradients - } - PlasmaGigaAppTheme( - colors = colors, - gradients = gradients, - content = content, - ) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ColorTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ColorTokens.kt deleted file mode 100644 index 3d4be9bf9d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ColorTokens.kt +++ /dev/null @@ -1,8754 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.graphics.Color - -/** - * Токены цвета для темной темы - */ -public object DarkColorTokens { - /** - * Основной цвет текста - */ - public val TextDefaultPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет - */ - public val TextDefaultAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет успеха - */ - public val TextDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки - */ - public val TextDefaultNegative: Color = Color(0xFFFF293E) - - /** - * dark text default textAccentMinor - */ - public val TextDefaultAccentMinor: Color = Color(0xFF1549AB) - - /** - * dark text default textAccentMinorHover - */ - public val TextDefaultAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text default textAccentMinorActive - */ - public val TextDefaultAccentMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text default textInfoHover - */ - public val TextDefaultInfoHover: Color = Color(0xFF90B6FE) - - /** - * dark text default textInfoActive - */ - public val TextDefaultInfoActive: Color = Color(0xFF216EFD) - - /** - * dark text default textPositiveMinor - */ - public val TextDefaultPositiveMinor: Color = Color(0xFF095C18) - - /** - * dark text default textPositiveMinorHover - */ - public val TextDefaultPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * dark text default textPositiveMinorActive - */ - public val TextDefaultPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * dark text default textWarningMinor - */ - public val TextDefaultWarningMinor: Color = Color(0xFF85380C) - - /** - * dark text default textWarningMinorHover - */ - public val TextDefaultWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * dark text default textWarningMinorActive - */ - public val TextDefaultWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * dark text default textNegativeMinor - */ - public val TextDefaultNegativeMinor: Color = Color(0xFF9C1422) - - /** - * dark text default textNegativeMinorHover - */ - public val TextDefaultNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * dark text default textNegativeMinorActive - */ - public val TextDefaultNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * dark text default textInfoMinorHover - */ - public val TextDefaultInfoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text default textInfoMinorActive - */ - public val TextDefaultInfoMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text default textInfo - */ - public val TextDefaultInfo: Color = Color(0xFF3F81FD) - - /** - * dark text default textInfoMinor - */ - public val TextDefaultInfoMinor: Color = Color(0xFF1549AB) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentHover: Color = Color(0xFF90B6FE) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentActive: Color = Color(0xFF216EFD) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveActive: Color = Color(0xFF15842A) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningActive: Color = Color(0xFFDC5304) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * dark text onDark textAccentMinor - */ - public val TextOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * dark text onDark textAccentMinorHover - */ - public val TextOnDarkAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text onDark textAccentMinorActive - */ - public val TextOnDarkAccentMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text onDark textInfoHover - */ - public val TextOnDarkInfoHover: Color = Color(0xFF90B6FE) - - /** - * dark text onDark textInfoActive - */ - public val TextOnDarkInfoActive: Color = Color(0xFF216EFD) - - /** - * dark text onDark textPositiveMinor - */ - public val TextOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * dark text onDark textPositiveMinorHover - */ - public val TextOnDarkPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * dark text onDark textPositiveMinorActive - */ - public val TextOnDarkPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * dark text onDark textWarningMinor - */ - public val TextOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * dark text onDark textWarningMinorHover - */ - public val TextOnDarkWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * dark text onDark textWarningMinorActive - */ - public val TextOnDarkWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * dark text onDark textNegativeMinor - */ - public val TextOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * dark text onDark textNegativeMinorHover - */ - public val TextOnDarkNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * dark text onDark textNegativeMinorActive - */ - public val TextOnDarkNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * dark text onDark textInfoMinorHover - */ - public val TextOnDarkInfoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text onDark textInfoMinorActive - */ - public val TextOnDarkInfoMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text onDark textInfoMinor - */ - public val TextOnDarkInfoMinor: Color = Color(0xFF1549AB) - - /** - * dark text onDark textInfo - */ - public val TextOnDarkInfo: Color = Color(0xFF3F81FD) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentHover: Color = Color(0xFF90B6FE) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentActive: Color = Color(0xFF216EFD) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveActive: Color = Color(0xFF15842A) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningActive: Color = Color(0xFFDC5304) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * dark text onLight textAccentMinor - */ - public val TextOnLightAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * dark text onLight textAccentMinorHover - */ - public val TextOnLightAccentMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text onLight textAccentMinorActive - */ - public val TextOnLightAccentMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark text onLight textInfoHover - */ - public val TextOnLightInfoHover: Color = Color(0xFF79A7FB) - - /** - * dark text onLight textInfoActive - */ - public val TextOnLightInfoActive: Color = Color(0xFF0D5FF8) - - /** - * dark text onLight textPositiveMinor - */ - public val TextOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * dark text onLight textPositiveMinorHover - */ - public val TextOnLightPositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text onLight textPositiveMinorActive - */ - public val TextOnLightPositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text onLight textWarningMinor - */ - public val TextOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * dark text onLight textWarningMinorHover - */ - public val TextOnLightWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * dark text onLight textWarningMinorActive - */ - public val TextOnLightWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * dark text onLight textNegativeMinor - */ - public val TextOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * dark text onLight textNegativeMinorHover - */ - public val TextOnLightNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * dark text onLight textNegativeMinorActive - */ - public val TextOnLightNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * dark text onLight textInfoMinorHover - */ - public val TextOnLightInfoMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text onLight textInfoMinorActive - */ - public val TextOnLightInfoMinorActive: Color = Color(0xFF6FA0FB) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeHover: Color = Color(0xFFF5384B) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeActive: Color = Color(0xFFE40C22) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegative: Color = Color(0xFFF31B31) - - /** - * dark text onLight textInfo - */ - public val TextOnLightInfo: Color = Color(0xFF2A72F8) - - /** - * dark text onLight textInfoMinor - */ - public val TextOnLightInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryActive: Color = Color(0xC4080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryActive: Color = Color(0xAB080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryActive: Color = Color(0x56080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphActive: Color = Color(0xA3080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentHover: Color = Color(0xFF79A7FB) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentActive: Color = Color(0xFF0D5FF8) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveActive: Color = Color(0xFF15842A) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningActive: Color = Color(0xFFDC5304) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimary: Color = Color(0xF5080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryBrightness: Color = Color(0xF5080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondary: Color = Color(0x8F080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiary: Color = Color(0x47080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraph: Color = Color(0xCC080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryHover: Color = Color(0x93080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryActive: Color = Color(0xC4080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryActive: Color = Color(0xAB080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryActive: Color = Color(0x56080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphHover: Color = Color(0x7A080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphActive: Color = Color(0xA3080808) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentHover: Color = Color(0xFF79A7FB) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentActive: Color = Color(0xFF0D5FF8) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveActive: Color = Color(0xFF15842A) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningActive: Color = Color(0xFFDC5304) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeHover: Color = Color(0xFFF5384B) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeActive: Color = Color(0xFFE40C22) - - /** - * dark text inverse textAccentMinorHover - */ - public val TextInverseAccentMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text inverse textAccentMinorActive - */ - public val TextInverseAccentMinorActive: Color = Color(0xFF6FA0FB) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccent: Color = Color(0xFF2A72F8) - - /** - * dark text inverse textAccentMinor - */ - public val TextInverseAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegative: Color = Color(0xFFF31B31) - - /** - * dark text inverse textInfo - */ - public val TextInverseInfo: Color = Color(0xFF2A72F8) - - /** - * dark text inverse textInfoHover - */ - public val TextInverseInfoHover: Color = Color(0xFF79A7FB) - - /** - * dark text inverse textInfoActive - */ - public val TextInverseInfoActive: Color = Color(0xFF0D5FF8) - - /** - * dark text inverse textPositiveMinor - */ - public val TextInversePositiveMinor: Color = Color(0xFF28D247) - - /** - * dark text inverse textPositiveMinorHover - */ - public val TextInversePositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text inverse textPositiveMinorActive - */ - public val TextInversePositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text inverse textWarningMinor - */ - public val TextInverseWarningMinor: Color = Color(0xFFFD9C68) - - /** - * dark text inverse textWarningMinorHover - */ - public val TextInverseWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * dark text inverse textWarningMinorActive - */ - public val TextInverseWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * dark text inverse textNegativeMinor - */ - public val TextInverseNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * dark text inverse textNegativeMinorHover - */ - public val TextInverseNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * dark text inverse textNegativeMinorActive - */ - public val TextInverseNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * dark text inverse textInfoMinor - */ - public val TextInverseInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * dark text inverse textInfoMinorHover - */ - public val TextInverseInfoMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text inverse textInfoMinorActive - */ - public val TextInverseInfoMinorActive: Color = Color(0xFF6FA0FB) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimary: Color = Color(0xFF171717) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondary: Color = Color(0xFF262626) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCard: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardBrightness: Color = Color(0x1FFFFFFF) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClear: Color = Color(0x00FFFFFF) - - /** - * dark surface default surfaceTransparentDeep - */ - public val SurfaceDefaultTransparentDeep: Color = Color(0xA3FFFFFF) - - /** - * dark surface default surfaceTransparentDeepHover - */ - public val SurfaceDefaultTransparentDeepHover: Color = Color(0xC2FFFFFF) - - /** - * dark surface default surfaceTransparentDeepActive - */ - public val SurfaceDefaultTransparentDeepActive: Color = Color(0x94FFFFFF) - - /** - * dark surface default surfaceAccentMinor - */ - public val SurfaceDefaultAccentMinor: Color = Color(0xFF082254) - - /** - * dark surface default surfaceAccentMinorHover - */ - public val SurfaceDefaultAccentMinorHover: Color = Color(0xFF0A2A67) - - /** - * dark surface default surfaceAccentMinorActive - */ - public val SurfaceDefaultAccentMinorActive: Color = Color(0xFF071F4B) - - /** - * dark surface default surfaceTransparentAccent - */ - public val SurfaceDefaultTransparentAccent: Color = Color(0x333F81FD) - - /** - * dark surface default surfaceTransparentAccentHover - */ - public val SurfaceDefaultTransparentAccentHover: Color = Color(0x523F82FD) - - /** - * dark surface default surfaceTransparentAccentActive - */ - public val SurfaceDefaultTransparentAccentActive: Color = Color(0x243F82FD) - - /** - * dark surface default surfaceInfoHover - */ - public val SurfaceDefaultInfoHover: Color = Color(0xFF5D95FD) - - /** - * dark surface default surfaceInfoActive - */ - public val SurfaceDefaultInfoActive: Color = Color(0xFF357BFD) - - /** - * dark surface default surfacePositiveMinor - */ - public val SurfaceDefaultPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface default surfacePositiveMinorHover - */ - public val SurfaceDefaultPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface default surfacePositiveMinorActive - */ - public val SurfaceDefaultPositiveMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface default surfaceWarningMinor - */ - public val SurfaceDefaultWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * dark surface default surfaceWarningMinorHover - */ - public val SurfaceDefaultWarningMinorHover: Color = Color(0xFF4F250D) - - /** - * dark surface default surfaceWarningMinorActive - */ - public val SurfaceDefaultWarningMinorActive: Color = Color(0xFF351909) - - /** - * dark surface default surfaceNegativeMinor - */ - public val SurfaceDefaultNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * dark surface default surfaceNegativeMinorHover - */ - public val SurfaceDefaultNegativeMinorHover: Color = Color(0xFF5B1018) - - /** - * dark surface default surfaceNegativeMinorActive - */ - public val SurfaceDefaultNegativeMinorActive: Color = Color(0xFF410B11) - - /** - * dark surface default surfaceInfoMinorHover - */ - public val SurfaceDefaultInfoMinorHover: Color = Color(0xFF0A2A67) - - /** - * dark surface default surfaceInfoMinorActive - */ - public val SurfaceDefaultInfoMinorActive: Color = Color(0xFF071F4B) - - /** - * dark surface default surfaceTransparentPositiveHover - */ - public val SurfaceDefaultTransparentPositiveHover: Color = Color(0x521A9E32) - - /** - * dark surface default surfaceTransparentPositiveActive - */ - public val SurfaceDefaultTransparentPositiveActive: Color = Color(0x241A9E32) - - /** - * dark surface default surfaceTransparentWarningHover - */ - public val SurfaceDefaultTransparentWarningHover: Color = Color(0x52FA5F05) - - /** - * dark surface default surfaceTransparentWarningActive - */ - public val SurfaceDefaultTransparentWarningActive: Color = Color(0x24FA5F05) - - /** - * dark surface default surfaceTransparentNegativeHover - */ - public val SurfaceDefaultTransparentNegativeHover: Color = Color(0x52FF293E) - - /** - * dark surface default surfaceTransparentNegativeActive - */ - public val SurfaceDefaultTransparentNegativeActive: Color = Color(0x24FF293E) - - /** - * dark surface default surfaceTransparentInfoHover - */ - public val SurfaceDefaultTransparentInfoHover: Color = Color(0x523F82FD) - - /** - * dark surface default surfaceTransparentInfoActive - */ - public val SurfaceDefaultTransparentInfoActive: Color = Color(0x243F82FD) - - /** - * dark surface default surfaceTransparentPositive - */ - public val SurfaceDefaultTransparentPositive: Color = Color(0x331A9E32) - - /** - * dark surface default surfaceTransparentWarning - */ - public val SurfaceDefaultTransparentWarning: Color = Color(0x33FA5F05) - - /** - * dark surface default surfaceTransparentNegative - */ - public val SurfaceDefaultTransparentNegative: Color = Color(0x33FF293E) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * dark surface default surfaceInfo - */ - public val SurfaceDefaultInfo: Color = Color(0xFF3F81FD) - - /** - * dark surface default surfaceInfoMinor - */ - public val SurfaceDefaultInfoMinor: Color = Color(0xFF082254) - - /** - * dark surface default surfaceTransparentInfo - */ - public val SurfaceDefaultTransparentInfo: Color = Color(0x333F81FD) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryHover: Color = Color(0xFF1C1C1C) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryActive: Color = Color(0xFF121212) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryHover: Color = Color(0xFF303030) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryActive: Color = Color(0xFF212121) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryHover: Color = Color(0xFF404040) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryActive: Color = Color(0xFF303030) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardHover: Color = Color(0xFF1C1C1C) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardActive: Color = Color(0xFF121212) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryHover: Color = Color(0x1FFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryActive: Color = Color(0x0AFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryHover: Color = Color(0x3DFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryActive: Color = Color(0x0FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryHover: Color = Color(0x52FFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryActive: Color = Color(0x24FFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardHover: Color = Color(0x3DFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardActive: Color = Color(0x0FFFFFFF) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccentHover: Color = Color(0xFF5D95FD) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccentActive: Color = Color(0xFF357BFD) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearHover: Color = Color(0x00FFFFFF) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearActive: Color = Color(0x00FFFFFF) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimary: Color = Color(0xFF171717) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Вторичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondary: Color = Color(0xFF262626) - - /** - * Третичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCard: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardBrightness: Color = Color(0x1FFFFFFF) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClear: Color = Color(0x00000000) - - /** - * dark surface onDark surfaceTransparentDeep - */ - public val SurfaceOnDarkTransparentDeep: Color = Color(0xA3FFFFFF) - - /** - * dark surface onDark surfaceTransparentDeepHover - */ - public val SurfaceOnDarkTransparentDeepHover: Color = Color(0xC2FFFFFF) - - /** - * dark surface onDark surfaceTransparentDeepActive - */ - public val SurfaceOnDarkTransparentDeepActive: Color = Color(0x94FFFFFF) - - /** - * dark surface onDark surfaceAccentMinor - */ - public val SurfaceOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * dark surface onDark surfaceAccentMinorHover - */ - public val SurfaceOnDarkAccentMinorHover: Color = Color(0xFF1852BF) - - /** - * dark surface onDark surfaceAccentMinorActive - */ - public val SurfaceOnDarkAccentMinorActive: Color = Color(0xFF1446A3) - - /** - * dark surface onDark surfaceTransparentAccent - */ - public val SurfaceOnDarkTransparentAccent: Color = Color(0x333F81FD) - - /** - * dark surface onDark surfaceTransparentAccentHover - */ - public val SurfaceOnDarkTransparentAccentHover: Color = Color(0x523F82FD) - - /** - * dark surface onDark surfaceTransparentAccentActive - */ - public val SurfaceOnDarkTransparentAccentActive: Color = Color(0x243F82FD) - - /** - * dark surface onDark surfaceSurfaceInfoHover - */ - public val SurfaceOnDarkSurfaceInfoHover: Color = Color(0xFF5D95FD) - - /** - * dark surface onDark surfaceSurfaceInfoActive - */ - public val SurfaceOnDarkSurfaceInfoActive: Color = Color(0xFF357BFD) - - /** - * dark surface onDark surfacePositiveMinor - */ - public val SurfaceOnDarkPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface onDark surfacePositiveMinorHover - */ - public val SurfaceOnDarkPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface onDark surfacePositiveMinorActive - */ - public val SurfaceOnDarkPositiveMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface onDark surfaceWarningMinor - */ - public val SurfaceOnDarkWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * dark surface onDark surfaceWarningMinorHover - */ - public val SurfaceOnDarkWarningMinorHover: Color = Color(0xFF4F250D) - - /** - * dark surface onDark surfaceWarningMinorActive - */ - public val SurfaceOnDarkWarningMinorActive: Color = Color(0xFF351909) - - /** - * dark surface onDark surfaceNegativeMinor - */ - public val SurfaceOnDarkNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * dark surface onDark surfaceNegativeMinorHover - */ - public val SurfaceOnDarkNegativeMinorHover: Color = Color(0xFF5B1018) - - /** - * dark surface onDark surfaceNegativeMinorActive - */ - public val SurfaceOnDarkNegativeMinorActive: Color = Color(0xFF410B11) - - /** - * dark surface onDark surfaceInfoMinorHover - */ - public val SurfaceOnDarkInfoMinorHover: Color = Color(0xFF0A2A67) - - /** - * dark surface onDark surfaceInfoMinorActive - */ - public val SurfaceOnDarkInfoMinorActive: Color = Color(0xFF071F4B) - - /** - * dark surface onDark surfaceTransparentPositiveHover - */ - public val SurfaceOnDarkTransparentPositiveHover: Color = Color(0x521A9E32) - - /** - * dark surface onDark surfaceTransparentPositiveActive - */ - public val SurfaceOnDarkTransparentPositiveActive: Color = Color(0x241A9E32) - - /** - * dark surface onDark surfaceTransparentWarningHover - */ - public val SurfaceOnDarkTransparentWarningHover: Color = Color(0x52FA5F05) - - /** - * dark surface onDark surfaceTransparentWarningActive - */ - public val SurfaceOnDarkTransparentWarningActive: Color = Color(0x24FA5F05) - - /** - * dark surface onDark surfaceTransparentNegativeHover - */ - public val SurfaceOnDarkTransparentNegativeHover: Color = Color(0x52FF293E) - - /** - * dark surface onDark surfaceTransparentNegativeActive - */ - public val SurfaceOnDarkTransparentNegativeActive: Color = Color(0x24FF293E) - - /** - * dark surface onDark surfaceTransparentInfoHover - */ - public val SurfaceOnDarkTransparentInfoHover: Color = Color(0x523F82FD) - - /** - * dark surface onDark surfaceTransparentInfoActive - */ - public val SurfaceOnDarkTransparentInfoActive: Color = Color(0x243F82FD) - - /** - * dark surface onDark surfaceTransparentPositive - */ - public val SurfaceOnDarkTransparentPositive: Color = Color(0x331A9E32) - - /** - * dark surface onDark surfaceTransparentWarning - */ - public val SurfaceOnDarkTransparentWarning: Color = Color(0x33FA5F05) - - /** - * dark surface onDark surfaceTransparentNegative - */ - public val SurfaceOnDarkTransparentNegative: Color = Color(0x33FF293E) - - /** - * Непр. фон поверхности/контрола по умолчанию на тем. фоне - */ - public val SurfaceOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * Непр. фон поверхности/контрола по умолчанию на тем. фоне - */ - public val SurfaceOnDarkSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непр. фон поверхности/контрола по умолчанию на тем. фоне - */ - public val SurfaceOnDarkSolidDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * dark surface onDark surfaceSurfaceInfo - */ - public val SurfaceOnDarkSurfaceInfo: Color = Color(0xFF3F81FD) - - /** - * dark surface onDark surfaceInfoMinor - */ - public val SurfaceOnDarkInfoMinor: Color = Color(0xFF082254) - - /** - * dark surface onDark surfaceTransparentInfo - */ - public val SurfaceOnDarkTransparentInfo: Color = Color(0x333F81FD) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryHover: Color = Color(0xFF1C1C1C) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryActive: Color = Color(0xFF121212) - - /** - * Вторичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondaryHover: Color = Color(0xFF303030) - - /** - * Вторичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondaryActive: Color = Color(0xFF212121) - - /** - * Третичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryHover: Color = Color(0xFF404040) - - /** - * Третичный непр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryActive: Color = Color(0xFF303030) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardHover: Color = Color(0xFF1C1C1C) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardActive: Color = Color(0xFF121212) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryHover: Color = Color(0x1FFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryActive: Color = Color(0x0AFFFFFF) - - /** - * Вторичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryHover: Color = Color(0x3DFFFFFF) - - /** - * Вторичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryActive: Color = Color(0x0FFFFFFF) - - /** - * Третичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryHover: Color = Color(0x52FFFFFF) - - /** - * Третичный прозр. фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryActive: Color = Color(0x24FFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardHover: Color = Color(0x3DFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardActive: Color = Color(0x0FFFFFFF) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentHover: Color = Color(0xFF5D95FD) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentActive: Color = Color(0xFF357BFD) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearActive: Color = Color(0x00000000) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Третичный непр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefault: Color = Color(0xFF080808) - - /** - * Основной прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimary: Color = Color(0x08080808) - - /** - * Вторичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondary: Color = Color(0x0F080808) - - /** - * Третичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiary: Color = Color(0x1F080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegative: Color = Color(0xFFF31B31) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClear: Color = Color(0x00000000) - - /** - * dark surface onLight surfaceTransparentDeep - */ - public val SurfaceOnLightTransparentDeep: Color = Color(0xA3080808) - - /** - * dark surface onLight surfaceAccentMinor - */ - public val SurfaceOnLightAccentMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface onLight surfaceAccentMinorHover - */ - public val SurfaceOnLightAccentMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface onLight surfaceAccentMinorActive - */ - public val SurfaceOnLightAccentMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface onLight surfaceTransparentAccent - */ - public val SurfaceOnLightTransparentAccent: Color = Color(0x1F2A72F8) - - /** - * dark surface onLight surfaceTransparentAccentHover - */ - public val SurfaceOnLightTransparentAccentHover: Color = Color(0x3D2A72F8) - - /** - * dark surface onLight surfaceTransparentAccentActive - */ - public val SurfaceOnLightTransparentAccentActive: Color = Color(0x0F2A72F8) - - /** - * dark surface onLight surfaceInfoHover - */ - public val SurfaceOnLightInfoHover: Color = Color(0xFF5D95FD) - - /** - * dark surface onLight surfaceInfoActive - */ - public val SurfaceOnLightInfoActive: Color = Color(0xFF357BFD) - - /** - * dark surface onLight surfacePositiveMinor - */ - public val SurfaceOnLightPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface onLight surfacePositiveMinorHover - */ - public val SurfaceOnLightPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface onLight surfacePositiveMinorActive - */ - public val SurfaceOnLightPositiveMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface onLight surfaceWarningMinor - */ - public val SurfaceOnLightWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * dark surface onLight surfaceWarningMinorHover - */ - public val SurfaceOnLightWarningMinorHover: Color = Color(0xFFFEE9DC) - - /** - * dark surface onLight surfaceWarningMinorActive - */ - public val SurfaceOnLightWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * dark surface onLight surfaceNegativeMinor - */ - public val SurfaceOnLightNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * dark surface onLight surfaceNegativeMinorHover - */ - public val SurfaceOnLightNegativeMinorHover: Color = Color(0xFFFFEBED) - - /** - * dark surface onLight surfaceNegativeMinorActive - */ - public val SurfaceOnLightNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * dark surface onLight surfaceInfoMinorHover - */ - public val SurfaceOnLightInfoMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface onLight surfaceInfoMinorActive - */ - public val SurfaceOnLightInfoMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface onLight surfaceTransparentPositiveHover - */ - public val SurfaceOnLightTransparentPositiveHover: Color = Color(0x3D1A9E32) - - /** - * dark surface onLight surfaceTransparentPositiveActive - */ - public val SurfaceOnLightTransparentPositiveActive: Color = Color(0x0F1A9E32) - - /** - * dark surface onLight surfaceTransparentWarningHover - */ - public val SurfaceOnLightTransparentWarningHover: Color = Color(0x3DFA5F05) - - /** - * dark surface onLight surfaceTransparentWarningActive - */ - public val SurfaceOnLightTransparentWarningActive: Color = Color(0x0FFA5F05) - - /** - * dark surface onLight surfaceTransparentNegativeHover - */ - public val SurfaceOnLightTransparentNegativeHover: Color = Color(0x3DF31B31) - - /** - * dark surface onLight surfaceTransparentNegativeActive - */ - public val SurfaceOnLightTransparentNegativeActive: Color = Color(0x0FF31B31) - - /** - * dark surface onLight surfaceTransparentInfoHover - */ - public val SurfaceOnLightTransparentInfoHover: Color = Color(0x3D2A72F8) - - /** - * dark surface onLight surfaceTransparentInfoActive - */ - public val SurfaceOnLightTransparentInfoActive: Color = Color(0x0F2A72F8) - - /** - * dark surface onLight surfaceTransparentPositive - */ - public val SurfaceOnLightTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * dark surface onLight surfaceTransparentWarning - */ - public val SurfaceOnLightTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * dark surface onLight surfaceTransparentNegative - */ - public val SurfaceOnLightTransparentNegative: Color = Color(0x1FF31B31) - - /** - * dark surface onLight surfaceInfo - */ - public val SurfaceOnLightInfo: Color = Color(0xFF3F81FD) - - /** - * dark surface onLight surfaceInfoMinor - */ - public val SurfaceOnLightInfoMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface onLight surfaceTransparentInfo - */ - public val SurfaceOnLightTransparentInfo: Color = Color(0x1F2A72F8) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Третичный непр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiaryHover: Color = Color(0xFFE8E8E8) - - /** - * Третичный непр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiaryActive: Color = Color(0xFFD9D9D9) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefaultActive: Color = Color(0xFF030303) - - /** - * Основной прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimaryHover: Color = Color(0x12080808) - - /** - * Основной прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimaryActive: Color = Color(0x03080808) - - /** - * Вторичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryHover: Color = Color(0x1F080808) - - /** - * Вторичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryActive: Color = Color(0x0A080808) - - /** - * Третичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryHover: Color = Color(0x3D080808) - - /** - * Третичный прозр. фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryActive: Color = Color(0x0F080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentHover: Color = Color(0xFF4886F9) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentActive: Color = Color(0xFF206CF8) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeHover: Color = Color(0xFFF5384B) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeActive: Color = Color(0xFFF31228) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearActive: Color = Color(0x00000000) - - /** - * dark surface onLight surfaceTransparentDeepHover - */ - public val SurfaceOnLightTransparentDeepHover: Color = Color(0xC2080808) - - /** - * dark surface onLight surfaceTransparentDeepActive - */ - public val SurfaceOnLightTransparentDeepActive: Color = Color(0x94080808) - - /** - * Инвертированный осн. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefault: Color = Color(0xFF080808) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * dark surface inverse surfacePositive - */ - public val SurfaceInversePositive: Color = Color(0xFF1A9E32) - - /** - * dark surface inverse surfaceWarning - */ - public val SurfaceInverseWarning: Color = Color(0xFFFA5F05) - - /** - * dark surface inverse surfaceNegative - */ - public val SurfaceInverseNegative: Color = Color(0xFFF31B31) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Инвертированный осн. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Инвертированный осн. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Инвертированный втор. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Инвертированный втор. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Инвертированный трет.непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryHover: Color = Color(0xFFE8E8E8) - - /** - * Инвертированный трет.непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryActive: Color = Color(0xFFD9D9D9) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefaultActive: Color = Color(0xFF030303) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryHover: Color = Color(0x12080808) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryActive: Color = Color(0x03080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryHover: Color = Color(0x1F080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryActive: Color = Color(0x0A080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryHover: Color = Color(0x3D080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryActive: Color = Color(0x0F080808) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentHover: Color = Color(0xFF4886F9) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentActive: Color = Color(0xFF206CF8) - - /** - * dark surface inverse surfacePositiveHover - */ - public val SurfaceInversePositiveHover: Color = Color(0xFF1DAF37) - - /** - * dark surface inverse surfacePositiveActive - */ - public val SurfaceInversePositiveActive: Color = Color(0xFF18952F) - - /** - * dark surface inverse surfaceWarningHover - */ - public val SurfaceInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * dark surface inverse surfaceWarningActive - */ - public val SurfaceInverseWarningActive: Color = Color(0xFFF05B05) - - /** - * dark surface inverse surfaceNegativeHover - */ - public val SurfaceInverseNegativeHover: Color = Color(0xFFF5384B) - - /** - * dark surface inverse surfaceNegativeActive - */ - public val SurfaceInverseNegativeActive: Color = Color(0xFFF31228) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный осн. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Инвертированный втор. непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Инвертированный трет.непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefault: Color = Color(0xFF080808) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimary: Color = Color(0x08080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondary: Color = Color(0x0F080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiary: Color = Color(0x1F080808) - - /** - * dark surface inverse surfaceTransparentDeep - */ - public val SurfaceInverseTransparentDeep: Color = Color(0xA3080808) - - /** - * dark surface inverse surfaceTransparentDeepHover - */ - public val SurfaceInverseTransparentDeepHover: Color = Color(0xC2080808) - - /** - * dark surface inverse surfaceTransparentDeepActive - */ - public val SurfaceInverseTransparentDeepActive: Color = Color(0x94080808) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClear: Color = Color(0x00000000) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccent: Color = Color(0xFF2A72F8) - - /** - * dark surface inverse surfaceAccentMinor - */ - public val SurfaceInverseAccentMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface inverse surfaceAccentMinorHover - */ - public val SurfaceInverseAccentMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface inverse surfaceAccentMinorActive - */ - public val SurfaceInverseAccentMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface inverse surfaceTransparentAccent - */ - public val SurfaceInverseTransparentAccent: Color = Color(0x1F2A72F8) - - /** - * dark surface inverse surfaceTransparentAccentHover - */ - public val SurfaceInverseTransparentAccentHover: Color = Color(0x3D2A72F8) - - /** - * dark surface inverse surfaceTransparentAccentActive - */ - public val SurfaceInverseTransparentAccentActive: Color = Color(0x0F2A72F8) - - /** - * dark surface inverse surfaceInfo - */ - public val SurfaceInverseInfo: Color = Color(0xFF2A72F8) - - /** - * dark surface inverse surfaceInfoHover - */ - public val SurfaceInverseInfoHover: Color = Color(0xFF4886F9) - - /** - * dark surface inverse surfaceInfoActive - */ - public val SurfaceInverseInfoActive: Color = Color(0xFF206CF8) - - /** - * dark surface inverse surfacePositiveMinor - */ - public val SurfaceInversePositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface inverse surfacePositiveMinorHover - */ - public val SurfaceInversePositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface inverse surfacePositiveMinorActive - */ - public val SurfaceInversePositiveMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface inverse surfaceWarningMinor - */ - public val SurfaceInverseWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * dark surface inverse surfaceWarningMinorHover - */ - public val SurfaceInverseWarningMinorHover: Color = Color(0xFFFEE9DC) - - /** - * dark surface inverse surfaceWarningMinorActive - */ - public val SurfaceInverseWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * dark surface inverse surfaceNegativeMinor - */ - public val SurfaceInverseNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * dark surface inverse surfaceNegativeMinorHover - */ - public val SurfaceInverseNegativeMinorHover: Color = Color(0xFFFFEBED) - - /** - * dark surface inverse surfaceNegativeMinorActive - */ - public val SurfaceInverseNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * dark surface inverse surfaceInfoMinor - */ - public val SurfaceInverseInfoMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface inverse surfaceInfoMinorHover - */ - public val SurfaceInverseInfoMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface inverse surfaceInfoMinorActive - */ - public val SurfaceInverseInfoMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface inverse surfaceTransparentPositive - */ - public val SurfaceInverseTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * dark surface inverse surfaceTransparentPositiveHover - */ - public val SurfaceInverseTransparentPositiveHover: Color = Color(0x3D1A9E32) - - /** - * dark surface inverse surfaceTransparentPositiveActive - */ - public val SurfaceInverseTransparentPositiveActive: Color = Color(0x0F1A9E32) - - /** - * dark surface inverse surfaceTransparentWarning - */ - public val SurfaceInverseTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * dark surface inverse surfaceTransparentWarningHover - */ - public val SurfaceInverseTransparentWarningHover: Color = Color(0x3DFA5F05) - - /** - * dark surface inverse surfaceTransparentWarningActive - */ - public val SurfaceInverseTransparentWarningActive: Color = Color(0x0FFA5F05) - - /** - * dark surface inverse surfaceTransparentNegative - */ - public val SurfaceInverseTransparentNegative: Color = Color(0x1FF31B31) - - /** - * dark surface inverse surfaceTransparentNegativeHover - */ - public val SurfaceInverseTransparentNegativeHover: Color = Color(0x3DF31B31) - - /** - * dark surface inverse surfaceTransparentNegativeActive - */ - public val SurfaceInverseTransparentNegativeActive: Color = Color(0x0FF31B31) - - /** - * dark surface inverse surfaceTransparentInfo - */ - public val SurfaceInverseTransparentInfo: Color = Color(0x1F2A72F8) - - /** - * dark surface inverse surfaceTransparentInfoHover - */ - public val SurfaceInverseTransparentInfoHover: Color = Color(0x3D2A72F8) - - /** - * dark surface inverse surfaceTransparentInfoActive - */ - public val SurfaceInverseTransparentInfoActive: Color = Color(0x0F2A72F8) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimary: Color = Color(0xFF080808) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimaryBrightness: Color = Color(0xFF171717) - - /** - * Вторичный фон - */ - public val BackgroundDefaultSecondary: Color = Color(0xFF080808) - - /** - * Третичный фон - */ - public val BackgroundDefaultTertiary: Color = Color(0xFF171717) - - /** - * Основной фон на темном фоне - */ - public val BackgroundDarkPrimary: Color = Color(0xFF080808) - - /** - * Вторичный фон на темном фоне - */ - public val BackgroundDarkSecondary: Color = Color(0xFF080808) - - /** - * Третичный фон на темном фоне - */ - public val BackgroundDarkTertiary: Color = Color(0xFF171717) - - /** - * Основной фон на светлом фоне - */ - public val BackgroundLightPrimary: Color = Color(0xFFF9F9F9) - - /** - * Вторичный фон на светлом фоне - */ - public val BackgroundLightSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на светлом фоне - */ - public val BackgroundLightTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный фон - */ - public val BackgroundInverseSecondary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный фон - */ - public val BackgroundInverseTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimary: Color = Color(0xFFF9F9F9) - - /** - * Цвет фона паранжи светлый - */ - public val OverlayDefaultSoft: Color = Color(0x8F080808) - - /** - * Цвет фона паранжи темный - */ - public val OverlayDefaultHard: Color = Color(0xF5080808) - - /** - * dark overlay default overlayBlur - */ - public val OverlayDefaultBlur: Color = Color(0x47080808) - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val OverlayOnDarkSoft: Color = Color(0x8F080808) - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val OverlayOnDarkHard: Color = Color(0xF5080808) - - /** - * dark overlay onDark overlayBlur - */ - public val OverlayOnDarkBlur: Color = Color(0x47080808) - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val OverlayOnLightSoft: Color = Color(0x8FF9F9F9) - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val OverlayOnLightHard: Color = Color(0xF5F9F9F9) - - /** - * dark overlay onLight overlayBlur - */ - public val OverlayOnLightBlur: Color = Color(0x47F9F9F9) - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val OverlayInverseSoft: Color = Color(0x8FF9F9F9) - - /** - * Инвертированный цвет фона паранжи темный - */ - public val OverlayInverseHard: Color = Color(0xF5F9F9F9) - - /** - * dark overlay inverse overlayBlur - */ - public val OverlayInverseBlur: Color = Color(0x47F9F9F9) - - /** - * dark outline default outlinePrimaryHover - */ - public val OutlineDefaultPrimaryHover: Color = Color(0xFF303030) - - /** - * dark outline default outlinePrimaryActive - */ - public val OutlineDefaultPrimaryActive: Color = Color(0xFF212121) - - /** - * dark outline default outlineSecondaryHover - */ - public val OutlineDefaultSecondaryHover: Color = Color(0xFF595959) - - /** - * dark outline default outlineSecondaryActive - */ - public val OutlineDefaultSecondaryActive: Color = Color(0xFF4A4A4A) - - /** - * dark outline default outlineTertiaryHover - */ - public val OutlineDefaultTertiaryHover: Color = Color(0xFF7A7A7A) - - /** - * dark outline default outlineTertiaryActive - */ - public val OutlineDefaultTertiaryActive: Color = Color(0xFF6B6B6B) - - /** - * dark outline default outlineDefaultHover - */ - public val OutlineDefaultDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineDefaultActive - */ - public val OutlineDefaultDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * dark outline default outlineTransparentPrimary - */ - public val OutlineDefaultTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * dark outline default outlineTransparentPrimaryHover - */ - public val OutlineDefaultTransparentPrimaryHover: Color = Color(0x3DFFFFFF) - - /** - * dark outline default outlineTransparentPrimaryActive - */ - public val OutlineDefaultTransparentPrimaryActive: Color = Color(0x0FFFFFFF) - - /** - * dark outline default outlineTransparentSecondary - */ - public val OutlineDefaultTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * dark outline default outlineTransparentSecondaryHover - */ - public val OutlineDefaultTransparentSecondaryHover: Color = Color(0x52FFFFFF) - - /** - * dark outline default outlineTransparentSecondaryActive - */ - public val OutlineDefaultTransparentSecondaryActive: Color = Color(0x24FFFFFF) - - /** - * dark outline default outlineTransparentTertiary - */ - public val OutlineDefaultTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * dark outline default outlineTransparentTertiaryHover - */ - public val OutlineDefaultTransparentTertiaryHover: Color = Color(0x85FFFFFF) - - /** - * dark outline default outlineTransparentTertiaryActive - */ - public val OutlineDefaultTransparentTertiaryActive: Color = Color(0x57FFFFFF) - - /** - * dark outline default outlineTransparentClear - */ - public val OutlineDefaultTransparentClear: Color = Color(0x00FFFFFF) - - /** - * dark outline default outlineTransparentClearHover - */ - public val OutlineDefaultTransparentClearHover: Color = Color(0x00FFFFFF) - - /** - * dark outline default outlineTransparentClearActive - */ - public val OutlineDefaultTransparentClearActive: Color = Color(0x00FFFFFF) - - /** - * dark outline default outlineAccent - */ - public val OutlineDefaultAccent: Color = Color(0xFF3F81FD) - - /** - * dark outline default outlineAccentHover - */ - public val OutlineDefaultAccentHover: Color = Color(0xFF5D95FD) - - /** - * dark outline default outlineAccentActive - */ - public val OutlineDefaultAccentActive: Color = Color(0xFF357BFD) - - /** - * dark outline default outlineAccentMinor - */ - public val OutlineDefaultAccentMinor: Color = Color(0xFF1549AB) - - /** - * dark outline default outlineAccentMinorHover - */ - public val OutlineDefaultAccentMinorHover: Color = Color(0xFF1852BF) - - /** - * dark outline default outlineAccentMinorActive - */ - public val OutlineDefaultAccentMinorActive: Color = Color(0xFF1446A3) - - /** - * dark outline default outlineTransparentAccent - */ - public val OutlineDefaultTransparentAccent: Color = Color(0x473F81FD) - - /** - * dark outline default outlineTransparentAccentHover - */ - public val OutlineDefaultTransparentAccentHover: Color = Color(0x663F82FD) - - /** - * dark outline default outlineTransparentAccentActive - */ - public val OutlineDefaultTransparentAccentActive: Color = Color(0x383F82FD) - - /** - * dark outline default outlinePositive - */ - public val OutlineDefaultPositive: Color = Color(0xFF24B23E) - - /** - * dark outline default outlinePositiveHover - */ - public val OutlineDefaultPositiveHover: Color = Color(0xFF28C344) - - /** - * dark outline default outlinePositiveActive - */ - public val OutlineDefaultPositiveActive: Color = Color(0xFF23A93B) - - /** - * dark outline default outlineWarning - */ - public val OutlineDefaultWarning: Color = Color(0xFFFF7024) - - /** - * dark outline default outlineWarningHover - */ - public val OutlineDefaultWarningHover: Color = Color(0xFFFF8442) - - /** - * dark outline default outlineWarningActive - */ - public val OutlineDefaultWarningActive: Color = Color(0xFFFF6A1A) - - /** - * dark outline default outlineNegative - */ - public val OutlineDefaultNegative: Color = Color(0xFFFF3D51) - - /** - * dark outline default outlineNegativeHover - */ - public val OutlineDefaultNegativeHover: Color = Color(0xFFFF5C6C) - - /** - * dark outline default outlineNegativeActive - */ - public val OutlineDefaultNegativeActive: Color = Color(0xFFFF3347) - - /** - * dark outline default outlineInfoHover - */ - public val OutlineDefaultInfoHover: Color = Color(0xFF70A2FF) - - /** - * dark outline default outlineInfoActive - */ - public val OutlineDefaultInfoActive: Color = Color(0xFF4788FF) - - /** - * dark outline default outlinePositiveMinor - */ - public val OutlineDefaultPositiveMinor: Color = Color(0xFF095C18) - - /** - * dark outline default outlinePositiveMinorHover - */ - public val OutlineDefaultPositiveMinorHover: Color = Color(0xFF0B6F1D) - - /** - * dark outline default outlinePositiveMinorActive - */ - public val OutlineDefaultPositiveMinorActive: Color = Color(0xFF085416) - - /** - * dark outline default outlineWarningMinor - */ - public val OutlineDefaultWarningMinor: Color = Color(0xFF85380C) - - /** - * dark outline default outlineWarningMinorHover - */ - public val OutlineDefaultWarningMinorHover: Color = Color(0xFF95400E) - - /** - * dark outline default outlineWarningMinorActive - */ - public val OutlineDefaultWarningMinorActive: Color = Color(0xFF79340B) - - /** - * dark outline default outlineNegativeMinor - */ - public val OutlineDefaultNegativeMinor: Color = Color(0xFF9C1422) - - /** - * dark outline default outlineNegativeMinorHover - */ - public val OutlineDefaultNegativeMinorHover: Color = Color(0xFFB01726) - - /** - * dark outline default outlineNegativeMinorActive - */ - public val OutlineDefaultNegativeMinorActive: Color = Color(0xFF951320) - - /** - * dark outline default outlineInfoMinorHover - */ - public val OutlineDefaultInfoMinorHover: Color = Color(0xFF1852BF) - - /** - * dark outline default outlineInfoMinorActive - */ - public val OutlineDefaultInfoMinorActive: Color = Color(0xFF1446A3) - - /** - * dark outline default outlineTransparentPositiveHover - */ - public val OutlineDefaultTransparentPositiveHover: Color = Color(0x661A9E32) - - /** - * dark outline default outlineTransparentPositiveActive - */ - public val OutlineDefaultTransparentPositiveActive: Color = Color(0x381A9E32) - - /** - * dark outline default outlineTransparentWarningHover - */ - public val OutlineDefaultTransparentWarningHover: Color = Color(0x66FA5F05) - - /** - * dark outline default outlineTransparentWarningActive - */ - public val OutlineDefaultTransparentWarningActive: Color = Color(0x38FA5F05) - - /** - * dark outline default outlineNegativeTransparentHover - */ - public val OutlineDefaultNegativeTransparentHover: Color = Color(0xFFCCCCCC) - - /** - * dark outline default outlineNegativeTransparentActive - */ - public val OutlineDefaultNegativeTransparentActive: Color = Color(0xFFE6E6E6) - - /** - * dark outline default outlineTransparentInfoHover - */ - public val OutlineDefaultTransparentInfoHover: Color = Color(0x663F82FD) - - /** - * dark outline default outlineTransparentInfoActive - */ - public val OutlineDefaultTransparentInfoActive: Color = Color(0x383F82FD) - - /** - * dark outline default outlineTransparentPositive - */ - public val OutlineDefaultTransparentPositive: Color = Color(0x471A9E32) - - /** - * dark outline default outlineTransparentWarning - */ - public val OutlineDefaultTransparentWarning: Color = Color(0x47FA5F05) - - /** - * dark outline default outlineTransparentNegative - */ - public val OutlineDefaultTransparentNegative: Color = Color(0x33F31B31) - - /** - * dark outline default outlineTransparentNegativeHover - */ - public val OutlineDefaultTransparentNegativeHover: Color = Color(0x52F31B31) - - /** - * dark outline default outlineTransparentNegativeActive - */ - public val OutlineDefaultTransparentNegativeActive: Color = Color(0x24F31B31) - - /** - * dark outline default outlineInfoMinor - */ - public val OutlineDefaultInfoMinor: Color = Color(0xFF1549AB) - - /** - * dark outline default outlineTransparentInfo - */ - public val OutlineDefaultTransparentInfo: Color = Color(0x473F81FD) - - /** - * dark outline default outlineInfo - */ - public val OutlineDefaultInfo: Color = Color(0xFF528EFF) - - /** - * dark outline default outlineSolidPrimary - */ - public val OutlineDefaultSolidPrimary: Color = Color(0xFF262626) - - /** - * dark outline default outlineSolidPrimaryHover - */ - public val OutlineDefaultSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineSolidPrimaryActive - */ - public val OutlineDefaultSolidPrimaryActive: Color = Color(0xFFADADAD) - - /** - * dark outline default outlineSolidSecondary - */ - public val OutlineDefaultSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * dark outline default outlineSolidSecondaryHover - */ - public val OutlineDefaultSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineSolidSecondaryActive - */ - public val OutlineDefaultSolidSecondaryActive: Color = Color(0xFF8C8C8C) - - /** - * dark outline default outlineSolidTertiary - */ - public val OutlineDefaultSolidTertiary: Color = Color(0xFF707070) - - /** - * dark outline default outlineSolidTertiaryHover - */ - public val OutlineDefaultSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineSolidTertiaryActive - */ - public val OutlineDefaultSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * dark outline default outlineSolidDefault - */ - public val OutlineDefaultSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * dark outline default outlineSolidDefaultHover - */ - public val OutlineDefaultSolidDefaultHover: Color = Color(0xFFC7C7C7) - - /** - * dark outline default outlineSolidDefaultActive - */ - public val OutlineDefaultSolidDefaultActive: Color = Color(0xFFE0E0E0) - - /** - * dark outline onDark outlinePrimaryHover - */ - public val OutlineOnDarkPrimaryHover: Color = Color(0xFF303030) - - /** - * dark outline onDark outlinePrimaryActive - */ - public val OutlineOnDarkPrimaryActive: Color = Color(0xFF212121) - - /** - * dark outline onDark outlineSecondaryHover - */ - public val OutlineOnDarkSecondaryHover: Color = Color(0xFF595959) - - /** - * dark outline onDark outlineSecondaryActive - */ - public val OutlineOnDarkSecondaryActive: Color = Color(0xFF4A4A4A) - - /** - * dark outline onDark outlineTertiaryHover - */ - public val OutlineOnDarkTertiaryHover: Color = Color(0xFF7A7A7A) - - /** - * dark outline onDark outlineTertiaryActive - */ - public val OutlineOnDarkTertiaryActive: Color = Color(0xFF6B6B6B) - - /** - * dark outline onDark outlineDefaultHover - */ - public val OutlineOnDarkDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineDefaultActive - */ - public val OutlineOnDarkDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * dark outline onDark outlineTransparentPrimaryHover - */ - public val OutlineOnDarkTransparentPrimaryHover: Color = Color(0x3DFFFFFF) - - /** - * dark outline onDark outlineTransparentPrimaryActive - */ - public val OutlineOnDarkTransparentPrimaryActive: Color = Color(0x0FFFFFFF) - - /** - * dark outline onDark outlineTransparentSecondaryHover - */ - public val OutlineOnDarkTransparentSecondaryHover: Color = Color(0x52FFFFFF) - - /** - * dark outline onDark outlineTransparentSecondaryActive - */ - public val OutlineOnDarkTransparentSecondaryActive: Color = Color(0x24FFFFFF) - - /** - * dark outline onDark outlineTransparentTertiaryHover - */ - public val OutlineOnDarkTransparentTertiaryHover: Color = Color(0x85FFFFFF) - - /** - * dark outline onDark outlineTransparentTertiaryActive - */ - public val OutlineOnDarkTransparentTertiaryActive: Color = Color(0x57FFFFFF) - - /** - * dark outline onDark outlineAccentHover - */ - public val OutlineOnDarkAccentHover: Color = Color(0xFF5D95FD) - - /** - * dark outline onDark outlineAccentActive - */ - public val OutlineOnDarkAccentActive: Color = Color(0xFF357BFD) - - /** - * dark outline onDark outlineAccentMinorHover - */ - public val OutlineOnDarkAccentMinorHover: Color = Color(0xFF1852BF) - - /** - * dark outline onDark outlineAccentMinorActive - */ - public val OutlineOnDarkAccentMinorActive: Color = Color(0xFF1446A3) - - /** - * dark outline onDark outlineTransparentAccentHover - */ - public val OutlineOnDarkTransparentAccentHover: Color = Color(0x663F82FD) - - /** - * dark outline onDark outlineTransparentAccentActive - */ - public val OutlineOnDarkTransparentAccentActive: Color = Color(0x383F82FD) - - /** - * dark outline onDark outlinePositiveHover - */ - public val OutlineOnDarkPositiveHover: Color = Color(0xFF28C344) - - /** - * dark outline onDark outlinePositiveActive - */ - public val OutlineOnDarkPositiveActive: Color = Color(0xFF23A93B) - - /** - * dark outline onDark outlineWarningHover - */ - public val OutlineOnDarkWarningHover: Color = Color(0xFFFF8442) - - /** - * dark outline onDark outlineWarningActive - */ - public val OutlineOnDarkWarningActive: Color = Color(0xFFFF6A1A) - - /** - * dark outline onDark outlineNegativeHover - */ - public val OutlineOnDarkNegativeHover: Color = Color(0xFFFF5C6C) - - /** - * dark outline onDark outlineNegativeActive - */ - public val OutlineOnDarkNegativeActive: Color = Color(0xFFFF3347) - - /** - * dark outline onDark outlineInfoHover - */ - public val OutlineOnDarkInfoHover: Color = Color(0xFF70A2FF) - - /** - * dark outline onDark outlineInfoActive - */ - public val OutlineOnDarkInfoActive: Color = Color(0xFF4788FF) - - /** - * dark outline onDark outlinePositiveMinorHover - */ - public val OutlineOnDarkPositiveMinorHover: Color = Color(0xFF0B6F1D) - - /** - * dark outline onDark outlinePositiveMinorActive - */ - public val OutlineOnDarkPositiveMinorActive: Color = Color(0xFF085416) - - /** - * dark outline onDark outlineWarningMinorHover - */ - public val OutlineOnDarkWarningMinorHover: Color = Color(0xFF95400E) - - /** - * dark outline onDark outlineWarningMinorActive - */ - public val OutlineOnDarkWarningMinorActive: Color = Color(0xFF79340B) - - /** - * dark outline onDark outlineNegativeMinorHover - */ - public val OutlineOnDarkNegativeMinorHover: Color = Color(0xFFB01726) - - /** - * dark outline onDark outlineNegativeMinorActive - */ - public val OutlineOnDarkNegativeMinorActive: Color = Color(0xFF951320) - - /** - * dark outline onDark outlineInfoMinorHover - */ - public val OutlineOnDarkInfoMinorHover: Color = Color(0xFF1852BF) - - /** - * dark outline onDark outlineInfoMinorActive - */ - public val OutlineOnDarkInfoMinorActive: Color = Color(0xFF1446A3) - - /** - * dark outline onDark outlineTransparentPositiveHover - */ - public val OutlineOnDarkTransparentPositiveHover: Color = Color(0x661A9E32) - - /** - * dark outline onDark outlineTransparentPositiveActive - */ - public val OutlineOnDarkTransparentPositiveActive: Color = Color(0x381A9E32) - - /** - * dark outline onDark outlineTransparentWarningHover - */ - public val OutlineOnDarkTransparentWarningHover: Color = Color(0x66FA5F05) - - /** - * dark outline onDark outlineTransparentWarningActive - */ - public val OutlineOnDarkTransparentWarningActive: Color = Color(0x38FA5F05) - - /** - * dark outline onDark outlineNegativeTransparentHover - */ - public val OutlineOnDarkNegativeTransparentHover: Color = Color(0x66FF293E) - - /** - * dark outline onDark outlineNegativeTransparentActive - */ - public val OutlineOnDarkNegativeTransparentActive: Color = Color(0x38FF293E) - - /** - * dark outline onDark outlineTransparentInfoHover - */ - public val OutlineOnDarkTransparentInfoHover: Color = Color(0x663F82FD) - - /** - * dark outline onDark outlineTransparentInfoActive - */ - public val OutlineOnDarkTransparentInfoActive: Color = Color(0x383F82FD) - - /** - * dark outline onDark outlineTransparentPrimary - */ - public val OutlineOnDarkTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * dark outline onDark outlineTransparentSecondary - */ - public val OutlineOnDarkTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * dark outline onDark outlineTransparentTertiary - */ - public val OutlineOnDarkTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * dark outline onDark outlineAccent - */ - public val OutlineOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * dark outline onDark outlineAccentMinor - */ - public val OutlineOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * dark outline onDark outlineTransparentAccent - */ - public val OutlineOnDarkTransparentAccent: Color = Color(0x473F81FD) - - /** - * dark outline onDark outlinePositive - */ - public val OutlineOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * dark outline onDark outlineWarning - */ - public val OutlineOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * dark outline onDark outlineNegative - */ - public val OutlineOnDarkNegative: Color = Color(0xFFFF3D51) - - /** - * dark outline onDark outlineWarningMinor - */ - public val OutlineOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * dark outline onDark outlineNegativeMinor - */ - public val OutlineOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * dark outline onDark outlineTransparentPositive - */ - public val OutlineOnDarkTransparentPositive: Color = Color(0x471A9E32) - - /** - * dark outline onDark outlineTransparentWarning - */ - public val OutlineOnDarkTransparentWarning: Color = Color(0x47FA5F05) - - /** - * dark outline onDark outlineNegativeTransparent - */ - public val OutlineOnDarkNegativeTransparent: Color = Color(0x47FF293E) - - /** - * dark outline onDark outlinePositiveMinor - */ - public val OutlineOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * dark outline onDark outlineInfoMinor - */ - public val OutlineOnDarkInfoMinor: Color = Color(0xFF1549AB) - - /** - * dark outline onDark outlineInfo - */ - public val OutlineOnDarkInfo: Color = Color(0xFF528EFF) - - /** - * dark outline onDark outlineTransparentInfo - */ - public val OutlineOnDarkTransparentInfo: Color = Color(0x473F81FD) - - /** - * dark outline onDark outlineSolidPrimary - */ - public val OutlineOnDarkSolidPrimary: Color = Color(0xFF262626) - - /** - * dark outline onDark outlineSolidPrimaryHover - */ - public val OutlineOnDarkSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineSolidPrimaryActive - */ - public val OutlineOnDarkSolidPrimaryActive: Color = Color(0xFFADADAD) - - /** - * dark outline onDark outlineSolidSecondary - */ - public val OutlineOnDarkSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * dark outline onDark outlineSolidSecondaryHover - */ - public val OutlineOnDarkSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineSolidSecondaryActive - */ - public val OutlineOnDarkSolidSecondaryActive: Color = Color(0xFF8C8C8C) - - /** - * dark outline onDark outlineSolidTertiary - */ - public val OutlineOnDarkSolidTertiary: Color = Color(0xFF707070) - - /** - * dark outline onDark outlineSolidTertiaryHover - */ - public val OutlineOnDarkSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineSolidTertiaryActive - */ - public val OutlineOnDarkSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * dark outline onDark outlineSolidDefault - */ - public val OutlineOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * dark outline onDark outlineSolidDefaultHover - */ - public val OutlineOnDarkSolidDefaultHover: Color = Color(0xFFC7C7C7) - - /** - * dark outline onDark outlineSolidDefaultActive - */ - public val OutlineOnDarkSolidDefaultActive: Color = Color(0xFFE0E0E0) - - /** - * dark outline onLight outlinePrimaryHover - */ - public val OutlineOnLightPrimaryHover: Color = Color(0xFFE8E8E8) - - /** - * dark outline onLight outlinePrimaryActive - */ - public val OutlineOnLightPrimaryActive: Color = Color(0xFFD9D9D9) - - /** - * dark outline onLight outlineSecondaryHover - */ - public val OutlineOnLightSecondaryHover: Color = Color(0xFF9E9E9E) - - /** - * dark outline onLight outlineSecondaryActive - */ - public val OutlineOnLightSecondaryActive: Color = Color(0xFF8F8F8F) - - /** - * dark outline onLight outlineTertiaryHover - */ - public val OutlineOnLightTertiaryHover: Color = Color(0xFF7A7A7A) - - /** - * dark outline onLight outlineTertiaryActive - */ - public val OutlineOnLightTertiaryActive: Color = Color(0xFF6B6B6B) - - /** - * dark outline onLight outlineDefaultHover - */ - public val OutlineOnLightDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * dark outline onLight outlineDefaultActive - */ - public val OutlineOnLightDefaultActive: Color = Color(0xFF030303) - - /** - * dark outline onLight outlineTransparentPrimary - */ - public val OutlineOnLightTransparentPrimary: Color = Color(0x33080808) - - /** - * dark outline onLight outlineTransparentPrimaryHover - */ - public val OutlineOnLightTransparentPrimaryHover: Color = Color(0x52080808) - - /** - * dark outline onLight outlineTransparentPrimaryActive - */ - public val OutlineOnLightTransparentPrimaryActive: Color = Color(0x24080808) - - /** - * dark outline onLight outlineTransparentSecondary - */ - public val OutlineOnLightTransparentSecondary: Color = Color(0x66080808) - - /** - * dark outline onLight outlineTransparentSecondaryHover - */ - public val OutlineOnLightTransparentSecondaryHover: Color = Color(0x85080808) - - /** - * dark outline onLight outlineTransparentSecondaryActive - */ - public val OutlineOnLightTransparentSecondaryActive: Color = Color(0x57080808) - - /** - * dark outline onLight outlineTransparentTertiary - */ - public val OutlineOnLightTransparentTertiary: Color = Color(0x8F080808) - - /** - * dark outline onLight outlineTransparentTertiaryHover - */ - public val OutlineOnLightTransparentTertiaryHover: Color = Color(0xAD080808) - - /** - * dark outline onLight outlineTransparentTertiaryActive - */ - public val OutlineOnLightTransparentTertiaryActive: Color = Color(0x80080808) - - /** - * dark outline onLight outlineAccent - */ - public val OutlineOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * dark outline onLight outlineAccentHover - */ - public val OutlineOnLightAccentHover: Color = Color(0xFF4886F9) - - /** - * dark outline onLight outlineAccentActive - */ - public val OutlineOnLightAccentActive: Color = Color(0xFF206CF8) - - /** - * dark outline onLight outlineAccentMinor - */ - public val OutlineOnLightAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline onLight outlineAccentMinorHover - */ - public val OutlineOnLightAccentMinorHover: Color = Color(0xFFA1C1FD) - - /** - * dark outline onLight outlineAccentMinorActive - */ - public val OutlineOnLightAccentMinorActive: Color = Color(0xFF83ADFC) - - /** - * dark outline onLight outlineTransparentAccent - */ - public val OutlineOnLightTransparentAccent: Color = Color(0x332A72F8) - - /** - * dark outline onLight outlineTransparentAccentHover - */ - public val OutlineOnLightTransparentAccentHover: Color = Color(0x522A72F8) - - /** - * dark outline onLight outlineTransparentAccentActive - */ - public val OutlineOnLightTransparentAccentActive: Color = Color(0x242A72F8) - - /** - * dark outline onLight outlinePositive - */ - public val OutlineOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * dark outline onLight outlinePositiveHover - */ - public val OutlineOnLightPositiveHover: Color = Color(0xFF1DAF37) - - /** - * dark outline onLight outlinePositiveActive - */ - public val OutlineOnLightPositiveActive: Color = Color(0xFF18952F) - - /** - * dark outline onLight outlineWarning - */ - public val OutlineOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * dark outline onLight outlineWarningHover - */ - public val OutlineOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * dark outline onLight outlineWarningActive - */ - public val OutlineOnLightWarningActive: Color = Color(0xFFF05B05) - - /** - * dark outline onLight outlineNegative - */ - public val OutlineOnLightNegative: Color = Color(0xFFF31B31) - - /** - * dark outline onLight outlineNegativeHover - */ - public val OutlineOnLightNegativeHover: Color = Color(0xFFF5384B) - - /** - * dark outline onLight outlineNegativeActive - */ - public val OutlineOnLightNegativeActive: Color = Color(0xFFF31228) - - /** - * dark outline onLight outlineInfoHover - */ - public val OutlineOnLightInfoHover: Color = Color(0xFF5D95FD) - - /** - * dark outline onLight outlineInfoActive - */ - public val OutlineOnLightInfoActive: Color = Color(0xFF357BFD) - - /** - * dark outline onLight outlinePositiveMinor - */ - public val OutlineOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * dark outline onLight outlinePositiveMinorHover - */ - public val OutlineOnLightPositiveMinorHover: Color = Color(0xFF36D954) - - /** - * dark outline onLight outlinePositiveMinorActive - */ - public val OutlineOnLightPositiveMinorActive: Color = Color(0xFF26C944) - - /** - * dark outline onLight outlineWarningMinor - */ - public val OutlineOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * dark outline onLight outlineWarningMinorHover - */ - public val OutlineOnLightWarningMinorHover: Color = Color(0xFFFDA97C) - - /** - * dark outline onLight outlineWarningMinorActive - */ - public val OutlineOnLightWarningMinorActive: Color = Color(0xFFFD965E) - - /** - * dark outline onLight outlineNegativeMinor - */ - public val OutlineOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * dark outline onLight outlineNegativeMinorHover - */ - public val OutlineOnLightNegativeMinorHover: Color = Color(0xFFFFA3AC) - - /** - * dark outline onLight outlineNegativeMinorActive - */ - public val OutlineOnLightNegativeMinorActive: Color = Color(0xFFFF8591) - - /** - * dark outline onLight outlineInfoMinorHover - */ - public val OutlineOnLightInfoMinorHover: Color = Color(0xFFA1C1FD) - - /** - * dark outline onLight outlineInfoMinorActive - */ - public val OutlineOnLightInfoMinorActive: Color = Color(0xFF83ADFC) - - /** - * dark outline onLight outlineTransparentPositive - */ - public val OutlineOnLightTransparentPositive: Color = Color(0x331A9E32) - - /** - * dark outline onLight outlineTransparentPositiveHover - */ - public val OutlineOnLightTransparentPositiveHover: Color = Color(0x521A9E32) - - /** - * dark outline onLight outlineTransparentPositiveActive - */ - public val OutlineOnLightTransparentPositiveActive: Color = Color(0x241A9E32) - - /** - * dark outline onLight outlineTransparentWarning - */ - public val OutlineOnLightTransparentWarning: Color = Color(0x33E85702) - - /** - * dark outline onLight outlineTransparentWarningHover - */ - public val OutlineOnLightTransparentWarningHover: Color = Color(0x52E85702) - - /** - * dark outline onLight outlineTransparentWarningActive - */ - public val OutlineOnLightTransparentWarningActive: Color = Color(0x24E85702) - - /** - * dark outline onLight outlineNegativeTransparent - */ - public val OutlineOnLightNegativeTransparent: Color = Color(0x33F31B31) - - /** - * dark outline onLight outlineNegativeTransparentHover - */ - public val OutlineOnLightNegativeTransparentHover: Color = Color(0x52F31B31) - - /** - * dark outline onLight outlineNegativeTransparentActive - */ - public val OutlineOnLightNegativeTransparentActive: Color = Color(0x24F31B31) - - /** - * dark outline onLight outlineTransparentInfoHover - */ - public val OutlineOnLightTransparentInfoHover: Color = Color(0x522A72F8) - - /** - * dark outline onLight outlineTransparentInfoActive - */ - public val OutlineOnLightTransparentInfoActive: Color = Color(0x242A72F8) - - /** - * dark outline onLight outlineInfo - */ - public val OutlineOnLightInfo: Color = Color(0xFF3F81FD) - - /** - * dark outline onLight outlineInfoMinor - */ - public val OutlineOnLightInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline onLight outlineTransparentInfo - */ - public val OutlineOnLightTransparentInfo: Color = Color(0x332A72F8) - - /** - * dark outline onLight outlineSolidTertiary - */ - public val OutlineOnLightSolidTertiary: Color = Color(0xFF707070) - - /** - * dark outline onLight outlineSolidTertiaryHover - */ - public val OutlineOnLightSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onLight outlineSolidTertiaryActive - */ - public val OutlineOnLightSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * dark outline onLight outlineSolidDefault - */ - public val OutlineOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * dark outline onLight outlineSolidDefaultHover - */ - public val OutlineOnLightSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onLight outlineSolidDefaultActive - */ - public val OutlineOnLightSolidDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * dark outline onLight outlineSolidPrimary - */ - public val OutlineOnLightSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * dark outline onLight outlineSolidPrimaryHover - */ - public val OutlineOnLightSolidPrimaryHover: Color = Color(0xFFABABAB) - - /** - * dark outline onLight outlineSolidPrimaryActive - */ - public val OutlineOnLightSolidPrimaryActive: Color = Color(0xFFC4C4C4) - - /** - * dark outline onLight outlineSolidSecondary - */ - public val OutlineOnLightSolidSecondary: Color = Color(0xFF949494) - - /** - * dark outline onLight outlineSolidSecondaryHover - */ - public val OutlineOnLightSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onLight outlineSolidSecondaryActive - */ - public val OutlineOnLightSolidSecondaryActive: Color = Color(0xFF575757) - - /** - * dark outline inverse outlinePrimaryHover - */ - public val OutlineInversePrimaryHover: Color = Color(0xFFABABAB) - - /** - * dark outline inverse outlinePrimaryActive - */ - public val OutlineInversePrimaryActive: Color = Color(0xFFC4C4C4) - - /** - * dark outline inverse outlineSecondaryHover - */ - public val OutlineInverseSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineSecondaryActive - */ - public val OutlineInverseSecondaryActive: Color = Color(0xFF575757) - - /** - * dark outline inverse outlineTertiaryHover - */ - public val OutlineInverseTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineTertiaryActive - */ - public val OutlineInverseTertiaryActive: Color = Color(0xFF737373) - - /** - * dark outline inverse outlineDefaultHover - */ - public val OutlineInverseDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineDefaultActive - */ - public val OutlineInverseDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * dark outline inverse outlineTransparentPrimary - */ - public val OutlineInverseTransparentPrimary: Color = Color(0x33080808) - - /** - * dark outline inverse outlineTransparentPrimaryHover - */ - public val OutlineInverseTransparentPrimaryHover: Color = Color(0xFF080808) - - /** - * dark outline inverse outlineTransparentPrimaryActive - */ - public val OutlineInverseTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * dark outline inverse outlineTransparentSecondary - */ - public val OutlineInverseTransparentSecondary: Color = Color(0x66080808) - - /** - * dark outline inverse outlineTransparentSecondaryHover - */ - public val OutlineInverseTransparentSecondaryHover: Color = Color(0xFF080808) - - /** - * dark outline inverse outlineTransparentSecondaryActive - */ - public val OutlineInverseTransparentSecondaryActive: Color = Color(0x7A080808) - - /** - * dark outline inverse outlineTransparentTertiary - */ - public val OutlineInverseTransparentTertiary: Color = Color(0x8F080808) - - /** - * dark outline inverse outlineTransparentTertiaryHover - */ - public val OutlineInverseTransparentTertiaryHover: Color = Color(0xFF080808) - - /** - * dark outline inverse outlineTransparentTertiaryActive - */ - public val OutlineInverseTransparentTertiaryActive: Color = Color(0xAB080808) - - /** - * dark outline inverse outlineTransparentClear - */ - public val OutlineInverseTransparentClear: Color = Color(0x00FFFFFF) - - /** - * dark outline inverse outlineTransparentClearHover - */ - public val OutlineInverseTransparentClearHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineTransparentClearActive - */ - public val OutlineInverseTransparentClearActive: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineAccent - */ - public val OutlineInverseAccent: Color = Color(0xFF2A72F8) - - /** - * dark outline inverse outlineAccentHover - */ - public val OutlineInverseAccentHover: Color = Color(0xFF79A7FB) - - /** - * dark outline inverse outlineAccentActive - */ - public val OutlineInverseAccentActive: Color = Color(0xFF0D5FF8) - - /** - * dark outline inverse outlineAccentMinor - */ - public val OutlineInverseAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline inverse outlineAccentMinorHover - */ - public val OutlineInverseAccentMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark outline inverse outlineAccentMinorActive - */ - public val OutlineInverseAccentMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark outline inverse outlineTransparentAccent - */ - public val OutlineInverseTransparentAccent: Color = Color(0x332A72F8) - - /** - * dark outline inverse outlineTransparentAccentHover - */ - public val OutlineInverseTransparentAccentHover: Color = Color(0xFF2A72F8) - - /** - * dark outline inverse outlineTransparentAccentActive - */ - public val OutlineInverseTransparentAccentActive: Color = Color(0x3D2A72F8) - - /** - * dark outline inverse outlinePositive - */ - public val OutlineInversePositive: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlinePositiveHover - */ - public val OutlineInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * dark outline inverse outlinePositiveActive - */ - public val OutlineInversePositiveActive: Color = Color(0xFF15842A) - - /** - * dark outline inverse outlineWarning - */ - public val OutlineInverseWarning: Color = Color(0xFFFA5F05) - - /** - * dark outline inverse outlineWarningHover - */ - public val OutlineInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * dark outline inverse outlineWarningActive - */ - public val OutlineInverseWarningActive: Color = Color(0xFFDC5304) - - /** - * dark outline inverse outlineNegative - */ - public val OutlineInverseNegative: Color = Color(0xFFF31B31) - - /** - * dark outline inverse outlineNegativeHover - */ - public val OutlineInverseNegativeHover: Color = Color(0xFFF5384B) - - /** - * dark outline inverse outlineNegativeActive - */ - public val OutlineInverseNegativeActive: Color = Color(0xFFE40C22) - - /** - * dark outline inverse outlineInfo - */ - public val OutlineInverseInfo: Color = Color(0xFF2A72F8) - - /** - * dark outline inverse outlineInfoHover - */ - public val OutlineInverseInfoHover: Color = Color(0xFF79A7FB) - - /** - * dark outline inverse outlineInfoActive - */ - public val OutlineInverseInfoActive: Color = Color(0xFF0D5FF8) - - /** - * dark outline inverse outlinePositiveMinor - */ - public val OutlineInversePositiveMinor: Color = Color(0xFF28D247) - - /** - * dark outline inverse outlinePositiveMinorHover - */ - public val OutlineInversePositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark outline inverse outlinePositiveMinorActive - */ - public val OutlineInversePositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * dark outline inverse outlineWarningMinor - */ - public val OutlineInverseWarningMinor: Color = Color(0xFFFD9C68) - - /** - * dark outline inverse outlineWarningMinorHover - */ - public val OutlineInverseWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * dark outline inverse outlineWarningMinorActive - */ - public val OutlineInverseWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * dark outline inverse outlineNegativeMinor - */ - public val OutlineInverseNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * dark outline inverse outlineNegativeMinorHover - */ - public val OutlineInverseNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * dark outline inverse outlineNegativeMinorActive - */ - public val OutlineInverseNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * dark outline inverse outlineInfoMinor - */ - public val OutlineInverseInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline inverse outlineInfoMinorHover - */ - public val OutlineInverseInfoMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark outline inverse outlineInfoMinorActive - */ - public val OutlineInverseInfoMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark outline inverse outlineTransparentPositive - */ - public val OutlineInverseTransparentPositive: Color = Color(0x331A9E32) - - /** - * dark outline inverse outlineTransparentPositiveHover - */ - public val OutlineInverseTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlineTransparentPositiveActive - */ - public val OutlineInverseTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * dark outline inverse outlineTransparentWarning - */ - public val OutlineInverseTransparentWarning: Color = Color(0x33FA5F05) - - /** - * dark outline inverse outlineTransparentWarningHover - */ - public val OutlineInverseTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * dark outline inverse outlineTransparentWarningActive - */ - public val OutlineInverseTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * dark outline inverse outlineTransparentNegative - */ - public val OutlineInverseTransparentNegative: Color = Color(0x33F31B31) - - /** - * dark outline inverse outlineTransparentNegativeHover - */ - public val OutlineInverseTransparentNegativeHover: Color = Color(0xFFF31B31) - - /** - * dark outline inverse outlineTransparentNegativeActive - */ - public val OutlineInverseTransparentNegativeActive: Color = Color(0x3DF31B31) - - /** - * dark outline inverse outlineTransparentInfo - */ - public val OutlineInverseTransparentInfo: Color = Color(0x332A72F8) - - /** - * dark outline inverse outlineTransparentInfoHover - */ - public val OutlineInverseTransparentInfoHover: Color = Color(0xFF2A72F8) - - /** - * dark outline inverse outlineTransparentInfoActive - */ - public val OutlineInverseTransparentInfoActive: Color = Color(0x3D2A72F8) - - /** - * dark outline inverse outlineSolidPrimary - */ - public val OutlineInverseSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * dark outline inverse outlineSolidPrimaryHover - */ - public val OutlineInverseSolidPrimaryHover: Color = Color(0xFFABABAB) - - /** - * dark outline inverse outlineSolidPrimaryActive - */ - public val OutlineInverseSolidPrimaryActive: Color = Color(0xFFC4C4C4) - - /** - * dark outline inverse outlineSolidSecondary - */ - public val OutlineInverseSolidSecondary: Color = Color(0xFF949494) - - /** - * dark outline inverse outlineSolidSecondaryHover - */ - public val OutlineInverseSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineSolidSecondaryActive - */ - public val OutlineInverseSolidSecondaryActive: Color = Color(0xFF575757) - - /** - * dark outline inverse outlineSolidTertiary - */ - public val OutlineInverseSolidTertiary: Color = Color(0xFF707070) - - /** - * dark outline inverse outlineSolidTertiaryHover - */ - public val OutlineInverseSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineSolidTertiaryActive - */ - public val OutlineInverseSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * dark outline inverse outlineSolidDefault - */ - public val OutlineInverseSolidDefault: Color = Color(0xFF080808) - - /** - * dark outline inverse outlineSolidDefaultHover - */ - public val OutlineInverseSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline inverse outlineSolidDefaultActive - */ - public val OutlineInverseSolidDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorActive: Color = Color(0xFF996600) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorActive: Color = Color(0xFF996600) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorActive: Color = Color(0xFFFFCF70) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellow: Color = Color(0xFFF3A912) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowHover: Color = Color(0xFFF4B22F) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowActive: Color = Color(0xFFEDA20C) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorActive: Color = Color(0xFFFFCF70) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentActive: Color = Color(0x80F3A812) -} - -/** - * Токены цвета для светлой темы - */ -public object LightColorTokens { - /** - * Основной цвет текста - */ - public val TextDefaultPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет - */ - public val TextDefaultAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет успеха - */ - public val TextDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки - */ - public val TextDefaultNegative: Color = Color(0xFFF31B31) - - /** - * light text default textAccentMinorHover - */ - public val TextDefaultAccentMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text default textAccentMinorActive - */ - public val TextDefaultAccentMinorActive: Color = Color(0xFF6599FB) - - /** - * light text default textInfoHover - */ - public val TextDefaultInfoHover: Color = Color(0xFF689CFD) - - /** - * light text default textInfoActive - */ - public val TextDefaultInfoActive: Color = Color(0xFF1767FD) - - /** - * light text default textPositiveMinorHover - */ - public val TextDefaultPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * light text default textPositiveMinorActive - */ - public val TextDefaultPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * light text default textWarningMinorHover - */ - public val TextDefaultWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * light text default textWarningMinorActive - */ - public val TextDefaultWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * light text default textNegativeMinorHover - */ - public val TextDefaultNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * light text default textNegativeMinorActive - */ - public val TextDefaultNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * light text default textInfoMinorHover - */ - public val TextDefaultInfoMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text default textInfoMinorActive - */ - public val TextDefaultInfoMinorActive: Color = Color(0xFF6599FB) - - /** - * light text default textAccentMinor - */ - public val TextDefaultAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * light text default textPositiveMinor - */ - public val TextDefaultPositiveMinor: Color = Color(0xFF28D247) - - /** - * light text default textWarningMinor - */ - public val TextDefaultWarningMinor: Color = Color(0xFFFD9C68) - - /** - * light text default textNegativeMinor - */ - public val TextDefaultNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * light text default textInfo - */ - public val TextDefaultInfo: Color = Color(0xFF3F81FD) - - /** - * light text default textInfoMinor - */ - public val TextDefaultInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryActive: Color = Color(0xC4080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryActive: Color = Color(0xAB080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryActive: Color = Color(0x56080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphActive: Color = Color(0xA3080808) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentHover: Color = Color(0xFF528DFA) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentActive: Color = Color(0xFF075AF2) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeHover: Color = Color(0xFFF54254) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeActive: Color = Color(0xFFDA0B20) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * light text onDark textAccentMinor - */ - public val TextOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * light text onDark textAccentMinorHover - */ - public val TextOnDarkAccentMinorHover: Color = Color(0xFF000000) - - /** - * light text onDark textAccentMinorActive - */ - public val TextOnDarkAccentMinorActive: Color = Color(0xFF113B88) - - /** - * light text onDark textInfoHover - */ - public val TextOnDarkInfoHover: Color = Color(0xFF689CFD) - - /** - * light text onDark textInfoActive - */ - public val TextOnDarkInfoActive: Color = Color(0xFF1767FD) - - /** - * light text onDark textPositiveMinor - */ - public val TextOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * light text onDark textPositiveMinorHover - */ - public val TextOnDarkPositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * light text onDark textPositiveMinorActive - */ - public val TextOnDarkPositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * light text onDark textWarningMinor - */ - public val TextOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * light text onDark textWarningMinorHover - */ - public val TextOnDarkWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * light text onDark textWarningMinorActive - */ - public val TextOnDarkWarningMinorActive: Color = Color(0xFFA84710) - - /** - * light text onDark textNegativeMinor - */ - public val TextOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * light text onDark textNegativeMinorHover - */ - public val TextOnDarkNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * light text onDark textNegativeMinorActive - */ - public val TextOnDarkNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * light text onDark textInfoMinorHover - */ - public val TextOnDarkInfoMinorHover: Color = Color(0xFF000000) - - /** - * light text onDark textInfoMinorActive - */ - public val TextOnDarkInfoMinorActive: Color = Color(0xFF113B88) - - /** - * light text onDark textInfoMinor - */ - public val TextOnDarkInfoMinor: Color = Color(0xFF1549AB) - - /** - * light text onDark textInfo - */ - public val TextOnDarkInfo: Color = Color(0xFF3F81FD) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentActive: Color = Color(0xFF1767FD) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeActive: Color = Color(0xFFFF001A) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * light text onLight textAccentMinor - */ - public val TextOnLightAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * light text onLight textAccentMinorHover - */ - public val TextOnLightAccentMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text onLight textAccentMinorActive - */ - public val TextOnLightAccentMinorActive: Color = Color(0xFF6599FB) - - /** - * light text onLight textInfoHover - */ - public val TextOnLightInfoHover: Color = Color(0xFF528DFA) - - /** - * light text onLight textInfoActive - */ - public val TextOnLightInfoActive: Color = Color(0xFF075AF2) - - /** - * light text onLight textPositiveMinor - */ - public val TextOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * light text onLight textPositiveMinorHover - */ - public val TextOnLightPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * light text onLight textPositiveMinorActive - */ - public val TextOnLightPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * light text onLight textWarningMinor - */ - public val TextOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * light text onLight textWarningMinorHover - */ - public val TextOnLightWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * light text onLight textWarningMinorActive - */ - public val TextOnLightWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * light text onLight textNegativeMinor - */ - public val TextOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * light text onLight textNegativeMinorHover - */ - public val TextOnLightNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * light text onLight textNegativeMinorActive - */ - public val TextOnLightNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * light text onLight textInfoMinorHover - */ - public val TextOnLightInfoMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text onLight textInfoMinorActive - */ - public val TextOnLightInfoMinorActive: Color = Color(0xFF6599FB) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegative: Color = Color(0xFFF31B31) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeHover: Color = Color(0xFFF54254) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeActive: Color = Color(0xFFDA0B20) - - /** - * light text onLight textInfo - */ - public val TextOnLightInfo: Color = Color(0xFF2A72F8) - - /** - * light text onLight textInfoMinor - */ - public val TextOnLightInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryActive: Color = Color(0xC4080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryActive: Color = Color(0xAB080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryActive: Color = Color(0x56080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphActive: Color = Color(0xA3080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentHover: Color = Color(0xFF528DFA) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentActive: Color = Color(0xFF075AF2) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningActive: Color = Color(0xFFD25004) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimary: Color = Color(0xF5FFFFFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondary: Color = Color(0x8FFFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiary: Color = Color(0x47FFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraph: Color = Color(0xCCFFFFFF) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentHover: Color = Color(0xFF689CFD) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentActive: Color = Color(0xFF1767FD) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveHover: Color = Color(0xFF1FC13D) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveActive: Color = Color(0xFF147B27) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningHover: Color = Color(0xFFFB782D) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningActive: Color = Color(0xFFD25004) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeHover: Color = Color(0xFFFF5263) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeActive: Color = Color(0xFFFF001A) - - /** - * light text inverse textAccentMinor - */ - public val TextInverseAccentMinor: Color = Color(0xFF1549AB) - - /** - * light text inverse textAccentMinorHover - */ - public val TextInverseAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * light text inverse textAccentMinorActive - */ - public val TextInverseAccentMinorActive: Color = Color(0xFF113B88) - - /** - * light text inverse textInfoHover - */ - public val TextInverseInfoHover: Color = Color(0xFF689CFD) - - /** - * light text inverse textInfoActive - */ - public val TextInverseInfoActive: Color = Color(0xFF1767FD) - - /** - * light text inverse textPositiveMinorHover - */ - public val TextInversePositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * light text inverse textPositiveMinorActive - */ - public val TextInversePositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * light text inverse textWarningMinorHover - */ - public val TextInverseWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * light text inverse textWarningMinorActive - */ - public val TextInverseWarningMinorActive: Color = Color(0xFFA84710) - - /** - * light text inverse textNegativeMinorHover - */ - public val TextInverseNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * light text inverse textNegativeMinorActive - */ - public val TextInverseNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * light text inverse textInfoMinorHover - */ - public val TextInverseInfoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * light text inverse textInfoMinorActive - */ - public val TextInverseInfoMinorActive: Color = Color(0xFF113B88) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccent: Color = Color(0xFF3F81FD) - - /** - * light text inverse textInfo - */ - public val TextInverseInfo: Color = Color(0xFF3F81FD) - - /** - * light text inverse textPositiveMinor - */ - public val TextInversePositiveMinor: Color = Color(0xFF095C18) - - /** - * light text inverse textWarningMinor - */ - public val TextInverseWarningMinor: Color = Color(0xFF85380C) - - /** - * light text inverse textNegativeMinor - */ - public val TextInverseNegativeMinor: Color = Color(0xFF9C1422) - - /** - * light text inverse textInfoMinor - */ - public val TextInverseInfoMinor: Color = Color(0xFF1549AB) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefault: Color = Color(0xFF080808) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefault: Color = Color(0xFF080808) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimary: Color = Color(0x08080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondary: Color = Color(0x0F080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiary: Color = Color(0x1F080808) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegative: Color = Color(0xFFF31B31) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClear: Color = Color(0x00FFFFFF) - - /** - * light surface default surfaceTransparentDeep - */ - public val SurfaceDefaultTransparentDeep: Color = Color(0xA3080808) - - /** - * light surface default surfaceAccentMinorHover - */ - public val SurfaceDefaultAccentMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface default surfaceAccentMinorActive - */ - public val SurfaceDefaultAccentMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface default surfaceTransparentAccentHover - */ - public val SurfaceDefaultTransparentAccentHover: Color = Color(0x0A2A72F8) - - /** - * light surface default surfaceTransparentAccentActive - */ - public val SurfaceDefaultTransparentAccentActive: Color = Color(0x292A72F8) - - /** - * light surface default surfaceInfoHover - */ - public val SurfaceDefaultInfoHover: Color = Color(0xFF689CFD) - - /** - * light surface default surfaceInfoActive - */ - public val SurfaceDefaultInfoActive: Color = Color(0xFF2B74FD) - - /** - * light surface default surfacePositiveMinorHover - */ - public val SurfaceDefaultPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface default surfacePositiveMinorActive - */ - public val SurfaceDefaultPositiveMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface default surfaceWarningMinorHover - */ - public val SurfaceDefaultWarningMinorHover: Color = Color(0xFFFEEFE6) - - /** - * light surface default surfaceWarningMinorActive - */ - public val SurfaceDefaultWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * light surface default surfaceNegativeMinorHover - */ - public val SurfaceDefaultNegativeMinorHover: Color = Color(0xFFFFF5F6) - - /** - * light surface default surfaceNegativeMinorActive - */ - public val SurfaceDefaultNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * light surface default surfaceInfoMinorHover - */ - public val SurfaceDefaultInfoMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface default surfaceInfoMinorActive - */ - public val SurfaceDefaultInfoMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface default surfaceTransparentPositiveHover - */ - public val SurfaceDefaultTransparentPositiveHover: Color = Color(0x0A1A9E32) - - /** - * light surface default surfaceTransparentPositiveActive - */ - public val SurfaceDefaultTransparentPositiveActive: Color = Color(0x291A9E32) - - /** - * light surface default surfaceTransparentWarningHover - */ - public val SurfaceDefaultTransparentWarningHover: Color = Color(0x0AFA5F05) - - /** - * light surface default surfaceTransparentWarningActive - */ - public val SurfaceDefaultTransparentWarningActive: Color = Color(0x29FA5F05) - - /** - * light surface default surfaceTransparentNegativeHover - */ - public val SurfaceDefaultTransparentNegativeHover: Color = Color(0x0AF31B31) - - /** - * light surface default surfaceTransparentNegativeActive - */ - public val SurfaceDefaultTransparentNegativeActive: Color = Color(0x29F31B31) - - /** - * light surface default surfaceTransparentInfoHover - */ - public val SurfaceDefaultTransparentInfoHover: Color = Color(0x0A2A72F8) - - /** - * light surface default surfaceTransparentInfoActive - */ - public val SurfaceDefaultTransparentInfoActive: Color = Color(0x292A72F8) - - /** - * light surface default surfaceAccentMinor - */ - public val SurfaceDefaultAccentMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface default surfaceTransparentAccent - */ - public val SurfaceDefaultTransparentAccent: Color = Color(0x1F2A72F8) - - /** - * light surface default surfacePositiveMinor - */ - public val SurfaceDefaultPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface default surfaceWarningMinor - */ - public val SurfaceDefaultWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * light surface default surfaceNegativeMinor - */ - public val SurfaceDefaultNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * light surface default surfaceTransparentPositive - */ - public val SurfaceDefaultTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * light surface default surfaceTransparentWarning - */ - public val SurfaceDefaultTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * light surface default surfaceTransparentNegative - */ - public val SurfaceDefaultTransparentNegative: Color = Color(0x1FF31B31) - - /** - * light surface default surfaceInfo - */ - public val SurfaceDefaultInfo: Color = Color(0xFF3F81FD) - - /** - * light surface default surfaceInfoMinor - */ - public val SurfaceDefaultInfoMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface default surfaceTransparentInfo - */ - public val SurfaceDefaultTransparentInfo: Color = Color(0x1F2A72F8) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultHover: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryHover: Color = Color(0xFFEDEDED) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryActive: Color = Color(0xFFD4D4D4) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefaultHover: Color = Color(0xFF262626) - - /** - * Прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultTransparentDefaultActive: Color = Color(0xFF030303) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryHover: Color = Color(0x03080808) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryActive: Color = Color(0x0D080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryHover: Color = Color(0x05080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryActive: Color = Color(0x1A080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryHover: Color = Color(0x0A080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryActive: Color = Color(0x29080808) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccentHover: Color = Color(0xFF528DFA) - - /** - * Акцентный фон поверхности/контрола - */ - public val SurfaceDefaultAccentActive: Color = Color(0xFF1665F8) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeHover: Color = Color(0xFFF54254) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeActive: Color = Color(0xFFED0C23) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearHover: Color = Color(0x00FFFFFF) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearActive: Color = Color(0x00FFFFFF) - - /** - * light surface default surfaceTransparentDeepHover - */ - public val SurfaceDefaultTransparentDeepHover: Color = Color(0x8F080808) - - /** - * light surface default surfaceTransparentDeepActive - */ - public val SurfaceDefaultTransparentDeepActive: Color = Color(0xAD080808) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimary: Color = Color(0xFF171717) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondary: Color = Color(0xFF262626) - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClear: Color = Color(0x00000000) - - /** - * light surface onDark surfaceTransparentDeep - */ - public val SurfaceOnDarkTransparentDeep: Color = Color(0xA3FFFFFF) - - /** - * light surface onDark surfaceAccentMinor - */ - public val SurfaceOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * light surface onDark surfaceAccentMinorHover - */ - public val SurfaceOnDarkAccentMinorHover: Color = Color(0xFF1956C8) - - /** - * light surface onDark surfaceAccentMinorActive - */ - public val SurfaceOnDarkAccentMinorActive: Color = Color(0xFF13429A) - - /** - * light surface onDark surfaceTransparentAccent - */ - public val SurfaceOnDarkTransparentAccent: Color = Color(0x333F81FD) - - /** - * light surface onDark surfaceTransparentAccentHover - */ - public val SurfaceOnDarkTransparentAccentHover: Color = Color(0x1F3F82FD) - - /** - * light surface onDark surfaceTransparentAccentActive - */ - public val SurfaceOnDarkTransparentAccentActive: Color = Color(0x3D3F82FD) - - /** - * light surface onDark surfaceSurfaceInfoHover - */ - public val SurfaceOnDarkSurfaceInfoHover: Color = Color(0xFF689CFD) - - /** - * light surface onDark surfaceSurfaceInfoActive - */ - public val SurfaceOnDarkSurfaceInfoActive: Color = Color(0xFF2B74FD) - - /** - * light surface onDark surfacePositiveMinor - */ - public val SurfaceOnDarkPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * light surface onDark surfacePositiveMinorHover - */ - public val SurfaceOnDarkPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * light surface onDark surfacePositiveMinorActive - */ - public val SurfaceOnDarkPositiveMinorActive: Color = Color(0xFF061909) - - /** - * light surface onDark surfaceWarningMinor - */ - public val SurfaceOnDarkWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * light surface onDark surfaceWarningMinorHover - */ - public val SurfaceOnDarkWarningMinorHover: Color = Color(0xFF58290E) - - /** - * light surface onDark surfaceWarningMinorActive - */ - public val SurfaceOnDarkWarningMinorActive: Color = Color(0xFF2C1507) - - /** - * light surface onDark surfaceNegativeMinor - */ - public val SurfaceOnDarkNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * light surface onDark surfaceNegativeMinorHover - */ - public val SurfaceOnDarkNegativeMinorHover: Color = Color(0xFF64121A) - - /** - * light surface onDark surfaceNegativeMinorActive - */ - public val SurfaceOnDarkNegativeMinorActive: Color = Color(0xFF380A0F) - - /** - * light surface onDark surfaceInfoMinorHover - */ - public val SurfaceOnDarkInfoMinorHover: Color = Color(0xFF0A2A67) - - /** - * light surface onDark surfaceInfoMinorActive - */ - public val SurfaceOnDarkInfoMinorActive: Color = Color(0xFF061B41) - - /** - * light surface onDark surfaceTransparentPositiveHover - */ - public val SurfaceOnDarkTransparentPositiveHover: Color = Color(0x1F1A9E32) - - /** - * light surface onDark surfaceTransparentPositiveActive - */ - public val SurfaceOnDarkTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * light surface onDark surfaceTransparentWarningHover - */ - public val SurfaceOnDarkTransparentWarningHover: Color = Color(0x1FFA5F05) - - /** - * light surface onDark surfaceTransparentWarningActive - */ - public val SurfaceOnDarkTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * light surface onDark surfaceTransparentNegativeHover - */ - public val SurfaceOnDarkTransparentNegativeHover: Color = Color(0x1FFF293E) - - /** - * light surface onDark surfaceTransparentNegativeActive - */ - public val SurfaceOnDarkTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * light surface onDark surfaceTransparentInfoHover - */ - public val SurfaceOnDarkTransparentInfoHover: Color = Color(0x1F3F82FD) - - /** - * light surface onDark surfaceTransparentInfoActive - */ - public val SurfaceOnDarkTransparentInfoActive: Color = Color(0x3D3F82FD) - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непр. фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryHover: Color = Color(0x05FFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryActive: Color = Color(0x1AFFFFFF) - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryHover: Color = Color(0x0AFFFFFF) - - /** - * Втор. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryActive: Color = Color(0x29FFFFFF) - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryHover: Color = Color(0x1FFFFFFF) - - /** - * Трет. прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryActive: Color = Color(0x3DFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCard: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardBrightness: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardHover: Color = Color(0x0AFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardActive: Color = Color(0x29FFFFFF) - - /** - * light surface onDark surfaceTransparentPositive - */ - public val SurfaceOnDarkTransparentPositive: Color = Color(0x331A9E32) - - /** - * light surface onDark surfaceTransparentWarning - */ - public val SurfaceOnDarkTransparentWarning: Color = Color(0x33FA5F05) - - /** - * light surface onDark surfaceTransparentNegative - */ - public val SurfaceOnDarkTransparentNegative: Color = Color(0x33FF293E) - - /** - * light surface onDark surfaceSurfaceInfo - */ - public val SurfaceOnDarkSurfaceInfo: Color = Color(0xFF3F81FD) - - /** - * light surface onDark surfaceInfoMinor - */ - public val SurfaceOnDarkInfoMinor: Color = Color(0xFF082254) - - /** - * light surface onDark surfaceTransparentInfo - */ - public val SurfaceOnDarkTransparentInfo: Color = Color(0x333F81FD) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryHover: Color = Color(0xFF363636) - - /** - * Осн. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryActive: Color = Color(0xFF0D0D0D) - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondaryHover: Color = Color(0xFF3B3B3B) - - /** - * Втор. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidSecondaryActive: Color = Color(0xFF1C1C1C) - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryHover: Color = Color(0xFF4A4A4A) - - /** - * Трет. непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryActive: Color = Color(0xFF2B2B2B) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardHover: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardActive: Color = Color(0xFF0D0D0D) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkTransparentDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentHover: Color = Color(0xFF689CFD) - - /** - * Акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentActive: Color = Color(0xFF2B74FD) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхн./контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeActive: Color = Color(0xFFFF142C) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearActive: Color = Color(0x00000000) - - /** - * light surface onDark surfaceTransparentDeepHover - */ - public val SurfaceOnDarkTransparentDeepHover: Color = Color(0x8FFFFFFF) - - /** - * light surface onDark surfaceTransparentDeepActive - */ - public val SurfaceOnDarkTransparentDeepActive: Color = Color(0xADFFFFFF) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefault: Color = Color(0xFF080808) - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimary: Color = Color(0x08080808) - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondary: Color = Color(0x0F080808) - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiary: Color = Color(0x1F080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegative: Color = Color(0xFFF31B31) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClear: Color = Color(0x00000000) - - /** - * light surface onLight surfaceTransparentDeep - */ - public val SurfaceOnLightTransparentDeep: Color = Color(0xA3080808) - - /** - * light surface onLight surfaceAccentMinor - */ - public val SurfaceOnLightAccentMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface onLight surfaceAccentMinorHover - */ - public val SurfaceOnLightAccentMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface onLight surfaceAccentMinorActive - */ - public val SurfaceOnLightAccentMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface onLight surfaceTransparentAccent - */ - public val SurfaceOnLightTransparentAccent: Color = Color(0x1F2A72F8) - - /** - * light surface onLight surfaceTransparentAccentHover - */ - public val SurfaceOnLightTransparentAccentHover: Color = Color(0x0A2A72F8) - - /** - * light surface onLight surfaceTransparentAccentActive - */ - public val SurfaceOnLightTransparentAccentActive: Color = Color(0x292A72F8) - - /** - * light surface onLight surfaceInfoHover - */ - public val SurfaceOnLightInfoHover: Color = Color(0xFF689CFD) - - /** - * light surface onLight surfaceInfoActive - */ - public val SurfaceOnLightInfoActive: Color = Color(0xFF2B74FD) - - /** - * light surface onLight surfacePositiveMinor - */ - public val SurfaceOnLightPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface onLight surfacePositiveMinorHover - */ - public val SurfaceOnLightPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface onLight surfacePositiveMinorActive - */ - public val SurfaceOnLightPositiveMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface onLight surfaceWarningMinor - */ - public val SurfaceOnLightWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * light surface onLight surfaceWarningMinorHover - */ - public val SurfaceOnLightWarningMinorHover: Color = Color(0xFFFEEFE6) - - /** - * light surface onLight surfaceWarningMinorActive - */ - public val SurfaceOnLightWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * light surface onLight surfaceNegativeMinor - */ - public val SurfaceOnLightNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * light surface onLight surfaceNegativeMinorHover - */ - public val SurfaceOnLightNegativeMinorHover: Color = Color(0xFFFFF5F6) - - /** - * light surface onLight surfaceNegativeMinorActive - */ - public val SurfaceOnLightNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * light surface onLight surfaceInfoMinorHover - */ - public val SurfaceOnLightInfoMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface onLight surfaceInfoMinorActive - */ - public val SurfaceOnLightInfoMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface onLight surfaceTransparentPositiveHover - */ - public val SurfaceOnLightTransparentPositiveHover: Color = Color(0x0A1A9E32) - - /** - * light surface onLight surfaceTransparentPositiveActive - */ - public val SurfaceOnLightTransparentPositiveActive: Color = Color(0x291A9E32) - - /** - * light surface onLight surfaceTransparentWarningHover - */ - public val SurfaceOnLightTransparentWarningHover: Color = Color(0x0AFA5F05) - - /** - * light surface onLight surfaceTransparentWarningActive - */ - public val SurfaceOnLightTransparentWarningActive: Color = Color(0x29FA5F05) - - /** - * light surface onLight surfaceTransparentNegativeHover - */ - public val SurfaceOnLightTransparentNegativeHover: Color = Color(0x0AF31B31) - - /** - * light surface onLight surfaceTransparentNegativeActive - */ - public val SurfaceOnLightTransparentNegativeActive: Color = Color(0x29F31B31) - - /** - * light surface onLight surfaceTransparentInfoHover - */ - public val SurfaceOnLightTransparentInfoHover: Color = Color(0x0A2A72F8) - - /** - * light surface onLight surfaceTransparentInfoActive - */ - public val SurfaceOnLightTransparentInfoActive: Color = Color(0x292A72F8) - - /** - * light surface onLight surfaceTransparentPositive - */ - public val SurfaceOnLightTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * light surface onLight surfaceTransparentWarning - */ - public val SurfaceOnLightTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * light surface onLight surfaceTransparentNegative - */ - public val SurfaceOnLightTransparentNegative: Color = Color(0x1FF31B31) - - /** - * light surface onLight surfaceInfo - */ - public val SurfaceOnLightInfo: Color = Color(0xFF3F81FD) - - /** - * light surface onLight surfaceInfoMinor - */ - public val SurfaceOnLightInfoMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface onLight surfaceTransparentInfo - */ - public val SurfaceOnLightTransparentInfo: Color = Color(0x1F2A72F8) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultHover: Color = Color(0xFF262626) - - /** - * Непр. фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Осн. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Втор. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiaryHover: Color = Color(0xFFEDEDED) - - /** - * Трет. непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightSolidTertiaryActive: Color = Color(0xFFD4D4D4) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefaultHover: Color = Color(0xFF262626) - - /** - * Прозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightTransparentDefaultActive: Color = Color(0xFF030303) - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimaryHover: Color = Color(0x03080808) - - /** - * Осн. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPrimaryActive: Color = Color(0x0D080808) - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryHover: Color = Color(0x05080808) - - /** - * Втор. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryActive: Color = Color(0x1A080808) - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryHover: Color = Color(0x0A080808) - - /** - * Трет. прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryActive: Color = Color(0x29080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentHover: Color = Color(0xFF528DFA) - - /** - * Акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentActive: Color = Color(0xFF1665F8) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхн./контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeHover: Color = Color(0xFFF54254) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeActive: Color = Color(0xFFED0C23) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearActive: Color = Color(0x00000000) - - /** - * light surface onLight surfaceTransparentDeepHover - */ - public val SurfaceOnLightTransparentDeepHover: Color = Color(0x8F080808) - - /** - * light surface onLight surfaceTransparentDeepActive - */ - public val SurfaceOnLightTransparentDeepActive: Color = Color(0xAD080808) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefault: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimary: Color = Color(0xFF171717) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondary: Color = Color(0xFF262626) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiary: Color = Color(0xFF363636) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCard: Color = Color(0xFF171717) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimary: Color = Color(0xFF171717) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondary: Color = Color(0xFF262626) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiary: Color = Color(0xFF363636) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCard: Color = Color(0xFF080808) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardBrightness: Color = Color(0xFF171717) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет успеха - */ - public val SurfaceInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClear: Color = Color(0x00000000) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryHover: Color = Color(0xFF363636) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryActive: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryHover: Color = Color(0xFF3B3B3B) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryActive: Color = Color(0xFF1C1C1C) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryHover: Color = Color(0xFF4A4A4A) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryActive: Color = Color(0xFF2B2B2B) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardHover: Color = Color(0xFF363636) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardActive: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseTransparentDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryHover: Color = Color(0xFF363636) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryActive: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryHover: Color = Color(0xFF3B3B3B) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryActive: Color = Color(0xFF1C1C1C) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryHover: Color = Color(0xFF4A4A4A) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryActive: Color = Color(0xFF2B2B2B) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardHover: Color = Color(0xFF262626) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardActive: Color = Color(0xFF030303) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет успеха - */ - public val SurfaceInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * Инвертированный цвет успеха - */ - public val SurfaceInversePositiveActive: Color = Color(0xFF178C2C) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningHover: Color = Color(0xFFFB782D) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningActive: Color = Color(0xFFE65705) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeHover: Color = Color(0xFFFF5263) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeActive: Color = Color(0xFFFF142C) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearHover: Color = Color(0x00000000) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearActive: Color = Color(0x00000000) - - /** - * light surface inverse surfaceTransparentDeep - */ - public val SurfaceInverseTransparentDeep: Color = Color(0xA3080808) - - /** - * light surface inverse surfaceTransparentDeepHover - */ - public val SurfaceInverseTransparentDeepHover: Color = Color(0x8F080808) - - /** - * light surface inverse surfaceTransparentDeepActive - */ - public val SurfaceInverseTransparentDeepActive: Color = Color(0xAD080808) - - /** - * light surface inverse surfaceAccentMinor - */ - public val SurfaceInverseAccentMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface inverse surfaceAccentMinorHover - */ - public val SurfaceInverseAccentMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface inverse surfaceAccentMinorActive - */ - public val SurfaceInverseAccentMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface inverse surfaceTransparentAccent - */ - public val SurfaceInverseTransparentAccent: Color = Color(0x1F2A72F8) - - /** - * light surface inverse surfaceTransparentAccentHover - */ - public val SurfaceInverseTransparentAccentHover: Color = Color(0x0A2A72F8) - - /** - * light surface inverse surfaceTransparentAccentActive - */ - public val SurfaceInverseTransparentAccentActive: Color = Color(0x292A72F8) - - /** - * light surface inverse surfaceInfo - */ - public val SurfaceInverseInfo: Color = Color(0xFF2A72F8) - - /** - * light surface inverse surfaceInfoHover - */ - public val SurfaceInverseInfoHover: Color = Color(0xFF528DFA) - - /** - * light surface inverse surfaceInfoActive - */ - public val SurfaceInverseInfoActive: Color = Color(0xFF1665F8) - - /** - * light surface inverse surfacePositiveMinor - */ - public val SurfaceInversePositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface inverse surfacePositiveMinorHover - */ - public val SurfaceInversePositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface inverse surfacePositiveMinorActive - */ - public val SurfaceInversePositiveMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface inverse surfaceWarningMinor - */ - public val SurfaceInverseWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * light surface inverse surfaceWarningMinorHover - */ - public val SurfaceInverseWarningMinorHover: Color = Color(0xFFFEEFE6) - - /** - * light surface inverse surfaceWarningMinorActive - */ - public val SurfaceInverseWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * light surface inverse surfaceNegativeMinor - */ - public val SurfaceInverseNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * light surface inverse surfaceNegativeMinorHover - */ - public val SurfaceInverseNegativeMinorHover: Color = Color(0xFFFFF5F6) - - /** - * light surface inverse surfaceNegativeMinorActive - */ - public val SurfaceInverseNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * light surface inverse surfaceInfoMinor - */ - public val SurfaceInverseInfoMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface inverse surfaceInfoMinorHover - */ - public val SurfaceInverseInfoMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface inverse surfaceInfoMinorActive - */ - public val SurfaceInverseInfoMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface inverse surfaceTransparentPositive - */ - public val SurfaceInverseTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * light surface inverse surfaceTransparentPositiveHover - */ - public val SurfaceInverseTransparentPositiveHover: Color = Color(0x0A1A9E32) - - /** - * light surface inverse surfaceTransparentPositiveActive - */ - public val SurfaceInverseTransparentPositiveActive: Color = Color(0x291A9E32) - - /** - * light surface inverse surfaceTransparentWarning - */ - public val SurfaceInverseTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * light surface inverse surfaceTransparentWarningHover - */ - public val SurfaceInverseTransparentWarningHover: Color = Color(0x0AFA5F05) - - /** - * light surface inverse surfaceTransparentWarningActive - */ - public val SurfaceInverseTransparentWarningActive: Color = Color(0x29FA5F05) - - /** - * light surface inverse surfaceTransparentNegative - */ - public val SurfaceInverseTransparentNegative: Color = Color(0x1FF31B31) - - /** - * light surface inverse surfaceTransparentNegativeHover - */ - public val SurfaceInverseTransparentNegativeHover: Color = Color(0x0AF31B31) - - /** - * light surface inverse surfaceTransparentNegativeActive - */ - public val SurfaceInverseTransparentNegativeActive: Color = Color(0x29F31B31) - - /** - * light surface inverse surfaceTransparentInfo - */ - public val SurfaceInverseTransparentInfo: Color = Color(0x1F2A72F8) - - /** - * light surface inverse surfaceTransparentInfoHover - */ - public val SurfaceInverseTransparentInfoHover: Color = Color(0x0A2A72F8) - - /** - * light surface inverse surfaceTransparentInfoActive - */ - public val SurfaceInverseTransparentInfoActive: Color = Color(0x292A72F8) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimary: Color = Color(0xFFF9F9F9) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimaryBrightness: Color = Color(0xFFF9F9F9) - - /** - * Вторичный фон - */ - public val BackgroundDefaultSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон - */ - public val BackgroundDefaultTertiary: Color = Color(0xFFFFFFFF) - - /** - * Основной фон на темном фоне - */ - public val BackgroundDarkPrimary: Color = Color(0xFF080808) - - /** - * Вторичный фон на темном фоне - */ - public val BackgroundDarkSecondary: Color = Color(0xFF080808) - - /** - * Третичный фон на темном фоне - */ - public val BackgroundDarkTertiary: Color = Color(0xFF171717) - - /** - * Основной фон на светлом фоне - */ - public val BackgroundLightPrimary: Color = Color(0xFFF9F9F9) - - /** - * Вторичный фон на светлом фоне - */ - public val BackgroundLightSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на светлом фоне - */ - public val BackgroundLightTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimaryBrightness: Color = Color(0xFF0F0F0F) - - /** - * Инвертированный вторичный фон - */ - public val BackgroundInverseSecondary: Color = Color(0xFF080808) - - /** - * Инвертированный третичный фон - */ - public val BackgroundInverseTertiary: Color = Color(0xFF171717) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimary: Color = Color(0xFF080808) - - /** - * Цвет фона паранжи светлый - */ - public val OverlayDefaultSoft: Color = Color(0x8FF9F9F9) - - /** - * Цвет фона паранжи темный - */ - public val OverlayDefaultHard: Color = Color(0xF5F9F9F9) - - /** - * light overlay default overlayBlur - */ - public val OverlayDefaultBlur: Color = Color(0x47F9F9F9) - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val OverlayOnDarkSoft: Color = Color(0x8F080808) - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val OverlayOnDarkHard: Color = Color(0xF5080808) - - /** - * light overlay onDark overlayBlur - */ - public val OverlayOnDarkBlur: Color = Color(0x47080808) - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val OverlayOnLightSoft: Color = Color(0x8FF9F9F9) - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val OverlayOnLightHard: Color = Color(0xF5F9F9F9) - - /** - * light overlay onLight overlayBlur - */ - public val OverlayOnLightBlur: Color = Color(0x47F9F9F9) - - /** - * Инвертированный цвет фона паранжи темный - */ - public val OverlayInverseHard: Color = Color(0xF5080808) - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val OverlayInverseSoft: Color = Color(0x8F080808) - - /** - * light overlay inverse overlayBlur - */ - public val OverlayInverseBlur: Color = Color(0x47080808) - - /** - * light outline default outlineSecondaryHover - */ - public val OutlineDefaultSecondaryHover: Color = Color(0xFFA3A3A3) - - /** - * light outline default outlineSecondaryActive - */ - public val OutlineDefaultSecondaryActive: Color = Color(0xFF8A8A8A) - - /** - * light outline default outlineTertiaryHover - */ - public val OutlineDefaultTertiaryHover: Color = Color(0xFF858585) - - /** - * light outline default outlineTertiaryActive - */ - public val OutlineDefaultTertiaryActive: Color = Color(0xFF666666) - - /** - * light outline default outlineDefaultHover - */ - public val OutlineDefaultDefaultHover: Color = Color(0xFF262626) - - /** - * light outline default outlineDefaultActive - */ - public val OutlineDefaultDefaultActive: Color = Color(0xFF030303) - - /** - * light outline default outlineTransparentPrimaryHover - */ - public val OutlineDefaultTransparentPrimaryHover: Color = Color(0x1F080808) - - /** - * light outline default outlineTransparentPrimaryActive - */ - public val OutlineDefaultTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * light outline default outlineTransparentSecondaryHover - */ - public val OutlineDefaultTransparentSecondaryHover: Color = Color(0x52080808) - - /** - * light outline default outlineTransparentSecondaryActive - */ - public val OutlineDefaultTransparentSecondaryActive: Color = Color(0x70080808) - - /** - * light outline default outlineTransparentTertiaryHover - */ - public val OutlineDefaultTransparentTertiaryHover: Color = Color(0x7A080808) - - /** - * light outline default outlineTransparentTertiaryActive - */ - public val OutlineDefaultTransparentTertiaryActive: Color = Color(0x99080808) - - /** - * light outline default outlineTransparentClearHover - */ - public val OutlineDefaultTransparentClearHover: Color = Color(0x00FFFFFF) - - /** - * light outline default outlineTransparentClearActive - */ - public val OutlineDefaultTransparentClearActive: Color = Color(0x00FFFFFF) - - /** - * light outline default outlineAccentHover - */ - public val OutlineDefaultAccentHover: Color = Color(0xFF528DFA) - - /** - * light outline default outlineAccentActive - */ - public val OutlineDefaultAccentActive: Color = Color(0xFF1665F8) - - /** - * light outline default outlineAccentMinorHover - */ - public val OutlineDefaultAccentMinorHover: Color = Color(0xFFA1C1FD) - - /** - * light outline default outlineAccentMinorActive - */ - public val OutlineDefaultAccentMinorActive: Color = Color(0xFF79A7FC) - - /** - * light outline default outlineTransparentAccentHover - */ - public val OutlineDefaultTransparentAccentHover: Color = Color(0x1F2A72F8) - - /** - * light outline default outlineTransparentAccentActive - */ - public val OutlineDefaultTransparentAccentActive: Color = Color(0x3D2A72F8) - - /** - * light outline default outlinePositiveHover - */ - public val OutlineDefaultPositiveHover: Color = Color(0xFF1EB83A) - - /** - * light outline default outlinePositiveActive - */ - public val OutlineDefaultPositiveActive: Color = Color(0xFF178C2C) - - /** - * light outline default outlineWarningHover - */ - public val OutlineDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * light outline default outlineWarningActive - */ - public val OutlineDefaultWarningActive: Color = Color(0xFFE65705) - - /** - * light outline default outlineNegativeHover - */ - public val OutlineDefaultNegativeHover: Color = Color(0xFFF54254) - - /** - * light outline default outlineNegativeActive - */ - public val OutlineDefaultNegativeActive: Color = Color(0xFFED0C23) - - /** - * light outline default outlineInfoHover - */ - public val OutlineDefaultInfoHover: Color = Color(0xFF689CFD) - - /** - * light outline default outlineInfoActive - */ - public val OutlineDefaultInfoActive: Color = Color(0xFF2B74FD) - - /** - * light outline default outlinePositiveMinorHover - */ - public val OutlineDefaultPositiveMinorHover: Color = Color(0xFF36D954) - - /** - * light outline default outlinePositiveMinorActive - */ - public val OutlineDefaultPositiveMinorActive: Color = Color(0xFF25C141) - - /** - * light outline default outlineWarningMinorHover - */ - public val OutlineDefaultWarningMinorHover: Color = Color(0xFFFDA97C) - - /** - * light outline default outlineWarningMinorActive - */ - public val OutlineDefaultWarningMinorActive: Color = Color(0xFFFC8F54) - - /** - * light outline default outlineNegativeMinorHover - */ - public val OutlineDefaultNegativeMinorHover: Color = Color(0xFFFFA3AC) - - /** - * light outline default outlineNegativeMinorActive - */ - public val OutlineDefaultNegativeMinorActive: Color = Color(0xFFFF7A88) - - /** - * light outline default outlineInfoMinorHover - */ - public val OutlineDefaultInfoMinorHover: Color = Color(0xFFA1C1FD) - - /** - * light outline default outlineInfoMinorActive - */ - public val OutlineDefaultInfoMinorActive: Color = Color(0xFF79A7FC) - - /** - * light outline default outlineTransparentPositiveHover - */ - public val OutlineDefaultTransparentPositiveHover: Color = Color(0x1F1A9E32) - - /** - * light outline default outlineTransparentPositiveActive - */ - public val OutlineDefaultTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * light outline default outlineTransparentWarningHover - */ - public val OutlineDefaultTransparentWarningHover: Color = Color(0x1FFA5F05) - - /** - * light outline default outlineTransparentWarningActive - */ - public val OutlineDefaultTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * light outline default outlineNegativeTransparentHover - */ - public val OutlineDefaultNegativeTransparentHover: Color = Color(0xFF000000) - - /** - * light outline default outlineNegativeTransparentActive - */ - public val OutlineDefaultNegativeTransparentActive: Color = Color(0xFFCCCCCC) - - /** - * light outline default outlineTransparentInfoHover - */ - public val OutlineDefaultTransparentInfoHover: Color = Color(0x1F2A72F8) - - /** - * light outline default outlineTransparentInfoActive - */ - public val OutlineDefaultTransparentInfoActive: Color = Color(0x3D2A72F8) - - /** - * light outline default outlinePrimaryHover - */ - public val OutlineDefaultPrimaryHover: Color = Color(0xFFEDEDED) - - /** - * light outline default outlinePrimaryActive - */ - public val OutlineDefaultPrimaryActive: Color = Color(0xFFD4D4D4) - - /** - * light outline default outlineTransparentPrimary - */ - public val OutlineDefaultTransparentPrimary: Color = Color(0x33080808) - - /** - * light outline default outlineTransparentSecondary - */ - public val OutlineDefaultTransparentSecondary: Color = Color(0x66080808) - - /** - * light outline default outlineTransparentTertiary - */ - public val OutlineDefaultTransparentTertiary: Color = Color(0x8F080808) - - /** - * light outline default outlineTransparentClear - */ - public val OutlineDefaultTransparentClear: Color = Color(0x00FFFFFF) - - /** - * light outline default outlineAccent - */ - public val OutlineDefaultAccent: Color = Color(0xFF2A72F8) - - /** - * light outline default outlineAccentMinor - */ - public val OutlineDefaultAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline default outlineTransparentAccent - */ - public val OutlineDefaultTransparentAccent: Color = Color(0x332A72F8) - - /** - * light outline default outlinePositive - */ - public val OutlineDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * light outline default outlineWarning - */ - public val OutlineDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * light outline default outlineNegative - */ - public val OutlineDefaultNegative: Color = Color(0xFFF31B31) - - /** - * light outline default outlinePositiveMinor - */ - public val OutlineDefaultPositiveMinor: Color = Color(0xFF28D247) - - /** - * light outline default outlineWarningMinor - */ - public val OutlineDefaultWarningMinor: Color = Color(0xFFFD9C68) - - /** - * light outline default outlineNegativeMinor - */ - public val OutlineDefaultNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * light outline default outlineTransparentPositive - */ - public val OutlineDefaultTransparentPositive: Color = Color(0x331A9E32) - - /** - * light outline default outlineTransparentWarning - */ - public val OutlineDefaultTransparentWarning: Color = Color(0x33FA5F05) - - /** - * light outline default outlineTransparentNegative - */ - public val OutlineDefaultTransparentNegative: Color = Color(0x33F31B31) - - /** - * light outline default outlineTransparentNegativeHover - */ - public val OutlineDefaultTransparentNegativeHover: Color = Color(0x1FF31B31) - - /** - * light outline default outlineTransparentNegativeActive - */ - public val OutlineDefaultTransparentNegativeActive: Color = Color(0x3DF31B31) - - /** - * light outline default outlineInfo - */ - public val OutlineDefaultInfo: Color = Color(0xFF3F81FD) - - /** - * light outline default outlineInfoMinor - */ - public val OutlineDefaultInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline default outlineTransparentInfo - */ - public val OutlineDefaultTransparentInfo: Color = Color(0x332A72F8) - - /** - * light outline default outlineSolidPrimaryHover - */ - public val OutlineDefaultSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline default outlineSolidPrimaryActive - */ - public val OutlineDefaultSolidPrimaryActive: Color = Color(0xFFB3B3B3) - - /** - * light outline default outlineSolidSecondaryHover - */ - public val OutlineDefaultSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline default outlineSolidSecondaryActive - */ - public val OutlineDefaultSolidSecondaryActive: Color = Color(0xFF757575) - - /** - * light outline default outlineSolidTertiaryHover - */ - public val OutlineDefaultSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline default outlineSolidTertiaryActive - */ - public val OutlineDefaultSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * light outline default outlineSolidDefaultHover - */ - public val OutlineDefaultSolidDefaultHover: Color = Color(0xFF595959) - - /** - * light outline default outlineSolidDefaultActive - */ - public val OutlineDefaultSolidDefaultActive: Color = Color(0xFF303030) - - /** - * light outline default outlineSolidPrimary - */ - public val OutlineDefaultSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * light outline default outlineSolidSecondary - */ - public val OutlineDefaultSolidSecondary: Color = Color(0xFF949494) - - /** - * light outline default outlineSolidTertiary - */ - public val OutlineDefaultSolidTertiary: Color = Color(0xFF707070) - - /** - * light outline default outlineSolidDefault - */ - public val OutlineDefaultSolidDefault: Color = Color(0xFF080808) - - /** - * light outline onDark outlineSecondaryHover - */ - public val OutlineOnDarkSecondaryHover: Color = Color(0xFF636363) - - /** - * light outline onDark outlineSecondaryActive - */ - public val OutlineOnDarkSecondaryActive: Color = Color(0xFF454545) - - /** - * light outline onDark outlineTertiaryHover - */ - public val OutlineOnDarkTertiaryHover: Color = Color(0xFF858585) - - /** - * light outline onDark outlineTertiaryActive - */ - public val OutlineOnDarkTertiaryActive: Color = Color(0xFF666666) - - /** - * light outline onDark outlineDefaultHover - */ - public val OutlineOnDarkDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onDark outlineDefaultActive - */ - public val OutlineOnDarkDefaultActive: Color = Color(0xFFF5F5F5) - - /** - * light outline onDark outlineTransparentPrimary - */ - public val OutlineOnDarkTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * light outline onDark outlineTransparentPrimaryHover - */ - public val OutlineOnDarkTransparentPrimaryHover: Color = Color(0x0AFFFFFF) - - /** - * light outline onDark outlineTransparentPrimaryActive - */ - public val OutlineOnDarkTransparentPrimaryActive: Color = Color(0x29FFFFFF) - - /** - * light outline onDark outlineTransparentSecondary - */ - public val OutlineOnDarkTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * light outline onDark outlineTransparentSecondaryHover - */ - public val OutlineOnDarkTransparentSecondaryHover: Color = Color(0x1FFFFFFF) - - /** - * light outline onDark outlineTransparentSecondaryActive - */ - public val OutlineOnDarkTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * light outline onDark outlineTransparentTertiary - */ - public val OutlineOnDarkTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * light outline onDark outlineTransparentTertiaryHover - */ - public val OutlineOnDarkTransparentTertiaryHover: Color = Color(0x52FFFFFF) - - /** - * light outline onDark outlineTransparentTertiaryActive - */ - public val OutlineOnDarkTransparentTertiaryActive: Color = Color(0x70FFFFFF) - - /** - * light outline onDark outlineAccent - */ - public val OutlineOnDarkAccent: Color = Color(0xFF3F81FD) - - /** - * light outline onDark outlineAccentHover - */ - public val OutlineOnDarkAccentHover: Color = Color(0xFF689CFD) - - /** - * light outline onDark outlineAccentActive - */ - public val OutlineOnDarkAccentActive: Color = Color(0xFF2B74FD) - - /** - * light outline onDark outlineAccentMinor - */ - public val OutlineOnDarkAccentMinor: Color = Color(0xFF1549AB) - - /** - * light outline onDark outlineAccentMinorHover - */ - public val OutlineOnDarkAccentMinorHover: Color = Color(0xFF1956C8) - - /** - * light outline onDark outlineAccentMinorActive - */ - public val OutlineOnDarkAccentMinorActive: Color = Color(0xFF13429A) - - /** - * light outline onDark outlineTransparentAccent - */ - public val OutlineOnDarkTransparentAccent: Color = Color(0x473F81FD) - - /** - * light outline onDark outlineTransparentAccentHover - */ - public val OutlineOnDarkTransparentAccentHover: Color = Color(0x333F82FD) - - /** - * light outline onDark outlineTransparentAccentActive - */ - public val OutlineOnDarkTransparentAccentActive: Color = Color(0x523F82FD) - - /** - * light outline onDark outlinePositive - */ - public val OutlineOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlinePositiveHover - */ - public val OutlineOnDarkPositiveHover: Color = Color(0xFF28C344) - - /** - * light outline onDark outlinePositiveActive - */ - public val OutlineOnDarkPositiveActive: Color = Color(0xFF21A138) - - /** - * light outline onDark outlineWarning - */ - public val OutlineOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * light outline onDark outlineWarningHover - */ - public val OutlineOnDarkWarningHover: Color = Color(0xFFFF8B4D) - - /** - * light outline onDark outlineWarningActive - */ - public val OutlineOnDarkWarningActive: Color = Color(0xFFFF630F) - - /** - * light outline onDark outlineNegative - */ - public val OutlineOnDarkNegative: Color = Color(0xFFFF3D51) - - /** - * light outline onDark outlineNegativeHover - */ - public val OutlineOnDarkNegativeHover: Color = Color(0xFFFF6675) - - /** - * light outline onDark outlineNegativeActive - */ - public val OutlineOnDarkNegativeActive: Color = Color(0xFFFF293E) - - /** - * light outline onDark outlineInfoHover - */ - public val OutlineOnDarkInfoHover: Color = Color(0xFF7AA9FF) - - /** - * light outline onDark outlineInfoActive - */ - public val OutlineOnDarkInfoActive: Color = Color(0xFF3D81FF) - - /** - * light outline onDark outlinePositiveMinor - */ - public val OutlineOnDarkPositiveMinor: Color = Color(0xFF85380C) - - /** - * light outline onDark outlinePositiveMinorHover - */ - public val OutlineOnDarkPositiveMinorHover: Color = Color(0xFF95400E) - - /** - * light outline onDark outlinePositiveMinorActive - */ - public val OutlineOnDarkPositiveMinorActive: Color = Color(0xFF70300A) - - /** - * light outline onDark outlineWarningMinor - */ - public val OutlineOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * light outline onDark outlineWarningMinorHover - */ - public val OutlineOnDarkWarningMinorHover: Color = Color(0xFF95400E) - - /** - * light outline onDark outlineWarningMinorActive - */ - public val OutlineOnDarkWarningMinorActive: Color = Color(0xFF70300A) - - /** - * light outline onDark outlineNegativeMinor - */ - public val OutlineOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * light outline onDark outlineNegativeMinorHover - */ - public val OutlineOnDarkNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * light outline onDark outlineNegativeMinorActive - */ - public val OutlineOnDarkNegativeMinorActive: Color = Color(0xFF8C121E) - - /** - * light outline onDark outlineInfoMinorHover - */ - public val OutlineOnDarkInfoMinorHover: Color = Color(0xFF1956C8) - - /** - * light outline onDark outlineInfoMinorActive - */ - public val OutlineOnDarkInfoMinorActive: Color = Color(0xFF13429A) - - /** - * light outline onDark outlineTransparentPositive - */ - public val OutlineOnDarkTransparentPositive: Color = Color(0x471A9E32) - - /** - * light outline onDark outlineTransparentPositiveHover - */ - public val OutlineOnDarkTransparentPositiveHover: Color = Color(0x331A9E32) - - /** - * light outline onDark outlineTransparentPositiveActive - */ - public val OutlineOnDarkTransparentPositiveActive: Color = Color(0x521A9E32) - - /** - * light outline onDark outlineTransparentWarning - */ - public val OutlineOnDarkTransparentWarning: Color = Color(0x47FA5F05) - - /** - * light outline onDark outlineTransparentWarningHover - */ - public val OutlineOnDarkTransparentWarningHover: Color = Color(0x33FA5F05) - - /** - * light outline onDark outlineTransparentWarningActive - */ - public val OutlineOnDarkTransparentWarningActive: Color = Color(0x52FA5F05) - - /** - * light outline onDark outlineNegativeTransparent - */ - public val OutlineOnDarkNegativeTransparent: Color = Color(0x47FF293E) - - /** - * light outline onDark outlineNegativeTransparentHover - */ - public val OutlineOnDarkNegativeTransparentHover: Color = Color(0x33FF293E) - - /** - * light outline onDark outlineNegativeTransparentActive - */ - public val OutlineOnDarkNegativeTransparentActive: Color = Color(0x52FF293E) - - /** - * light outline onDark outlineTransparentInfoHover - */ - public val OutlineOnDarkTransparentInfoHover: Color = Color(0x333F82FD) - - /** - * light outline onDark outlineTransparentInfoActive - */ - public val OutlineOnDarkTransparentInfoActive: Color = Color(0x523F82FD) - - /** - * light outline onDark outlinePrimaryHover - */ - public val OutlineOnDarkPrimaryHover: Color = Color(0xFF3B3B3B) - - /** - * light outline onDark outlinePrimaryActive - */ - public val OutlineOnDarkPrimaryActive: Color = Color(0xFF1C1C1C) - - /** - * light outline onDark outlineInfo - */ - public val OutlineOnDarkInfo: Color = Color(0xFF528EFF) - - /** - * light outline onDark outlineInfoMinor - */ - public val OutlineOnDarkInfoMinor: Color = Color(0xFF1549AB) - - /** - * light outline onDark outlineTransparentInfo - */ - public val OutlineOnDarkTransparentInfo: Color = Color(0x473F81FD) - - /** - * light outline onDark outlineSolidPrimary - */ - public val OutlineOnDarkSolidPrimary: Color = Color(0xFF262626) - - /** - * light outline onDark outlineSolidPrimaryHover - */ - public val OutlineOnDarkSolidPrimaryHover: Color = Color(0xFF787878) - - /** - * light outline onDark outlineSolidPrimaryActive - */ - public val OutlineOnDarkSolidPrimaryActive: Color = Color(0xFF4F4F4F) - - /** - * light outline onDark outlineSolidSecondary - */ - public val OutlineOnDarkSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * light outline onDark outlineSolidSecondaryHover - */ - public val OutlineOnDarkSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onDark outlineSolidSecondaryActive - */ - public val OutlineOnDarkSolidSecondaryActive: Color = Color(0xFF404040) - - /** - * light outline onDark outlineSolidTertiary - */ - public val OutlineOnDarkSolidTertiary: Color = Color(0xFF707070) - - /** - * light outline onDark outlineSolidTertiaryHover - */ - public val OutlineOnDarkSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onDark outlineSolidTertiaryActive - */ - public val OutlineOnDarkSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * light outline onDark outlineSolidDefault - */ - public val OutlineOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * light outline onDark outlineSolidDefaultHover - */ - public val OutlineOnDarkSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onDark outlineSolidDefaultActive - */ - public val OutlineOnDarkSolidDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * light outline onLight outlineSecondaryHover - */ - public val OutlineOnLightSecondaryHover: Color = Color(0xFFA3A3A3) - - /** - * light outline onLight outlineSecondaryActive - */ - public val OutlineOnLightSecondaryActive: Color = Color(0xFF8A8A8A) - - /** - * light outline onLight outlineTertiaryHover - */ - public val OutlineOnLightTertiaryHover: Color = Color(0xFF858585) - - /** - * light outline onLight outlineTertiaryActive - */ - public val OutlineOnLightTertiaryActive: Color = Color(0xFF666666) - - /** - * light outline onLight outlineDefaultHover - */ - public val OutlineOnLightDefaultHover: Color = Color(0xFF262626) - - /** - * light outline onLight outlineDefaultActive - */ - public val OutlineOnLightDefaultActive: Color = Color(0xFF030303) - - /** - * light outline onLight outlineTransparentPrimary - */ - public val OutlineOnLightTransparentPrimary: Color = Color(0x33080808) - - /** - * light outline onLight outlineTransparentPrimaryHover - */ - public val OutlineOnLightTransparentPrimaryHover: Color = Color(0x1F080808) - - /** - * light outline onLight outlineTransparentPrimaryActive - */ - public val OutlineOnLightTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * light outline onLight outlineTransparentSecondary - */ - public val OutlineOnLightTransparentSecondary: Color = Color(0x66080808) - - /** - * light outline onLight outlineTransparentSecondaryHover - */ - public val OutlineOnLightTransparentSecondaryHover: Color = Color(0x52080808) - - /** - * light outline onLight outlineTransparentSecondaryActive - */ - public val OutlineOnLightTransparentSecondaryActive: Color = Color(0x70080808) - - /** - * light outline onLight outlineTransparentTertiary - */ - public val OutlineOnLightTransparentTertiary: Color = Color(0x8F080808) - - /** - * light outline onLight outlineTransparentTertiaryHover - */ - public val OutlineOnLightTransparentTertiaryHover: Color = Color(0x7A080808) - - /** - * light outline onLight outlineTransparentTertiaryActive - */ - public val OutlineOnLightTransparentTertiaryActive: Color = Color(0x99080808) - - /** - * light outline onLight outlineAccent - */ - public val OutlineOnLightAccent: Color = Color(0xFF2A72F8) - - /** - * light outline onLight outlineAccentHover - */ - public val OutlineOnLightAccentHover: Color = Color(0xFF528DFA) - - /** - * light outline onLight outlineAccentActive - */ - public val OutlineOnLightAccentActive: Color = Color(0xFF1665F8) - - /** - * light outline onLight outlineAccentMinor - */ - public val OutlineOnLightAccentMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline onLight outlineAccentMinorHover - */ - public val OutlineOnLightAccentMinorHover: Color = Color(0xFFA1C1FD) - - /** - * light outline onLight outlineAccentMinorActive - */ - public val OutlineOnLightAccentMinorActive: Color = Color(0xFF79A7FC) - - /** - * light outline onLight outlineTransparentAccent - */ - public val OutlineOnLightTransparentAccent: Color = Color(0x332A72F8) - - /** - * light outline onLight outlineTransparentAccentHover - */ - public val OutlineOnLightTransparentAccentHover: Color = Color(0x1F2A72F8) - - /** - * light outline onLight outlineTransparentAccentActive - */ - public val OutlineOnLightTransparentAccentActive: Color = Color(0x3D2A72F8) - - /** - * light outline onLight outlinePositive - */ - public val OutlineOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * light outline onLight outlinePositiveHover - */ - public val OutlineOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * light outline onLight outlinePositiveActive - */ - public val OutlineOnLightPositiveActive: Color = Color(0xFF178C2C) - - /** - * light outline onLight outlineWarning - */ - public val OutlineOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * light outline onLight outlineWarningHover - */ - public val OutlineOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * light outline onLight outlineWarningActive - */ - public val OutlineOnLightWarningActive: Color = Color(0xFFE65705) - - /** - * light outline onLight outlineNegative - */ - public val OutlineOnLightNegative: Color = Color(0xFFF31B31) - - /** - * light outline onLight outlineNegativeHover - */ - public val OutlineOnLightNegativeHover: Color = Color(0xFFF54254) - - /** - * light outline onLight outlineNegativeActive - */ - public val OutlineOnLightNegativeActive: Color = Color(0xFFED0C23) - - /** - * light outline onLight outlineInfoHover - */ - public val OutlineOnLightInfoHover: Color = Color(0xFF689CFD) - - /** - * light outline onLight outlineInfoActive - */ - public val OutlineOnLightInfoActive: Color = Color(0xFF2B74FD) - - /** - * light outline onLight outlinePositiveMinor - */ - public val OutlineOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * light outline onLight outlinePositiveMinorHover - */ - public val OutlineOnLightPositiveMinorHover: Color = Color(0xFF36D954) - - /** - * light outline onLight outlinePositiveMinorActive - */ - public val OutlineOnLightPositiveMinorActive: Color = Color(0xFF25C141) - - /** - * light outline onLight outlineWarningMinor - */ - public val OutlineOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * light outline onLight outlineWarningMinorHover - */ - public val OutlineOnLightWarningMinorHover: Color = Color(0xFFFDA97C) - - /** - * light outline onLight outlineWarningMinorActive - */ - public val OutlineOnLightWarningMinorActive: Color = Color(0xFFFC8F54) - - /** - * light outline onLight outlineNegativeMinor - */ - public val OutlineOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * light outline onLight outlineNegativeMinorHover - */ - public val OutlineOnLightNegativeMinorHover: Color = Color(0xFFFFA3AC) - - /** - * light outline onLight outlineNegativeMinorActive - */ - public val OutlineOnLightNegativeMinorActive: Color = Color(0xFFFF7A88) - - /** - * light outline onLight outlineInfoMinorHover - */ - public val OutlineOnLightInfoMinorHover: Color = Color(0xFFA1C1FD) - - /** - * light outline onLight outlineInfoMinorActive - */ - public val OutlineOnLightInfoMinorActive: Color = Color(0xFF79A7FC) - - /** - * light outline onLight outlineTransparentPositive - */ - public val OutlineOnLightTransparentPositive: Color = Color(0x331A9E32) - - /** - * light outline onLight outlineTransparentPositiveHover - */ - public val OutlineOnLightTransparentPositiveHover: Color = Color(0x1F1A9E32) - - /** - * light outline onLight outlineTransparentPositiveActive - */ - public val OutlineOnLightTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * light outline onLight outlineTransparentWarning - */ - public val OutlineOnLightTransparentWarning: Color = Color(0x33E85702) - - /** - * light outline onLight outlineTransparentWarningHover - */ - public val OutlineOnLightTransparentWarningHover: Color = Color(0x1FE85702) - - /** - * light outline onLight outlineTransparentWarningActive - */ - public val OutlineOnLightTransparentWarningActive: Color = Color(0x3DE85702) - - /** - * light outline onLight outlineNegativeTransparent - */ - public val OutlineOnLightNegativeTransparent: Color = Color(0x33F31B31) - - /** - * light outline onLight outlineNegativeTransparentHover - */ - public val OutlineOnLightNegativeTransparentHover: Color = Color(0x1FF31B31) - - /** - * light outline onLight outlineNegativeTransparentActive - */ - public val OutlineOnLightNegativeTransparentActive: Color = Color(0x3DF31B31) - - /** - * light outline onLight outlineTransparentInfoHover - */ - public val OutlineOnLightTransparentInfoHover: Color = Color(0x1F2A72F8) - - /** - * light outline onLight outlineTransparentInfoActive - */ - public val OutlineOnLightTransparentInfoActive: Color = Color(0x3D2A72F8) - - /** - * light outline onLight outlinePrimaryHover - */ - public val OutlineOnLightPrimaryHover: Color = Color(0xFFEDEDED) - - /** - * light outline onLight outlinePrimaryActive - */ - public val OutlineOnLightPrimaryActive: Color = Color(0xFFD4D4D4) - - /** - * light outline onLight outlineInfo - */ - public val OutlineOnLightInfo: Color = Color(0xFF3F81FD) - - /** - * light outline onLight outlineInfoMinor - */ - public val OutlineOnLightInfoMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline onLight outlineTransparentInfo - */ - public val OutlineOnLightTransparentInfo: Color = Color(0x332A72F8) - - /** - * light outline onLight outlineSolidTertiaryHover - */ - public val OutlineOnLightSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onLight outlineSolidTertiaryActive - */ - public val OutlineOnLightSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * light outline onLight outlineSolidDefaultHover - */ - public val OutlineOnLightSolidDefaultHover: Color = Color(0xFF595959) - - /** - * light outline onLight outlineSolidDefaultActive - */ - public val OutlineOnLightSolidDefaultActive: Color = Color(0xFF303030) - - /** - * light outline onLight outlineSolidPrimaryHover - */ - public val OutlineOnLightSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onLight outlineSolidPrimaryActive - */ - public val OutlineOnLightSolidPrimaryActive: Color = Color(0xFFB3B3B3) - - /** - * light outline onLight outlineSolidSecondaryHover - */ - public val OutlineOnLightSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline onLight outlineSolidSecondaryActive - */ - public val OutlineOnLightSolidSecondaryActive: Color = Color(0xFF757575) - - /** - * light outline onLight outlineSolidPrimary - */ - public val OutlineOnLightSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * light outline onLight outlineSolidSecondary - */ - public val OutlineOnLightSolidSecondary: Color = Color(0xFF949494) - - /** - * light outline onLight outlineSolidTertiary - */ - public val OutlineOnLightSolidTertiary: Color = Color(0xFF707070) - - /** - * light outline onLight outlineSolidDefault - */ - public val OutlineOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * light outline inverse outlinePrimaryHover - */ - public val OutlineInversePrimaryHover: Color = Color(0xFF787878) - - /** - * light outline inverse outlinePrimaryActive - */ - public val OutlineInversePrimaryActive: Color = Color(0xFF4F4F4F) - - /** - * light outline inverse outlineSecondaryHover - */ - public val OutlineInverseSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineSecondaryActive - */ - public val OutlineInverseSecondaryActive: Color = Color(0xFF404040) - - /** - * light outline inverse outlineTertiaryHover - */ - public val OutlineInverseTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineTertiaryActive - */ - public val OutlineInverseTertiaryActive: Color = Color(0xFF595959) - - /** - * light outline inverse outlineDefaultHover - */ - public val OutlineInverseDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineDefaultActive - */ - public val OutlineInverseDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * light outline inverse outlineTransparentPrimaryHover - */ - public val OutlineInverseTransparentPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineTransparentPrimaryActive - */ - public val OutlineInverseTransparentPrimaryActive: Color = Color(0x25FFFFFF) - - /** - * light outline inverse outlineTransparentSecondaryHover - */ - public val OutlineInverseTransparentSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineTransparentSecondaryActive - */ - public val OutlineInverseTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * light outline inverse outlineTransparentTertiaryHover - */ - public val OutlineInverseTransparentTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineTransparentTertiaryActive - */ - public val OutlineInverseTransparentTertiaryActive: Color = Color(0x7AFFFFFF) - - /** - * light outline inverse outlineTransparentClearHover - */ - public val OutlineInverseTransparentClearHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineTransparentClearActive - */ - public val OutlineInverseTransparentClearActive: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineAccentHover - */ - public val OutlineInverseAccentHover: Color = Color(0xFF689CFD) - - /** - * light outline inverse outlineAccentActive - */ - public val OutlineInverseAccentActive: Color = Color(0xFF1767FD) - - /** - * light outline inverse outlineAccentMinorHover - */ - public val OutlineInverseAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineAccentMinorActive - */ - public val OutlineInverseAccentMinorActive: Color = Color(0xFF113B88) - - /** - * light outline inverse outlineTransparentAccentHover - */ - public val OutlineInverseTransparentAccentHover: Color = Color(0xFF3F82FD) - - /** - * light outline inverse outlineTransparentAccentActive - */ - public val OutlineInverseTransparentAccentActive: Color = Color(0x563F82FD) - - /** - * light outline inverse outlinePositiveHover - */ - public val OutlineInversePositiveHover: Color = Color(0xFF2BD44A) - - /** - * light outline inverse outlinePositiveActive - */ - public val OutlineInversePositiveActive: Color = Color(0xFF1D9032) - - /** - * light outline inverse outlineWarningHover - */ - public val OutlineInverseWarningHover: Color = Color(0xFFFF8B4D) - - /** - * light outline inverse outlineWarningActive - */ - public val OutlineInverseWarningActive: Color = Color(0xFFFA5700) - - /** - * light outline inverse outlineNegativeHover - */ - public val OutlineInverseNegativeHover: Color = Color(0xFFFF6675) - - /** - * light outline inverse outlineNegativeActive - */ - public val OutlineInverseNegativeActive: Color = Color(0xFFFF142C) - - /** - * light outline inverse outlineInfoHover - */ - public val OutlineInverseInfoHover: Color = Color(0xFF689CFD) - - /** - * light outline inverse outlineInfoActive - */ - public val OutlineInverseInfoActive: Color = Color(0xFF1767FD) - - /** - * light outline inverse outlinePositiveMinorHover - */ - public val OutlineInversePositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * light outline inverse outlinePositiveMinorActive - */ - public val OutlineInversePositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * light outline inverse outlineWarningMinorHover - */ - public val OutlineInverseWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * light outline inverse outlineWarningMinorActive - */ - public val OutlineInverseWarningMinorActive: Color = Color(0xFFA84710) - - /** - * light outline inverse outlineNegativeMinorHover - */ - public val OutlineInverseNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * light outline inverse outlineNegativeMinorActive - */ - public val OutlineInverseNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * light outline inverse outlineInfoMinorHover - */ - public val OutlineInverseInfoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineInfoMinorActive - */ - public val OutlineInverseInfoMinorActive: Color = Color(0xFF113B88) - - /** - * light outline inverse outlineTransparentPositiveHover - */ - public val OutlineInverseTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * light outline inverse outlineTransparentPositiveActive - */ - public val OutlineInverseTransparentPositiveActive: Color = Color(0x561A9E32) - - /** - * light outline inverse outlineTransparentWarningHover - */ - public val OutlineInverseTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * light outline inverse outlineTransparentWarningActive - */ - public val OutlineInverseTransparentWarningActive: Color = Color(0x56FA5F05) - - /** - * light outline inverse outlineTransparentNegativeHover - */ - public val OutlineInverseTransparentNegativeHover: Color = Color(0xFFFF293E) - - /** - * light outline inverse outlineTransparentNegativeActive - */ - public val OutlineInverseTransparentNegativeActive: Color = Color(0x56FF293E) - - /** - * light outline inverse outlineTransparentInfoHover - */ - public val OutlineInverseTransparentInfoHover: Color = Color(0xFF3F82FD) - - /** - * light outline inverse outlineTransparentInfoActive - */ - public val OutlineInverseTransparentInfoActive: Color = Color(0x563F82FD) - - /** - * light outline inverse outlineTransparentPrimary - */ - public val OutlineInverseTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * light outline inverse outlineTransparentSecondary - */ - public val OutlineInverseTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * light outline inverse outlineTransparentTertiary - */ - public val OutlineInverseTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * light outline inverse outlineTransparentClear - */ - public val OutlineInverseTransparentClear: Color = Color(0x00FFFFFF) - - /** - * light outline inverse outlineAccent - */ - public val OutlineInverseAccent: Color = Color(0xFF3F81FD) - - /** - * light outline inverse outlineAccentMinor - */ - public val OutlineInverseAccentMinor: Color = Color(0xFF1549AB) - - /** - * light outline inverse outlineTransparentAccent - */ - public val OutlineInverseTransparentAccent: Color = Color(0x473F81FD) - - /** - * light outline inverse outlinePositive - */ - public val OutlineInversePositive: Color = Color(0xFF24B23E) - - /** - * light outline inverse outlineWarning - */ - public val OutlineInverseWarning: Color = Color(0xFFFF7024) - - /** - * light outline inverse outlineNegative - */ - public val OutlineInverseNegative: Color = Color(0xFFFF3D51) - - /** - * light outline inverse outlineInfo - */ - public val OutlineInverseInfo: Color = Color(0xFF3F81FD) - - /** - * light outline inverse outlinePositiveMinor - */ - public val OutlineInversePositiveMinor: Color = Color(0xFF095C18) - - /** - * light outline inverse outlineWarningMinor - */ - public val OutlineInverseWarningMinor: Color = Color(0xFF85380C) - - /** - * light outline inverse outlineNegativeMinor - */ - public val OutlineInverseNegativeMinor: Color = Color(0xFF9C1422) - - /** - * light outline inverse outlineInfoMinor - */ - public val OutlineInverseInfoMinor: Color = Color(0xFF1549AB) - - /** - * light outline inverse outlineTransparentPositive - */ - public val OutlineInverseTransparentPositive: Color = Color(0x471A9E32) - - /** - * light outline inverse outlineTransparentWarning - */ - public val OutlineInverseTransparentWarning: Color = Color(0x47FA5F05) - - /** - * light outline inverse outlineTransparentNegative - */ - public val OutlineInverseTransparentNegative: Color = Color(0x47FF293E) - - /** - * light outline inverse outlineTransparentInfo - */ - public val OutlineInverseTransparentInfo: Color = Color(0x473F81FD) - - /** - * light outline inverse outlineSolidPrimaryHover - */ - public val OutlineInverseSolidPrimaryHover: Color = Color(0xFF787878) - - /** - * light outline inverse outlineSolidPrimaryActive - */ - public val OutlineInverseSolidPrimaryActive: Color = Color(0xFF4F4F4F) - - /** - * light outline inverse outlineSolidSecondaryHover - */ - public val OutlineInverseSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineSolidSecondaryActive - */ - public val OutlineInverseSolidSecondaryActive: Color = Color(0xFF404040) - - /** - * light outline inverse outlineSolidTertiaryHover - */ - public val OutlineInverseSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * light outline inverse outlineSolidTertiaryActive - */ - public val OutlineInverseSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * light outline inverse outlineSolidDefaultHover - */ - public val OutlineInverseSolidDefaultHover: Color = Color(0xFF595959) - - /** - * light outline inverse outlineSolidDefaultActive - */ - public val OutlineInverseSolidDefaultActive: Color = Color(0xFF303030) - - /** - * light outline inverse outlineSolidPrimary - */ - public val OutlineInverseSolidPrimary: Color = Color(0xFF262626) - - /** - * light outline inverse outlineSolidSecondary - */ - public val OutlineInverseSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * light outline inverse outlineSolidTertiary - */ - public val OutlineInverseSolidTertiary: Color = Color(0xFF707070) - - /** - * light outline inverse outlineSolidDefault - */ - public val OutlineInverseSolidDefault: Color = Color(0xFF080808) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorActive: Color = Color(0xFFFFCC66) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorActive: Color = Color(0xFF8F5F00) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorActive: Color = Color(0xFFFFCC66) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellow: Color = Color(0xFFF3A912) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowHover: Color = Color(0xFFF5B638) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowActive: Color = Color(0xFFE49C0C) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinor: Color = Color(0xFFA16B00) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorActive: Color = Color(0xFF8F5F00) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentActive: Color = Color(0x99F3A812) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/FontTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/FontTokens.kt deleted file mode 100644 index 4f92cfe71d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/FontTokens.kt +++ /dev/null @@ -1,236 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress("ObjectPropertyNaming") -@file:OptIn(ExperimentalTextApi::class) - -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.text.ExperimentalTextApi -import androidx.compose.ui.text.font.Font -import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.text.font.FontStyle -import androidx.compose.ui.text.font.FontVariation -import androidx.compose.ui.text.font.FontWeight -import com.sdds.plasma.giga.app.compose.R -import kotlin.OptIn -import kotlin.Suppress - -/** - * Токены шрифтов - */ -public object FontTokens { - /** - * fontFamily display - */ - public val display: FontFamily = FontFamily( - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(100), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(100), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(500), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(500), FontStyle.Normal), - ), - ) - - /** - * fontFamily header - */ - public val `header`: FontFamily = FontFamily( - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(100), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(100), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Normal), - ), - Font( - R.font.noto_sans_display_variable_font_wdth_wght, - FontWeight(500), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(500), FontStyle.Normal), - ), - ) - - /** - * fontFamily text - */ - public val text: FontFamily = FontFamily( - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Italic), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(100), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(100), FontStyle.Normal), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Normal), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(500), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(500), FontStyle.Normal), - ), - ) - - /** - * fontFamily body - */ - public val body: FontFamily = FontFamily( - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Italic), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(100), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(100), FontStyle.Normal), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(400), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(400), FontStyle.Normal), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(600), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(600), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(300), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(300), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Normal), - ), - Font( - R.font.noto_sans_italic_variable_font_wdth_wght, - FontWeight(700), - FontStyle.Italic, - variationSettings = FontVariation.Settings(FontWeight(700), FontStyle.Italic), - ), - Font( - R.font.noto_sans_variable_font_wdth_wght, - FontWeight(500), - FontStyle.Normal, - variationSettings = FontVariation.Settings(FontWeight(500), FontStyle.Normal), - ), - ) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/GradientTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/GradientTokens.kt deleted file mode 100644 index 518344e780..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/GradientTokens.kt +++ /dev/null @@ -1,2090 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.graphics.Color -import kotlin.Float -import kotlin.FloatArray -import kotlin.collections.List - -/** - * Токены градиента для темной темы - */ -public object DarkGradientTokens { - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF5E94FF), Color(0xFF43DBFA)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF5E94FF), Color(0xFF43DBFA)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.06f, 0.94f) - - /** - * Угол градиента - */ - public const val angle: Float = 94.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradient { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF5E94FF), Color(0xFF43DBFA)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхн./контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцентный фон поверхн./контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхн./контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцент. фон поверхн./контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцент. фон поверхн./контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцент. фон поверхн./контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.06f, 0.94f) - - /** - * Угол градиента - */ - public const val angle: Float = 94.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } -} - -/** - * Токены градиента для светлой темы - */ -public object LightGradientTokens { - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF5E94FF), Color(0xFF43DBFA)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF5E94FF), Color(0xFF43DBFA)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акц. фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0649f, 0.9351f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акц. фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF000000), Color(0xFFFFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 135.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/RoundShapeTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/RoundShapeTokens.kt deleted file mode 100644 index 77caf2f34f..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/RoundShapeTokens.kt +++ /dev/null @@ -1,46 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.foundation.shape.CornerSize -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.ui.unit.dp - -/** - * Токены скруглений - */ -public object RoundShapeTokens { - /** - * borderRadius xxs - */ - public val RoundXxs: RoundedCornerShape = RoundedCornerShape(CornerSize(4.0.dp)) - - /** - * borderRadius xs - */ - public val RoundXs: RoundedCornerShape = RoundedCornerShape(CornerSize(6.0.dp)) - - /** - * borderRadius s - */ - public val RoundS: RoundedCornerShape = RoundedCornerShape(CornerSize(8.0.dp)) - - /** - * borderRadius m - */ - public val RoundM: RoundedCornerShape = RoundedCornerShape(CornerSize(12.0.dp)) - - /** - * borderRadius l - */ - public val RoundL: RoundedCornerShape = RoundedCornerShape(CornerSize(16.0.dp)) - - /** - * borderRadius xl - */ - public val RoundXl: RoundedCornerShape = RoundedCornerShape(CornerSize(20.0.dp)) - - /** - * borderRadius xxl - */ - public val RoundXxl: RoundedCornerShape = RoundedCornerShape(CornerSize(32.0.dp)) -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ShadowTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ShadowTokens.kt deleted file mode 100644 index 811206171d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/ShadowTokens.kt +++ /dev/null @@ -1,571 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp - -/** - * Токены теней - */ -public object ShadowTokens { - /** - * shadow down soft s - */ - public object DownSoftSLayer1 { - /** - * shadow down soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val offsetY: Dp = 4.0.dp - - /** - * shadow down soft s - */ - public val spreadRadius: Dp = -4.0.dp - - /** - * shadow down soft s - */ - public val blurRadius: Dp = 14.0.dp - - /** - * shadow down soft s - */ - public val fallbackElevation: Dp = 2.0.dp - - /** - * shadow down soft s - */ - public val color: Color = Color(0x14080808) - } - - /** - * shadow down soft s - */ - public object DownSoftSLayer2 { - /** - * shadow down soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val offsetY: Dp = 1.0.dp - - /** - * shadow down soft s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow down soft s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow down soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val color: Color = Color(0x0A000000) - } - - /** - * shadow down soft m - */ - public object DownSoftM { - /** - * shadow down soft m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft m - */ - public val offsetY: Dp = 24.0.dp - - /** - * shadow down soft m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down soft m - */ - public val blurRadius: Dp = 48.0.dp - - /** - * shadow down soft m - */ - public val fallbackElevation: Dp = 4.0.dp - - /** - * shadow down soft m - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down soft l - */ - public object DownSoftL { - /** - * shadow down soft l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft l - */ - public val offsetY: Dp = 60.0.dp - - /** - * shadow down soft l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down soft l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow down soft l - */ - public val fallbackElevation: Dp = 6.0.dp - - /** - * shadow down soft l - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down hard s - */ - public object DownHardSLayer1 { - /** - * shadow down hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val offsetY: Dp = 4.0.dp - - /** - * shadow down hard s - */ - public val spreadRadius: Dp = -3.0.dp - - /** - * shadow down hard s - */ - public val blurRadius: Dp = 12.0.dp - - /** - * shadow down hard s - */ - public val fallbackElevation: Dp = 2.0.dp - - /** - * shadow down hard s - */ - public val color: Color = Color(0x29080808) - } - - /** - * shadow down hard s - */ - public object DownHardSLayer2 { - /** - * shadow down hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val offsetY: Dp = 1.0.dp - - /** - * shadow down hard s - */ - public val spreadRadius: Dp = -2.0.dp - - /** - * shadow down hard s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow down hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down hard m - */ - public object DownHardM { - /** - * shadow down hard m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard m - */ - public val offsetY: Dp = 16.0.dp - - /** - * shadow down hard m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down hard m - */ - public val blurRadius: Dp = 32.0.dp - - /** - * shadow down hard m - */ - public val fallbackElevation: Dp = 4.0.dp - - /** - * shadow down hard m - */ - public val color: Color = Color(0x3D000000) - } - - /** - * shadow down hard l - */ - public object DownHardL { - /** - * shadow down hard l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard l - */ - public val offsetY: Dp = 60.0.dp - - /** - * shadow down hard l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down hard l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow down hard l - */ - public val fallbackElevation: Dp = 6.0.dp - - /** - * shadow down hard l - */ - public val color: Color = Color(0x66000000) - } - - /** - * shadow up soft s - */ - public object UpSoftSLayer1 { - /** - * shadow up soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val offsetY: Dp = -4.0.dp - - /** - * shadow up soft s - */ - public val spreadRadius: Dp = -4.0.dp - - /** - * shadow up soft s - */ - public val blurRadius: Dp = 14.0.dp - - /** - * shadow up soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val color: Color = Color(0x14080808) - } - - /** - * shadow up soft s - */ - public object UpSoftSLayer2 { - /** - * shadow up soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val offsetY: Dp = -1.0.dp - - /** - * shadow up soft s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow up soft s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow up soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val color: Color = Color(0x08000000) - } - - /** - * shadow up soft m - */ - public object UpSoftM { - /** - * shadow up soft m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft m - */ - public val offsetY: Dp = -24.0.dp - - /** - * shadow up soft m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up soft m - */ - public val blurRadius: Dp = 48.0.dp - - /** - * shadow up soft m - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft m - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow up soft l - */ - public object UpSoftL { - /** - * shadow up soft l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft l - */ - public val offsetY: Dp = -60.0.dp - - /** - * shadow up soft l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up soft l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow up soft l - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft l - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow up hard s - */ - public object UpHardSLayer1 { - /** - * shadow up hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val offsetY: Dp = -4.0.dp - - /** - * shadow up hard s - */ - public val spreadRadius: Dp = -3.0.dp - - /** - * shadow up hard s - */ - public val blurRadius: Dp = 12.0.dp - - /** - * shadow up hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val color: Color = Color(0x33080808) - } - - /** - * shadow up hard s - */ - public object UpHardSLayer2 { - /** - * shadow up hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val offsetY: Dp = -1.0.dp - - /** - * shadow up hard s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow up hard s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow up hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val color: Color = Color(0x08000000) - } - - /** - * shadow up hard m - */ - public object UpHardM { - /** - * shadow up hard m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard m - */ - public val offsetY: Dp = -16.0.dp - - /** - * shadow up hard m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up hard m - */ - public val blurRadius: Dp = 32.0.dp - - /** - * shadow up hard m - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard m - */ - public val color: Color = Color(0x3D000000) - } - - /** - * shadow up hard l - */ - public object UpHardL { - /** - * shadow up hard l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard l - */ - public val offsetY: Dp = -60.0.dp - - /** - * shadow up hard l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up hard l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow up hard l - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard l - */ - public val color: Color = Color(0x66000000) - } -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/SpacingTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/SpacingTokens.kt deleted file mode 100644 index 5229ffc7ec..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/SpacingTokens.kt +++ /dev/null @@ -1,85 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp - -/** - * Токены отступов - */ -public object SpacingTokens { - /** - * spacing 0x - */ - public val spacing0x: Dp = 0.0.dp - - /** - * spacing 1x - */ - public val spacing1x: Dp = 2.0.dp - - /** - * spacing 2x - */ - public val spacing2x: Dp = 4.0.dp - - /** - * spacing 3x - */ - public val spacing3x: Dp = 6.0.dp - - /** - * spacing 4x - */ - public val spacing4x: Dp = 8.0.dp - - /** - * spacing 6x - */ - public val spacing6x: Dp = 12.0.dp - - /** - * spacing 8x - */ - public val spacing8x: Dp = 16.0.dp - - /** - * spacing 10x - */ - public val spacing10x: Dp = 20.0.dp - - /** - * spacing 12x - */ - public val spacing12x: Dp = 24.0.dp - - /** - * spacing 16x - */ - public val spacing16x: Dp = 32.0.dp - - /** - * spacing 20x - */ - public val spacing20x: Dp = 40.0.dp - - /** - * spacing 24x - */ - public val spacing24x: Dp = 48.0.dp - - /** - * spacing 32x - */ - public val spacing32x: Dp = 64.0.dp - - /** - * spacing 40x - */ - public val spacing40x: Dp = 80.0.dp - - /** - * spacing 60x - */ - public val spacing60x: Dp = 120.0.dp -} diff --git a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/TypographyTokens.kt b/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/TypographyTokens.kt deleted file mode 100644 index 5fbfa0726d..0000000000 --- a/tokens/plasma.giga.app.compose/src/main/kotlin/com/sdds/plasma/giga/app/tokens/TypographyTokens.kt +++ /dev/null @@ -1,2024 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress("DEPRECATION") - -package com.sdds.plasma.giga.app.tokens - -import androidx.compose.ui.text.PlatformTextStyle -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.text.style.LineHeightStyle -import androidx.compose.ui.unit.sp -import kotlin.Suppress - -/** - * Токены типографии для ScreenClass.SMALL - */ -public object TypographySmallTokens { - /** - * typography s display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -/** - * Токены типографии для ScreenClass.MEDIUM - */ -public object TypographyMediumTokens { - /** - * typography m display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -/** - * Токены типографии для ScreenClass.LARGE - */ -public object TypographyLargeTokens { - /** - * typography l display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -private object TextStyleDefault { - public val lineHeightStyle: LineHeightStyle = LineHeightStyle( - alignment = LineHeightStyle.Alignment.Center, - trim = LineHeightStyle.Trim.None, - ) - - public val platformStyle: PlatformTextStyle = PlatformTextStyle(includeFontPadding = false) -} diff --git a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_display_variable_font_wdth_wght.ttf b/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_display_variable_font_wdth_wght.ttf deleted file mode 100644 index 04f51c41ee..0000000000 Binary files a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_display_variable_font_wdth_wght.ttf and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_italic_variable_font_wdth_wght.ttf b/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_italic_variable_font_wdth_wght.ttf deleted file mode 100644 index 4e962ee86f..0000000000 Binary files a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_italic_variable_font_wdth_wght.ttf and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_variable_font_wdth_wght.ttf b/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_variable_font_wdth_wght.ttf deleted file mode 100644 index f7d0d78ed3..0000000000 Binary files a/tokens/plasma.giga.app.compose/src/main/theme-builder-res/font/noto_sans_variable_font_wdth_wght.ttf and /dev/null differ diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAccordionScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAccordionScreenshotTest.kt deleted file mode 100644 index 60d708d37f..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAccordionScreenshotTest.kt +++ /dev/null @@ -1,181 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onAllNodesWithTag -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionEndSizeH4 -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionEndSizeSDivider -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeH2AmountTen -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeH5 -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeXs -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeH2 -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeL -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLAmountTen -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLLongText -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLNoTextNoContent -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionStartAmountTenSizeM -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionStartSizeH3 -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.accordion.AccordionClearActionEnd -import com.sdds.plasma.giga.app.styles.accordion.AccordionClearActionStart -import com.sdds.plasma.giga.app.styles.accordion.AccordionSolidActionEnd -import com.sdds.plasma.giga.app.styles.accordion.AccordionSolidActionStart -import com.sdds.plasma.giga.app.styles.accordion.H2 -import com.sdds.plasma.giga.app.styles.accordion.H3 -import com.sdds.plasma.giga.app.styles.accordion.H4 -import com.sdds.plasma.giga.app.styles.accordion.H5 -import com.sdds.plasma.giga.app.styles.accordion.L -import com.sdds.plasma.giga.app.styles.accordion.M -import com.sdds.plasma.giga.app.styles.accordion.S -import com.sdds.plasma.giga.app.styles.accordion.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeAccordionScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testAccordionSolidActionEndSizeL() { - composeTestRule.content { - AccordionSolidActionEndSizeL(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionStartAmountTenSizeM() { - composeTestRule.content { - AccordionSolidActionStartAmountTenSizeM(AccordionSolidActionStart.M.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionEndSizeSDivider() { - composeTestRule.content { - AccordionClearActionEndSizeSDivider(AccordionClearActionEnd.S.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionStartSizeXs() { - composeTestRule.content { - AccordionClearActionStartSizeXs(AccordionClearActionStart.Xs.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLNoTextNoContent() { - composeTestRule.content { - AccordionSolidActionEndSizeLNoTextNoContent(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLOpenAll() { - composeTestRule.content { - AccordionSolidActionEndSizeLAmountTen(AccordionSolidActionEnd.L.style()) - } - for (i in 0..8) { - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[i] - .performClick() - composeTestRule.waitForIdle() - } - } - - @Test - fun testAccordionClearActionStartSizeH2AmountTen() { - composeTestRule.content { - AccordionClearActionStartSizeH2AmountTen(AccordionClearActionStart.H2.style()) - } - for (i in 0..9) { - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[i] - .performClick() - composeTestRule.waitForIdle() - } - } - - @Test - fun testAccordionSolidActionEndSizeH2() { - composeTestRule.content { - AccordionSolidActionEndSizeH2(AccordionSolidActionEnd.H2.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionStartSizeH3() { - composeTestRule.content { - AccordionSolidActionStartSizeH3(AccordionSolidActionStart.H3.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionEndSizeH4() { - composeTestRule.content { - AccordionClearActionEndSizeH4(AccordionClearActionEnd.H4.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionStartSizeH5() { - composeTestRule.content { - AccordionClearActionStartSizeH5(AccordionClearActionStart.H5.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLLongText() { - composeTestRule.content { - AccordionSolidActionEndSizeLLongText(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAvatarScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAvatarScreenshotTest.kt deleted file mode 100644 index f3bb551111..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeAvatarScreenshotTest.kt +++ /dev/null @@ -1,114 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.AvatarGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeLBadgeTopEndContentStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeLCounterTopEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeM -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeMBadgeBottomStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeMCounterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeSCounterBottomStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxl -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlBadgeBottomEndContentEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlBadgeTopStartContentStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlCounterTopStart -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.avatar.Avatar -import com.sdds.plasma.giga.app.styles.avatar.L -import com.sdds.plasma.giga.app.styles.avatar.M -import com.sdds.plasma.giga.app.styles.avatar.S -import com.sdds.plasma.giga.app.styles.avatar.Xxl -import com.sdds.plasma.giga.app.styles.avatargroup.AvatarGroup -import com.sdds.plasma.giga.app.styles.avatargroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeAvatarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testAvatarSizeXxl() { - composeTestRule.content { - AvatarSizeXxl(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeM() { - composeTestRule.content { - AvatarSizeM(style = Avatar.M.style()) - } - } - - @Test - fun testAvatarGroupSizeS() { - composeTestRule.content { - AvatarGroupSizeS(style = AvatarGroup.S.style()) - } - } - - @Test - fun testAvatarSizeXxlCounterTopStart() { - composeTestRule.content { - AvatarSizeXxlCounterTopStart(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeLCounterTopEnd() { - composeTestRule.content { - AvatarSizeLCounterTopEnd(style = Avatar.L.style()) - } - } - - @Test - fun testAvatarSizeMCounterBottomEnd() { - composeTestRule.content { - AvatarSizeMCounterBottomEnd(style = Avatar.M.style()) - } - } - - @Test - fun testAvatarSizeSCounterBottomStart() { - composeTestRule.content { - AvatarSizeSCounterBottomStart(style = Avatar.S.style()) - } - } - - @Test - fun testAvatarSizeXxlBadgeTopStartContentStart() { - composeTestRule.content { - AvatarSizeXxlBadgeTopStartContentStart(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeXxlBadgeBottomEndContentEnd() { - composeTestRule.content { - AvatarSizeXxlBadgeBottomEndContentEnd(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeLBadgeTopEndContentStart() { - composeTestRule.content { - AvatarSizeLBadgeTopEndContentStart(style = Avatar.L.style()) - } - } - - @Test - fun testAvatarSizeMBadgeBottomStart() { - composeTestRule.content { - AvatarSizeMBadgeBottomStart(style = Avatar.M.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBadgeScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBadgeScreenshotTest.kt deleted file mode 100644 index 991bd1eb33..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBadgeScreenshotTest.kt +++ /dev/null @@ -1,171 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.BadgeCommon -import com.sdds.compose.uikit.fixtures.testcases.BadgeSizeLDefaultContentLeft -import com.sdds.compose.uikit.fixtures.testcases.BadgeSizeMAccentContentRight -import com.sdds.compose.uikit.fixtures.testcases.IconBadgeCommon -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.badge.Accent -import com.sdds.plasma.giga.app.styles.badge.BadgeClear -import com.sdds.plasma.giga.app.styles.badge.BadgeSolid -import com.sdds.plasma.giga.app.styles.badge.BadgeTransparent -import com.sdds.plasma.giga.app.styles.badge.Dark -import com.sdds.plasma.giga.app.styles.badge.Default -import com.sdds.plasma.giga.app.styles.badge.L -import com.sdds.plasma.giga.app.styles.badge.Light -import com.sdds.plasma.giga.app.styles.badge.M -import com.sdds.plasma.giga.app.styles.badge.Negative -import com.sdds.plasma.giga.app.styles.badge.Pilled -import com.sdds.plasma.giga.app.styles.badge.Positive -import com.sdds.plasma.giga.app.styles.badge.S -import com.sdds.plasma.giga.app.styles.badge.Warning -import com.sdds.plasma.giga.app.styles.badge.Xs -import com.sdds.plasma.giga.app.styles.iconbadge.Accent -import com.sdds.plasma.giga.app.styles.iconbadge.Dark -import com.sdds.plasma.giga.app.styles.iconbadge.Default -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeClear -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeSolid -import com.sdds.plasma.giga.app.styles.iconbadge.IconBadgeTransparent -import com.sdds.plasma.giga.app.styles.iconbadge.L -import com.sdds.plasma.giga.app.styles.iconbadge.M -import com.sdds.plasma.giga.app.styles.iconbadge.Negative -import com.sdds.plasma.giga.app.styles.iconbadge.Pilled -import com.sdds.plasma.giga.app.styles.iconbadge.Positive -import com.sdds.plasma.giga.app.styles.iconbadge.S -import com.sdds.plasma.giga.app.styles.iconbadge.Warning -import com.sdds.plasma.giga.app.styles.iconbadge.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeBadgeScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testBadgeSizeLDefaultContentLeft() { - composeTestRule.content { - BadgeSizeLDefaultContentLeft(style = BadgeSolid.L.Default.style()) - } - } - - @Test - fun testBadgeSizeMAccentContentRight() { - composeTestRule.content { - BadgeSizeMAccentContentRight(style = BadgeSolid.M.Accent.style()) - } - } - - @Test - fun testBadgeSizeSPositivePilled() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.S.Pilled.Positive.style()) - } - } - - @Test - fun testBadgeSizeXsWarning() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.Xs.Warning.style()) - } - } - - @Test - fun testBadgeSizeLNegative() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.L.Negative.style()) - } - } - - @Test - fun testBadgeSizeMDark() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.M.Dark.style()) - } - } - - @Test - fun testBadgeSizeSLight() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.S.Light.style()) - } - } - - @Test - fun testBadgeSizeLDefaultClear() { - composeTestRule.content { - BadgeCommon(style = BadgeClear.L.Default.style()) - } - } - - @Test - fun testBadgeSizeLDefaultTransparent() { - composeTestRule.content { - BadgeCommon(style = BadgeTransparent.L.Default.style()) - } - } - - @Test - fun testBadgeSizeMNegativeClear() { - composeTestRule.content { - BadgeCommon(style = BadgeClear.M.Negative.style()) - } - } - - @Test - fun testBadgeSizeSWarningTransparentPilled() { - composeTestRule.content { - BadgeCommon(style = BadgeTransparent.S.Pilled.Warning.style()) - } - } - - @Test - fun testIconBadgeSizeLDefault() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.L.Default.style()) - } - } - - @Test - fun testIconBadgeSizeMAccentPilled() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.M.Pilled.Accent.style()) - } - } - - @Test - fun testIconBadgeSizeSPositiveClear() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeClear.S.Positive.style()) - } - } - - @Test - fun testIconBadgeSizeXsWarningTransparent() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeTransparent.Xs.Warning.style()) - } - } - - @Test - fun testIconBadgeSizeLNegative() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.L.Negative.style()) - } - } - - @Test - fun testIconBadgeSizeMBlack() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.M.Dark.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBottomSheetScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBottomSheetScreenshotTest.kt deleted file mode 100644 index a71e080470..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeBottomSheetScreenshotTest.kt +++ /dev/null @@ -1,118 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetFooterAuto -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderAuto -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFixedHandleOuter -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFooterFixedHandleInner -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFooterFixedHandleNone -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetNoHeaderFooterAuto -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.bottomsheet.Default -import com.sdds.plasma.giga.app.styles.bottomsheet.ModalBottomSheet -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeBottomSheetScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFooterFixedHandleInner() { - composeTestRule.content { - BottomSheetHeaderFooterFixedHandleInner( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFixedHandleOuter() { - composeTestRule.content { - BottomSheetHeaderFixedHandleOuter( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFooterFixedHandleNone() { - composeTestRule.content { - BottomSheetHeaderFooterFixedHandleNone( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetFooterAuto() { - composeTestRule.content { - BottomSheetFooterAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderAuto() { - composeTestRule.content { - BottomSheetHeaderAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetNoHeaderFooterAuto() { - composeTestRule.content { - BottomSheetNoHeaderFooterAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonGroupScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonGroupScreenshotTest.kt deleted file mode 100644 index 6fa1999469..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonGroupScreenshotTest.kt +++ /dev/null @@ -1,108 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupHorizontal -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupHorizontalMaxAmount -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupVertical -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupHorizontal -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupHorizontalMaxAmount -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupVertical -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.buttongroup.BasicButtonGroup -import com.sdds.plasma.giga.app.styles.buttongroup.Default -import com.sdds.plasma.giga.app.styles.buttongroup.Dense -import com.sdds.plasma.giga.app.styles.buttongroup.IconButtonGroup -import com.sdds.plasma.giga.app.styles.buttongroup.L -import com.sdds.plasma.giga.app.styles.buttongroup.M -import com.sdds.plasma.giga.app.styles.buttongroup.NoGap -import com.sdds.plasma.giga.app.styles.buttongroup.Pilled -import com.sdds.plasma.giga.app.styles.buttongroup.S -import com.sdds.plasma.giga.app.styles.buttongroup.Segmented -import com.sdds.plasma.giga.app.styles.buttongroup.Wide -import com.sdds.plasma.giga.app.styles.buttongroup.Xs -import com.sdds.plasma.giga.app.styles.buttongroup.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeButtonGroupScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testButtonGroupLNoGapDefault() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.L.NoGap.Default.style()) - } - } - - @Test - fun testButtonGroupMDenseDefault() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.M.Dense.Default.style()) - } - } - - @Test - fun testButtonGroupSWideSegmented() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.S.Wide.Segmented.style()) - } - } - - @Test - fun testButtonGroupXsVerticalNoGapDefault() { - composeTestRule.content { - ButtonGroupVertical(style = BasicButtonGroup.Xs.NoGap.Default.style()) - } - } - - @Test - fun testButtonGroupXxsNoGapSegmentedMaxAmount() { - composeTestRule.content { - ButtonGroupHorizontalMaxAmount(style = BasicButtonGroup.Xxs.NoGap.Segmented.style()) - } - } - - @Test - fun testIconButtonGroupLNoGapDefault() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.L.NoGap.Default.style()) - } - } - - @Test - fun testIconButtonGroupMDensePilled() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.M.Dense.Pilled.style()) - } - } - - @Test - fun testIconButtonGroupSWideSegmented() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.S.Wide.Segmented.style()) - } - } - - @Test - fun testIconButtonGroupXsNoGapDefaultVertical() { - composeTestRule.content { - IconButtonGroupVertical(style = IconButtonGroup.Xs.NoGap.Default.style()) - } - } - - @Test - fun testIconButtonGroupLNoGapSegmentedMaxAmount() { - composeTestRule.content { - IconButtonGroupHorizontalMaxAmount(style = IconButtonGroup.L.NoGap.Segmented.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonScreenshotTest.kt deleted file mode 100644 index 1daef7dc03..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeButtonScreenshotTest.kt +++ /dev/null @@ -1,344 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLDisabled -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLIsLoading -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLSecondary -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLWhite -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeMAccent -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeMSpaceBetween -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeSLongText -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeSWarning -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXSDark -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXSNegative -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXlDefault -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXxsDefault -import com.sdds.compose.uikit.fixtures.testcases.IconButtonIsLoading -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLDefault -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLDisabled -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLSecondary -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLWhite -import com.sdds.compose.uikit.fixtures.testcases.IconButtonMAccent -import com.sdds.compose.uikit.fixtures.testcases.IconButtonMClear -import com.sdds.compose.uikit.fixtures.testcases.IconButtonSPositive -import com.sdds.compose.uikit.fixtures.testcases.IconButtonSWarning -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXSNegative -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXlDefault -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXsDark -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXxsDefault -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLDisabled -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLIsLoading -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLSecondary -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeMAccent -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeSWarning -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeXSNegative -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeXlDefault -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeXxsDefault -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.Accent -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Clear -import com.sdds.plasma.giga.app.styles.basicbutton.Dark -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.basicbutton.Negative -import com.sdds.plasma.giga.app.styles.basicbutton.Positive -import com.sdds.plasma.giga.app.styles.basicbutton.S -import com.sdds.plasma.giga.app.styles.basicbutton.Secondary -import com.sdds.plasma.giga.app.styles.basicbutton.Warning -import com.sdds.plasma.giga.app.styles.basicbutton.White -import com.sdds.plasma.giga.app.styles.basicbutton.Xl -import com.sdds.plasma.giga.app.styles.basicbutton.Xs -import com.sdds.plasma.giga.app.styles.basicbutton.Xxs -import com.sdds.plasma.giga.app.styles.iconbutton.Accent -import com.sdds.plasma.giga.app.styles.iconbutton.Clear -import com.sdds.plasma.giga.app.styles.iconbutton.Dark -import com.sdds.plasma.giga.app.styles.iconbutton.Default -import com.sdds.plasma.giga.app.styles.iconbutton.IconButton -import com.sdds.plasma.giga.app.styles.iconbutton.L -import com.sdds.plasma.giga.app.styles.iconbutton.M -import com.sdds.plasma.giga.app.styles.iconbutton.Negative -import com.sdds.plasma.giga.app.styles.iconbutton.Pilled -import com.sdds.plasma.giga.app.styles.iconbutton.Positive -import com.sdds.plasma.giga.app.styles.iconbutton.S -import com.sdds.plasma.giga.app.styles.iconbutton.Secondary -import com.sdds.plasma.giga.app.styles.iconbutton.Warning -import com.sdds.plasma.giga.app.styles.iconbutton.White -import com.sdds.plasma.giga.app.styles.iconbutton.Xl -import com.sdds.plasma.giga.app.styles.iconbutton.Xs -import com.sdds.plasma.giga.app.styles.iconbutton.Xxs -import com.sdds.plasma.giga.app.styles.linkbutton.Accent -import com.sdds.plasma.giga.app.styles.linkbutton.Default -import com.sdds.plasma.giga.app.styles.linkbutton.L -import com.sdds.plasma.giga.app.styles.linkbutton.LinkButton -import com.sdds.plasma.giga.app.styles.linkbutton.M -import com.sdds.plasma.giga.app.styles.linkbutton.Negative -import com.sdds.plasma.giga.app.styles.linkbutton.S -import com.sdds.plasma.giga.app.styles.linkbutton.Secondary -import com.sdds.plasma.giga.app.styles.linkbutton.Warning -import com.sdds.plasma.giga.app.styles.linkbutton.Xl -import com.sdds.plasma.giga.app.styles.linkbutton.Xs -import com.sdds.plasma.giga.app.styles.linkbutton.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeButtonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testButtonSizeLDefault() { - composeTestRule.content { - ButtonSizeLDefault(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeMAccent() { - composeTestRule.content { - ButtonSizeMAccent(style = BasicButton.M.Accent.style()) - } - } - - @Test - fun testButtonSizeSWarning() { - composeTestRule.content { - ButtonSizeSWarning(style = BasicButton.S.Warning.style()) - } - } - - @Test - fun testButtonSizeXS() { - composeTestRule.content { - ButtonSizeXSDark(style = BasicButton.Xs.Dark.style()) - } - } - - @Test - fun testButtonSizeLIsLoading() { - composeTestRule.content { - ButtonSizeLIsLoading(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeLDisabled() { - composeTestRule.content { - ButtonSizeLDisabled(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeLSecondary() { - composeTestRule.content { - ButtonSizeLSecondary(style = BasicButton.L.Secondary.style()) - } - } - - @Test - fun testButtonSizeMSpaceBetween() { - composeTestRule.content { - ButtonSizeMSpaceBetween(style = BasicButton.M.Clear.style()) - } - } - - @Test - fun testButtonSizeSLongText() { - composeTestRule.content { - ButtonSizeSLongText(style = BasicButton.S.Positive.style()) - } - } - - @Test - fun testButtonSizeXSNegative() { - composeTestRule.content { - ButtonSizeXSNegative(style = BasicButton.Xs.Negative.style()) - } - } - - @Test - fun testButtonSizeLWhite() { - composeTestRule.content { - ButtonSizeLWhite(style = BasicButton.L.White.style()) - } - } - - @Test - fun testButtonSizeXlDefault() { - composeTestRule.content { - ButtonSizeXlDefault(style = BasicButton.Xl.Default.style()) - } - } - - @Test - fun testButtonSizeXxsDefault() { - composeTestRule.content { - ButtonSizeXxsDefault(style = BasicButton.Xxs.Default.style()) - } - } - - @Test - fun testIconButtonLDefault() { - composeTestRule.content { - IconButtonLDefault(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonMAccent() { - composeTestRule.content { - IconButtonMAccent(iconButtonStyle = IconButton.M.Accent.style()) - } - } - - @Test - fun testIconButtonSWarning() { - composeTestRule.content { - IconButtonSWarning(iconButtonStyle = IconButton.S.Warning.style()) - } - } - - @Test - fun testIconButtonXs() { - composeTestRule.content { - IconButtonXsDark(iconButtonStyle = IconButton.Xs.Dark.style()) - } - } - - @Test - fun testIconButtonLIsLoading() { - composeTestRule.content { - IconButtonIsLoading(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonLDisabled() { - composeTestRule.content { - IconButtonLDisabled(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonLSecondary() { - composeTestRule.content { - IconButtonLSecondary(iconButtonStyle = IconButton.L.Pilled.Secondary.style()) - } - } - - @Test - fun testIconButtonMClear() { - composeTestRule.content { - IconButtonMClear(iconButtonStyle = IconButton.M.Clear.style()) - } - } - - @Test - fun testIconButtonSPositive() { - composeTestRule.content { - IconButtonSPositive(iconButtonStyle = IconButton.S.Positive.style()) - } - } - - @Test - fun testIconButtonXSNegative() { - composeTestRule.content { - IconButtonXSNegative(iconButtonStyle = IconButton.Xs.Pilled.Negative.style()) - } - } - - @Test - fun testIconButtonLWhite() { - composeTestRule.content { - IconButtonLWhite(iconButtonStyle = IconButton.L.White.style()) - } - } - - @Test - fun testIconButtonXlDefault() { - composeTestRule.content { - IconButtonXlDefault(iconButtonStyle = IconButton.Xl.Default.style()) - } - } - - @Test - fun testIconButtonXxsDefault() { - composeTestRule.content { - IconButtonXxsDefault(iconButtonStyle = IconButton.Xxs.Default.style()) - } - } - - @Test - fun testLinkButtonSizeLDefault() { - composeTestRule.content { - LinkButtonSizeLDefault(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeLIsLoading() { - composeTestRule.content { - LinkButtonSizeLIsLoading(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeLSecondary() { - composeTestRule.content { - LinkButtonSizeLSecondary(linkButtonStyle = LinkButton.L.Secondary.style()) - } - } - - @Test - fun testLinkButtonSizeMAccent() { - composeTestRule.content { - LinkButtonSizeMAccent(linkButtonStyle = LinkButton.M.Accent.style()) - } - } - - @Test - fun testLinkButtonSizeLDisabled() { - composeTestRule.content { - LinkButtonSizeLDisabled(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeSWarning() { - composeTestRule.content { - LinkButtonSizeSWarning(linkButtonStyle = LinkButton.S.Warning.style()) - } - } - - @Test - fun testLinkButtonSizeXSNegative() { - composeTestRule.content { - LinkButtonSizeXSNegative(linkButtonStyle = LinkButton.Xs.Negative.style()) - } - } - - @Test - fun testLinkButtonSizeXlDefault() { - composeTestRule.content { - LinkButtonSizeXlDefault(linkButtonStyle = LinkButton.Xl.Default.style()) - } - } - - @Test - fun testLinkButtonSizeXxsDefault() { - composeTestRule.content { - LinkButtonSizeXxsDefault(linkButtonStyle = LinkButton.Xxs.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCardScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCardScreenshotTest.kt deleted file mode 100644 index b40d778fb5..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCardScreenshotTest.kt +++ /dev/null @@ -1,68 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CardHorizontal -import com.sdds.compose.uikit.fixtures.testcases.CardVertical -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.card.CardClear -import com.sdds.plasma.giga.app.styles.card.CardSolid -import com.sdds.plasma.giga.app.styles.card.L -import com.sdds.plasma.giga.app.styles.card.M -import com.sdds.plasma.giga.app.styles.card.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCardScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCardSizeLSolidHorizontal() { - composeTestRule.content { - CardHorizontal(style = CardSolid.L.style()) - } - } - - @Test - fun testCardSizeMSolidVertical() { - composeTestRule.content { - CardVertical(style = CardSolid.M.style()) - } - } - - @Test - fun testCardSizeSSolidHorizontal() { - composeTestRule.content { - CardHorizontal(style = CardSolid.S.style()) - } - } - - @Test - fun testCardSizeLClearVertical() { - composeTestRule.content { - CardVertical(style = CardClear.L.style()) - } - } - - @Test - fun testCardSizeMClearHorizontal() { - composeTestRule.content { - CardHorizontal(style = CardClear.M.style()) - } - } - - @Test - fun testCardSizeSClearVertical() { - composeTestRule.content { - CardVertical(style = CardClear.S.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCellScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCellScreenshotTest.kt deleted file mode 100644 index dc592e2700..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCellScreenshotTest.kt +++ /dev/null @@ -1,104 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CellMAvatarIcon -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLAvatarHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLHasDisclosureDisclosureText -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLSwitchCheckBox -import com.sdds.compose.uikit.fixtures.testcases.CellSizeMCheckBoxHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeMTitleAvatar -import com.sdds.compose.uikit.fixtures.testcases.CellSizeSIconHasDisclosureDisclosureText -import com.sdds.compose.uikit.fixtures.testcases.CellSizeSSubtitleHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeXsLabelAvatar -import com.sdds.compose.uikit.fixtures.testcases.CellSizeXsRadioBoxAvatar -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.cell.Cell -import com.sdds.plasma.giga.app.styles.cell.L -import com.sdds.plasma.giga.app.styles.cell.M -import com.sdds.plasma.giga.app.styles.cell.S -import com.sdds.plasma.giga.app.styles.cell.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCellScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCellLAvatarHasDisclosure() { - composeTestRule.content { - CellSizeLAvatarHasDisclosure(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellSizeMTitleAvatar() { - composeTestRule.content { - CellSizeMTitleAvatar(cellStyle = Cell.M.style()) - } - } - - @Test - fun testCellSizeSSubtitleHasDisclosure() { - composeTestRule.content { - CellSizeSSubtitleHasDisclosure(cellStyle = Cell.S.style()) - } - } - - @Test - fun testCellSizeXsLabelAvatar() { - composeTestRule.content { - CellSizeXsLabelAvatar(cellStyle = Cell.Xs.style()) - } - } - - @Test - fun testCellSizeLHasDisclosureDisclosureText() { - composeTestRule.content { - CellSizeLHasDisclosureDisclosureText(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellMAvatarIcon() { - composeTestRule.content { - CellMAvatarIcon(cellStyle = Cell.M.style()) - } - } - - @Test - fun testCellSizeSIconHasDisclosureDisclosureText() { - composeTestRule.content { - CellSizeSIconHasDisclosureDisclosureText(cellStyle = Cell.S.style()) - } - } - - @Test - fun testCellSizeXsRadioBoxAvatar() { - composeTestRule.content { - CellSizeXsRadioBoxAvatar(cellStyle = Cell.Xs.style()) - } - } - - @Test - fun testCellSizeLSwitchCheckBox() { - composeTestRule.content { - CellSizeLSwitchCheckBox(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellSizeMCheckBoxHasDisclosure() { - composeTestRule.content { - CellSizeMCheckBoxHasDisclosure(cellStyle = Cell.M.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCheckBoxScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCheckBoxScreenshotTest.kt deleted file mode 100644 index f87499071f..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCheckBoxScreenshotTest.kt +++ /dev/null @@ -1,108 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeMDisabled -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeLNegative -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeLNegativeUnchecked -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeMIndeterminate -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeMediumNoLabelAndDesc -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeSDisabled -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeSUnchecked -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.checkbox.CheckBox -import com.sdds.plasma.giga.app.styles.checkbox.Default -import com.sdds.plasma.giga.app.styles.checkbox.L -import com.sdds.plasma.giga.app.styles.checkbox.M -import com.sdds.plasma.giga.app.styles.checkbox.Negative -import com.sdds.plasma.giga.app.styles.checkbox.S -import com.sdds.plasma.giga.app.styles.checkboxgroup.CheckBoxGroup -import com.sdds.plasma.giga.app.styles.checkboxgroup.M -import com.sdds.plasma.giga.app.styles.checkboxgroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCheckBoxScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCheckBoxSizeM() { - composeTestRule.content { - CheckBoxSizeM(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxSizeSUnchecked() { - composeTestRule.content { - CheckBoxSizeSUnchecked(style = CheckBox.S.Default.style()) - } - } - - @Test - fun testCheckBoxSizeSDisabled() { - composeTestRule.content { - CheckBoxSizeSDisabled(style = CheckBox.S.Default.style()) - } - } - - @Test - fun testCheckBoxSizeMIndeterminate() { - composeTestRule.content { - CheckBoxSizeMIndeterminate(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxSizeMediumNoLabelAndDesc() { - composeTestRule.content { - CheckBoxSizeMediumNoLabelAndDesc(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxGroupSizeM() { - composeTestRule.content { - CheckBoxGroupSizeM(style = CheckBoxGroup.M.style()) - } - } - - @Test - fun testCheckBoxGroupSizeS() { - composeTestRule.content { - CheckBoxGroupSizeS(style = CheckBoxGroup.S.style()) - } - } - - @Test - fun testCheckBoxGroupSizeMDisabled() { - composeTestRule.content { - CheckBoxGroupSizeMDisabled(style = CheckBoxGroup.M.style()) - } - } - - @Test - fun testCheckBoxSizeLNegative() { - composeTestRule.content { - CheckBoxSizeLNegative(style = CheckBox.L.Negative.style()) - } - } - - @Test - fun testCheckBoxSizeLNegativeUnchecked() { - composeTestRule.content { - CheckBoxSizeLNegativeUnchecked(style = CheckBox.L.Negative.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeChipScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeChipScreenshotTest.kt deleted file mode 100644 index ea8f3e3dbe..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeChipScreenshotTest.kt +++ /dev/null @@ -1,109 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ChipDisabled -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeLDense -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeMSecondaryWideWrapped -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeSAccentDense -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeXsDefault -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeMSecondaryPilled -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeSAccent -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeXSContentLeft -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.chip.Accent -import com.sdds.plasma.giga.app.styles.chip.Chip -import com.sdds.plasma.giga.app.styles.chip.Default -import com.sdds.plasma.giga.app.styles.chip.L -import com.sdds.plasma.giga.app.styles.chip.M -import com.sdds.plasma.giga.app.styles.chip.Pilled -import com.sdds.plasma.giga.app.styles.chip.S -import com.sdds.plasma.giga.app.styles.chip.Secondary -import com.sdds.plasma.giga.app.styles.chip.Xs -import com.sdds.plasma.giga.app.styles.chipgroup.Accent -import com.sdds.plasma.giga.app.styles.chipgroup.ChipGroupDense -import com.sdds.plasma.giga.app.styles.chipgroup.ChipGroupWide -import com.sdds.plasma.giga.app.styles.chipgroup.Default -import com.sdds.plasma.giga.app.styles.chipgroup.L -import com.sdds.plasma.giga.app.styles.chipgroup.M -import com.sdds.plasma.giga.app.styles.chipgroup.S -import com.sdds.plasma.giga.app.styles.chipgroup.Secondary -import com.sdds.plasma.giga.app.styles.chipgroup.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeChipScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testChipSizeLDefault() { - composeTestRule.content { - ChipSizeLDefault(style = Chip.L.Default.style()) - } - } - - @Test - fun testChipSizeMSecondaryPilled() { - composeTestRule.content { - ChipSizeMSecondaryPilled(style = Chip.M.Pilled.Secondary.style()) - } - } - - @Test - fun testChipSizeSAccent() { - composeTestRule.content { - ChipSizeSAccent(style = Chip.S.Accent.style()) - } - } - - @Test - fun testChipSizeXSContentLeft() { - composeTestRule.content { - ChipSizeXSContentLeft(style = Chip.Xs.Default.style()) - } - } - - @Test - fun testChipDisabled() { - composeTestRule.content { - ChipDisabled(style = Chip.L.Default.style()) - } - } - - @Test - fun testChipGroupSizeLDense() { - composeTestRule.content { - ChipGroupSizeLDense(style = ChipGroupDense.L.Default.style()) - } - } - - @Test - fun testChipGroupSizeMSecondaryWideWrapped() { - composeTestRule.content { - ChipGroupSizeMSecondaryWideWrapped(style = ChipGroupWide.M.Secondary.style()) - } - } - - @Test - fun testChipGroupSizeSAccentDense() { - composeTestRule.content { - ChipGroupSizeSAccentDense(style = ChipGroupDense.S.Accent.style()) - } - } - - @Test - fun testChipGroupSizeXsDefault() { - composeTestRule.content { - ChipGroupSizeXsDefault(style = ChipGroupDense.Xs.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCircularProgressScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCircularProgressScreenshotTest.kt deleted file mode 100644 index 9d5b7fd33c..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCircularProgressScreenshotTest.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CircularProgress -import com.sdds.compose.uikit.fixtures.testcases.CircularProgressMax -import com.sdds.compose.uikit.fixtures.testcases.CircularProgressNoTrack -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.circularprogressbar.Accent -import com.sdds.plasma.giga.app.styles.circularprogressbar.CircularProgressBar -import com.sdds.plasma.giga.app.styles.circularprogressbar.Default -import com.sdds.plasma.giga.app.styles.circularprogressbar.Gradient -import com.sdds.plasma.giga.app.styles.circularprogressbar.Info -import com.sdds.plasma.giga.app.styles.circularprogressbar.L -import com.sdds.plasma.giga.app.styles.circularprogressbar.M -import com.sdds.plasma.giga.app.styles.circularprogressbar.Negative -import com.sdds.plasma.giga.app.styles.circularprogressbar.Positive -import com.sdds.plasma.giga.app.styles.circularprogressbar.S -import com.sdds.plasma.giga.app.styles.circularprogressbar.Secondary -import com.sdds.plasma.giga.app.styles.circularprogressbar.Warning -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xl -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xs -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xxl -import com.sdds.plasma.giga.app.styles.circularprogressbar.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCircularProgressScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCircularProgressXxlDefault() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.Xxl.Default.style()) - } - } - - @Test - fun testCircularProgressXlSecondary() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.Xl.Secondary.style()) - } - } - - @Test - fun testCircularProgressLAccent() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.L.Accent.style()) - } - } - - @Test - fun testCircularProgressMGradient() { - composeTestRule.content { - CircularProgressMax(style = CircularProgressBar.M.Gradient.style()) - } - } - - @Test - fun testCircularProgressSInfo() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.S.Info.style()) - } - } - - @Test - fun testCircularProgressXsPositive() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.Xs.Positive.style()) - } - } - - @Test - fun testCircularProgressXxsWarning() { - composeTestRule.content { - CircularProgress(style = CircularProgressBar.Xxs.Warning.style()) - } - } - - @Test - fun testCircularProgressXxlNegative() { - composeTestRule.content { - CircularProgressNoTrack(style = CircularProgressBar.Xxl.Negative.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeFieldScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeFieldScreenshotTest.kt deleted file mode 100644 index 6d96e55d5b..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeFieldScreenshotTest.kt +++ /dev/null @@ -1,103 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeHidden -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLengthFive -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLengthFour -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLengthFourCaptionCenter -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLengthSix -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLengthSixNoCaption -import com.sdds.compose.uikit.fixtures.testcases.CodeFieldCodeLongText -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.codefield.CodeField -import com.sdds.plasma.giga.app.styles.codefield.L -import com.sdds.plasma.giga.app.styles.codefield.M -import com.sdds.plasma.giga.app.styles.codefield.Segmented -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCodeFieldScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCodeFieldSizeLDefaultCodeLengthFour() { - composeTestRule.content { - CodeFieldCodeLengthFour(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performClick() - } - - @Test - fun testCodeFieldSizeMSegmented() { - composeTestRule.content { - CodeFieldCodeLengthFive(style = CodeField.M.Segmented.style()) - } - } - - @Test - fun testCodeFieldSizeLCodeLengthSixNoCaption() { - composeTestRule.content { - CodeFieldCodeLengthSixNoCaption(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performClick() - } - - @Test - fun testCodeFieldSizeMSegmentedCodeLengthSix() { - composeTestRule.content { - CodeFieldCodeLengthSix(style = CodeField.M.Segmented.style()) - } - composeTestRule.onNodeWithTag("CodeField").performClick() - } - - @Test - fun testCodeFieldSizeLHiddenCode() { - composeTestRule.content { - CodeFieldCodeHidden(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performTextInput("1234") - } - - @Test - fun testCodeFieldSizeLInputWrongCode() { - composeTestRule.content { - CodeFieldCodeLengthFourCaptionCenter(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performTextInput("2222") - } - - @Test - fun testCodeFieldSizeLInputLetter() { - composeTestRule.content { - CodeFieldCodeLengthFourCaptionCenter(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performTextInput("q") - } - - @Test - fun testCodeFieldLongText() { - composeTestRule.content { - CodeFieldCodeLongText(style = CodeField.L.style()) - } - } - - @Test - fun testCodeFieldSizeLInputCorrectCode() { - composeTestRule.content { - CodeFieldCodeLengthFourCaptionCenter(style = CodeField.L.style()) - } - composeTestRule.onNodeWithTag("CodeField").performTextInput("1234") - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeInputScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeInputScreenshotTest.kt deleted file mode 100644 index 0b3bb5d492..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCodeInputScreenshotTest.kt +++ /dev/null @@ -1,103 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthFive -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthFour -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSix -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSixHidden -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSixNoCaption -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.codeinput.CodeInput -import com.sdds.plasma.giga.app.styles.codeinput.L -import com.sdds.plasma.giga.app.styles.codeinput.M -import com.sdds.plasma.giga.app.styles.codeinput.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCodeInputScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCodeInputSizeLCodeLengthFourCaptionStart() { - composeTestRule.content { - CodeInputCodeLengthFour(style = CodeInput.L.style()) - } - } - - @Test - fun testCodeInputSizeMCodeLengthFiveCaptionCenter() { - composeTestRule.content { - CodeInputCodeLengthFive(style = CodeInput.M.style()) - } - } - - @Test - fun testCodeInputSizeSCodeLengthSix() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.S.style()) - } - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputSizeLNoCaption() { - composeTestRule.content { - CodeInputCodeLengthSixNoCaption(style = CodeInput.L.style()) - } - } - - @Test - fun testCodeInputSizeMHidden() { - composeTestRule.content { - CodeInputCodeLengthSixHidden(style = CodeInput.M.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("2") - } - - @Test - fun testCodeInputCorrectNumber() { - composeTestRule.content { - CodeInputCodeLengthFour(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("1234") - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputWrongCode() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("222333") - composeTestRule.mainClock.autoAdvance = false - composeTestRule.mainClock.advanceTimeBy(100) - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputWrongCodeCaption() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("222333") - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCounterScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCounterScreenshotTest.kt deleted file mode 100644 index f6cda3cf54..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeCounterScreenshotTest.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CounterCommon -import com.sdds.compose.uikit.fixtures.testcases.CounterSizeLWhite -import com.sdds.compose.uikit.fixtures.testcases.CounterSizeSPositiveLongNumber -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.counter.Accent -import com.sdds.plasma.giga.app.styles.counter.Counter -import com.sdds.plasma.giga.app.styles.counter.Default -import com.sdds.plasma.giga.app.styles.counter.L -import com.sdds.plasma.giga.app.styles.counter.M -import com.sdds.plasma.giga.app.styles.counter.Negative -import com.sdds.plasma.giga.app.styles.counter.Positive -import com.sdds.plasma.giga.app.styles.counter.S -import com.sdds.plasma.giga.app.styles.counter.Warning -import com.sdds.plasma.giga.app.styles.counter.White -import com.sdds.plasma.giga.app.styles.counter.Xs -import com.sdds.plasma.giga.app.styles.counter.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCounterScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCounterSizeLDefault() { - composeTestRule.content { - CounterCommon(style = Counter.L.Default.style()) - } - } - - @Test - fun testCounterSizeMAccent() { - composeTestRule.content { - CounterCommon(style = Counter.M.Accent.style()) - } - } - - @Test - fun testCounterSizeSPositive() { - composeTestRule.content { - CounterSizeSPositiveLongNumber(style = Counter.S.Positive.style()) - } - } - - @Test - fun testCounterSizeXsWarning() { - composeTestRule.content { - CounterCommon(style = Counter.Xs.Warning.style()) - } - } - - @Test - fun testCounterSizeLWhite() { - composeTestRule.content { - CounterSizeLWhite(style = Counter.L.White.style()) - } - } - - @Test - fun testCounterSizeXxsNegative() { - composeTestRule.content { - CounterCommon(style = Counter.Xxs.Negative.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDividerScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDividerScreenshotTest.kt deleted file mode 100644 index 8ee64d9e32..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDividerScreenshotTest.kt +++ /dev/null @@ -1,29 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.DividerDefault -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.divider.Default -import com.sdds.plasma.giga.app.styles.divider.Divider -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeDividerScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testDividerDefault() { - composeTestRule.content { - DividerDefault(style = Divider.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDrawerScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDrawerScreenshotTest.kt deleted file mode 100644 index fae23830bd..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDrawerScreenshotTest.kt +++ /dev/null @@ -1,122 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTouchInput -import androidx.compose.ui.test.swipeDown -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseIconAbsolute -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseInnerMStartHeader -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseInnerNoShadowBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseInnerPeakOffSet -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseNoneEndStartHeaderFooter -import com.sdds.compose.uikit.fixtures.testcases.DrawerCloseOuterMShadowTopEndFooterHasOverlay -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseInner -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseNone -import com.sdds.plasma.giga.app.styles.drawer.DrawerCloseOuter -import com.sdds.plasma.giga.app.styles.drawer.HasShadow -import com.sdds.plasma.giga.app.styles.drawer.M -import com.sdds.plasma.giga.app.styles.listitem.L -import com.sdds.plasma.giga.app.styles.listitem.ListItemNormal -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeDrawerScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testDrawerCloseInnerMStartHeader() { - composeTestRule.content { - DrawerCloseInnerMStartHeader( - style = DrawerCloseInner.M.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Показать Drawer").performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testDrawerCloseOuterMShadowTopEndFooterHasOverlay() { - composeTestRule.content { - DrawerCloseOuterMShadowTopEndFooterHasOverlay( - style = DrawerCloseOuter.M.HasShadow.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithTag("Drawer").performTouchInput { - swipeDown() - } - composeTestRule.waitForIdle() - } - - @Test - fun testDrawerCloseNoneEndStartHeaderFooter() { - composeTestRule.content { - DrawerCloseNoneEndStartHeaderFooter( - style = DrawerCloseNone.M.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Показать Drawer").performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testDrawerNoShadowBottomStart() { - composeTestRule.content { - DrawerCloseInnerNoShadowBottomEnd( - style = DrawerCloseInner.M.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Показать Drawer").performClick() - composeTestRule.waitForIdle() - composeTestRule.onNodeWithTag("Drawer").performTouchInput { - down(center) - advanceEventTime(500L) - up() - } - } - - @Test - fun testDrawerHasPeakOffSet() { - composeTestRule.content { - DrawerCloseInnerPeakOffSet( - style = DrawerCloseInner.M.HasShadow.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - } - - @Test - fun testDrawerCloseIconAbsolute() { - composeTestRule.content { - DrawerCloseIconAbsolute( - style = DrawerCloseInner.M.style(), - listItemStyle = ListItemNormal.L.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithTag("DrawerButton").performClick() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDropDownMenuScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDropDownMenuScreenshotTest.kt deleted file mode 100644 index 32afd461a6..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeDropDownMenuScreenshotTest.kt +++ /dev/null @@ -1,185 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuLStrictCenterStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuMStrictBottomStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuSStrictTopCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuTightXsStrictCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlAmountTenLooseBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlAmountTenStrictCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlHasDisclosureTopStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlLooseBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlLooseTopEndDivider -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXsStrictCenter -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.plasma.giga.app.styles.dropdownmenu.DropdownMenuTight -import com.sdds.plasma.giga.app.styles.dropdownmenu.L -import com.sdds.plasma.giga.app.styles.dropdownmenu.M -import com.sdds.plasma.giga.app.styles.dropdownmenu.S -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xl -import com.sdds.plasma.giga.app.styles.dropdownmenu.Xs -import org.junit.Ignore -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeDropDownMenuScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXlHasDisclosureTopStart() { - composeTestRule.content { - DropDownMenuXlHasDisclosureTopStart( - DropdownMenuNormal.Xl.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLStrictCenterStart() { - composeTestRule.content { - DropDownMenuLStrictCenterStart( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuMStrictBottomStart() { - composeTestRule.content { - DropDownMenuMStrictBottomStart( - DropdownMenuNormal.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuSStrictTopCenter() { - composeTestRule.content { - DropDownMenuSStrictTopCenter( - DropdownMenuNormal.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXsStrictCenter() { - composeTestRule.content { - DropDownMenuXsStrictCenter( - DropdownMenuNormal.Xs.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXlAmountTenLooseBottomCenter() { - composeTestRule.content { - DropDownMenuXlAmountTenLooseBottomCenter( - DropdownMenuNormal.Xl.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXlLooseTopEndDivider() { - composeTestRule.content { - DropDownMenuXlLooseTopEndDivider( - DropdownMenuNormal.Xl.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXlAmountTenStrictCenterEnd() { - composeTestRule.content { - DropDownMenuXlAmountTenStrictCenterEnd( - DropdownMenuNormal.Xl.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Ignore("Такая же проблема как и в Popover") - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXlLooseBottomEnd() { - composeTestRule.content { - DropDownMenuXlLooseBottomEnd( - DropdownMenuNormal.Xl.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuTightXsStrictCenter() { - composeTestRule.content { - DropDownMenuTightXsStrictCenter( - DropdownMenuTight.Xs.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeFileScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeFileScreenshotTest.kt deleted file mode 100644 index 4cc98527d4..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeFileScreenshotTest.kt +++ /dev/null @@ -1,75 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.FileCircularProgressHasImageEnd -import com.sdds.compose.uikit.fixtures.testcases.FileCircularProgressIsLoadingEndLongText -import com.sdds.compose.uikit.fixtures.testcases.FileCircularProgressIsLoadingHasImageNoDesc -import com.sdds.compose.uikit.fixtures.testcases.FileCircularProgressIsLoadingStart -import com.sdds.compose.uikit.fixtures.testcases.FileLinearProgressIsLoadingHasImageEnd -import com.sdds.compose.uikit.fixtures.testcases.FileLinearProgressIsLoadingStart -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.file.Default -import com.sdds.plasma.giga.app.styles.file.FileCircularProgress -import com.sdds.plasma.giga.app.styles.file.FileLinearProgress -import com.sdds.plasma.giga.app.styles.file.L -import com.sdds.plasma.giga.app.styles.file.M -import com.sdds.plasma.giga.app.styles.file.Negative -import com.sdds.plasma.giga.app.styles.file.S -import com.sdds.plasma.giga.app.styles.file.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeFileScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testFileCircularProgressLDefaultIsLoadingStart() { - composeTestRule.content { - FileCircularProgressIsLoadingStart(FileCircularProgress.L.Default.style()) - } - } - - @Test - fun testFileLinearProgressMNegativeIsLoadingHasImageEnd() { - composeTestRule.content { - FileLinearProgressIsLoadingHasImageEnd(FileLinearProgress.M.Negative.style()) - } - } - - @Test - fun testFileCircularProgressSDefaultHasImageEnd() { - composeTestRule.content { - FileCircularProgressHasImageEnd(FileCircularProgress.S.Default.style()) - } - } - - @Test - fun testFileLinearProgressXsNegativeIsLoadingStart() { - composeTestRule.content { - FileLinearProgressIsLoadingStart(FileLinearProgress.Xs.Negative.style()) - } - } - - @Test - fun testFileCircularProgressLNegativeIsLoadingEndLongText() { - composeTestRule.content { - FileCircularProgressIsLoadingEndLongText(FileCircularProgress.L.Negative.style()) - } - } - - @Test - fun testFileCircularProgressLDefaultIsLoadingHasImageNoDesc() { - composeTestRule.content { - FileCircularProgressIsLoadingHasImageNoDesc(FileCircularProgress.L.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeImageScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeImageScreenshotTest.kt deleted file mode 100644 index 312eba770d..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeImageScreenshotTest.kt +++ /dev/null @@ -1,77 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ImageTestCase -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.image.Image -import com.sdds.plasma.giga.app.styles.image.Ratio16x9 -import com.sdds.plasma.giga.app.styles.image.Ratio1x1 -import com.sdds.plasma.giga.app.styles.image.Ratio1x2 -import com.sdds.plasma.giga.app.styles.image.Ratio2x1 -import com.sdds.plasma.giga.app.styles.image.Ratio3x4 -import com.sdds.plasma.giga.app.styles.image.Ratio4x3 -import com.sdds.plasma.giga.app.styles.image.Ratio9x16 -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeImageScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testImageRatio1x1() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio1x1.style()) - } - } - - @Test - fun testImageRatio3x4() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio3x4.style()) - } - } - - @Test - fun testImageRatio4x3() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio4x3.style()) - } - } - - @Test - fun testImageRatio9x16() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio9x16.style()) - } - } - - @Test - fun testImageRatio16x9() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio16x9.style()) - } - } - - @Test - fun testImageRatio1x2() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio1x2.style()) - } - } - - @Test - fun testImageRatio2x1() { - composeTestRule.content { - ImageTestCase(style = Image.Ratio2x1.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeIndicatorScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeIndicatorScreenshotTest.kt deleted file mode 100644 index 731bdd0cdc..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeIndicatorScreenshotTest.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.IndicatorCommon -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.indicator.Accent -import com.sdds.plasma.giga.app.styles.indicator.Default -import com.sdds.plasma.giga.app.styles.indicator.Inactive -import com.sdds.plasma.giga.app.styles.indicator.Indicator -import com.sdds.plasma.giga.app.styles.indicator.L -import com.sdds.plasma.giga.app.styles.indicator.M -import com.sdds.plasma.giga.app.styles.indicator.Negative -import com.sdds.plasma.giga.app.styles.indicator.Positive -import com.sdds.plasma.giga.app.styles.indicator.S -import com.sdds.plasma.giga.app.styles.indicator.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeIndicatorScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testIndicatorSizeLDefault() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Default.style()) - } - } - - @Test - fun testIndicatorSizeMAccent() { - composeTestRule.content { - IndicatorCommon(style = Indicator.M.Accent.style()) - } - } - - @Test - fun testIndicatorSizeSInactive() { - composeTestRule.content { - IndicatorCommon(style = Indicator.S.Inactive.style()) - } - } - - @Test - fun testIndicatorSizeLPositive() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Positive.style()) - } - } - - @Test - fun testIndicatorSizeLWarning() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Warning.style()) - } - } - - @Test - fun testIndicatorSizeLNegative() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Negative.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeListScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeListScreenshotTest.kt deleted file mode 100644 index c7db80e736..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeListScreenshotTest.kt +++ /dev/null @@ -1,71 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ListAmountThreeHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.ListAmountThreeNoDisclosure -import com.sdds.compose.uikit.fixtures.testcases.ListAmountTwenty -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.list.L -import com.sdds.plasma.giga.app.styles.list.ListNormal -import com.sdds.plasma.giga.app.styles.list.ListTight -import com.sdds.plasma.giga.app.styles.list.M -import com.sdds.plasma.giga.app.styles.list.S -import com.sdds.plasma.giga.app.styles.list.Xl -import com.sdds.plasma.giga.app.styles.list.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeListScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testListNormalXlAmountThreeHasDisclosure() { - composeTestRule.content { - ListAmountThreeHasDisclosure(ListNormal.Xl.style()) - } - } - - @Test - fun testListNormalLAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.L.style()) - } - } - - @Test - fun testListNormalMAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.M.style()) - } - } - - @Test - fun testListNormalSAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.S.style()) - } - } - - @Test - fun testListNormalXsAmountTwenty() { - composeTestRule.content { - ListAmountTwenty(ListNormal.Xs.style()) - } - } - - @Test - fun testListTightXsAmountThreeHasDisclosure() { - composeTestRule.content { - ListAmountThreeHasDisclosure(ListTight.Xs.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeLoaderScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeLoaderScreenshotTest.kt deleted file mode 100644 index c652ce4c5e..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeLoaderScreenshotTest.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.LoaderForSandbox -import com.sdds.compose.uikit.fixtures.testcases.LoaderProgress -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.loader.Default -import com.sdds.plasma.giga.app.styles.loader.Loader -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeLoaderScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testLoaderSpinner() { - composeTestRule.content { - LoaderForSandbox(Loader.Default.style()) - } - } - - @Test - fun testLoaderProgress() { - composeTestRule.content { - LoaderProgress(Loader.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeModalScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeModalScreenshotTest.kt deleted file mode 100644 index f97a6a857f..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeModalScreenshotTest.kt +++ /dev/null @@ -1,58 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ModalNativeBlackoutHasClose -import com.sdds.compose.uikit.fixtures.testcases.ModalWithoutNativeBlackout -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.modal.Default -import com.sdds.plasma.giga.app.styles.modal.Modal -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeModalScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalNativeBlackoutHasClose() { - composeTestRule.content { - ModalNativeBlackoutHasClose( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalWithoutNativeBlackout() { - composeTestRule.content { - ModalWithoutNativeBlackout( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNavigationBarScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNavigationBarScreenshotTest.kt deleted file mode 100644 index 3ada5143f6..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNavigationBarScreenshotTest.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarContentBottomStart -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarInlineRelative -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarLongTextBottomStartInline -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarLongTextContentInlineCenterBottom -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarTextContentBottomCenterBottom -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarTextContentInlineCenter -import com.sdds.compose.uikit.fixtures.testcases.NavigationBarTextHasActionEndInlineEndBottom -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.navigationbar.HasBackground -import com.sdds.plasma.giga.app.styles.navigationbar.NavigationBarInternalPage -import com.sdds.plasma.giga.app.styles.navigationbar.NavigationBarMainPage -import com.sdds.plasma.giga.app.styles.navigationbar.NoBackground -import com.sdds.plasma.giga.app.styles.navigationbar.Rounded -import com.sdds.plasma.giga.app.styles.navigationbar.Shadow -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeNavigationBarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testNavBarMainPageNoBackGround() { - composeTestRule.content { - NavigationBarTextContentInlineCenter(NavigationBarMainPage.NoBackground.style()) - } - } - - @Test - fun testNavBarNoBackgroundRounded() { - composeTestRule.content { - NavigationBarContentBottomStart(NavigationBarInternalPage.NoBackground.Rounded.style()) - } - } - - @Test - fun testNavBarHasBackground() { - composeTestRule.content { - NavigationBarLongTextContentInlineCenterBottom(NavigationBarInternalPage.HasBackground.style()) - } - } - - @Test - fun testNavBarHasBackgroundRounded() { - composeTestRule.content { - NavigationBarTextHasActionEndInlineEndBottom(NavigationBarInternalPage.HasBackground.Rounded.style()) - } - } - - @Test - fun testNavBarHasBackgroundShadow() { - composeTestRule.content { - NavigationBarLongTextBottomStartInline(NavigationBarInternalPage.HasBackground.Shadow.style()) - } - } - - @Test - fun testNavBarHasBackgroundShadowRounded() { - composeTestRule.content { - NavigationBarTextContentBottomCenterBottom(NavigationBarInternalPage.HasBackground.Shadow.Rounded.style()) - } - } - - @Test - fun testNavigationBarInlineRelative() { - composeTestRule.content { - NavigationBarInlineRelative(NavigationBarMainPage.NoBackground.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationContentScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationContentScreenshotTest.kt deleted file mode 100644 index bd78447b9c..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationContentScreenshotTest.kt +++ /dev/null @@ -1,90 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentHasAction -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentLongText -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoText -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoTitle -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoTitleNoText -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.notificationcontent.ButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.Default -import com.sdds.plasma.giga.app.styles.notificationcontent.IconStart -import com.sdds.plasma.giga.app.styles.notificationcontent.IconTop -import com.sdds.plasma.giga.app.styles.notificationcontent.Info -import com.sdds.plasma.giga.app.styles.notificationcontent.Negative -import com.sdds.plasma.giga.app.styles.notificationcontent.NoButtonStretch -import com.sdds.plasma.giga.app.styles.notificationcontent.NotificationContent -import com.sdds.plasma.giga.app.styles.notificationcontent.Positive -import com.sdds.plasma.giga.app.styles.notificationcontent.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeNotificationContentScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testNotificationContentNoIconDefault() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Default.style()) - } - } - - @Test - fun testNotificationContentIconTopPositiveNoTitle() { - composeTestRule.content { - NotificationContentNoTitle(style = NotificationContent.ButtonStretch.IconTop.Positive.style()) - } - } - - @Test - fun testNotificationContentIconStartNegative() { - composeTestRule.content { - NotificationContentNoText(style = NotificationContent.ButtonStretch.IconStart.Negative.style()) - } - } - - @Test - fun testNotificationContentIconTopWarning() { - composeTestRule.content { - NotificationContentNoTitleNoText(style = NotificationContent.ButtonStretch.IconTop.Warning.style()) - } - } - - @Test - fun testNotificationContentIconStartInfo() { - composeTestRule.content { - NotificationContentLongText(style = NotificationContent.ButtonStretch.IconStart.Info.style()) - } - } - - @Test - fun testNotificationContentLooseIconStartDefault() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.NoButtonStretch.IconStart.Default.style()) - } - } - - @Test - fun testNotificationContentPositive() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Positive.style()) - } - } - - @Test - fun testNotificationContentWarning() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Warning.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationScreenshotTest.kt deleted file mode 100644 index 2b47fa2516..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeNotificationScreenshotTest.kt +++ /dev/null @@ -1,167 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactLCenterStartNoTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactLTopStartHasCloseText -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactMTopCenterHasCloseActionButton -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactSTopEndText -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLBottomCenterTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLBottomEndTextHasCloseActionButton -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLCenterTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseMCenterEndTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseSBottomStartText -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.M -import com.sdds.plasma.giga.app.styles.notification.L -import com.sdds.plasma.giga.app.styles.notification.M -import com.sdds.plasma.giga.app.styles.notification.NotificationCompact -import com.sdds.plasma.giga.app.styles.notification.NotificationLoose -import com.sdds.plasma.giga.app.styles.notification.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeNotificationScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactLTopStartHasContentStartEnd() { - composeTestRule.content { - NotificationCompactLTopStartHasCloseText( - NotificationCompact.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactMTopCenterHasCloseActionButton() { - composeTestRule.content { - NotificationCompactMTopCenterHasCloseActionButton( - NotificationCompact.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactSTopEndText() { - composeTestRule.content { - NotificationCompactSTopEndText( - NotificationCompact.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactLCenterStartNoTextHasClose() { - composeTestRule.content { - NotificationCompactLCenterStartNoTextHasClose( - NotificationCompact.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseLCenterTextHasClose() { - composeTestRule.content { - NotificationLooseLCenterTextHasClose( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseMCenterEndTextHasClose() { - composeTestRule.content { - NotificationLooseMCenterEndTextHasClose( - NotificationLoose.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseSBottomStartText() { - composeTestRule.content { - NotificationLooseSBottomStartText( - NotificationLoose.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseLBottomCenterTextHasClose() { - composeTestRule.content { - NotificationLooseLBottomCenterTextHasClose( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Config(qualifiers = "+land") - @Test - fun testNotificationLooseLBottomEndTextHasCloseActionButton() { - composeTestRule.content { - NotificationLooseLBottomEndTextHasCloseActionButton( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposePopoverScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposePopoverScreenshotTest.kt deleted file mode 100644 index 2dafc3a6a7..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposePopoverScreenshotTest.kt +++ /dev/null @@ -1,168 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.PopoverMAccentStrictTopCenterCenterStart -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseTopEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultStrictBottomEndTopStart -import com.sdds.compose.uikit.fixtures.testcases.PopoverSAccentStrictBottomStartTopCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverSDefaultLooseEndBottomStart -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.S -import com.sdds.plasma.giga.app.styles.popover.Accent -import com.sdds.plasma.giga.app.styles.popover.Default -import com.sdds.plasma.giga.app.styles.popover.M -import com.sdds.plasma.giga.app.styles.popover.Popover -import com.sdds.plasma.giga.app.styles.popover.S -import org.junit.Ignore -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposePopoverScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultStrictBottomEndTopStart() { - composeTestRule.content { - PopoverMDefaultStrictBottomEndTopStart( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMAccentStrictTopCenterCenterStart() { - composeTestRule.content { - PopoverMAccentStrictTopCenterCenterStart( - style = Popover.M.Accent.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverSDefaultLooseEndBottomStart() { - composeTestRule.content { - PopoverSDefaultLooseEndBottomStart( - style = Popover.S.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverSAccentStrictBottomStartTopCenter() { - composeTestRule.content { - PopoverSAccentStrictBottomStartTopCenter( - style = Popover.S.Accent.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenter() { - composeTestRule.content { - PopoverMDefaultLooseStartCenter( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartBottomCenter() { - composeTestRule.content { - PopoverMDefaultLooseStartBottomCenter( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Ignore - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseTopEnd() { - composeTestRule.content { - PopoverMDefaultLooseTopEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenterEnd() { - composeTestRule.content { - PopoverMDefaultLooseStartCenterEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenterBottomEnd() { - composeTestRule.content { - PopoverMDefaultLooseStartCenterBottomEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeProgressScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeProgressScreenshotTest.kt deleted file mode 100644 index 32fb3cd4af..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeProgressScreenshotTest.kt +++ /dev/null @@ -1,91 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarAccent -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarDefault -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarDefaultValueOne -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarGradientAccent -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarNegative -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarPositive -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarSecondary -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarWarning -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.progressbar.Accent -import com.sdds.plasma.giga.app.styles.progressbar.Default -import com.sdds.plasma.giga.app.styles.progressbar.Gradient -import com.sdds.plasma.giga.app.styles.progressbar.Negative -import com.sdds.plasma.giga.app.styles.progressbar.Positive -import com.sdds.plasma.giga.app.styles.progressbar.ProgressBar -import com.sdds.plasma.giga.app.styles.progressbar.Secondary -import com.sdds.plasma.giga.app.styles.progressbar.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeProgressScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testProgressBarDefault() { - composeTestRule.content { - ProgressBarDefault(style = ProgressBar.Default.style()) - } - } - - @Test - fun testProgressBarSecondary() { - composeTestRule.content { - ProgressBarSecondary(style = ProgressBar.Secondary.style()) - } - } - - @Test - fun testProgressBarWarning() { - composeTestRule.content { - ProgressBarWarning(style = ProgressBar.Warning.style()) - } - } - - @Test - fun testProgressBarPositive() { - composeTestRule.content { - ProgressBarPositive(style = ProgressBar.Positive.style()) - } - } - - @Test - fun testProgressBarNegative() { - composeTestRule.content { - ProgressBarNegative(style = ProgressBar.Negative.style()) - } - } - - @Test - fun testProgressBarAccent() { - composeTestRule.content { - ProgressBarAccent(style = ProgressBar.Accent.style()) - } - } - - @Test - fun testProgressBarGradientAccent() { - composeTestRule.content { - ProgressBarGradientAccent(style = ProgressBar.Gradient.style()) - } - } - - @Test - fun testProgressBarDefaultValueOne() { - composeTestRule.content { - ProgressBarDefaultValueOne(style = ProgressBar.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRadioBoxScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRadioBoxScreenshotTest.kt deleted file mode 100644 index 70e7b9317a..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRadioBoxScreenshotTest.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxDisabled -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeMDescription -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeSLabel -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeMNoDescription -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeS -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.radiobox.M -import com.sdds.plasma.giga.app.styles.radiobox.RadioBox -import com.sdds.plasma.giga.app.styles.radiobox.S -import com.sdds.plasma.giga.app.styles.radioboxgroup.M -import com.sdds.plasma.giga.app.styles.radioboxgroup.RadioBoxGroup -import com.sdds.plasma.giga.app.styles.radioboxgroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeRadioBoxScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testRadioBoxSizeM() { - composeTestRule.content { - RadioBoxSizeM(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxSizeS() { - composeTestRule.content { - RadioBoxSizeS(style = RadioBox.S.style()) - } - } - - @Test - fun testRadioBoxSizeMNoDescription() { - composeTestRule.content { - RadioBoxSizeMNoDescription(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxDisabled() { - composeTestRule.content { - RadioBoxDisabled(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeM() { - composeTestRule.content { - RadioBoxGroupSizeM(style = RadioBoxGroup.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeS() { - composeTestRule.content { - RadioBoxGroupSizeS(style = RadioBoxGroup.S.style()) - } - } - - @Test - fun testRadioBoxGroupSizeMDescription() { - composeTestRule.content { - RadioBoxGroupSizeMDescription(style = RadioBoxGroup.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeSLabel() { - composeTestRule.content { - RadioBoxGroupSizeSLabel(style = RadioBoxGroup.S.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRectSkeletonScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRectSkeletonScreenshotTest.kt deleted file mode 100644 index 375de25102..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeRectSkeletonScreenshotTest.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.RectSkeletonTest -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.rectskeleton.Default -import com.sdds.plasma.giga.app.styles.rectskeleton.Lighter -import com.sdds.plasma.giga.app.styles.rectskeleton.RectSkeleton -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeRectSkeletonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testRectSkeleton() { - composeTestRule.content { - RectSkeletonTest(style = RectSkeleton.Default.style()) - } - } - - @Test - fun testRectSkeletonLighter() { - composeTestRule.content { - RectSkeletonTest(style = RectSkeleton.Lighter.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeScrollBarScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeScrollBarScreenshotTest.kt deleted file mode 100644 index e73e252db7..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeScrollBarScreenshotTest.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performTouchInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ScrollBarM -import com.sdds.compose.uikit.fixtures.testcases.ScrollBarS -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.scrollbar.M -import com.sdds.plasma.giga.app.styles.scrollbar.S -import com.sdds.plasma.giga.app.styles.scrollbar.ScrollBar -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeScrollBarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testScrollBarM() { - composeTestRule.content { - ScrollBarM(style = ScrollBar.M.style()) - } - composeTestRule.onNodeWithTag("scrollBar").performTouchInput { - down(center) - advanceEventTime(500L) - up() - } - } - - @Test - fun testScrollBarS() { - composeTestRule.content { - ScrollBarS(style = ScrollBar.S.style()) - } - composeTestRule.onNodeWithTag("scrollBar").performTouchInput { - down(center) - advanceEventTime(500L) - moveBy(Offset(0f, 300f)) - up() - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSegmentScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSegmentScreenshotTest.kt deleted file mode 100644 index 5b23b39160..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSegmentScreenshotTest.kt +++ /dev/null @@ -1,139 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.SegmentDisabled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemDisabled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeLPrimary -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeMSecondaryPilled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeS -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeXs -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeL -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeLCounter -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeMPilled -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeOrientationVertical -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeS -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeSStretch -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeXs -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.segment.L -import com.sdds.plasma.giga.app.styles.segment.M -import com.sdds.plasma.giga.app.styles.segment.Pilled -import com.sdds.plasma.giga.app.styles.segment.Primary -import com.sdds.plasma.giga.app.styles.segment.S -import com.sdds.plasma.giga.app.styles.segment.Secondary -import com.sdds.plasma.giga.app.styles.segment.Segment -import com.sdds.plasma.giga.app.styles.segment.Xs -import com.sdds.plasma.giga.app.styles.segmentitem.L -import com.sdds.plasma.giga.app.styles.segmentitem.M -import com.sdds.plasma.giga.app.styles.segmentitem.Pilled -import com.sdds.plasma.giga.app.styles.segmentitem.Primary -import com.sdds.plasma.giga.app.styles.segmentitem.S -import com.sdds.plasma.giga.app.styles.segmentitem.Secondary -import com.sdds.plasma.giga.app.styles.segmentitem.SegmentItem -import com.sdds.plasma.giga.app.styles.segmentitem.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeSegmentScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testSegmentItemSizeLPrimary() { - composeTestRule.content { - SegmentItemSizeLPrimary(style = SegmentItem.L.Primary.style()) - } - } - - @Test - fun testSegmentItemSizeMSecondary() { - composeTestRule.content { - SegmentItemSizeMSecondaryPilled(style = SegmentItem.M.Pilled.Secondary.style()) - } - } - - @Test - fun testSegmentItemSizeS() { - composeTestRule.content { - SegmentItemSizeS(style = SegmentItem.S.Primary.style()) - } - } - - @Test - fun testSegmentItemSizeXs() { - composeTestRule.content { - SegmentItemSizeXs(style = SegmentItem.Xs.Pilled.Primary.style()) - } - } - - @Test - fun testSegmentItemDisabled() { - composeTestRule.content { - SegmentItemDisabled(style = SegmentItem.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeL() { - composeTestRule.content { - SegmentSizeL(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeM() { - composeTestRule.content { - SegmentSizeMPilled(style = Segment.M.Pilled.Secondary.style()) - } - } - - @Test - fun testSegmentSizeS() { - composeTestRule.content { - SegmentSizeS(style = Segment.S.Primary.style()) - } - } - - @Test - fun testSegmentSizeXs() { - composeTestRule.content { - SegmentSizeXs(style = Segment.Xs.Primary.style()) - } - } - - @Test - fun testSegmentOrientationVertical() { - composeTestRule.content { - SegmentSizeOrientationVertical(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentDisabled() { - composeTestRule.content { - SegmentDisabled(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeSStretch() { - composeTestRule.content { - SegmentSizeSStretch(style = Segment.S.Primary.style()) - } - } - - @Test - fun testSegmentSizeLCounter() { - composeTestRule.content { - SegmentSizeLCounter(style = Segment.L.Primary.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSpinnerScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSpinnerScreenshotTest.kt deleted file mode 100644 index 4c609109a8..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSpinnerScreenshotTest.kt +++ /dev/null @@ -1,92 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.SpinnerTest -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.spinner.Accent -import com.sdds.plasma.giga.app.styles.spinner.Default -import com.sdds.plasma.giga.app.styles.spinner.Info -import com.sdds.plasma.giga.app.styles.spinner.L -import com.sdds.plasma.giga.app.styles.spinner.M -import com.sdds.plasma.giga.app.styles.spinner.Negative -import com.sdds.plasma.giga.app.styles.spinner.Positive -import com.sdds.plasma.giga.app.styles.spinner.S -import com.sdds.plasma.giga.app.styles.spinner.Scalable -import com.sdds.plasma.giga.app.styles.spinner.Secondary -import com.sdds.plasma.giga.app.styles.spinner.Spinner -import com.sdds.plasma.giga.app.styles.spinner.Warning -import com.sdds.plasma.giga.app.styles.spinner.Xl -import com.sdds.plasma.giga.app.styles.spinner.Xs -import com.sdds.plasma.giga.app.styles.spinner.Xxl -import com.sdds.plasma.giga.app.styles.spinner.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeSpinnerScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testSpinnerXxlDefault() { - composeTestRule.content { - SpinnerTest(style = Spinner.Xxl.Default.style()) - } - } - - @Test - fun testSpinnerXlSecondary() { - composeTestRule.content { - SpinnerTest(style = Spinner.Xl.Secondary.style()) - } - } - - @Test - fun testSpinnerLAccent() { - composeTestRule.content { - SpinnerTest(style = Spinner.L.Accent.style()) - } - } - - @Test - fun testSpinnerMPositive() { - composeTestRule.content { - SpinnerTest(style = Spinner.M.Positive.style()) - } - } - - @Test - fun testSpinnerSNegative() { - composeTestRule.content { - SpinnerTest(style = Spinner.S.Negative.style()) - } - } - - @Test - fun testSpinnerXsWarning() { - composeTestRule.content { - SpinnerTest(style = Spinner.Xs.Warning.style()) - } - } - - @Test - fun testSpinnerXxsInfo() { - composeTestRule.content { - SpinnerTest(style = Spinner.Xxs.Info.style()) - } - } - - @Test - fun testSpinnerScalableDefault() { - composeTestRule.content { - SpinnerTest(style = Spinner.Scalable.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSwitchScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSwitchScreenshotTest.kt deleted file mode 100644 index 3127147894..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeSwitchScreenshotTest.kt +++ /dev/null @@ -1,78 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.SwitchLOn -import com.sdds.compose.uikit.fixtures.testcases.SwitchMOff -import com.sdds.compose.uikit.fixtures.testcases.SwitchOffDisabled -import com.sdds.compose.uikit.fixtures.testcases.SwitchOnDisabled -import com.sdds.compose.uikit.fixtures.testcases.SwitchS -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.switcher.L -import com.sdds.plasma.giga.app.styles.switcher.M -import com.sdds.plasma.giga.app.styles.switcher.S -import com.sdds.plasma.giga.app.styles.switcher.Switch -import com.sdds.plasma.giga.app.styles.switcher.ToggleS -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeSwitchScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testSwitchOn() { - composeTestRule.content { - SwitchLOn(style = Switch.L.style()) - } - } - - @Test - fun testSwitchOff() { - composeTestRule.content { - SwitchMOff(style = Switch.M.style()) - } - } - - @Test - fun testSwitchS() { - composeTestRule.content { - SwitchS(style = Switch.S.style()) - } - } - - @Test - fun testSwitchOnDisabled() { - composeTestRule.content { - SwitchOnDisabled(style = Switch.M.style()) - } - } - - @Test - fun testSwitchOffDisabled() { - composeTestRule.content { - SwitchOffDisabled(style = Switch.M.style()) - } - } - - @Test - fun testSwitchLToggleS() { - composeTestRule.content { - SwitchLOn(style = Switch.L.ToggleS.style()) - } - } - - @Test - fun testSwitchSToggleS() { - composeTestRule.content { - SwitchMOff(style = Switch.S.ToggleS.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTabBarScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTabBarScreenshotTest.kt deleted file mode 100644 index ad409d6979..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTabBarScreenshotTest.kt +++ /dev/null @@ -1,214 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.foundation.layout.Box -import androidx.compose.foundation.layout.requiredSize -import androidx.compose.ui.Alignment -import androidx.compose.ui.Modifier -import androidx.compose.ui.test.onAllNodesWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.unit.dp -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TabBarCounter -import com.sdds.compose.uikit.fixtures.testcases.TabBarCounterCountSix -import com.sdds.compose.uikit.fixtures.testcases.TabBarCustomWeight -import com.sdds.compose.uikit.fixtures.testcases.TabBarExtraNone -import com.sdds.compose.uikit.fixtures.testcases.TabBarIndicator -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.tabbar.Accent -import com.sdds.plasma.giga.app.styles.tabbar.Default -import com.sdds.plasma.giga.app.styles.tabbar.Divider -import com.sdds.plasma.giga.app.styles.tabbar.L -import com.sdds.plasma.giga.app.styles.tabbar.M -import com.sdds.plasma.giga.app.styles.tabbar.Rounded -import com.sdds.plasma.giga.app.styles.tabbar.Secondary -import com.sdds.plasma.giga.app.styles.tabbar.Shadow -import com.sdds.plasma.giga.app.styles.tabbar.TabBarClear -import com.sdds.plasma.giga.app.styles.tabbar.TabBarHasLabelClear -import com.sdds.plasma.giga.app.styles.tabbar.TabBarHasLabelSolid -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandClear -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandHasLabelSolid -import com.sdds.plasma.giga.app.styles.tabbar.TabBarIslandSolid -import com.sdds.plasma.giga.app.styles.tabbar.TabBarSolid -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTabBarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testTabBarClearLDefaultNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarClear.L.Default.style()) - } - } - - @Test - fun testTabBarHasLabelClearMSecondaryCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarHasLabelClear.M.Secondary.style()) - } - } - - @Test - fun testTabBarHasLabelSolidLAccentIndicator() { - composeTestRule.content { - TabBarIndicator(style = TabBarHasLabelSolid.L.Accent.style()) - } - } - - @Test - fun testTabBarIslandClearLShadowDefaultExtraNone() { - composeTestRule.content { - Box( - modifier = Modifier.requiredSize(400.dp, 200.dp), - contentAlignment = Alignment.Center, - ) { - TabBarExtraNone( - style = TabBarIslandClear.L.Default.style(), - ) - } - } - } - - @Test - fun testTabBarIslandHasLabelClearLShadowSecondaryCounter() { - composeTestRule.content { - Box( - modifier = Modifier.requiredSize(400.dp, 200.dp), - contentAlignment = Alignment.Center, - ) { - TabBarCounter( - style = TabBarIslandClear.L.Shadow.Secondary.style(), - ) - } - } - } - - @Test - fun testTabBarIslandHasLabelSolidShadowAccentCounter() { - composeTestRule.content { - Box( - modifier = Modifier.requiredSize(400.dp, 200.dp), - contentAlignment = Alignment.Center, - ) { - TabBarCounter( - style = TabBarIslandHasLabelSolid.L.Shadow.Accent.style(), - ) - } - } - } - - @Test - fun testTabBarIslandSolidLDefaultCountSixCounter() { - composeTestRule.content { - TabBarCounterCountSix(style = TabBarIslandSolid.L.Default.style()) - } - } - - @Test - fun testTabBarSolidLRoundedDefaultIndicator() { - composeTestRule.content { - TabBarIndicator(style = TabBarSolid.L.Rounded.Default.style()) - } - } - - @Test - fun testTabBarClearMRoundedSecondaryCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarClear.M.Rounded.Secondary.style()) - } - } - - @Test - fun testTabBarHasLabelClearLRoundedAccentCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarHasLabelClear.L.Rounded.Accent.style()) - } - } - - @Test - fun testTabBarHasLabelSolidLDividerDefaultCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarHasLabelSolid.L.Divider.Default.style()) - } - } - - @Test - fun testTabBarSolidLDividerSecondaryCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarSolid.L.Divider.Secondary.style()) - } - } - - @Test - fun testTabBarClearLDividerAccentCounter() { - composeTestRule.content { - TabBarCounter(style = TabBarClear.L.Divider.Accent.style()) - } - } - - @Test - fun testTabBarClearLDividerRoundedDefaultExtraNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarClear.L.Divider.Rounded.Default.style()) - } - } - - @Test - fun testTabBarClearLDividerRoundedSecondaryExtraNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarClear.L.Divider.Rounded.Secondary.style()) - } - } - - @Test - fun testTabBarSolidDividerRoundedAccentExtraNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarSolid.L.Divider.Rounded.Accent.style()) - } - composeTestRule.onAllNodesWithTag("TabBar", useUnmergedTree = true)[1] - .performClick() - } - - @Test - fun testTabBarSolidLDividerRoundedAccentExtraNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarSolid.L.Divider.Rounded.Accent.style()) - } - } - - @Test - fun testTabBarSolidShadowRoundedSecondaryExtraNone() { - composeTestRule.content { - Box( - modifier = Modifier.requiredSize(400.dp, 200.dp), - contentAlignment = Alignment.Center, - ) { - TabBarExtraNone(style = TabBarSolid.L.Shadow.Rounded.Secondary.style()) - } - } - } - - @Test - fun testTabBarSolidShadowRoundedDefaultExtraNone() { - composeTestRule.content { - TabBarExtraNone(style = TabBarSolid.L.Shadow.Rounded.Default.style()) - } - } - - @Test - fun testTabBarCustomWeight() { - composeTestRule.content { - TabBarCustomWeight(style = TabBarIslandSolid.L.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextAreaScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextAreaScreenshotTest.kt deleted file mode 100644 index 5ae0e93d70..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextAreaScreenshotTest.kt +++ /dev/null @@ -1,221 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearLDefaultChipsInnerRequiredEnd -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearLErrorInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearMErrorInnerRequiredStart -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearMWarningRequiredStartInner -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearXsDefaultOuterRequireEndFocused -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDefaultInnerLeft -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDefaultTBTA -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDisabled -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLReadOnly -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMErrorOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMInnerOptionalChips -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMWarningInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSDefaultInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSDefaultOuterRightChips -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSLongText -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSWarningInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSWarningInnerRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextAreaXSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaXlDefault -import com.sdds.compose.uikit.fixtures.testcases.TextAreaXsErrorInnerOptional -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textarea.Default -import com.sdds.plasma.giga.app.styles.textarea.Error -import com.sdds.plasma.giga.app.styles.textarea.InnerLabel -import com.sdds.plasma.giga.app.styles.textarea.L -import com.sdds.plasma.giga.app.styles.textarea.M -import com.sdds.plasma.giga.app.styles.textarea.OuterLabel -import com.sdds.plasma.giga.app.styles.textarea.RequiredEnd -import com.sdds.plasma.giga.app.styles.textarea.RequiredStart -import com.sdds.plasma.giga.app.styles.textarea.S -import com.sdds.plasma.giga.app.styles.textarea.TextArea -import com.sdds.plasma.giga.app.styles.textarea.TextAreaClear -import com.sdds.plasma.giga.app.styles.textarea.Warning -import com.sdds.plasma.giga.app.styles.textarea.Xl -import com.sdds.plasma.giga.app.styles.textarea.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextAreaScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testTextAreaLDefaultInnerLeft() { - composeTestRule.content { - TextAreaLDefaultInnerLeft(style = TextArea.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMDefaultOuterOptional() { - composeTestRule.content { - TextAreaMDefaultOuterOptional(style = TextArea.M.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaSWarningInnerRight() { - composeTestRule.content { - TextAreaSWarningInnerRight(style = TextArea.S.InnerLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testTextAreaXsErrorInnerOptional() { - composeTestRule.content { - TextAreaXsErrorInnerOptional(style = TextArea.Xs.Error.style()) - } - } - - @Test - fun testTextAreaLReadOnly() { - composeTestRule.content { - TextAreaLReadOnly(style = TextArea.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMWarningInnerOptional() { - composeTestRule.content { - TextAreaMWarningInnerOptional(style = TextArea.M.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextAreaSDefaultInnerRight() { - composeTestRule.content { - TextAreaSDefaultInnerRight(style = TextArea.S.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaXSDefaultOuterOptional() { - composeTestRule.content { - TextAreaXSDefaultOuterOptional(style = TextArea.Xs.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaDisabled() { - composeTestRule.content { - TextAreaLDisabled(style = TextArea.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMErrorOuterOptional() { - composeTestRule.content { - TextAreaMErrorOuterOptional(style = TextArea.M.OuterLabel.Error.style()) - } - } - - @Test - fun testTextAreaSWarningInnerRightFocused() { - composeTestRule.content { - TextAreaSWarningInnerRightFocused(style = TextArea.S.InnerLabel.RequiredEnd.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - composeTestRule.mainClock.advanceTimeByFrame() - } - - @Test - fun testTextAreaMInnerOptionalChips() { - composeTestRule.content { - TextAreaMInnerOptionalChips(style = TextArea.M.Default.style()) - } - } - - @Test - fun testTextAreaSDefaultOuterRightChips() { - composeTestRule.content { - TextAreaSDefaultOuterRightChips(style = TextArea.S.OuterLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaSLongText() { - composeTestRule.content { - TextAreaSLongText(style = TextArea.S.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextAreaLDefaultTBTA() { - composeTestRule.content { - TextAreaLDefaultTBTA(style = TextArea.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaClearLErrorInnerOptional() { - composeTestRule.content { - TextAreaClearLErrorInnerOptional(style = TextAreaClear.L.InnerLabel.Error.style()) - } - } - - @Test - fun testTextAreaClearMWarningRequiredStartInner() { - composeTestRule.content { - TextAreaClearMWarningRequiredStartInner(style = TextAreaClear.M.InnerLabel.RequiredStart.Warning.style()) - } - } - - @Test - fun testTextAreaClearSDefaultOuterOptional() { - composeTestRule.content { - TextAreaClearSDefaultOuterOptional(style = TextAreaClear.S.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaClearXsDefaultOuterRequireEndFocused() { - composeTestRule.content { - TextAreaClearXsDefaultOuterRequireEndFocused( - style = TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style(), - ) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("Value") - composeTestRule.mainClock.advanceTimeByFrame() - } - - @Test - fun testTextAreaClearLDefaultChipsInnerRequiredEnd() { - composeTestRule.content { - TextAreaClearLDefaultChipsInnerRequiredEnd(style = TextAreaClear.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaClearMErrorInnerRequiredStart() { - composeTestRule.content { - TextAreaClearMErrorInnerRequiredStart(style = TextAreaClear.M.InnerLabel.RequiredStart.Error.style()) - } - } - - @Test - fun testTextAreaXlDefault() { - composeTestRule.content { - TextAreaXlDefault(style = TextArea.Xl.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextFieldScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextFieldScreenshotTest.kt deleted file mode 100644 index c3f4706a3a..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextFieldScreenshotTest.kt +++ /dev/null @@ -1,262 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLDefaultInnerRequiredRight -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLErrorInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLErrorTBTA -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearMErrorInnerRequiredLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearMWarningInnerRequiredLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearXSSuccessOuterRequiredRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDefaultInnerLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDisabled -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDisabledOuterLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLInputText -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuccessRequiredLeftOuter -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefix -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefixCyrillic -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefixNoValue -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMErrorOuterLabelOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMSuccessInnerLabelChips -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMSuccessOuterLabel -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMWarningInnerLabelOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSOuterLabelRightChips -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSReadOnly -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSWarningInnerLabelRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextFieldWarningInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextFieldXSErrorInner -import com.sdds.compose.uikit.fixtures.testcases.TextFieldXSSuccessOuterLabelOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldXlDefault -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textfield.Default -import com.sdds.plasma.giga.app.styles.textfield.Error -import com.sdds.plasma.giga.app.styles.textfield.InnerLabel -import com.sdds.plasma.giga.app.styles.textfield.L -import com.sdds.plasma.giga.app.styles.textfield.M -import com.sdds.plasma.giga.app.styles.textfield.OuterLabel -import com.sdds.plasma.giga.app.styles.textfield.RequiredEnd -import com.sdds.plasma.giga.app.styles.textfield.RequiredStart -import com.sdds.plasma.giga.app.styles.textfield.S -import com.sdds.plasma.giga.app.styles.textfield.Success -import com.sdds.plasma.giga.app.styles.textfield.TextField -import com.sdds.plasma.giga.app.styles.textfield.TextFieldClear -import com.sdds.plasma.giga.app.styles.textfield.Warning -import com.sdds.plasma.giga.app.styles.textfield.Xl -import com.sdds.plasma.giga.app.styles.textfield.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextFieldScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testTextFieldLDefaultInnerLeft() { - composeTestRule.content { - TextFieldLDefaultInnerLeft(style = TextField.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldMSuccessOuterLabel() { - composeTestRule.content { - TextFieldMSuccessOuterLabel(style = TextField.M.OuterLabel.Success.style()) - } - } - - @Test - fun testTextFieldSWarningInnerRight() { - composeTestRule.content { - TextFieldWarningInnerRight(style = TextField.S.InnerLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testTextFieldXSErrorInner() { - composeTestRule.content { - TextFieldXSErrorInner(style = TextField.Xs.Error.style()) - } - } - - @Test - fun testTextFieldLSuccessRequiredLeftOuter() { - composeTestRule.content { - TextFieldLSuccessRequiredLeftOuter(style = TextField.L.OuterLabel.RequiredStart.Success.style()) - } - } - - @Test - fun testTextFieldMWarningInnerLabelOptional() { - composeTestRule.content { - TextFieldMWarningInnerLabelOptional(style = TextField.M.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextFieldReadOnly() { - composeTestRule.content { - TextFieldSReadOnly(style = TextField.S.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldXSSuccessOuterLabelOptional() { - composeTestRule.content { - TextFieldXSSuccessOuterLabelOptional(style = TextField.Xs.OuterLabel.Success.style()) - } - } - - @Test - fun testTextFieldLDisabled() { - composeTestRule.content { - TextFieldLDisabled(style = TextField.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldMErrorOuterLabelOptional() { - composeTestRule.content { - TextFieldMErrorOuterLabelOptional(style = TextField.M.OuterLabel.Error.style()) - } - } - - @Test - fun testTextFieldFocused() { - composeTestRule.content { - TextFieldSWarningInnerLabelRightFocused(style = TextField.S.InnerLabel.RequiredEnd.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("Value") - } - - @Test - fun testTextFieldMSuccessInnerLabelChips() { - composeTestRule.content { - TextFieldMSuccessInnerLabelChips(style = TextField.M.InnerLabel.Success.style()) - } - } - - @Test - fun testTextFieldSOuterLabelRightChips() { - composeTestRule.content { - TextFieldSOuterLabelRightChips(style = TextField.S.OuterLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldLInputText() { - composeTestRule.content { - TextFieldLInputText(style = TextField.L.InnerLabel.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("абвгдежзabcdefg@#643!#\$") - } - - @Test - fun testTextFieldLSuffixPrefix() { - composeTestRule.content { - TextFieldLSuffixPrefix(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldClearLErrorInnerOptional() { - composeTestRule.content { - TextFieldClearLErrorInnerOptional(style = TextFieldClear.L.InnerLabel.Error.style()) - } - } - - @Test - fun testTextFieldClearMWarningInnerRequiredLeft() { - composeTestRule.content { - TextFieldClearMWarningInnerRequiredLeft(style = TextFieldClear.M.InnerLabel.RequiredStart.Warning.style()) - } - } - - @Test - fun testTextFieldClearSDefaultOuterOptional() { - composeTestRule.content { - TextFieldClearSDefaultOuterOptional(style = TextFieldClear.S.OuterLabel.Default.style()) - } - } - - @Test - fun testTextFieldClearXSSuccessOuterRequiredRightFocused() { - composeTestRule.content { - TextFieldClearXSSuccessOuterRequiredRightFocused( - style = TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style(), - ) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - } - - @Test - fun testTextFieldClearLDefaultInnerRequiredRight() { - composeTestRule.content { - TextFieldClearLDefaultInnerRequiredRight(style = TextFieldClear.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldClearMErrorInnerRequiredLeft() { - composeTestRule.content { - TextFieldClearMErrorInnerRequiredLeft(style = TextFieldClear.M.InnerLabel.RequiredStart.Error.style()) - } - } - - @Test - fun testTextFieldLSuffixPrefixCyrillic() { - composeTestRule.content { - TextFieldLSuffixPrefixCyrillic(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldLDisabledOuterLeft() { - composeTestRule.content { - TextFieldLDisabledOuterLeft(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldClearLErrorTBTA() { - composeTestRule.content { - TextFieldClearLErrorTBTA(style = TextFieldClear.L.RequiredStart.Error.style()) - } - } - - @Test - fun testTextFieldTBTANoValue() { - composeTestRule.content { - TextFieldLSuffixPrefixNoValue(style = TextField.L.Default.style()) - } - } - - @Test - fun testTextFieldXlDefault() { - composeTestRule.content { - TextFieldXlDefault(style = TextField.Xl.InnerLabel.Default.style()) - } - } - - @Test - fun testTextFieldClearXlDefault() { - composeTestRule.content { - TextFieldXlDefault(style = TextFieldClear.Xl.Default.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextSkeletonScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextSkeletonScreenshotTest.kt deleted file mode 100644 index 9e2453f255..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTextSkeletonScreenshotTest.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.plasma.giga.app - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextSkeletonDefaultFullWidth -import com.sdds.compose.uikit.fixtures.testcases.TextSkeletonDefaultNoTextRandom -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.textskeleton.Default -import com.sdds.plasma.giga.app.styles.textskeleton.Lighter -import com.sdds.plasma.giga.app.styles.textskeleton.TextSkeleton -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextSkeletonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testTextSkeletonDefaultNoTextRandom() { - composeTestRule.content { - TextSkeletonDefaultNoTextRandom(style = TextSkeleton.Default.style()) - } - } - - @Test - fun testTextSkeletonDefaultFullWidth() { - composeTestRule.content { - TextSkeletonDefaultFullWidth(style = TextSkeleton.Default.style()) - } - } - - @Test - fun testTextSkeletonLighterNoTextRandom() { - composeTestRule.content { - TextSkeletonDefaultNoTextRandom(style = TextSkeleton.Lighter.style()) - } - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeToastScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeToastScreenshotTest.kt deleted file mode 100644 index f33ffd5740..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeToastScreenshotTest.kt +++ /dev/null @@ -1,167 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledDefaultCenterStart -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledNegativeCenterHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledPositiveCenterEndHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomCenterHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomEndHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomStartHasContentEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultTopStartHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedNegativeTopCenterHasContentStart -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedPositiveTopEndHasContentStartEnd -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.toast.Default -import com.sdds.plasma.giga.app.styles.toast.Negative -import com.sdds.plasma.giga.app.styles.toast.Pilled -import com.sdds.plasma.giga.app.styles.toast.Positive -import com.sdds.plasma.giga.app.styles.toast.Rounded -import com.sdds.plasma.giga.app.styles.toast.Toast -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeToastScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultTopStartHasContentStartHasContentEnd() { - composeTestRule.content { - ToastRoundedDefaultTopStartHasContentStartEnd( - style = Toast.Rounded.Default.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedNegativeTopCenterHasContentStart() { - composeTestRule.content { - ToastRoundedNegativeTopCenterHasContentStart( - style = Toast.Rounded.Negative.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedPositiveTopEndHasContentStartEnd() { - composeTestRule.content { - ToastRoundedPositiveTopEndHasContentStartEnd( - style = Toast.Rounded.Positive.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledDefaultCenterStart() { - composeTestRule.content { - ToastPilledDefaultCenterStart( - style = Toast.Pilled.Default.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledNegativeCenterHasContentStartEnd() { - composeTestRule.content { - ToastPilledNegativeCenterHasContentStartEnd( - style = Toast.Pilled.Negative.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledPositiveCenterEndHasContentStartEnd() { - composeTestRule.content { - ToastPilledPositiveCenterEndHasContentStartEnd( - style = Toast.Pilled.Positive.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomStartHasContentEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomStartHasContentEnd( - style = Toast.Rounded.Default.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomCenterHasContentStartEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomCenterHasContentStartEnd( - style = Toast.Rounded.Default.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomEndHasContentStartEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomEndHasContentStartEnd( - style = Toast.Rounded.Default.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTooltipScreenshotTest.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTooltipScreenshotTest.kt deleted file mode 100644 index cb2f9d023f..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ComposeTooltipScreenshotTest.kt +++ /dev/null @@ -1,180 +0,0 @@ -package com.sdds.plasma.giga.app - -import androidx.compose.ui.test.assertIsNotDisplayed -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenter -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseTopEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseTopEndNotVisible -import com.sdds.compose.uikit.fixtures.testcases.TooltipMStrictBottomEndTopStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipMStrictTopCenterCenterStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipSLooseEndBottomStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipSStrictBottomStartTopCenter -import com.sdds.compose.uikit.style.style -import com.sdds.plasma.giga.app.styles.basicbutton.BasicButton -import com.sdds.plasma.giga.app.styles.basicbutton.Default -import com.sdds.plasma.giga.app.styles.basicbutton.L -import com.sdds.plasma.giga.app.styles.tooltip.M -import com.sdds.plasma.giga.app.styles.tooltip.S -import com.sdds.plasma.giga.app.styles.tooltip.Tooltip -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTooltipScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMStrictBottomEndTopStart() { - composeTestRule.content { - TooltipMStrictBottomEndTopStart( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMStrictTopCenterCenterStart() { - composeTestRule.content { - TooltipMStrictTopCenterCenterStart( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipSLooseEndBottomStart() { - composeTestRule.content { - TooltipSLooseEndBottomStart( - style = Tooltip.S.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipSStrictBottomStartTopCenter() { - composeTestRule.content { - TooltipSStrictBottomStartTopCenter( - style = Tooltip.S.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseTopEnd() { - composeTestRule.content { - TooltipMLooseTopEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenter() { - composeTestRule.content { - TooltipMLooseStartCenter( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartBottomCenter() { - composeTestRule.content { - TooltipMLooseStartBottomCenter( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenterEnd() { - composeTestRule.content { - TooltipMLooseStartCenterEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenterBottomEnd() { - composeTestRule.content { - TooltipMLooseStartCenterBottomEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Test - fun testTooltipMLooseTopEndNotVisible() { - composeTestRule.content { - TooltipMLooseTopEndNotVisible( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - composeTestRule.onNodeWithTag("Tooltip").assertIsNotDisplayed() - } -} diff --git a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ThemeUtils.kt b/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ThemeUtils.kt deleted file mode 100644 index 3443e7b267..0000000000 --- a/tokens/plasma.giga.app.compose/src/test/kotlin/com/sdds/plasma/giga/app/ThemeUtils.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.plasma.giga.app - -import android.app.Activity -import android.graphics.Color -import androidx.activity.ComponentActivity -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.SideEffect -import androidx.compose.ui.graphics.toArgb -import androidx.compose.ui.platform.LocalView -import androidx.compose.ui.test.junit4.AndroidComposeTestRule -import androidx.core.view.WindowCompat -import androidx.test.ext.junit.rules.ActivityScenarioRule -import com.sdds.plasma.giga.app.theme.PlasmaGigaAppTheme -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.darkPlasmaGigaAppGradients -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppColors -import com.sdds.plasma.giga.app.theme.lightPlasmaGigaAppGradients - -private val DarkColors = darkPlasmaGigaAppColors() -private val LightColors = lightPlasmaGigaAppColors() -private val DarkGradients = darkPlasmaGigaAppGradients() -private val LightGradients = lightPlasmaGigaAppGradients() - -@Composable -private fun ThemeSetup( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - val view = LocalView.current - if (!view.isInEditMode) { - SideEffect { - val window = (view.context as Activity).window - window.statusBarColor = Color.TRANSPARENT - window.navigationBarColor = Color.TRANSPARENT - window.decorView.setBackgroundColor(colorScheme.backgroundDefaultPrimary.toArgb()) - WindowCompat.getInsetsController(window, view).apply { - isAppearanceLightStatusBars = !darkTheme - isAppearanceLightNavigationBars = !darkTheme - } - } - } - PlasmaGigaAppTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - content = content, - ) -} - -internal fun AndroidComposeTestRule, ComponentActivity>.content( - content: @Composable () -> Unit, -) { - setContent { - ThemeSetup { - content() - } - } -} diff --git a/tokens/plasma.giga.compose/app/build.gradle.kts b/tokens/plasma.giga.compose/app/build.gradle.kts new file mode 100644 index 0000000000..a78a4ded55 --- /dev/null +++ b/tokens/plasma.giga.compose/app/build.gradle.kts @@ -0,0 +1,23 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.compose") + id("convention.auto-bump") + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.sdds.plasma.homeds.sandbox" +} + +dependencies { + implementation(project(":plasma.giga.compose:integration")) + implementation(project(":plasma.giga.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:uikit-compose-fixtures") + implementation(libs.base.androidX.compose.foundation) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.android.material) + implementation(libs.base.androidX.activity) +} diff --git a/tokens/plasma.giga.compose/app/src/main/AndroidManifest.xml b/tokens/plasma.giga.compose/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..d98b78caf6 --- /dev/null +++ b/tokens/plasma.giga.compose/app/src/main/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/plasma.giga.compose/app/src/main/java/com/sdds/plasma/homeds/sandbox/AppActivity.kt b/tokens/plasma.giga.compose/app/src/main/java/com/sdds/plasma/homeds/sandbox/AppActivity.kt new file mode 100644 index 0000000000..b32b416626 --- /dev/null +++ b/tokens/plasma.giga.compose/app/src/main/java/com/sdds/plasma/homeds/sandbox/AppActivity.kt @@ -0,0 +1,26 @@ +package com.sdds.plasma.homeds.sandbox + +import android.os.Bundle +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.compose.uikit.fixtures.stories.registerCoreStories +import com.sdds.plasma.giga.integration.registerTheme + +/** + * Главная активность приложения, интегрированная с Sandbox-окружением для демонстрации компонентов. + * + * Наследуется от [SandboxActivity], которая предоставляет базовую инфраструктуру + * для отображения сторибука с компонентами. В этой активности происходит + * инициализация и регистрация всех доступных историй компонентов перед + * запуском основного интерфейса. + * + * @see SandboxActivity + * @see registerCoreStories + */ +class AppActivity : SandboxActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + registerCoreStories() + registerTheme() + } +} diff --git a/tokens/plasma.giga.compose/app/src/main/res/drawable/app_banner.png b/tokens/plasma.giga.compose/app/src/main/res/drawable/app_banner.png new file mode 100644 index 0000000000..54a9d62e6b Binary files /dev/null and b/tokens/plasma.giga.compose/app/src/main/res/drawable/app_banner.png differ diff --git a/tokens/plasma.giga.compose/app/src/main/res/drawable/app_bg.png b/tokens/plasma.giga.compose/app/src/main/res/drawable/app_bg.png new file mode 100644 index 0000000000..d0d811ada5 Binary files /dev/null and b/tokens/plasma.giga.compose/app/src/main/res/drawable/app_bg.png differ diff --git a/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher.png b/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher.png new file mode 100644 index 0000000000..d96dc8d170 Binary files /dev/null and b/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher.png differ diff --git a/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher_round.png b/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher_round.png new file mode 100644 index 0000000000..0a029e5eb1 Binary files /dev/null and b/tokens/plasma.giga.compose/app/src/main/res/drawable/ic_launcher_round.png differ diff --git a/tokens/plasma.giga.compose/app/src/main/res/values/strings.xml b/tokens/plasma.giga.compose/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..c47bef5001 --- /dev/null +++ b/tokens/plasma.giga.compose/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Plasma Giga + \ No newline at end of file diff --git a/tokens/plasma.giga.compose/build.gradle.kts b/tokens/plasma.giga.compose/build.gradle.kts index 47d0817c93..ae730865db 100644 --- a/tokens/plasma.giga.compose/build.gradle.kts +++ b/tokens/plasma.giga.compose/build.gradle.kts @@ -35,7 +35,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") + testImplementation("integration-core:uikit-compose-fixtures") implementation(libs.sdds.uikit.compose) implementation(icons.sdds.icons) implementation(libs.base.androidX.compose.foundation) diff --git a/tokens/plasma.giga.compose/integration/build.gradle.kts b/tokens/plasma.giga.compose/integration/build.gradle.kts new file mode 100644 index 0000000000..c689905694 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/build.gradle.kts @@ -0,0 +1,21 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-compose") + id("convention.compose") +} + +android { + namespace = "com.sdds.plasma.giga.compose.integration" +} + +dependencies { + implementation(project(":plasma.giga.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation(libs.sdds.uikit.compose) + implementation(icons.sdds.icons) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/plasma.giga.compose/integration/gradle.properties b/tokens/plasma.giga.compose/integration/gradle.properties new file mode 100644 index 0000000000..edb9093145 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/gradle.properties @@ -0,0 +1,3 @@ +integration.compose.config-path=../tokens/plasma.giga.compose/config-info-compose.json +integration.compose.package-name=com.sdds.plasma.giga.integration +integration.compose.scheme=V2 \ No newline at end of file diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionEndVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..eac825d58b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordion.AccordionClearActionEnd +import com.sdds.plasma.giga.styles.accordion.H2 +import com.sdds.plasma.giga.styles.accordion.H3 +import com.sdds.plasma.giga.styles.accordion.H4 +import com.sdds.plasma.giga.styles.accordion.H5 +import com.sdds.plasma.giga.styles.accordion.L +import com.sdds.plasma.giga.styles.accordion.M +import com.sdds.plasma.giga.styles.accordion.S +import com.sdds.plasma.giga.styles.accordion.Xs + +internal object PlasmaGigaAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionStartVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..9df97296ce --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordion.AccordionClearActionStart +import com.sdds.plasma.giga.styles.accordion.H2 +import com.sdds.plasma.giga.styles.accordion.H3 +import com.sdds.plasma.giga.styles.accordion.H4 +import com.sdds.plasma.giga.styles.accordion.H5 +import com.sdds.plasma.giga.styles.accordion.L +import com.sdds.plasma.giga.styles.accordion.M +import com.sdds.plasma.giga.styles.accordion.S +import com.sdds.plasma.giga.styles.accordion.Xs + +internal object PlasmaGigaAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..b9446c3e2b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordionitem.AccordionItemClearActionEnd +import com.sdds.plasma.giga.styles.accordionitem.H2 +import com.sdds.plasma.giga.styles.accordionitem.H3 +import com.sdds.plasma.giga.styles.accordionitem.H4 +import com.sdds.plasma.giga.styles.accordionitem.H5 +import com.sdds.plasma.giga.styles.accordionitem.L +import com.sdds.plasma.giga.styles.accordionitem.M +import com.sdds.plasma.giga.styles.accordionitem.S +import com.sdds.plasma.giga.styles.accordionitem.Xs + +internal object PlasmaGigaAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..7f7c8737bf --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordionitem.AccordionItemClearActionStart +import com.sdds.plasma.giga.styles.accordionitem.H2 +import com.sdds.plasma.giga.styles.accordionitem.H3 +import com.sdds.plasma.giga.styles.accordionitem.H4 +import com.sdds.plasma.giga.styles.accordionitem.H5 +import com.sdds.plasma.giga.styles.accordionitem.L +import com.sdds.plasma.giga.styles.accordionitem.M +import com.sdds.plasma.giga.styles.accordionitem.S +import com.sdds.plasma.giga.styles.accordionitem.Xs + +internal object PlasmaGigaAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..71139758db --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordionitem.AccordionItemSolidActionEnd +import com.sdds.plasma.giga.styles.accordionitem.H2 +import com.sdds.plasma.giga.styles.accordionitem.H3 +import com.sdds.plasma.giga.styles.accordionitem.H4 +import com.sdds.plasma.giga.styles.accordionitem.H5 +import com.sdds.plasma.giga.styles.accordionitem.L +import com.sdds.plasma.giga.styles.accordionitem.M +import com.sdds.plasma.giga.styles.accordionitem.S +import com.sdds.plasma.giga.styles.accordionitem.Xs + +internal object PlasmaGigaAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..0d9574ea7a --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionItemSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordionitem.AccordionItemSolidActionStart +import com.sdds.plasma.giga.styles.accordionitem.H2 +import com.sdds.plasma.giga.styles.accordionitem.H3 +import com.sdds.plasma.giga.styles.accordionitem.H4 +import com.sdds.plasma.giga.styles.accordionitem.H5 +import com.sdds.plasma.giga.styles.accordionitem.L +import com.sdds.plasma.giga.styles.accordionitem.M +import com.sdds.plasma.giga.styles.accordionitem.S +import com.sdds.plasma.giga.styles.accordionitem.Xs + +internal object PlasmaGigaAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..11ea16c07e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordion.AccordionSolidActionEnd +import com.sdds.plasma.giga.styles.accordion.H2 +import com.sdds.plasma.giga.styles.accordion.H3 +import com.sdds.plasma.giga.styles.accordion.H4 +import com.sdds.plasma.giga.styles.accordion.H5 +import com.sdds.plasma.giga.styles.accordion.L +import com.sdds.plasma.giga.styles.accordion.M +import com.sdds.plasma.giga.styles.accordion.S +import com.sdds.plasma.giga.styles.accordion.Xs + +internal object PlasmaGigaAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..65451d8a22 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAccordionSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.accordion.AccordionSolidActionStart +import com.sdds.plasma.giga.styles.accordion.H2 +import com.sdds.plasma.giga.styles.accordion.H3 +import com.sdds.plasma.giga.styles.accordion.H4 +import com.sdds.plasma.giga.styles.accordion.H5 +import com.sdds.plasma.giga.styles.accordion.L +import com.sdds.plasma.giga.styles.accordion.M +import com.sdds.plasma.giga.styles.accordion.S +import com.sdds.plasma.giga.styles.accordion.Xs + +internal object PlasmaGigaAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarGroupVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarGroupVariationsCompose.kt new file mode 100644 index 0000000000..20611252e8 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.avatargroup.AvatarGroup +import com.sdds.plasma.giga.styles.avatargroup.S + +internal object PlasmaGigaAvatarGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { AvatarGroup.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarVariationsCompose.kt new file mode 100644 index 0000000000..a4c0505f43 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaAvatarVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.avatar.Avatar +import com.sdds.plasma.giga.styles.avatar.L +import com.sdds.plasma.giga.styles.avatar.M +import com.sdds.plasma.giga.styles.avatar.S +import com.sdds.plasma.giga.styles.avatar.Xxl + +internal object PlasmaGigaAvatarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl" to ComposeStyleReference { Avatar.Xxl.style() }, + "L" to ComposeStyleReference { Avatar.L.style() }, + "M" to ComposeStyleReference { Avatar.M.style() }, + "S" to ComposeStyleReference { Avatar.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..1ae211bee3 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.badge.Accent +import com.sdds.plasma.giga.styles.badge.BadgeClear +import com.sdds.plasma.giga.styles.badge.Dark +import com.sdds.plasma.giga.styles.badge.Default +import com.sdds.plasma.giga.styles.badge.L +import com.sdds.plasma.giga.styles.badge.Light +import com.sdds.plasma.giga.styles.badge.M +import com.sdds.plasma.giga.styles.badge.Negative +import com.sdds.plasma.giga.styles.badge.Pilled +import com.sdds.plasma.giga.styles.badge.Positive +import com.sdds.plasma.giga.styles.badge.S +import com.sdds.plasma.giga.styles.badge.Warning +import com.sdds.plasma.giga.styles.badge.Xs + +internal object PlasmaGigaBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..7d34fad2aa --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.badge.Accent +import com.sdds.plasma.giga.styles.badge.BadgeSolid +import com.sdds.plasma.giga.styles.badge.Dark +import com.sdds.plasma.giga.styles.badge.Default +import com.sdds.plasma.giga.styles.badge.L +import com.sdds.plasma.giga.styles.badge.Light +import com.sdds.plasma.giga.styles.badge.M +import com.sdds.plasma.giga.styles.badge.Negative +import com.sdds.plasma.giga.styles.badge.Pilled +import com.sdds.plasma.giga.styles.badge.Positive +import com.sdds.plasma.giga.styles.badge.S +import com.sdds.plasma.giga.styles.badge.Warning +import com.sdds.plasma.giga.styles.badge.Xs + +internal object PlasmaGigaBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeTransparentVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..22da446539 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.badge.Accent +import com.sdds.plasma.giga.styles.badge.BadgeTransparent +import com.sdds.plasma.giga.styles.badge.Dark +import com.sdds.plasma.giga.styles.badge.Default +import com.sdds.plasma.giga.styles.badge.L +import com.sdds.plasma.giga.styles.badge.Light +import com.sdds.plasma.giga.styles.badge.M +import com.sdds.plasma.giga.styles.badge.Negative +import com.sdds.plasma.giga.styles.badge.Pilled +import com.sdds.plasma.giga.styles.badge.Positive +import com.sdds.plasma.giga.styles.badge.S +import com.sdds.plasma.giga.styles.badge.Warning +import com.sdds.plasma.giga.styles.badge.Xs + +internal object PlasmaGigaBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonGroupVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..8f96d20c05 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonGroupVariationsCompose.kt @@ -0,0 +1,80 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.buttongroup.BasicButtonGroup +import com.sdds.plasma.giga.styles.buttongroup.Default +import com.sdds.plasma.giga.styles.buttongroup.Dense +import com.sdds.plasma.giga.styles.buttongroup.L +import com.sdds.plasma.giga.styles.buttongroup.M +import com.sdds.plasma.giga.styles.buttongroup.NoGap +import com.sdds.plasma.giga.styles.buttongroup.S +import com.sdds.plasma.giga.styles.buttongroup.Segmented +import com.sdds.plasma.giga.styles.buttongroup.Wide +import com.sdds.plasma.giga.styles.buttongroup.Xs +import com.sdds.plasma.giga.styles.buttongroup.Xxs + +internal object PlasmaGigaBasicButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxs" to ComposeStyleReference { BasicButtonGroup.Xxs.style() }, + "Xxs.Wide" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.style() }, + "Xxs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Default.style() }, + "Xxs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Segmented.style() }, + "Xxs.Dense" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.style() }, + "Xxs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Default.style() }, + "Xxs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Segmented.style() }, + "Xxs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.style() }, + "Xxs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Default.style() }, + "Xxs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, + "Xs" to ComposeStyleReference { BasicButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { BasicButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { BasicButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { BasicButtonGroup.S.Wide.Default.style() }, + "S.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { BasicButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { BasicButtonGroup.S.Dense.Default.style() }, + "S.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { BasicButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { BasicButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { BasicButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { BasicButtonGroup.M.Wide.Default.style() }, + "M.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { BasicButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { BasicButtonGroup.M.Dense.Default.style() }, + "M.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { BasicButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { BasicButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { BasicButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { BasicButtonGroup.L.Wide.Default.style() }, + "L.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { BasicButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { BasicButtonGroup.L.Dense.Default.style() }, + "L.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { BasicButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonVariationsCompose.kt new file mode 100644 index 0000000000..64b3dfff1a --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaBasicButtonVariationsCompose.kt @@ -0,0 +1,96 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.basicbutton.Accent +import com.sdds.plasma.giga.styles.basicbutton.BasicButton +import com.sdds.plasma.giga.styles.basicbutton.Black +import com.sdds.plasma.giga.styles.basicbutton.Clear +import com.sdds.plasma.giga.styles.basicbutton.Dark +import com.sdds.plasma.giga.styles.basicbutton.Default +import com.sdds.plasma.giga.styles.basicbutton.L +import com.sdds.plasma.giga.styles.basicbutton.M +import com.sdds.plasma.giga.styles.basicbutton.Negative +import com.sdds.plasma.giga.styles.basicbutton.Positive +import com.sdds.plasma.giga.styles.basicbutton.S +import com.sdds.plasma.giga.styles.basicbutton.Secondary +import com.sdds.plasma.giga.styles.basicbutton.Warning +import com.sdds.plasma.giga.styles.basicbutton.White +import com.sdds.plasma.giga.styles.basicbutton.Xl +import com.sdds.plasma.giga.styles.basicbutton.Xs +import com.sdds.plasma.giga.styles.basicbutton.Xxs + +internal object PlasmaGigaBasicButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { BasicButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { BasicButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { BasicButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { BasicButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { BasicButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { BasicButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { BasicButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { BasicButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { BasicButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { BasicButton.Xl.White.style() }, + "L.Default" to ComposeStyleReference { BasicButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { BasicButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { BasicButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { BasicButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { BasicButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { BasicButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { BasicButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { BasicButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { BasicButton.L.Black.style() }, + "L.White" to ComposeStyleReference { BasicButton.L.White.style() }, + "M.Default" to ComposeStyleReference { BasicButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { BasicButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { BasicButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { BasicButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { BasicButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { BasicButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { BasicButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { BasicButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { BasicButton.M.Black.style() }, + "M.White" to ComposeStyleReference { BasicButton.M.White.style() }, + "S.Default" to ComposeStyleReference { BasicButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { BasicButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { BasicButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { BasicButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { BasicButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { BasicButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { BasicButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { BasicButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { BasicButton.S.Black.style() }, + "S.White" to ComposeStyleReference { BasicButton.S.White.style() }, + "Xs.Default" to ComposeStyleReference { BasicButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { BasicButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { BasicButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { BasicButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { BasicButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { BasicButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { BasicButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { BasicButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { BasicButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { BasicButton.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { BasicButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { BasicButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { BasicButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { BasicButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { BasicButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { BasicButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { BasicButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { BasicButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { BasicButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { BasicButton.Xxs.White.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardClearVariationsCompose.kt new file mode 100644 index 0000000000..739912086b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardClearVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.card.CardClear +import com.sdds.plasma.giga.styles.card.L +import com.sdds.plasma.giga.styles.card.M +import com.sdds.plasma.giga.styles.card.S + +internal object PlasmaGigaCardClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardClear.L.style() }, + "M" to ComposeStyleReference { CardClear.M.style() }, + "S" to ComposeStyleReference { CardClear.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardSolidVariationsCompose.kt new file mode 100644 index 0000000000..1f3a24c5f6 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCardSolidVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.card.CardSolid +import com.sdds.plasma.giga.styles.card.L +import com.sdds.plasma.giga.styles.card.M +import com.sdds.plasma.giga.styles.card.S + +internal object PlasmaGigaCardSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardSolid.L.style() }, + "M" to ComposeStyleReference { CardSolid.M.style() }, + "S" to ComposeStyleReference { CardSolid.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCellVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCellVariationsCompose.kt new file mode 100644 index 0000000000..d98761c41d --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCellVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CellStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.cell.Cell +import com.sdds.plasma.giga.styles.cell.L +import com.sdds.plasma.giga.styles.cell.M +import com.sdds.plasma.giga.styles.cell.S +import com.sdds.plasma.giga.styles.cell.Xs + +internal object PlasmaGigaCellVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Cell.L.style() }, + "M" to ComposeStyleReference { Cell.M.style() }, + "S" to ComposeStyleReference { Cell.S.style() }, + "Xs" to ComposeStyleReference { Cell.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxGroupVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..9f34f9ab9b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxGroupVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.checkboxgroup.CheckBoxGroup +import com.sdds.plasma.giga.styles.checkboxgroup.L +import com.sdds.plasma.giga.styles.checkboxgroup.M +import com.sdds.plasma.giga.styles.checkboxgroup.S + +internal object PlasmaGigaCheckBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CheckBoxGroup.L.style() }, + "M" to ComposeStyleReference { CheckBoxGroup.M.style() }, + "S" to ComposeStyleReference { CheckBoxGroup.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxVariationsCompose.kt new file mode 100644 index 0000000000..9de4beeaeb --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCheckBoxVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.checkbox.CheckBox +import com.sdds.plasma.giga.styles.checkbox.Default +import com.sdds.plasma.giga.styles.checkbox.L +import com.sdds.plasma.giga.styles.checkbox.M +import com.sdds.plasma.giga.styles.checkbox.Negative +import com.sdds.plasma.giga.styles.checkbox.S + +internal object PlasmaGigaCheckBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { CheckBox.L.Default.style() }, + "L.Negative" to ComposeStyleReference { CheckBox.L.Negative.style() }, + "M.Default" to ComposeStyleReference { CheckBox.M.Default.style() }, + "M.Negative" to ComposeStyleReference { CheckBox.M.Negative.style() }, + "S.Default" to ComposeStyleReference { CheckBox.S.Default.style() }, + "S.Negative" to ComposeStyleReference { CheckBox.S.Negative.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupDenseVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..98e9dd5df2 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupDenseVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chipgroup.Accent +import com.sdds.plasma.giga.styles.chipgroup.ChipGroupDense +import com.sdds.plasma.giga.styles.chipgroup.Default +import com.sdds.plasma.giga.styles.chipgroup.L +import com.sdds.plasma.giga.styles.chipgroup.M +import com.sdds.plasma.giga.styles.chipgroup.Negative +import com.sdds.plasma.giga.styles.chipgroup.Pilled +import com.sdds.plasma.giga.styles.chipgroup.Positive +import com.sdds.plasma.giga.styles.chipgroup.S +import com.sdds.plasma.giga.styles.chipgroup.Secondary +import com.sdds.plasma.giga.styles.chipgroup.Warning +import com.sdds.plasma.giga.styles.chipgroup.Xs + +internal object PlasmaGigaChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupDense.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupDense.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupDense.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupDense.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupDense.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupDense.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupWideVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..0abf26d3ea --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipGroupWideVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chipgroup.Accent +import com.sdds.plasma.giga.styles.chipgroup.ChipGroupWide +import com.sdds.plasma.giga.styles.chipgroup.Default +import com.sdds.plasma.giga.styles.chipgroup.L +import com.sdds.plasma.giga.styles.chipgroup.M +import com.sdds.plasma.giga.styles.chipgroup.Negative +import com.sdds.plasma.giga.styles.chipgroup.Pilled +import com.sdds.plasma.giga.styles.chipgroup.Positive +import com.sdds.plasma.giga.styles.chipgroup.S +import com.sdds.plasma.giga.styles.chipgroup.Secondary +import com.sdds.plasma.giga.styles.chipgroup.Warning +import com.sdds.plasma.giga.styles.chipgroup.Xs + +internal object PlasmaGigaChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupWide.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupWide.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupWide.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupWide.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupWide.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupWide.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipVariationsCompose.kt new file mode 100644 index 0000000000..54674261dc --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaChipVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chip.Accent +import com.sdds.plasma.giga.styles.chip.Chip +import com.sdds.plasma.giga.styles.chip.Default +import com.sdds.plasma.giga.styles.chip.L +import com.sdds.plasma.giga.styles.chip.M +import com.sdds.plasma.giga.styles.chip.Negative +import com.sdds.plasma.giga.styles.chip.Pilled +import com.sdds.plasma.giga.styles.chip.Positive +import com.sdds.plasma.giga.styles.chip.S +import com.sdds.plasma.giga.styles.chip.Secondary +import com.sdds.plasma.giga.styles.chip.Warning +import com.sdds.plasma.giga.styles.chip.Xs + +internal object PlasmaGigaChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Chip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Chip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { Chip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { Chip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { Chip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { Chip.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { Chip.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Chip.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { Chip.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { Chip.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Chip.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { Chip.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { Chip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Chip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { Chip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { Chip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { Chip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { Chip.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { Chip.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Chip.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { Chip.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { Chip.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Chip.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { Chip.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { Chip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Chip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { Chip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { Chip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { Chip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { Chip.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { Chip.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Chip.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { Chip.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { Chip.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Chip.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { Chip.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { Chip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Chip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { Chip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { Chip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { Chip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { Chip.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { Chip.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Chip.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { Chip.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { Chip.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Chip.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { Chip.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCircularProgressBarVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCircularProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..67d536c5cd --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCircularProgressBarVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CircularProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.circularprogressbar.Accent +import com.sdds.plasma.giga.styles.circularprogressbar.CircularProgressBar +import com.sdds.plasma.giga.styles.circularprogressbar.Default +import com.sdds.plasma.giga.styles.circularprogressbar.Gradient +import com.sdds.plasma.giga.styles.circularprogressbar.Info +import com.sdds.plasma.giga.styles.circularprogressbar.L +import com.sdds.plasma.giga.styles.circularprogressbar.M +import com.sdds.plasma.giga.styles.circularprogressbar.Negative +import com.sdds.plasma.giga.styles.circularprogressbar.Positive +import com.sdds.plasma.giga.styles.circularprogressbar.S +import com.sdds.plasma.giga.styles.circularprogressbar.Secondary +import com.sdds.plasma.giga.styles.circularprogressbar.Warning +import com.sdds.plasma.giga.styles.circularprogressbar.Xl +import com.sdds.plasma.giga.styles.circularprogressbar.Xs +import com.sdds.plasma.giga.styles.circularprogressbar.Xxl +import com.sdds.plasma.giga.styles.circularprogressbar.Xxs + +internal object PlasmaGigaCircularProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { CircularProgressBar.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { CircularProgressBar.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { CircularProgressBar.Xxl.Accent.style() }, + "Xxl.Gradient" to ComposeStyleReference { CircularProgressBar.Xxl.Gradient.style() }, + "Xxl.Info" to ComposeStyleReference { CircularProgressBar.Xxl.Info.style() }, + "Xxl.Negative" to ComposeStyleReference { CircularProgressBar.Xxl.Negative.style() }, + "Xxl.Positive" to ComposeStyleReference { CircularProgressBar.Xxl.Positive.style() }, + "Xxl.Warning" to ComposeStyleReference { CircularProgressBar.Xxl.Warning.style() }, + "Xl.Default" to ComposeStyleReference { CircularProgressBar.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { CircularProgressBar.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { CircularProgressBar.Xl.Accent.style() }, + "Xl.Gradient" to ComposeStyleReference { CircularProgressBar.Xl.Gradient.style() }, + "Xl.Info" to ComposeStyleReference { CircularProgressBar.Xl.Info.style() }, + "Xl.Negative" to ComposeStyleReference { CircularProgressBar.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { CircularProgressBar.Xl.Positive.style() }, + "Xl.Warning" to ComposeStyleReference { CircularProgressBar.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { CircularProgressBar.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { CircularProgressBar.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { CircularProgressBar.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { CircularProgressBar.L.Gradient.style() }, + "L.Info" to ComposeStyleReference { CircularProgressBar.L.Info.style() }, + "L.Negative" to ComposeStyleReference { CircularProgressBar.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { CircularProgressBar.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { CircularProgressBar.L.Warning.style() }, + "M.Default" to ComposeStyleReference { CircularProgressBar.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { CircularProgressBar.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { CircularProgressBar.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { CircularProgressBar.M.Gradient.style() }, + "M.Info" to ComposeStyleReference { CircularProgressBar.M.Info.style() }, + "M.Negative" to ComposeStyleReference { CircularProgressBar.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { CircularProgressBar.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { CircularProgressBar.M.Warning.style() }, + "S.Default" to ComposeStyleReference { CircularProgressBar.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { CircularProgressBar.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { CircularProgressBar.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { CircularProgressBar.S.Gradient.style() }, + "S.Info" to ComposeStyleReference { CircularProgressBar.S.Info.style() }, + "S.Negative" to ComposeStyleReference { CircularProgressBar.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { CircularProgressBar.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { CircularProgressBar.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { CircularProgressBar.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { CircularProgressBar.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { CircularProgressBar.Xs.Accent.style() }, + "Xs.Gradient" to ComposeStyleReference { CircularProgressBar.Xs.Gradient.style() }, + "Xs.Info" to ComposeStyleReference { CircularProgressBar.Xs.Info.style() }, + "Xs.Negative" to ComposeStyleReference { CircularProgressBar.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { CircularProgressBar.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { CircularProgressBar.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { CircularProgressBar.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { CircularProgressBar.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { CircularProgressBar.Xxs.Accent.style() }, + "Xxs.Gradient" to ComposeStyleReference { CircularProgressBar.Xxs.Gradient.style() }, + "Xxs.Info" to ComposeStyleReference { CircularProgressBar.Xxs.Info.style() }, + "Xxs.Negative" to ComposeStyleReference { CircularProgressBar.Xxs.Negative.style() }, + "Xxs.Positive" to ComposeStyleReference { CircularProgressBar.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { CircularProgressBar.Xxs.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeFieldVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeFieldVariationsCompose.kt new file mode 100644 index 0000000000..c3c9504d04 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeFieldVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.codefield.CodeField +import com.sdds.plasma.giga.styles.codefield.L +import com.sdds.plasma.giga.styles.codefield.M +import com.sdds.plasma.giga.styles.codefield.Segmented + +internal object PlasmaGigaCodeFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CodeField.L.style() }, + "L.Segmented" to ComposeStyleReference { CodeField.L.Segmented.style() }, + "M" to ComposeStyleReference { CodeField.M.style() }, + "M.Segmented" to ComposeStyleReference { CodeField.M.Segmented.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeInputVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeInputVariationsCompose.kt new file mode 100644 index 0000000000..699cb6d684 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCodeInputVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeInputStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.codeinput.CodeInput +import com.sdds.plasma.giga.styles.codeinput.L +import com.sdds.plasma.giga.styles.codeinput.M +import com.sdds.plasma.giga.styles.codeinput.S + +internal object PlasmaGigaCodeInputVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { CodeInput.S.style() }, + "M" to ComposeStyleReference { CodeInput.M.style() }, + "L" to ComposeStyleReference { CodeInput.L.style() }, + ) +} diff --git a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaComposeComponents.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaComposeComponents.kt similarity index 85% rename from playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaComposeComponents.kt rename to tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaComposeComponents.kt index 2855e9a3e5..280663f94f 100644 --- a/playground/sandbox-plasma-giga-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/giga/integration/compose/PlasmaGigaComposeComponents.kt +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaComposeComponents.kt @@ -1,30 +1,36 @@ -package com.sdds.playground.sandbox.plasma.giga.integration.compose +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent +package com.sdds.plasma.giga.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object PlasmaGigaComposeComponents : ComponentsProviderCompose() { +object PlasmaGigaComposeComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ComposeComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to PlasmaGigaAvatarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AvatarGroup, mapOf( "AvatarGroup" to PlasmaGigaAvatarGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Badge, mapOf( "BadgeClear" to PlasmaGigaBadgeClearVariationsCompose, @@ -32,7 +38,7 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "BadgeTransparent" to PlasmaGigaBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconBadge, mapOf( "IconBadgeClear" to PlasmaGigaIconBadgeClearVariationsCompose, @@ -40,63 +46,63 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "IconBadgeTransparent" to PlasmaGigaIconBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to PlasmaGigaBasicButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to PlasmaGigaIconButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.LinkButton, mapOf( "LinkButton" to PlasmaGigaLinkButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BottomSheet, mapOf( "ModalBottomSheet" to PlasmaGigaModalBottomSheetVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Card, mapOf( "CardSolid" to PlasmaGigaCardSolidVariationsCompose, "CardClear" to PlasmaGigaCardClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Cell, mapOf( "Cell" to PlasmaGigaCellVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to PlasmaGigaCheckBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBoxGroup, mapOf( "CheckBoxGroup" to PlasmaGigaCheckBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to PlasmaGigaChipVariationsCompose, "EmbeddedChip" to PlasmaGigaEmbeddedChipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroupDense" to PlasmaGigaChipGroupDenseVariationsCompose, @@ -105,137 +111,137 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "EmbeddedChipGroupWide" to PlasmaGigaEmbeddedChipGroupWideVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to PlasmaGigaCounterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to PlasmaGigaDividerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to PlasmaGigaIndicatorVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Overlay, mapOf( "Overlay" to PlasmaGigaOverlayVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ProgressBar, mapOf( "ProgressBar" to PlasmaGigaProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to PlasmaGigaCircularProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to PlasmaGigaPopoverVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to PlasmaGigaRadioBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBoxGroup, mapOf( "RadioBoxGroup" to PlasmaGigaRadioBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to PlasmaGigaSegmentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to PlasmaGigaSegmentItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to PlasmaGigaSwitchVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to PlasmaGigaTextFieldVariationsCompose, "TextFieldClear" to PlasmaGigaTextFieldClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextArea, mapOf( "TextArea" to PlasmaGigaTextAreaVariationsCompose, "TextAreaClear" to PlasmaGigaTextAreaClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to PlasmaGigaTooltipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ToolBar, mapOf( "ToolBarHorizontal" to PlasmaGigaToolBarHorizontalVariationsCompose, "ToolBarVertical" to PlasmaGigaToolBarVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Toast, mapOf( "Toast" to PlasmaGigaToastVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to PlasmaGigaModalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to PlasmaGigaRectSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Notification, mapOf( "NotificationCompact" to PlasmaGigaNotificationCompactVariationsCompose, "NotificationLoose" to PlasmaGigaNotificationLooseVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NotificationContent, mapOf( "NotificationContent" to PlasmaGigaNotificationContentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.List, mapOf( "ListNormal" to PlasmaGigaListNormalVariationsCompose, @@ -244,7 +250,7 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "DropdownMenuListTight" to PlasmaGigaDropdownMenuListTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ListItem, mapOf( "ListItemNormal" to PlasmaGigaListItemNormalVariationsCompose, @@ -253,33 +259,33 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "DropdownMenuItemTight" to PlasmaGigaDropdownMenuItemTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to PlasmaGigaSpinnerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextSkeleton, mapOf( "TextSkeleton" to PlasmaGigaTextSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to PlasmaGigaLoaderVariationsCompose, "Loader" to PlasmaGigaLoaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenuTight" to PlasmaGigaDropdownMenuTightVariationsCompose, "DropdownMenuNormal" to PlasmaGigaDropdownMenuNormalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AccordionItem, mapOf( "AccordionItemSolidActionStart" to PlasmaGigaAccordionItemSolidActionStartVariationsCompose, @@ -288,7 +294,7 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "AccordionItemClearActionEnd" to PlasmaGigaAccordionItemClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Accordion, mapOf( "AccordionSolidActionStart" to PlasmaGigaAccordionSolidActionStartVariationsCompose, @@ -297,26 +303,26 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "AccordionClearActionEnd" to PlasmaGigaAccordionClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to PlasmaGigaScrollBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Image, mapOf( "Image" to PlasmaGigaImageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to PlasmaGigaBasicButtonGroupVariationsCompose, "IconButtonGroup" to PlasmaGigaIconButtonGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBar, mapOf( "TabBarHasLabelClear" to PlasmaGigaTabBarHasLabelClearVariationsCompose, @@ -329,26 +335,26 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "TabBarIslandSolid" to PlasmaGigaTabBarIslandSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBarItem, mapOf( "TabBarItemClear" to PlasmaGigaTabBarItemClearVariationsCompose, "TabBarItemSolid" to PlasmaGigaTabBarItemSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeField, mapOf( "CodeField" to PlasmaGigaCodeFieldVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeInput, mapOf( "CodeInput" to PlasmaGigaCodeInputVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Drawer, mapOf( "DrawerCloseNone" to PlasmaGigaDrawerCloseNoneVariationsCompose, @@ -356,7 +362,7 @@ object PlasmaGigaComposeComponents : ComponentsProviderCompose() { "DrawerCloseOuter" to PlasmaGigaDrawerCloseOuterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownEmptyState, mapOf( "DropdownEmptyState" to PlasmaGigaDropdownEmptyStateVariationsCompose, diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCounterVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCounterVariationsCompose.kt new file mode 100644 index 0000000000..1976561667 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaCounterVariationsCompose.kt @@ -0,0 +1,67 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CounterStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.counter.Accent +import com.sdds.plasma.giga.styles.counter.Black +import com.sdds.plasma.giga.styles.counter.Counter +import com.sdds.plasma.giga.styles.counter.Default +import com.sdds.plasma.giga.styles.counter.L +import com.sdds.plasma.giga.styles.counter.M +import com.sdds.plasma.giga.styles.counter.Negative +import com.sdds.plasma.giga.styles.counter.Positive +import com.sdds.plasma.giga.styles.counter.S +import com.sdds.plasma.giga.styles.counter.Warning +import com.sdds.plasma.giga.styles.counter.White +import com.sdds.plasma.giga.styles.counter.Xs +import com.sdds.plasma.giga.styles.counter.Xxs + +internal object PlasmaGigaCounterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Counter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Counter.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Counter.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Counter.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Counter.L.Negative.style() }, + "L.Black" to ComposeStyleReference { Counter.L.Black.style() }, + "L.White" to ComposeStyleReference { Counter.L.White.style() }, + "M.Default" to ComposeStyleReference { Counter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Counter.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Counter.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Counter.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Counter.M.Negative.style() }, + "M.Black" to ComposeStyleReference { Counter.M.Black.style() }, + "M.White" to ComposeStyleReference { Counter.M.White.style() }, + "S.Default" to ComposeStyleReference { Counter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Counter.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Counter.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Counter.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Counter.S.Negative.style() }, + "S.Black" to ComposeStyleReference { Counter.S.Black.style() }, + "S.White" to ComposeStyleReference { Counter.S.White.style() }, + "Xs.Default" to ComposeStyleReference { Counter.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Counter.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Counter.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { Counter.Xs.Warning.style() }, + "Xs.Negative" to ComposeStyleReference { Counter.Xs.Negative.style() }, + "Xs.Black" to ComposeStyleReference { Counter.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { Counter.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { Counter.Xxs.Default.style() }, + "Xxs.Accent" to ComposeStyleReference { Counter.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Counter.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { Counter.Xxs.Warning.style() }, + "Xxs.Negative" to ComposeStyleReference { Counter.Xxs.Negative.style() }, + "Xxs.Black" to ComposeStyleReference { Counter.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { Counter.Xxs.White.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDividerVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDividerVariationsCompose.kt new file mode 100644 index 0000000000..4e3ac34959 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDividerVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DividerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.divider.Default +import com.sdds.plasma.giga.styles.divider.Divider + +internal object PlasmaGigaDividerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Divider.Default.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseInnerVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseInnerVariationsCompose.kt new file mode 100644 index 0000000000..dddf456f41 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseInnerVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.drawer.DrawerCloseInner +import com.sdds.plasma.giga.styles.drawer.HasShadow +import com.sdds.plasma.giga.styles.drawer.M + +internal object PlasmaGigaDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseInner.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseInner.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseNoneVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseNoneVariationsCompose.kt new file mode 100644 index 0000000000..9e75165e92 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseNoneVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.drawer.DrawerCloseNone +import com.sdds.plasma.giga.styles.drawer.HasShadow +import com.sdds.plasma.giga.styles.drawer.M + +internal object PlasmaGigaDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseNone.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseNone.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseOuterVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseOuterVariationsCompose.kt new file mode 100644 index 0000000000..ad72286c93 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDrawerCloseOuterVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.drawer.DrawerCloseOuter +import com.sdds.plasma.giga.styles.drawer.HasShadow +import com.sdds.plasma.giga.styles.drawer.M + +internal object PlasmaGigaDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseOuter.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseOuter.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownEmptyStateVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownEmptyStateVariationsCompose.kt new file mode 100644 index 0000000000..5108deaef8 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownEmptyStateVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownEmptyStateStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.dropdownemptystate.DropdownEmptyState +import com.sdds.plasma.giga.styles.dropdownemptystate.HasButton +import com.sdds.plasma.giga.styles.dropdownemptystate.L +import com.sdds.plasma.giga.styles.dropdownemptystate.M +import com.sdds.plasma.giga.styles.dropdownemptystate.S +import com.sdds.plasma.giga.styles.dropdownemptystate.Xl +import com.sdds.plasma.giga.styles.dropdownemptystate.Xs + +internal object PlasmaGigaDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { DropdownEmptyState.Xs.style() }, + "Xs.HasButton" to ComposeStyleReference { DropdownEmptyState.Xs.HasButton.style() }, + "S" to ComposeStyleReference { DropdownEmptyState.S.style() }, + "S.HasButton" to ComposeStyleReference { DropdownEmptyState.S.HasButton.style() }, + "M" to ComposeStyleReference { DropdownEmptyState.M.style() }, + "M.HasButton" to ComposeStyleReference { DropdownEmptyState.M.HasButton.style() }, + "L" to ComposeStyleReference { DropdownEmptyState.L.style() }, + "L.HasButton" to ComposeStyleReference { DropdownEmptyState.L.HasButton.style() }, + "Xl" to ComposeStyleReference { DropdownEmptyState.Xl.style() }, + "Xl.HasButton" to ComposeStyleReference { DropdownEmptyState.Xl.HasButton.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..4149a37583 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemNormalVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.listitem.Default +import com.sdds.plasma.giga.styles.listitem.DropdownMenuItemNormal +import com.sdds.plasma.giga.styles.listitem.L +import com.sdds.plasma.giga.styles.listitem.M +import com.sdds.plasma.giga.styles.listitem.Negative +import com.sdds.plasma.giga.styles.listitem.Positive +import com.sdds.plasma.giga.styles.listitem.S +import com.sdds.plasma.giga.styles.listitem.Xl +import com.sdds.plasma.giga.styles.listitem.Xs + +internal object PlasmaGigaDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemNormal.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemNormal.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemNormal.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemNormal.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemNormal.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemNormal.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemNormal.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemNormal.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemNormal.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Negative.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt new file mode 100644 index 0000000000..bc49e39841 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuItemTightVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.listitem.Default +import com.sdds.plasma.giga.styles.listitem.DropdownMenuItemTight +import com.sdds.plasma.giga.styles.listitem.L +import com.sdds.plasma.giga.styles.listitem.M +import com.sdds.plasma.giga.styles.listitem.Negative +import com.sdds.plasma.giga.styles.listitem.Positive +import com.sdds.plasma.giga.styles.listitem.S +import com.sdds.plasma.giga.styles.listitem.Xl +import com.sdds.plasma.giga.styles.listitem.Xs + +internal object PlasmaGigaDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemTight.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemTight.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemTight.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemTight.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemTight.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemTight.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemTight.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemTight.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemTight.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemTight.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemTight.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xs.Negative.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt new file mode 100644 index 0000000000..3e27d3a01e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.list.DropdownMenuListNormal +import com.sdds.plasma.giga.styles.list.L +import com.sdds.plasma.giga.styles.list.M +import com.sdds.plasma.giga.styles.list.S +import com.sdds.plasma.giga.styles.list.Xl +import com.sdds.plasma.giga.styles.list.Xs + +internal object PlasmaGigaDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListTightVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListTightVariationsCompose.kt new file mode 100644 index 0000000000..c23514b8e9 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.list.DropdownMenuListTight +import com.sdds.plasma.giga.styles.list.L +import com.sdds.plasma.giga.styles.list.M +import com.sdds.plasma.giga.styles.list.S +import com.sdds.plasma.giga.styles.list.Xl +import com.sdds.plasma.giga.styles.list.Xs + +internal object PlasmaGigaDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuNormalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuNormalVariationsCompose.kt new file mode 100644 index 0000000000..cde1da5eee --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.dropdownmenu.DropdownMenuNormal +import com.sdds.plasma.giga.styles.dropdownmenu.L +import com.sdds.plasma.giga.styles.dropdownmenu.M +import com.sdds.plasma.giga.styles.dropdownmenu.S +import com.sdds.plasma.giga.styles.dropdownmenu.Xl +import com.sdds.plasma.giga.styles.dropdownmenu.Xs + +internal object PlasmaGigaDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuTightVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuTightVariationsCompose.kt new file mode 100644 index 0000000000..2e9a3a3990 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaDropdownMenuTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.dropdownmenu.DropdownMenuTight +import com.sdds.plasma.giga.styles.dropdownmenu.L +import com.sdds.plasma.giga.styles.dropdownmenu.M +import com.sdds.plasma.giga.styles.dropdownmenu.S +import com.sdds.plasma.giga.styles.dropdownmenu.Xl +import com.sdds.plasma.giga.styles.dropdownmenu.Xs + +internal object PlasmaGigaDropdownMenuTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..57cc8485d1 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupDenseVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chipgroup.Accent +import com.sdds.plasma.giga.styles.chipgroup.Default +import com.sdds.plasma.giga.styles.chipgroup.EmbeddedChipGroupDense +import com.sdds.plasma.giga.styles.chipgroup.L +import com.sdds.plasma.giga.styles.chipgroup.M +import com.sdds.plasma.giga.styles.chipgroup.Negative +import com.sdds.plasma.giga.styles.chipgroup.Positive +import com.sdds.plasma.giga.styles.chipgroup.S +import com.sdds.plasma.giga.styles.chipgroup.Secondary +import com.sdds.plasma.giga.styles.chipgroup.Warning +import com.sdds.plasma.giga.styles.chipgroup.Xl +import com.sdds.plasma.giga.styles.chipgroup.Xs + +internal object PlasmaGigaEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..4131beb53c --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipGroupWideVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chipgroup.Accent +import com.sdds.plasma.giga.styles.chipgroup.Default +import com.sdds.plasma.giga.styles.chipgroup.EmbeddedChipGroupWide +import com.sdds.plasma.giga.styles.chipgroup.L +import com.sdds.plasma.giga.styles.chipgroup.M +import com.sdds.plasma.giga.styles.chipgroup.Negative +import com.sdds.plasma.giga.styles.chipgroup.Positive +import com.sdds.plasma.giga.styles.chipgroup.S +import com.sdds.plasma.giga.styles.chipgroup.Secondary +import com.sdds.plasma.giga.styles.chipgroup.Warning +import com.sdds.plasma.giga.styles.chipgroup.Xl +import com.sdds.plasma.giga.styles.chipgroup.Xs + +internal object PlasmaGigaEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipVariationsCompose.kt new file mode 100644 index 0000000000..b706be68db --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaEmbeddedChipVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.chip.Accent +import com.sdds.plasma.giga.styles.chip.Default +import com.sdds.plasma.giga.styles.chip.EmbeddedChip +import com.sdds.plasma.giga.styles.chip.L +import com.sdds.plasma.giga.styles.chip.M +import com.sdds.plasma.giga.styles.chip.Negative +import com.sdds.plasma.giga.styles.chip.Positive +import com.sdds.plasma.giga.styles.chip.S +import com.sdds.plasma.giga.styles.chip.Secondary +import com.sdds.plasma.giga.styles.chip.Warning +import com.sdds.plasma.giga.styles.chip.Xl +import com.sdds.plasma.giga.styles.chip.Xs + +internal object PlasmaGigaEmbeddedChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChip.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChip.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChip.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChip.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChip.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChip.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChip.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChip.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChip.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChip.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..57c22557aa --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.iconbadge.Accent +import com.sdds.plasma.giga.styles.iconbadge.Dark +import com.sdds.plasma.giga.styles.iconbadge.Default +import com.sdds.plasma.giga.styles.iconbadge.IconBadgeClear +import com.sdds.plasma.giga.styles.iconbadge.L +import com.sdds.plasma.giga.styles.iconbadge.Light +import com.sdds.plasma.giga.styles.iconbadge.M +import com.sdds.plasma.giga.styles.iconbadge.Negative +import com.sdds.plasma.giga.styles.iconbadge.Pilled +import com.sdds.plasma.giga.styles.iconbadge.Positive +import com.sdds.plasma.giga.styles.iconbadge.S +import com.sdds.plasma.giga.styles.iconbadge.Warning +import com.sdds.plasma.giga.styles.iconbadge.Xs + +internal object PlasmaGigaIconBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..94681688cd --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.iconbadge.Accent +import com.sdds.plasma.giga.styles.iconbadge.Dark +import com.sdds.plasma.giga.styles.iconbadge.Default +import com.sdds.plasma.giga.styles.iconbadge.IconBadgeSolid +import com.sdds.plasma.giga.styles.iconbadge.L +import com.sdds.plasma.giga.styles.iconbadge.Light +import com.sdds.plasma.giga.styles.iconbadge.M +import com.sdds.plasma.giga.styles.iconbadge.Negative +import com.sdds.plasma.giga.styles.iconbadge.Pilled +import com.sdds.plasma.giga.styles.iconbadge.Positive +import com.sdds.plasma.giga.styles.iconbadge.S +import com.sdds.plasma.giga.styles.iconbadge.Warning +import com.sdds.plasma.giga.styles.iconbadge.Xs + +internal object PlasmaGigaIconBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeTransparentVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..eb28be66b5 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.iconbadge.Accent +import com.sdds.plasma.giga.styles.iconbadge.Dark +import com.sdds.plasma.giga.styles.iconbadge.Default +import com.sdds.plasma.giga.styles.iconbadge.IconBadgeTransparent +import com.sdds.plasma.giga.styles.iconbadge.L +import com.sdds.plasma.giga.styles.iconbadge.Light +import com.sdds.plasma.giga.styles.iconbadge.M +import com.sdds.plasma.giga.styles.iconbadge.Negative +import com.sdds.plasma.giga.styles.iconbadge.Pilled +import com.sdds.plasma.giga.styles.iconbadge.Positive +import com.sdds.plasma.giga.styles.iconbadge.S +import com.sdds.plasma.giga.styles.iconbadge.Warning +import com.sdds.plasma.giga.styles.iconbadge.Xs + +internal object PlasmaGigaIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonGroupVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..191891f2af --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonGroupVariationsCompose.kt @@ -0,0 +1,82 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.buttongroup.Default +import com.sdds.plasma.giga.styles.buttongroup.Dense +import com.sdds.plasma.giga.styles.buttongroup.IconButtonGroup +import com.sdds.plasma.giga.styles.buttongroup.L +import com.sdds.plasma.giga.styles.buttongroup.M +import com.sdds.plasma.giga.styles.buttongroup.NoGap +import com.sdds.plasma.giga.styles.buttongroup.Pilled +import com.sdds.plasma.giga.styles.buttongroup.S +import com.sdds.plasma.giga.styles.buttongroup.Segmented +import com.sdds.plasma.giga.styles.buttongroup.Wide +import com.sdds.plasma.giga.styles.buttongroup.Xs + +internal object PlasmaGigaIconButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { IconButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { IconButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Pilled.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { IconButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Pilled.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Pilled.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { IconButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { IconButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { IconButtonGroup.S.Wide.Default.style() }, + "S.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.S.Wide.Pilled.style() }, + "S.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { IconButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { IconButtonGroup.S.Dense.Default.style() }, + "S.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.S.Dense.Pilled.style() }, + "S.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { IconButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { IconButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.S.NoGap.Pilled.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { IconButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { IconButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { IconButtonGroup.M.Wide.Default.style() }, + "M.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.M.Wide.Pilled.style() }, + "M.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { IconButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { IconButtonGroup.M.Dense.Default.style() }, + "M.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.M.Dense.Pilled.style() }, + "M.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { IconButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { IconButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.M.NoGap.Pilled.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { IconButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { IconButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { IconButtonGroup.L.Wide.Default.style() }, + "L.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.L.Wide.Pilled.style() }, + "L.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { IconButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { IconButtonGroup.L.Dense.Default.style() }, + "L.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.L.Dense.Pilled.style() }, + "L.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { IconButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { IconButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.L.NoGap.Pilled.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonVariationsCompose.kt new file mode 100644 index 0000000000..ea2079f311 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIconButtonVariationsCompose.kt @@ -0,0 +1,157 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.iconbutton.Accent +import com.sdds.plasma.giga.styles.iconbutton.Black +import com.sdds.plasma.giga.styles.iconbutton.Clear +import com.sdds.plasma.giga.styles.iconbutton.Dark +import com.sdds.plasma.giga.styles.iconbutton.Default +import com.sdds.plasma.giga.styles.iconbutton.IconButton +import com.sdds.plasma.giga.styles.iconbutton.L +import com.sdds.plasma.giga.styles.iconbutton.M +import com.sdds.plasma.giga.styles.iconbutton.Negative +import com.sdds.plasma.giga.styles.iconbutton.Pilled +import com.sdds.plasma.giga.styles.iconbutton.Positive +import com.sdds.plasma.giga.styles.iconbutton.S +import com.sdds.plasma.giga.styles.iconbutton.Secondary +import com.sdds.plasma.giga.styles.iconbutton.Warning +import com.sdds.plasma.giga.styles.iconbutton.White +import com.sdds.plasma.giga.styles.iconbutton.Xl +import com.sdds.plasma.giga.styles.iconbutton.Xs +import com.sdds.plasma.giga.styles.iconbutton.Xxs + +internal object PlasmaGigaIconButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { IconButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { IconButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { IconButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { IconButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { IconButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { IconButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { IconButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { IconButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { IconButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { IconButton.Xl.White.style() }, + "Xl.Pilled.Default" to ComposeStyleReference { IconButton.Xl.Pilled.Default.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { IconButton.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { IconButton.Xl.Pilled.Accent.style() }, + "Xl.Pilled.Positive" to ComposeStyleReference { IconButton.Xl.Pilled.Positive.style() }, + "Xl.Pilled.Negative" to ComposeStyleReference { IconButton.Xl.Pilled.Negative.style() }, + "Xl.Pilled.Warning" to ComposeStyleReference { IconButton.Xl.Pilled.Warning.style() }, + "Xl.Pilled.Clear" to ComposeStyleReference { IconButton.Xl.Pilled.Clear.style() }, + "Xl.Pilled.Dark" to ComposeStyleReference { IconButton.Xl.Pilled.Dark.style() }, + "Xl.Pilled.Black" to ComposeStyleReference { IconButton.Xl.Pilled.Black.style() }, + "Xl.Pilled.White" to ComposeStyleReference { IconButton.Xl.Pilled.White.style() }, + "L.Default" to ComposeStyleReference { IconButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { IconButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { IconButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { IconButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { IconButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { IconButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { IconButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { IconButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { IconButton.L.Black.style() }, + "L.White" to ComposeStyleReference { IconButton.L.White.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconButton.L.Pilled.Default.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { IconButton.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconButton.L.Pilled.Accent.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconButton.L.Pilled.Positive.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconButton.L.Pilled.Negative.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconButton.L.Pilled.Warning.style() }, + "L.Pilled.Clear" to ComposeStyleReference { IconButton.L.Pilled.Clear.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconButton.L.Pilled.Dark.style() }, + "L.Pilled.Black" to ComposeStyleReference { IconButton.L.Pilled.Black.style() }, + "L.Pilled.White" to ComposeStyleReference { IconButton.L.Pilled.White.style() }, + "M.Default" to ComposeStyleReference { IconButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { IconButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { IconButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { IconButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { IconButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { IconButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { IconButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { IconButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { IconButton.M.Black.style() }, + "M.White" to ComposeStyleReference { IconButton.M.White.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconButton.M.Pilled.Default.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { IconButton.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconButton.M.Pilled.Accent.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconButton.M.Pilled.Positive.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconButton.M.Pilled.Negative.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconButton.M.Pilled.Warning.style() }, + "M.Pilled.Clear" to ComposeStyleReference { IconButton.M.Pilled.Clear.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconButton.M.Pilled.Dark.style() }, + "M.Pilled.Black" to ComposeStyleReference { IconButton.M.Pilled.Black.style() }, + "M.Pilled.White" to ComposeStyleReference { IconButton.M.Pilled.White.style() }, + "S.Default" to ComposeStyleReference { IconButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { IconButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { IconButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { IconButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { IconButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { IconButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { IconButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { IconButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { IconButton.S.Black.style() }, + "S.White" to ComposeStyleReference { IconButton.S.White.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconButton.S.Pilled.Default.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { IconButton.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconButton.S.Pilled.Accent.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconButton.S.Pilled.Positive.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconButton.S.Pilled.Negative.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconButton.S.Pilled.Warning.style() }, + "S.Pilled.Clear" to ComposeStyleReference { IconButton.S.Pilled.Clear.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconButton.S.Pilled.Dark.style() }, + "S.Pilled.Black" to ComposeStyleReference { IconButton.S.Pilled.Black.style() }, + "S.Pilled.White" to ComposeStyleReference { IconButton.S.Pilled.White.style() }, + "Xs.Default" to ComposeStyleReference { IconButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { IconButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { IconButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { IconButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { IconButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { IconButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { IconButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { IconButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { IconButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { IconButton.Xs.White.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconButton.Xs.Pilled.Default.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconButton.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconButton.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconButton.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconButton.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Clear" to ComposeStyleReference { IconButton.Xs.Pilled.Clear.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconButton.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Black" to ComposeStyleReference { IconButton.Xs.Pilled.Black.style() }, + "Xs.Pilled.White" to ComposeStyleReference { IconButton.Xs.Pilled.White.style() }, + "Xxs.Default" to ComposeStyleReference { IconButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { IconButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { IconButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { IconButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { IconButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { IconButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { IconButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { IconButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { IconButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { IconButton.Xxs.White.style() }, + "Xxs.Pilled.Default" to ComposeStyleReference { IconButton.Xxs.Pilled.Default.style() }, + "Xxs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xxs.Pilled.Secondary.style() }, + "Xxs.Pilled.Accent" to ComposeStyleReference { IconButton.Xxs.Pilled.Accent.style() }, + "Xxs.Pilled.Positive" to ComposeStyleReference { IconButton.Xxs.Pilled.Positive.style() }, + "Xxs.Pilled.Negative" to ComposeStyleReference { IconButton.Xxs.Pilled.Negative.style() }, + "Xxs.Pilled.Warning" to ComposeStyleReference { IconButton.Xxs.Pilled.Warning.style() }, + "Xxs.Pilled.Clear" to ComposeStyleReference { IconButton.Xxs.Pilled.Clear.style() }, + "Xxs.Pilled.Dark" to ComposeStyleReference { IconButton.Xxs.Pilled.Dark.style() }, + "Xxs.Pilled.Black" to ComposeStyleReference { IconButton.Xxs.Pilled.Black.style() }, + "Xxs.Pilled.White" to ComposeStyleReference { IconButton.Xxs.Pilled.White.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaImageVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaImageVariationsCompose.kt new file mode 100644 index 0000000000..f35faccead --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaImageVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ImageStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.image.Image +import com.sdds.plasma.giga.styles.image.Ratio16x9 +import com.sdds.plasma.giga.styles.image.Ratio1x1 +import com.sdds.plasma.giga.styles.image.Ratio1x2 +import com.sdds.plasma.giga.styles.image.Ratio2x1 +import com.sdds.plasma.giga.styles.image.Ratio3x4 +import com.sdds.plasma.giga.styles.image.Ratio4x3 +import com.sdds.plasma.giga.styles.image.Ratio9x16 + +internal object PlasmaGigaImageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Ratio12" to ComposeStyleReference { Image.Ratio1x2.style() }, + "Ratio916" to ComposeStyleReference { Image.Ratio9x16.style() }, + "Ratio34" to ComposeStyleReference { Image.Ratio3x4.style() }, + "Ratio21" to ComposeStyleReference { Image.Ratio2x1.style() }, + "Ratio169" to ComposeStyleReference { Image.Ratio16x9.style() }, + "Ratio43" to ComposeStyleReference { Image.Ratio4x3.style() }, + "Ratio11" to ComposeStyleReference { Image.Ratio1x1.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIndicatorVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIndicatorVariationsCompose.kt new file mode 100644 index 0000000000..62627ff7b8 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaIndicatorVariationsCompose.kt @@ -0,0 +1,55 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.IndicatorStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.indicator.Accent +import com.sdds.plasma.giga.styles.indicator.Black +import com.sdds.plasma.giga.styles.indicator.Default +import com.sdds.plasma.giga.styles.indicator.Inactive +import com.sdds.plasma.giga.styles.indicator.Indicator +import com.sdds.plasma.giga.styles.indicator.L +import com.sdds.plasma.giga.styles.indicator.M +import com.sdds.plasma.giga.styles.indicator.Negative +import com.sdds.plasma.giga.styles.indicator.Positive +import com.sdds.plasma.giga.styles.indicator.S +import com.sdds.plasma.giga.styles.indicator.Warning +import com.sdds.plasma.giga.styles.indicator.White + +internal object PlasmaGigaIndicatorVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Indicator.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Indicator.L.Accent.style() }, + "L.Inactive" to ComposeStyleReference { Indicator.L.Inactive.style() }, + "L.Positive" to ComposeStyleReference { Indicator.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Indicator.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Indicator.L.Negative.style() }, + "L.Black" to ComposeStyleReference { Indicator.L.Black.style() }, + "L.White" to ComposeStyleReference { Indicator.L.White.style() }, + "M.Default" to ComposeStyleReference { Indicator.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Indicator.M.Accent.style() }, + "M.Inactive" to ComposeStyleReference { Indicator.M.Inactive.style() }, + "M.Positive" to ComposeStyleReference { Indicator.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Indicator.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Indicator.M.Negative.style() }, + "M.Black" to ComposeStyleReference { Indicator.M.Black.style() }, + "M.White" to ComposeStyleReference { Indicator.M.White.style() }, + "S.Default" to ComposeStyleReference { Indicator.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Indicator.S.Accent.style() }, + "S.Inactive" to ComposeStyleReference { Indicator.S.Inactive.style() }, + "S.Positive" to ComposeStyleReference { Indicator.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Indicator.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Indicator.S.Negative.style() }, + "S.Black" to ComposeStyleReference { Indicator.S.Black.style() }, + "S.White" to ComposeStyleReference { Indicator.S.White.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLinkButtonVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLinkButtonVariationsCompose.kt new file mode 100644 index 0000000000..e15b3d8188 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLinkButtonVariationsCompose.kt @@ -0,0 +1,68 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.linkbutton.Accent +import com.sdds.plasma.giga.styles.linkbutton.Default +import com.sdds.plasma.giga.styles.linkbutton.L +import com.sdds.plasma.giga.styles.linkbutton.LinkButton +import com.sdds.plasma.giga.styles.linkbutton.M +import com.sdds.plasma.giga.styles.linkbutton.Negative +import com.sdds.plasma.giga.styles.linkbutton.Positive +import com.sdds.plasma.giga.styles.linkbutton.S +import com.sdds.plasma.giga.styles.linkbutton.Secondary +import com.sdds.plasma.giga.styles.linkbutton.Warning +import com.sdds.plasma.giga.styles.linkbutton.Xl +import com.sdds.plasma.giga.styles.linkbutton.Xs +import com.sdds.plasma.giga.styles.linkbutton.Xxs + +internal object PlasmaGigaLinkButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { LinkButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { LinkButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { LinkButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { LinkButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { LinkButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { LinkButton.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { LinkButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { LinkButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { LinkButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { LinkButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { LinkButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { LinkButton.L.Warning.style() }, + "M.Default" to ComposeStyleReference { LinkButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { LinkButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { LinkButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { LinkButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { LinkButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { LinkButton.M.Warning.style() }, + "S.Default" to ComposeStyleReference { LinkButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { LinkButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { LinkButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { LinkButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { LinkButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { LinkButton.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { LinkButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { LinkButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { LinkButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { LinkButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { LinkButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { LinkButton.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { LinkButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { LinkButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { LinkButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { LinkButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { LinkButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { LinkButton.Xxs.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemNormalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..c480a0e78e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.listitem.L +import com.sdds.plasma.giga.styles.listitem.ListItemNormal +import com.sdds.plasma.giga.styles.listitem.M +import com.sdds.plasma.giga.styles.listitem.S +import com.sdds.plasma.giga.styles.listitem.Xl +import com.sdds.plasma.giga.styles.listitem.Xs + +internal object PlasmaGigaListItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemNormal.Xl.style() }, + "L" to ComposeStyleReference { ListItemNormal.L.style() }, + "M" to ComposeStyleReference { ListItemNormal.M.style() }, + "S" to ComposeStyleReference { ListItemNormal.S.style() }, + "Xs" to ComposeStyleReference { ListItemNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemTightVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemTightVariationsCompose.kt new file mode 100644 index 0000000000..620ebb6e9e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListItemTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.listitem.L +import com.sdds.plasma.giga.styles.listitem.ListItemTight +import com.sdds.plasma.giga.styles.listitem.M +import com.sdds.plasma.giga.styles.listitem.S +import com.sdds.plasma.giga.styles.listitem.Xl +import com.sdds.plasma.giga.styles.listitem.Xs + +internal object PlasmaGigaListItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemTight.Xl.style() }, + "L" to ComposeStyleReference { ListItemTight.L.style() }, + "M" to ComposeStyleReference { ListItemTight.M.style() }, + "S" to ComposeStyleReference { ListItemTight.S.style() }, + "Xs" to ComposeStyleReference { ListItemTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListNormalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListNormalVariationsCompose.kt new file mode 100644 index 0000000000..b590dc1cbc --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.list.L +import com.sdds.plasma.giga.styles.list.ListNormal +import com.sdds.plasma.giga.styles.list.M +import com.sdds.plasma.giga.styles.list.S +import com.sdds.plasma.giga.styles.list.Xl +import com.sdds.plasma.giga.styles.list.Xs + +internal object PlasmaGigaListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListNormal.Xl.style() }, + "L" to ComposeStyleReference { ListNormal.L.style() }, + "M" to ComposeStyleReference { ListNormal.M.style() }, + "S" to ComposeStyleReference { ListNormal.S.style() }, + "Xs" to ComposeStyleReference { ListNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListTightVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListTightVariationsCompose.kt new file mode 100644 index 0000000000..d34dd75814 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.list.L +import com.sdds.plasma.giga.styles.list.ListTight +import com.sdds.plasma.giga.styles.list.M +import com.sdds.plasma.giga.styles.list.S +import com.sdds.plasma.giga.styles.list.Xl +import com.sdds.plasma.giga.styles.list.Xs + +internal object PlasmaGigaListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListTight.Xl.style() }, + "L" to ComposeStyleReference { ListTight.L.style() }, + "M" to ComposeStyleReference { ListTight.M.style() }, + "S" to ComposeStyleReference { ListTight.S.style() }, + "Xs" to ComposeStyleReference { ListTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLoaderVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLoaderVariationsCompose.kt new file mode 100644 index 0000000000..440f3984e0 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaLoaderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.LoaderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.loader.Default +import com.sdds.plasma.giga.styles.loader.Loader + +internal object PlasmaGigaLoaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Loader.Default.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalBottomSheetVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalBottomSheetVariationsCompose.kt new file mode 100644 index 0000000000..0cad5c429d --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalBottomSheetVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalBottomSheetStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.bottomsheet.Default +import com.sdds.plasma.giga.styles.bottomsheet.ModalBottomSheet + +internal object PlasmaGigaModalBottomSheetVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ModalBottomSheet.Default.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalVariationsCompose.kt new file mode 100644 index 0000000000..dc51cd2d69 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaModalVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.modal.Default +import com.sdds.plasma.giga.styles.modal.Modal + +internal object PlasmaGigaModalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Modal.Default.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationCompactVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationCompactVariationsCompose.kt new file mode 100644 index 0000000000..ebf71e2cf6 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationCompactVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.notification.L +import com.sdds.plasma.giga.styles.notification.M +import com.sdds.plasma.giga.styles.notification.NotificationCompact +import com.sdds.plasma.giga.styles.notification.S + +internal object PlasmaGigaNotificationCompactVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationCompact.L.style() }, + "M" to ComposeStyleReference { NotificationCompact.M.style() }, + "S" to ComposeStyleReference { NotificationCompact.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationContentVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationContentVariationsCompose.kt new file mode 100644 index 0000000000..0801708974 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationContentVariationsCompose.kt @@ -0,0 +1,89 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationContentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.notificationcontent.ButtonStretch +import com.sdds.plasma.giga.styles.notificationcontent.Default +import com.sdds.plasma.giga.styles.notificationcontent.IconStart +import com.sdds.plasma.giga.styles.notificationcontent.IconTop +import com.sdds.plasma.giga.styles.notificationcontent.Info +import com.sdds.plasma.giga.styles.notificationcontent.Negative +import com.sdds.plasma.giga.styles.notificationcontent.NoButtonStretch +import com.sdds.plasma.giga.styles.notificationcontent.NotificationContent +import com.sdds.plasma.giga.styles.notificationcontent.Positive +import com.sdds.plasma.giga.styles.notificationcontent.Warning + +internal object PlasmaGigaNotificationContentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonStretch.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.Default.style() }, + "ButtonStretch.Positive" to ComposeStyleReference { NotificationContent.ButtonStretch.Positive.style() }, + "ButtonStretch.Negative" to ComposeStyleReference { NotificationContent.ButtonStretch.Negative.style() }, + "ButtonStretch.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.Warning.style() }, + "ButtonStretch.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.Info.style() }, + "ButtonStretch.IconTop.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Default.style() }, + "ButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Positive.style() + }, + "ButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Negative.style() + }, + "ButtonStretch.IconTop.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Warning.style() }, + "ButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Info.style() }, + "ButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Default.style() + }, + "ButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Positive.style() + }, + "ButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Negative.style() + }, + "ButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Warning.style() + }, + "ButtonStretch.IconStart.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconStart.Info.style() }, + "NoButtonStretch.Default" to ComposeStyleReference { NotificationContent.NoButtonStretch.Default.style() }, + "NoButtonStretch.Positive" to ComposeStyleReference { NotificationContent.NoButtonStretch.Positive.style() }, + "NoButtonStretch.Negative" to ComposeStyleReference { NotificationContent.NoButtonStretch.Negative.style() }, + "NoButtonStretch.Warning" to ComposeStyleReference { NotificationContent.NoButtonStretch.Warning.style() }, + "NoButtonStretch.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.Info.style() }, + "NoButtonStretch.IconTop.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Default.style() + }, + "NoButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Positive.style() + }, + "NoButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Negative.style() + }, + "NoButtonStretch.IconTop.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Warning.style() + }, + "NoButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.IconTop.Info.style() }, + "NoButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Default.style() + }, + "NoButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Positive.style() + }, + "NoButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Negative.style() + }, + "NoButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Warning.style() + }, + "NoButtonStretch.IconStart.Info" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Info.style() + }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationLooseVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationLooseVariationsCompose.kt new file mode 100644 index 0000000000..9d72e869bb --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaNotificationLooseVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.notification.L +import com.sdds.plasma.giga.styles.notification.M +import com.sdds.plasma.giga.styles.notification.NotificationLoose +import com.sdds.plasma.giga.styles.notification.S + +internal object PlasmaGigaNotificationLooseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationLoose.L.style() }, + "M" to ComposeStyleReference { NotificationLoose.M.style() }, + "S" to ComposeStyleReference { NotificationLoose.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaOverlayVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaOverlayVariationsCompose.kt new file mode 100644 index 0000000000..001b009a71 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaOverlayVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.OverlayStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.overlay.Default +import com.sdds.plasma.giga.styles.overlay.Overlay + +internal object PlasmaGigaOverlayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Overlay.Default.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaPopoverVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaPopoverVariationsCompose.kt new file mode 100644 index 0000000000..98fd7caa92 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaPopoverVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PopoverStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.popover.Accent +import com.sdds.plasma.giga.styles.popover.Default +import com.sdds.plasma.giga.styles.popover.M +import com.sdds.plasma.giga.styles.popover.Popover +import com.sdds.plasma.giga.styles.popover.S + +internal object PlasmaGigaPopoverVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { Popover.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Popover.M.Accent.style() }, + "S.Default" to ComposeStyleReference { Popover.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Popover.S.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaProgressBarVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..aea794207e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaProgressBarVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.progressbar.Accent +import com.sdds.plasma.giga.styles.progressbar.Default +import com.sdds.plasma.giga.styles.progressbar.Gradient +import com.sdds.plasma.giga.styles.progressbar.Info +import com.sdds.plasma.giga.styles.progressbar.Negative +import com.sdds.plasma.giga.styles.progressbar.Positive +import com.sdds.plasma.giga.styles.progressbar.ProgressBar +import com.sdds.plasma.giga.styles.progressbar.Secondary +import com.sdds.plasma.giga.styles.progressbar.Warning + +internal object PlasmaGigaProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ProgressBar.Default.style() }, + "Secondary" to ComposeStyleReference { ProgressBar.Secondary.style() }, + "Accent" to ComposeStyleReference { ProgressBar.Accent.style() }, + "Gradient" to ComposeStyleReference { ProgressBar.Gradient.style() }, + "Info" to ComposeStyleReference { ProgressBar.Info.style() }, + "Negative" to ComposeStyleReference { ProgressBar.Negative.style() }, + "Positive" to ComposeStyleReference { ProgressBar.Positive.style() }, + "Warning" to ComposeStyleReference { ProgressBar.Warning.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxGroupVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..500f6eccf6 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxGroupVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.radioboxgroup.M +import com.sdds.plasma.giga.styles.radioboxgroup.RadioBoxGroup +import com.sdds.plasma.giga.styles.radioboxgroup.S + +internal object PlasmaGigaRadioBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { RadioBoxGroup.M.style() }, + "S" to ComposeStyleReference { RadioBoxGroup.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxVariationsCompose.kt new file mode 100644 index 0000000000..06887180bf --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRadioBoxVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.radiobox.L +import com.sdds.plasma.giga.styles.radiobox.M +import com.sdds.plasma.giga.styles.radiobox.RadioBox +import com.sdds.plasma.giga.styles.radiobox.S + +internal object PlasmaGigaRadioBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { RadioBox.L.style() }, + "M" to ComposeStyleReference { RadioBox.M.style() }, + "S" to ComposeStyleReference { RadioBox.S.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRectSkeletonVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRectSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..dfecbb2a41 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRectSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RectSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.rectskeleton.Default +import com.sdds.plasma.giga.styles.rectskeleton.Lighter +import com.sdds.plasma.giga.styles.rectskeleton.RectSkeleton + +internal object PlasmaGigaRectSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RectSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { RectSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRegisterTheme.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRegisterTheme.kt new file mode 100644 index 0000000000..5fb1d527b6 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaRegisterTheme.kt @@ -0,0 +1,41 @@ +package com.sdds.plasma.giga.integration + +import androidx.compose.foundation.isSystemInDarkTheme +import com.sdds.compose.sandbox.ComposeTheme +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.plasma.giga.theme.PlasmaGigaTheme +import com.sdds.plasma.giga.theme.darkPlasmaGigaColors +import com.sdds.plasma.giga.theme.darkPlasmaGigaGradients +import com.sdds.plasma.giga.theme.lightPlasmaGigaColors +import com.sdds.plasma.giga.theme.lightPlasmaGigaGradients +import com.sdds.plasma.giga.theme.subthemes.Default +import com.sdds.plasma.giga.theme.subthemes.Inverse +import com.sdds.plasma.giga.theme.subthemes.OnDark +import com.sdds.plasma.giga.theme.subthemes.OnLight +import com.sdds.sandbox.ComponentProvider +import com.sdds.sandbox.ComponentProviderUtils.plus +import com.sdds.sandbox.ThemeManager + +fun SandboxActivity.registerTheme(componentProvider: ComponentProvider = ComponentProvider.Empty) { + val theme = ComposeTheme( + displayName = "PlasmaGiga", + components = PlasmaGigaComposeComponents + componentProvider, + themeWrapper = { + val isDark = isSystemInDarkTheme() + PlasmaGigaTheme( + colors = if (isDark) darkPlasmaGigaColors() else lightPlasmaGigaColors(), + gradients = if (isDark) darkPlasmaGigaGradients() else lightPlasmaGigaGradients(), + ) { + it() + } + }, + subthemes = mapOf( + SubTheme.DEFAULT to { PlasmaGigaTheme.Default(content = it) }, + SubTheme.ON_LIGHT to { PlasmaGigaTheme.OnLight(content = it) }, + SubTheme.ON_DARK to { PlasmaGigaTheme.OnDark(content = it) }, + SubTheme.INVERSE to { PlasmaGigaTheme.Inverse(content = it) }, + ), + ) + ThemeManager.updateTheme(theme) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaScrollBarVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaScrollBarVariationsCompose.kt new file mode 100644 index 0000000000..fc45d086e5 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaScrollBarVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ScrollBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.scrollbar.M +import com.sdds.plasma.giga.styles.scrollbar.S +import com.sdds.plasma.giga.styles.scrollbar.ScrollBar + +internal object PlasmaGigaScrollBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { ScrollBar.S.style() }, + "M" to ComposeStyleReference { ScrollBar.M.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentItemVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentItemVariationsCompose.kt new file mode 100644 index 0000000000..56a2268d9a --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentItemVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.segmentitem.Accent +import com.sdds.plasma.giga.styles.segmentitem.L +import com.sdds.plasma.giga.styles.segmentitem.M +import com.sdds.plasma.giga.styles.segmentitem.Pilled +import com.sdds.plasma.giga.styles.segmentitem.Primary +import com.sdds.plasma.giga.styles.segmentitem.S +import com.sdds.plasma.giga.styles.segmentitem.Secondary +import com.sdds.plasma.giga.styles.segmentitem.SegmentItem +import com.sdds.plasma.giga.styles.segmentitem.Xl +import com.sdds.plasma.giga.styles.segmentitem.Xs + +internal object PlasmaGigaSegmentItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { SegmentItem.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { SegmentItem.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { SegmentItem.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { SegmentItem.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { SegmentItem.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { SegmentItem.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { SegmentItem.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { SegmentItem.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { SegmentItem.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { SegmentItem.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { SegmentItem.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { SegmentItem.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { SegmentItem.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { SegmentItem.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { SegmentItem.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { SegmentItem.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { SegmentItem.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { SegmentItem.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { SegmentItem.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { SegmentItem.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { SegmentItem.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { SegmentItem.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { SegmentItem.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { SegmentItem.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentVariationsCompose.kt new file mode 100644 index 0000000000..694b20cb57 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSegmentVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.segment.Accent +import com.sdds.plasma.giga.styles.segment.L +import com.sdds.plasma.giga.styles.segment.M +import com.sdds.plasma.giga.styles.segment.Pilled +import com.sdds.plasma.giga.styles.segment.Primary +import com.sdds.plasma.giga.styles.segment.S +import com.sdds.plasma.giga.styles.segment.Secondary +import com.sdds.plasma.giga.styles.segment.Segment +import com.sdds.plasma.giga.styles.segment.Xl +import com.sdds.plasma.giga.styles.segment.Xs + +internal object PlasmaGigaSegmentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { Segment.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { Segment.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Segment.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { Segment.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { Segment.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { Segment.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { Segment.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { Segment.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Segment.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { Segment.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Segment.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Segment.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { Segment.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { Segment.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Segment.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { Segment.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Segment.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Segment.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { Segment.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { Segment.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Segment.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { Segment.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Segment.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Segment.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { Segment.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { Segment.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Segment.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { Segment.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Segment.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Segment.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSpinnerVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSpinnerVariationsCompose.kt new file mode 100644 index 0000000000..fe1d559391 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSpinnerVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SpinnerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.spinner.Accent +import com.sdds.plasma.giga.styles.spinner.Default +import com.sdds.plasma.giga.styles.spinner.Info +import com.sdds.plasma.giga.styles.spinner.L +import com.sdds.plasma.giga.styles.spinner.M +import com.sdds.plasma.giga.styles.spinner.Negative +import com.sdds.plasma.giga.styles.spinner.Positive +import com.sdds.plasma.giga.styles.spinner.S +import com.sdds.plasma.giga.styles.spinner.Scalable +import com.sdds.plasma.giga.styles.spinner.Secondary +import com.sdds.plasma.giga.styles.spinner.Spinner +import com.sdds.plasma.giga.styles.spinner.Warning +import com.sdds.plasma.giga.styles.spinner.Xl +import com.sdds.plasma.giga.styles.spinner.Xs +import com.sdds.plasma.giga.styles.spinner.Xxl +import com.sdds.plasma.giga.styles.spinner.Xxs + +internal object PlasmaGigaSpinnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { Spinner.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { Spinner.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { Spinner.Xxl.Accent.style() }, + "Xxl.Positive" to ComposeStyleReference { Spinner.Xxl.Positive.style() }, + "Xxl.Negative" to ComposeStyleReference { Spinner.Xxl.Negative.style() }, + "Xxl.Warning" to ComposeStyleReference { Spinner.Xxl.Warning.style() }, + "Xxl.Info" to ComposeStyleReference { Spinner.Xxl.Info.style() }, + "Xl.Default" to ComposeStyleReference { Spinner.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { Spinner.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Spinner.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { Spinner.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { Spinner.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { Spinner.Xl.Warning.style() }, + "Xl.Info" to ComposeStyleReference { Spinner.Xl.Info.style() }, + "L.Default" to ComposeStyleReference { Spinner.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { Spinner.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Spinner.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Spinner.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { Spinner.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { Spinner.L.Warning.style() }, + "L.Info" to ComposeStyleReference { Spinner.L.Info.style() }, + "M.Default" to ComposeStyleReference { Spinner.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { Spinner.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Spinner.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Spinner.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { Spinner.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { Spinner.M.Warning.style() }, + "M.Info" to ComposeStyleReference { Spinner.M.Info.style() }, + "S.Default" to ComposeStyleReference { Spinner.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { Spinner.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Spinner.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Spinner.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { Spinner.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { Spinner.S.Warning.style() }, + "S.Info" to ComposeStyleReference { Spinner.S.Info.style() }, + "Xs.Default" to ComposeStyleReference { Spinner.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { Spinner.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Spinner.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Spinner.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { Spinner.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { Spinner.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { Spinner.Xs.Info.style() }, + "Xxs.Default" to ComposeStyleReference { Spinner.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { Spinner.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { Spinner.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Spinner.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { Spinner.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { Spinner.Xxs.Warning.style() }, + "Xxs.Info" to ComposeStyleReference { Spinner.Xxs.Info.style() }, + "Scalable.Default" to ComposeStyleReference { Spinner.Scalable.Default.style() }, + "Scalable.Secondary" to ComposeStyleReference { Spinner.Scalable.Secondary.style() }, + "Scalable.Accent" to ComposeStyleReference { Spinner.Scalable.Accent.style() }, + "Scalable.Positive" to ComposeStyleReference { Spinner.Scalable.Positive.style() }, + "Scalable.Negative" to ComposeStyleReference { Spinner.Scalable.Negative.style() }, + "Scalable.Warning" to ComposeStyleReference { Spinner.Scalable.Warning.style() }, + "Scalable.Info" to ComposeStyleReference { Spinner.Scalable.Info.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSwitchVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSwitchVariationsCompose.kt new file mode 100644 index 0000000000..24e7477482 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaSwitchVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SwitchStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.switcher.L +import com.sdds.plasma.giga.styles.switcher.M +import com.sdds.plasma.giga.styles.switcher.S +import com.sdds.plasma.giga.styles.switcher.Switch +import com.sdds.plasma.giga.styles.switcher.ToggleS + +internal object PlasmaGigaSwitchVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Switch.L.style() }, + "L.ToggleS" to ComposeStyleReference { Switch.L.ToggleS.style() }, + "M" to ComposeStyleReference { Switch.M.style() }, + "M.ToggleS" to ComposeStyleReference { Switch.M.ToggleS.style() }, + "S" to ComposeStyleReference { Switch.S.style() }, + "S.ToggleS" to ComposeStyleReference { Switch.S.ToggleS.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarClearVariationsCompose.kt new file mode 100644 index 0000000000..1c389da68e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.Divider +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Rounded +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarClear + +internal object PlasmaGigaTabBarClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..d700de1f9e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.Divider +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Rounded +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarHasLabelClear + +internal object PlasmaGigaTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..32c17f022b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarHasLabelSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.Divider +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Rounded +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarHasLabelSolid + +internal object PlasmaGigaTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandClearVariationsCompose.kt new file mode 100644 index 0000000000..7160994841 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarIslandClear + +internal object PlasmaGigaTabBarIslandClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..b844ec2b9e --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarIslandHasLabelClear + +internal object PlasmaGigaTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..f29d41600f --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarIslandHasLabelSolid + +internal object PlasmaGigaTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandSolidVariationsCompose.kt new file mode 100644 index 0000000000..26f0505b92 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarIslandSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarIslandSolid + +internal object PlasmaGigaTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemClearVariationsCompose.kt new file mode 100644 index 0000000000..ad2cdc5333 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbaritem.Accent +import com.sdds.plasma.giga.styles.tabbaritem.Default +import com.sdds.plasma.giga.styles.tabbaritem.L +import com.sdds.plasma.giga.styles.tabbaritem.Label +import com.sdds.plasma.giga.styles.tabbaritem.M +import com.sdds.plasma.giga.styles.tabbaritem.Secondary +import com.sdds.plasma.giga.styles.tabbaritem.TabBarItemClear + +internal object PlasmaGigaTabBarItemClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemClear.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemClear.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemClear.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemClear.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemClear.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemClear.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemClear.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemClear.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemClear.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemClear.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemSolidVariationsCompose.kt new file mode 100644 index 0000000000..697dd3298f --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarItemSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbaritem.Accent +import com.sdds.plasma.giga.styles.tabbaritem.Default +import com.sdds.plasma.giga.styles.tabbaritem.L +import com.sdds.plasma.giga.styles.tabbaritem.Label +import com.sdds.plasma.giga.styles.tabbaritem.M +import com.sdds.plasma.giga.styles.tabbaritem.Secondary +import com.sdds.plasma.giga.styles.tabbaritem.TabBarItemSolid + +internal object PlasmaGigaTabBarItemSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemSolid.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemSolid.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemSolid.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemSolid.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemSolid.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemSolid.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarSolidVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarSolidVariationsCompose.kt new file mode 100644 index 0000000000..93c323600b --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTabBarSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tabbar.Accent +import com.sdds.plasma.giga.styles.tabbar.Default +import com.sdds.plasma.giga.styles.tabbar.Divider +import com.sdds.plasma.giga.styles.tabbar.L +import com.sdds.plasma.giga.styles.tabbar.M +import com.sdds.plasma.giga.styles.tabbar.Rounded +import com.sdds.plasma.giga.styles.tabbar.Secondary +import com.sdds.plasma.giga.styles.tabbar.Shadow +import com.sdds.plasma.giga.styles.tabbar.TabBarSolid + +internal object PlasmaGigaTabBarSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaClearVariationsCompose.kt new file mode 100644 index 0000000000..e38f0b77ab --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaClearVariationsCompose.kt @@ -0,0 +1,212 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.textarea.Default +import com.sdds.plasma.giga.styles.textarea.Error +import com.sdds.plasma.giga.styles.textarea.InnerLabel +import com.sdds.plasma.giga.styles.textarea.L +import com.sdds.plasma.giga.styles.textarea.M +import com.sdds.plasma.giga.styles.textarea.OuterLabel +import com.sdds.plasma.giga.styles.textarea.RequiredEnd +import com.sdds.plasma.giga.styles.textarea.RequiredStart +import com.sdds.plasma.giga.styles.textarea.S +import com.sdds.plasma.giga.styles.textarea.TextAreaClear +import com.sdds.plasma.giga.styles.textarea.Warning +import com.sdds.plasma.giga.styles.textarea.Xl +import com.sdds.plasma.giga.styles.textarea.Xs + +internal object PlasmaGigaTextAreaClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextAreaClear.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextAreaClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextAreaClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextAreaClear.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextAreaClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextAreaClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextAreaClear.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextAreaClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextAreaClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextAreaClear.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextAreaClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextAreaClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextAreaClear.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextAreaClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextAreaClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaVariationsCompose.kt new file mode 100644 index 0000000000..b68cb4660d --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextAreaVariationsCompose.kt @@ -0,0 +1,158 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.textarea.Default +import com.sdds.plasma.giga.styles.textarea.Error +import com.sdds.plasma.giga.styles.textarea.InnerLabel +import com.sdds.plasma.giga.styles.textarea.L +import com.sdds.plasma.giga.styles.textarea.M +import com.sdds.plasma.giga.styles.textarea.OuterLabel +import com.sdds.plasma.giga.styles.textarea.RequiredEnd +import com.sdds.plasma.giga.styles.textarea.RequiredStart +import com.sdds.plasma.giga.styles.textarea.S +import com.sdds.plasma.giga.styles.textarea.TextArea +import com.sdds.plasma.giga.styles.textarea.Warning +import com.sdds.plasma.giga.styles.textarea.Xl +import com.sdds.plasma.giga.styles.textarea.Xs + +internal object PlasmaGigaTextAreaVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextArea.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextArea.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextArea.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextArea.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextArea.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextArea.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextArea.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextArea.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextArea.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextArea.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextArea.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextArea.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextArea.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextArea.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextArea.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextArea.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextArea.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextArea.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextArea.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextArea.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextArea.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextArea.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextArea.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextArea.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextArea.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextArea.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextArea.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextArea.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextArea.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextArea.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextArea.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextArea.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextArea.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldClearVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldClearVariationsCompose.kt new file mode 100644 index 0000000000..9721152676 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldClearVariationsCompose.kt @@ -0,0 +1,279 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.textfield.Default +import com.sdds.plasma.giga.styles.textfield.Error +import com.sdds.plasma.giga.styles.textfield.InnerLabel +import com.sdds.plasma.giga.styles.textfield.L +import com.sdds.plasma.giga.styles.textfield.M +import com.sdds.plasma.giga.styles.textfield.OuterLabel +import com.sdds.plasma.giga.styles.textfield.RequiredEnd +import com.sdds.plasma.giga.styles.textfield.RequiredStart +import com.sdds.plasma.giga.styles.textfield.S +import com.sdds.plasma.giga.styles.textfield.Success +import com.sdds.plasma.giga.styles.textfield.TextFieldClear +import com.sdds.plasma.giga.styles.textfield.Warning +import com.sdds.plasma.giga.styles.textfield.Xl +import com.sdds.plasma.giga.styles.textfield.Xs + +internal object PlasmaGigaTextFieldClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextFieldClear.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextFieldClear.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextFieldClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextFieldClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextFieldClear.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextFieldClear.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextFieldClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextFieldClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Success.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Success.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextFieldClear.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextFieldClear.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextFieldClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextFieldClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Success.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Success.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextFieldClear.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextFieldClear.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextFieldClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextFieldClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Success.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Success.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextFieldClear.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextFieldClear.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextFieldClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextFieldClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldVariationsCompose.kt new file mode 100644 index 0000000000..8c33e370a7 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextFieldVariationsCompose.kt @@ -0,0 +1,219 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.textfield.Default +import com.sdds.plasma.giga.styles.textfield.Error +import com.sdds.plasma.giga.styles.textfield.InnerLabel +import com.sdds.plasma.giga.styles.textfield.L +import com.sdds.plasma.giga.styles.textfield.M +import com.sdds.plasma.giga.styles.textfield.OuterLabel +import com.sdds.plasma.giga.styles.textfield.RequiredEnd +import com.sdds.plasma.giga.styles.textfield.RequiredStart +import com.sdds.plasma.giga.styles.textfield.S +import com.sdds.plasma.giga.styles.textfield.Success +import com.sdds.plasma.giga.styles.textfield.TextField +import com.sdds.plasma.giga.styles.textfield.Warning +import com.sdds.plasma.giga.styles.textfield.Xl +import com.sdds.plasma.giga.styles.textfield.Xs + +internal object PlasmaGigaTextFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextField.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextField.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextField.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextField.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextField.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextField.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextField.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextField.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextField.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextField.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextField.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextField.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextField.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextField.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextField.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextField.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextField.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextField.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextField.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextField.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextField.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextField.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Success.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextField.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextField.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextField.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextField.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Success.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextField.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextField.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextField.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextField.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextField.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextField.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextField.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextField.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextField.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextField.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextField.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextField.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextField.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextField.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextField.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Success.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextField.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextField.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextField.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextField.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Success.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextField.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextField.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextField.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextField.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextField.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextField.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextField.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextField.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextField.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextField.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextField.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextField.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextField.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextField.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextField.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Success.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextField.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextField.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextField.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextField.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Success.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextField.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextField.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextField.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextField.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextField.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextField.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextField.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextSkeletonVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..d279d87ccb --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTextSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.textskeleton.Default +import com.sdds.plasma.giga.styles.textskeleton.Lighter +import com.sdds.plasma.giga.styles.textskeleton.TextSkeleton + +internal object PlasmaGigaTextSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TextSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { TextSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToastVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToastVariationsCompose.kt new file mode 100644 index 0000000000..f895873ecd --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToastVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToastStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.toast.Default +import com.sdds.plasma.giga.styles.toast.Negative +import com.sdds.plasma.giga.styles.toast.Pilled +import com.sdds.plasma.giga.styles.toast.Positive +import com.sdds.plasma.giga.styles.toast.Rounded +import com.sdds.plasma.giga.styles.toast.Toast + +internal object PlasmaGigaToastVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Rounded.Default" to ComposeStyleReference { Toast.Rounded.Default.style() }, + "Rounded.Positive" to ComposeStyleReference { Toast.Rounded.Positive.style() }, + "Rounded.Negative" to ComposeStyleReference { Toast.Rounded.Negative.style() }, + "Pilled.Default" to ComposeStyleReference { Toast.Pilled.Default.style() }, + "Pilled.Positive" to ComposeStyleReference { Toast.Pilled.Positive.style() }, + "Pilled.Negative" to ComposeStyleReference { Toast.Pilled.Negative.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarHorizontalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..8e7e2d667c --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarHorizontalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.toolbar.HasShadow +import com.sdds.plasma.giga.styles.toolbar.L +import com.sdds.plasma.giga.styles.toolbar.M +import com.sdds.plasma.giga.styles.toolbar.S +import com.sdds.plasma.giga.styles.toolbar.ToolBarHorizontal +import com.sdds.plasma.giga.styles.toolbar.Xs + +internal object PlasmaGigaToolBarHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarHorizontal.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarHorizontal.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarHorizontal.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarHorizontal.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarHorizontal.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarHorizontal.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarHorizontal.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarHorizontal.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarVerticalVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarVerticalVariationsCompose.kt new file mode 100644 index 0000000000..9c568c77ea --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaToolBarVerticalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.toolbar.HasShadow +import com.sdds.plasma.giga.styles.toolbar.L +import com.sdds.plasma.giga.styles.toolbar.M +import com.sdds.plasma.giga.styles.toolbar.S +import com.sdds.plasma.giga.styles.toolbar.ToolBarVertical +import com.sdds.plasma.giga.styles.toolbar.Xs + +internal object PlasmaGigaToolBarVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarVertical.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarVertical.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarVertical.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarVertical.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarVertical.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarVertical.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarVertical.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarVertical.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTooltipVariationsCompose.kt b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTooltipVariationsCompose.kt new file mode 100644 index 0000000000..a086bdba91 --- /dev/null +++ b/tokens/plasma.giga.compose/integration/src/main/kotlin/com/sdds/plasma/giga/integration/PlasmaGigaTooltipVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.giga.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TooltipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.giga.styles.tooltip.M +import com.sdds.plasma.giga.styles.tooltip.S +import com.sdds.plasma.giga.styles.tooltip.Tooltip + +internal object PlasmaGigaTooltipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { Tooltip.M.style() }, + "S" to ComposeStyleReference { Tooltip.S.style() }, + ) +} diff --git a/tokens/plasma.homeds.compose/app/build.gradle.kts b/tokens/plasma.homeds.compose/app/build.gradle.kts index ce1415a969..86b43e9c72 100644 --- a/tokens/plasma.homeds.compose/app/build.gradle.kts +++ b/tokens/plasma.homeds.compose/app/build.gradle.kts @@ -14,6 +14,6 @@ dependencies { implementation(project(":plasma.homeds.compose")) implementation("integration-core:sandbox-core") implementation("integration-core:sandbox-compose") - implementation("sdds-core:uikit-compose-fixtures") + implementation("integration-core:uikit-compose-fixtures") implementation(libs.base.androidX.compose.foundation) } diff --git a/tokens/plasma.homeds.compose/build.gradle.kts b/tokens/plasma.homeds.compose/build.gradle.kts index 718b88dbaa..b1b5d1c304 100644 --- a/tokens/plasma.homeds.compose/build.gradle.kts +++ b/tokens/plasma.homeds.compose/build.gradle.kts @@ -38,7 +38,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") + testImplementation("integration-core:uikit-compose-fixtures") implementation(libs.sdds.uikit.compose) implementation(icons.sdds.icons) implementation(libs.base.androidX.compose.foundation) diff --git a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png index 7cd61382d0..725b7a0aff 100644 Binary files a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png and b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png differ diff --git a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png index 97ab6422c0..ff38fa91c4 100644 Binary files a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png and b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png differ diff --git a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png index f3785cc9a4..56d8bef260 100644 Binary files a/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png and b/tokens/plasma.homeds.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png differ diff --git a/tokens/plasma.sd.service.compose/app/build.gradle.kts b/tokens/plasma.sd.service.compose/app/build.gradle.kts new file mode 100644 index 0000000000..338315f6e2 --- /dev/null +++ b/tokens/plasma.sd.service.compose/app/build.gradle.kts @@ -0,0 +1,23 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.compose") + id("convention.auto-bump") + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.sdds.plasma.sd.service.compose.sandbox" +} + +dependencies { + implementation(project(":plasma.sd.service.compose:integration")) + implementation(project(":plasma.sd.service.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:uikit-compose-fixtures") + implementation(libs.base.androidX.compose.foundation) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.android.material) + implementation(libs.base.androidX.activity) +} diff --git a/tokens/plasma.sd.service.compose/app/src/main/AndroidManifest.xml b/tokens/plasma.sd.service.compose/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..d98b78caf6 --- /dev/null +++ b/tokens/plasma.sd.service.compose/app/src/main/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/plasma.sd.service.compose/app/src/main/kotlin/com/sdds/plasma/sd/service/compose/sandbox/AppActivity.kt b/tokens/plasma.sd.service.compose/app/src/main/kotlin/com/sdds/plasma/sd/service/compose/sandbox/AppActivity.kt new file mode 100644 index 0000000000..9ad50b0961 --- /dev/null +++ b/tokens/plasma.sd.service.compose/app/src/main/kotlin/com/sdds/plasma/sd/service/compose/sandbox/AppActivity.kt @@ -0,0 +1,26 @@ +package com.sdds.plasma.sd.service.compose.sandbox + +import android.os.Bundle +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.compose.uikit.fixtures.stories.registerCoreStories +import com.sdds.plasma.sd.service.compose.integration.registerTheme + +/** + * Главная активность приложения, интегрированная с Sandbox-окружением для демонстрации компонентов. + * + * Наследуется от [SandboxActivity], которая предоставляет базовую инфраструктуру + * для отображения сторибука с компонентами. В этой активности происходит + * инициализация и регистрация всех доступных историй компонентов перед + * запуском основного интерфейса. + * + * @see SandboxActivity + * @see registerCoreStories + */ +class AppActivity : SandboxActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + registerCoreStories() + registerTheme() + } +} diff --git a/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_banner.png b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_banner.png new file mode 100644 index 0000000000..54a9d62e6b Binary files /dev/null and b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_banner.png differ diff --git a/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_bg.png b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_bg.png new file mode 100644 index 0000000000..d0d811ada5 Binary files /dev/null and b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/app_bg.png differ diff --git a/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher.png b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher.png new file mode 100644 index 0000000000..d96dc8d170 Binary files /dev/null and b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher.png differ diff --git a/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher_round.png b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher_round.png new file mode 100644 index 0000000000..0a029e5eb1 Binary files /dev/null and b/tokens/plasma.sd.service.compose/app/src/main/res/drawable/ic_launcher_round.png differ diff --git a/tokens/plasma.sd.service.compose/app/src/main/res/values/strings.xml b/tokens/plasma.sd.service.compose/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..6ae45d9ae6 --- /dev/null +++ b/tokens/plasma.sd.service.compose/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Sd Service + \ No newline at end of file diff --git a/tokens/plasma.sd.service.compose/build.gradle.kts b/tokens/plasma.sd.service.compose/build.gradle.kts index 92d3963d74..ec20b39cd4 100644 --- a/tokens/plasma.sd.service.compose/build.gradle.kts +++ b/tokens/plasma.sd.service.compose/build.gradle.kts @@ -35,7 +35,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") + testImplementation("integration-core:uikit-compose-fixtures") implementation(libs.sdds.uikit.compose) implementation(icons.sdds.icons) implementation(libs.base.androidX.compose.foundation) diff --git a/tokens/plasma.sd.service.compose/integration/build.gradle.kts b/tokens/plasma.sd.service.compose/integration/build.gradle.kts new file mode 100644 index 0000000000..1765a9770a --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/build.gradle.kts @@ -0,0 +1,21 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-compose") + id("convention.compose") +} + +android { + namespace = "com.sdds.plasma.sd.service.compose.integration" +} + +dependencies { + implementation(project(":plasma.sd.service.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation(libs.sdds.uikit.compose) + implementation(icons.sdds.icons) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/plasma.sd.service.compose/integration/gradle.properties b/tokens/plasma.sd.service.compose/integration/gradle.properties new file mode 100644 index 0000000000..fa93e99c6d --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/gradle.properties @@ -0,0 +1,3 @@ +integration.compose.config-path=../tokens/plasma.sd.service.compose/config-info-compose.json +integration.compose.package-name=com.sdds.plasma.sd.service.compose.integration +integration.compose.scheme=V2 \ No newline at end of file diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionEndVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..4b61ddcbe2 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordion.AccordionClearActionEnd +import com.sdds.plasma.sd.service.styles.accordion.H2 +import com.sdds.plasma.sd.service.styles.accordion.H3 +import com.sdds.plasma.sd.service.styles.accordion.H4 +import com.sdds.plasma.sd.service.styles.accordion.H5 +import com.sdds.plasma.sd.service.styles.accordion.L +import com.sdds.plasma.sd.service.styles.accordion.M +import com.sdds.plasma.sd.service.styles.accordion.S +import com.sdds.plasma.sd.service.styles.accordion.Xs + +internal object PlasmaB2cAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionStartVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..89d2ceb6a7 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordion.AccordionClearActionStart +import com.sdds.plasma.sd.service.styles.accordion.H2 +import com.sdds.plasma.sd.service.styles.accordion.H3 +import com.sdds.plasma.sd.service.styles.accordion.H4 +import com.sdds.plasma.sd.service.styles.accordion.H5 +import com.sdds.plasma.sd.service.styles.accordion.L +import com.sdds.plasma.sd.service.styles.accordion.M +import com.sdds.plasma.sd.service.styles.accordion.S +import com.sdds.plasma.sd.service.styles.accordion.Xs + +internal object PlasmaB2cAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..69f094ac5c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemClearActionEnd +import com.sdds.plasma.sd.service.styles.accordionitem.H2 +import com.sdds.plasma.sd.service.styles.accordionitem.H3 +import com.sdds.plasma.sd.service.styles.accordionitem.H4 +import com.sdds.plasma.sd.service.styles.accordionitem.H5 +import com.sdds.plasma.sd.service.styles.accordionitem.L +import com.sdds.plasma.sd.service.styles.accordionitem.M +import com.sdds.plasma.sd.service.styles.accordionitem.S +import com.sdds.plasma.sd.service.styles.accordionitem.Xs + +internal object PlasmaB2cAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..117890e493 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemClearActionStart +import com.sdds.plasma.sd.service.styles.accordionitem.H2 +import com.sdds.plasma.sd.service.styles.accordionitem.H3 +import com.sdds.plasma.sd.service.styles.accordionitem.H4 +import com.sdds.plasma.sd.service.styles.accordionitem.H5 +import com.sdds.plasma.sd.service.styles.accordionitem.L +import com.sdds.plasma.sd.service.styles.accordionitem.M +import com.sdds.plasma.sd.service.styles.accordionitem.S +import com.sdds.plasma.sd.service.styles.accordionitem.Xs + +internal object PlasmaB2cAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..9ced0b2abc --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemSolidActionEnd +import com.sdds.plasma.sd.service.styles.accordionitem.H2 +import com.sdds.plasma.sd.service.styles.accordionitem.H3 +import com.sdds.plasma.sd.service.styles.accordionitem.H4 +import com.sdds.plasma.sd.service.styles.accordionitem.H5 +import com.sdds.plasma.sd.service.styles.accordionitem.L +import com.sdds.plasma.sd.service.styles.accordionitem.M +import com.sdds.plasma.sd.service.styles.accordionitem.S +import com.sdds.plasma.sd.service.styles.accordionitem.Xs + +internal object PlasmaB2cAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..25468e97b5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionItemSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordionitem.AccordionItemSolidActionStart +import com.sdds.plasma.sd.service.styles.accordionitem.H2 +import com.sdds.plasma.sd.service.styles.accordionitem.H3 +import com.sdds.plasma.sd.service.styles.accordionitem.H4 +import com.sdds.plasma.sd.service.styles.accordionitem.H5 +import com.sdds.plasma.sd.service.styles.accordionitem.L +import com.sdds.plasma.sd.service.styles.accordionitem.M +import com.sdds.plasma.sd.service.styles.accordionitem.S +import com.sdds.plasma.sd.service.styles.accordionitem.Xs + +internal object PlasmaB2cAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..1aa47924d1 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordion.AccordionSolidActionEnd +import com.sdds.plasma.sd.service.styles.accordion.H2 +import com.sdds.plasma.sd.service.styles.accordion.H3 +import com.sdds.plasma.sd.service.styles.accordion.H4 +import com.sdds.plasma.sd.service.styles.accordion.H5 +import com.sdds.plasma.sd.service.styles.accordion.L +import com.sdds.plasma.sd.service.styles.accordion.M +import com.sdds.plasma.sd.service.styles.accordion.S +import com.sdds.plasma.sd.service.styles.accordion.Xs + +internal object PlasmaB2cAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..6f16b64a4c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAccordionSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.accordion.AccordionSolidActionStart +import com.sdds.plasma.sd.service.styles.accordion.H2 +import com.sdds.plasma.sd.service.styles.accordion.H3 +import com.sdds.plasma.sd.service.styles.accordion.H4 +import com.sdds.plasma.sd.service.styles.accordion.H5 +import com.sdds.plasma.sd.service.styles.accordion.L +import com.sdds.plasma.sd.service.styles.accordion.M +import com.sdds.plasma.sd.service.styles.accordion.S +import com.sdds.plasma.sd.service.styles.accordion.Xs + +internal object PlasmaB2cAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteNormalVariationsCompose.kt new file mode 100644 index 0000000000..c65e36ec7a --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AutocompleteStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.autocomplete.AutocompleteNormal +import com.sdds.plasma.sd.service.styles.autocomplete.L +import com.sdds.plasma.sd.service.styles.autocomplete.M +import com.sdds.plasma.sd.service.styles.autocomplete.S +import com.sdds.plasma.sd.service.styles.autocomplete.Xl +import com.sdds.plasma.sd.service.styles.autocomplete.Xs + +internal object PlasmaB2cAutocompleteNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { AutocompleteNormal.Xl.style() }, + "L" to ComposeStyleReference { AutocompleteNormal.L.style() }, + "M" to ComposeStyleReference { AutocompleteNormal.M.style() }, + "S" to ComposeStyleReference { AutocompleteNormal.S.style() }, + "Xs" to ComposeStyleReference { AutocompleteNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteTightVariationsCompose.kt new file mode 100644 index 0000000000..558a956dc2 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAutocompleteTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AutocompleteStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.autocomplete.AutocompleteTight +import com.sdds.plasma.sd.service.styles.autocomplete.L +import com.sdds.plasma.sd.service.styles.autocomplete.M +import com.sdds.plasma.sd.service.styles.autocomplete.S +import com.sdds.plasma.sd.service.styles.autocomplete.Xl +import com.sdds.plasma.sd.service.styles.autocomplete.Xs + +internal object PlasmaB2cAutocompleteTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { AutocompleteTight.Xl.style() }, + "L" to ComposeStyleReference { AutocompleteTight.L.style() }, + "M" to ComposeStyleReference { AutocompleteTight.M.style() }, + "S" to ComposeStyleReference { AutocompleteTight.S.style() }, + "Xs" to ComposeStyleReference { AutocompleteTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarGroupVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarGroupVariationsCompose.kt new file mode 100644 index 0000000000..8ecc370ef9 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.avatargroup.AvatarGroup +import com.sdds.plasma.sd.service.styles.avatargroup.S + +internal object PlasmaB2cAvatarGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { AvatarGroup.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarVariationsCompose.kt new file mode 100644 index 0000000000..e6ad807f78 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cAvatarVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.avatar.Avatar +import com.sdds.plasma.sd.service.styles.avatar.L +import com.sdds.plasma.sd.service.styles.avatar.M +import com.sdds.plasma.sd.service.styles.avatar.S +import com.sdds.plasma.sd.service.styles.avatar.Xxl + +internal object PlasmaB2cAvatarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl" to ComposeStyleReference { Avatar.Xxl.style() }, + "L" to ComposeStyleReference { Avatar.L.style() }, + "M" to ComposeStyleReference { Avatar.M.style() }, + "S" to ComposeStyleReference { Avatar.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..7454493e96 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.badge.Accent +import com.sdds.plasma.sd.service.styles.badge.BadgeClear +import com.sdds.plasma.sd.service.styles.badge.Dark +import com.sdds.plasma.sd.service.styles.badge.Default +import com.sdds.plasma.sd.service.styles.badge.L +import com.sdds.plasma.sd.service.styles.badge.Light +import com.sdds.plasma.sd.service.styles.badge.M +import com.sdds.plasma.sd.service.styles.badge.Negative +import com.sdds.plasma.sd.service.styles.badge.Pilled +import com.sdds.plasma.sd.service.styles.badge.Positive +import com.sdds.plasma.sd.service.styles.badge.S +import com.sdds.plasma.sd.service.styles.badge.Warning +import com.sdds.plasma.sd.service.styles.badge.Xs + +internal object PlasmaB2cBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..c29f489413 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.badge.Accent +import com.sdds.plasma.sd.service.styles.badge.BadgeSolid +import com.sdds.plasma.sd.service.styles.badge.Dark +import com.sdds.plasma.sd.service.styles.badge.Default +import com.sdds.plasma.sd.service.styles.badge.L +import com.sdds.plasma.sd.service.styles.badge.Light +import com.sdds.plasma.sd.service.styles.badge.M +import com.sdds.plasma.sd.service.styles.badge.Negative +import com.sdds.plasma.sd.service.styles.badge.Pilled +import com.sdds.plasma.sd.service.styles.badge.Positive +import com.sdds.plasma.sd.service.styles.badge.S +import com.sdds.plasma.sd.service.styles.badge.Warning +import com.sdds.plasma.sd.service.styles.badge.Xs + +internal object PlasmaB2cBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeTransparentVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..d216152482 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.badge.Accent +import com.sdds.plasma.sd.service.styles.badge.BadgeTransparent +import com.sdds.plasma.sd.service.styles.badge.Dark +import com.sdds.plasma.sd.service.styles.badge.Default +import com.sdds.plasma.sd.service.styles.badge.L +import com.sdds.plasma.sd.service.styles.badge.Light +import com.sdds.plasma.sd.service.styles.badge.M +import com.sdds.plasma.sd.service.styles.badge.Negative +import com.sdds.plasma.sd.service.styles.badge.Pilled +import com.sdds.plasma.sd.service.styles.badge.Positive +import com.sdds.plasma.sd.service.styles.badge.S +import com.sdds.plasma.sd.service.styles.badge.Warning +import com.sdds.plasma.sd.service.styles.badge.Xs + +internal object PlasmaB2cBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonGroupVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..fe1bb517f1 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonGroupVariationsCompose.kt @@ -0,0 +1,80 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.buttongroup.BasicButtonGroup +import com.sdds.plasma.sd.service.styles.buttongroup.Default +import com.sdds.plasma.sd.service.styles.buttongroup.Dense +import com.sdds.plasma.sd.service.styles.buttongroup.L +import com.sdds.plasma.sd.service.styles.buttongroup.M +import com.sdds.plasma.sd.service.styles.buttongroup.NoGap +import com.sdds.plasma.sd.service.styles.buttongroup.S +import com.sdds.plasma.sd.service.styles.buttongroup.Segmented +import com.sdds.plasma.sd.service.styles.buttongroup.Wide +import com.sdds.plasma.sd.service.styles.buttongroup.Xs +import com.sdds.plasma.sd.service.styles.buttongroup.Xxs + +internal object PlasmaB2cBasicButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxs" to ComposeStyleReference { BasicButtonGroup.Xxs.style() }, + "Xxs.Wide" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.style() }, + "Xxs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Default.style() }, + "Xxs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Segmented.style() }, + "Xxs.Dense" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.style() }, + "Xxs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Default.style() }, + "Xxs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Segmented.style() }, + "Xxs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.style() }, + "Xxs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Default.style() }, + "Xxs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, + "Xs" to ComposeStyleReference { BasicButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { BasicButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { BasicButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { BasicButtonGroup.S.Wide.Default.style() }, + "S.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { BasicButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { BasicButtonGroup.S.Dense.Default.style() }, + "S.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { BasicButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { BasicButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { BasicButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { BasicButtonGroup.M.Wide.Default.style() }, + "M.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { BasicButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { BasicButtonGroup.M.Dense.Default.style() }, + "M.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { BasicButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { BasicButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { BasicButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { BasicButtonGroup.L.Wide.Default.style() }, + "L.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { BasicButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { BasicButtonGroup.L.Dense.Default.style() }, + "L.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { BasicButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonVariationsCompose.kt new file mode 100644 index 0000000000..16239e75f6 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cBasicButtonVariationsCompose.kt @@ -0,0 +1,96 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.basicbutton.Accent +import com.sdds.plasma.sd.service.styles.basicbutton.BasicButton +import com.sdds.plasma.sd.service.styles.basicbutton.Black +import com.sdds.plasma.sd.service.styles.basicbutton.Clear +import com.sdds.plasma.sd.service.styles.basicbutton.Dark +import com.sdds.plasma.sd.service.styles.basicbutton.Default +import com.sdds.plasma.sd.service.styles.basicbutton.L +import com.sdds.plasma.sd.service.styles.basicbutton.M +import com.sdds.plasma.sd.service.styles.basicbutton.Negative +import com.sdds.plasma.sd.service.styles.basicbutton.Positive +import com.sdds.plasma.sd.service.styles.basicbutton.S +import com.sdds.plasma.sd.service.styles.basicbutton.Secondary +import com.sdds.plasma.sd.service.styles.basicbutton.Warning +import com.sdds.plasma.sd.service.styles.basicbutton.White +import com.sdds.plasma.sd.service.styles.basicbutton.Xl +import com.sdds.plasma.sd.service.styles.basicbutton.Xs +import com.sdds.plasma.sd.service.styles.basicbutton.Xxs + +internal object PlasmaB2cBasicButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { BasicButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { BasicButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { BasicButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { BasicButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { BasicButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { BasicButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { BasicButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { BasicButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { BasicButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { BasicButton.Xl.White.style() }, + "L.Default" to ComposeStyleReference { BasicButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { BasicButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { BasicButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { BasicButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { BasicButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { BasicButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { BasicButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { BasicButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { BasicButton.L.Black.style() }, + "L.White" to ComposeStyleReference { BasicButton.L.White.style() }, + "M.Default" to ComposeStyleReference { BasicButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { BasicButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { BasicButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { BasicButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { BasicButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { BasicButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { BasicButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { BasicButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { BasicButton.M.Black.style() }, + "M.White" to ComposeStyleReference { BasicButton.M.White.style() }, + "S.Default" to ComposeStyleReference { BasicButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { BasicButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { BasicButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { BasicButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { BasicButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { BasicButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { BasicButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { BasicButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { BasicButton.S.Black.style() }, + "S.White" to ComposeStyleReference { BasicButton.S.White.style() }, + "Xs.Default" to ComposeStyleReference { BasicButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { BasicButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { BasicButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { BasicButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { BasicButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { BasicButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { BasicButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { BasicButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { BasicButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { BasicButton.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { BasicButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { BasicButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { BasicButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { BasicButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { BasicButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { BasicButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { BasicButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { BasicButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { BasicButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { BasicButton.Xxs.White.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardClearVariationsCompose.kt new file mode 100644 index 0000000000..d5e1ba6c31 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardClearVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.card.CardClear +import com.sdds.plasma.sd.service.styles.card.L +import com.sdds.plasma.sd.service.styles.card.M +import com.sdds.plasma.sd.service.styles.card.S + +internal object PlasmaB2cCardClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardClear.L.style() }, + "M" to ComposeStyleReference { CardClear.M.style() }, + "S" to ComposeStyleReference { CardClear.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardSolidVariationsCompose.kt new file mode 100644 index 0000000000..e01e49fe23 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCardSolidVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.card.CardSolid +import com.sdds.plasma.sd.service.styles.card.L +import com.sdds.plasma.sd.service.styles.card.M +import com.sdds.plasma.sd.service.styles.card.S + +internal object PlasmaB2cCardSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardSolid.L.style() }, + "M" to ComposeStyleReference { CardSolid.M.style() }, + "S" to ComposeStyleReference { CardSolid.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCarouselVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCarouselVariationsCompose.kt new file mode 100644 index 0000000000..36dc91b4fe --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCarouselVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CarouselStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.carousel.ButtonsPlacementInner +import com.sdds.plasma.sd.service.styles.carousel.ButtonsPlacementOuter +import com.sdds.plasma.sd.service.styles.carousel.Carousel + +internal object PlasmaB2cCarouselVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonsPlacementInner" to ComposeStyleReference { Carousel.ButtonsPlacementInner.style() }, + "ButtonsPlacementOuter" to ComposeStyleReference { Carousel.ButtonsPlacementOuter.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCellVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCellVariationsCompose.kt new file mode 100644 index 0000000000..faf9087e4e --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCellVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CellStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.cell.Cell +import com.sdds.plasma.sd.service.styles.cell.L +import com.sdds.plasma.sd.service.styles.cell.M +import com.sdds.plasma.sd.service.styles.cell.S +import com.sdds.plasma.sd.service.styles.cell.Xs + +internal object PlasmaB2cCellVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Cell.L.style() }, + "M" to ComposeStyleReference { Cell.M.style() }, + "S" to ComposeStyleReference { Cell.S.style() }, + "Xs" to ComposeStyleReference { Cell.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxGroupVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..fc3ad4835d --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxGroupVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.checkboxgroup.CheckBoxGroup +import com.sdds.plasma.sd.service.styles.checkboxgroup.L +import com.sdds.plasma.sd.service.styles.checkboxgroup.M +import com.sdds.plasma.sd.service.styles.checkboxgroup.S + +internal object PlasmaB2cCheckBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CheckBoxGroup.L.style() }, + "M" to ComposeStyleReference { CheckBoxGroup.M.style() }, + "S" to ComposeStyleReference { CheckBoxGroup.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxVariationsCompose.kt new file mode 100644 index 0000000000..7001d81b90 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCheckBoxVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.checkbox.CheckBox +import com.sdds.plasma.sd.service.styles.checkbox.Default +import com.sdds.plasma.sd.service.styles.checkbox.L +import com.sdds.plasma.sd.service.styles.checkbox.M +import com.sdds.plasma.sd.service.styles.checkbox.Negative +import com.sdds.plasma.sd.service.styles.checkbox.S + +internal object PlasmaB2cCheckBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { CheckBox.L.Default.style() }, + "L.Negative" to ComposeStyleReference { CheckBox.L.Negative.style() }, + "M.Default" to ComposeStyleReference { CheckBox.M.Default.style() }, + "M.Negative" to ComposeStyleReference { CheckBox.M.Negative.style() }, + "S.Default" to ComposeStyleReference { CheckBox.S.Default.style() }, + "S.Negative" to ComposeStyleReference { CheckBox.S.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupDenseVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..17512d0ed4 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupDenseVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chipgroup.Accent +import com.sdds.plasma.sd.service.styles.chipgroup.ChipGroupDense +import com.sdds.plasma.sd.service.styles.chipgroup.Default +import com.sdds.plasma.sd.service.styles.chipgroup.L +import com.sdds.plasma.sd.service.styles.chipgroup.M +import com.sdds.plasma.sd.service.styles.chipgroup.Negative +import com.sdds.plasma.sd.service.styles.chipgroup.Pilled +import com.sdds.plasma.sd.service.styles.chipgroup.Positive +import com.sdds.plasma.sd.service.styles.chipgroup.S +import com.sdds.plasma.sd.service.styles.chipgroup.Secondary +import com.sdds.plasma.sd.service.styles.chipgroup.Warning +import com.sdds.plasma.sd.service.styles.chipgroup.Xs + +internal object PlasmaB2cChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupDense.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupDense.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupDense.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupDense.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupDense.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupDense.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupWideVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..1dc6bc1733 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipGroupWideVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chipgroup.Accent +import com.sdds.plasma.sd.service.styles.chipgroup.ChipGroupWide +import com.sdds.plasma.sd.service.styles.chipgroup.Default +import com.sdds.plasma.sd.service.styles.chipgroup.L +import com.sdds.plasma.sd.service.styles.chipgroup.M +import com.sdds.plasma.sd.service.styles.chipgroup.Negative +import com.sdds.plasma.sd.service.styles.chipgroup.Pilled +import com.sdds.plasma.sd.service.styles.chipgroup.Positive +import com.sdds.plasma.sd.service.styles.chipgroup.S +import com.sdds.plasma.sd.service.styles.chipgroup.Secondary +import com.sdds.plasma.sd.service.styles.chipgroup.Warning +import com.sdds.plasma.sd.service.styles.chipgroup.Xs + +internal object PlasmaB2cChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupWide.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupWide.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupWide.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupWide.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupWide.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupWide.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipVariationsCompose.kt new file mode 100644 index 0000000000..82888c267e --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cChipVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chip.Accent +import com.sdds.plasma.sd.service.styles.chip.Chip +import com.sdds.plasma.sd.service.styles.chip.Default +import com.sdds.plasma.sd.service.styles.chip.L +import com.sdds.plasma.sd.service.styles.chip.M +import com.sdds.plasma.sd.service.styles.chip.Negative +import com.sdds.plasma.sd.service.styles.chip.Pilled +import com.sdds.plasma.sd.service.styles.chip.Positive +import com.sdds.plasma.sd.service.styles.chip.S +import com.sdds.plasma.sd.service.styles.chip.Secondary +import com.sdds.plasma.sd.service.styles.chip.Warning +import com.sdds.plasma.sd.service.styles.chip.Xs + +internal object PlasmaB2cChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Chip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Chip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { Chip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { Chip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { Chip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { Chip.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { Chip.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Chip.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { Chip.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { Chip.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Chip.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { Chip.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { Chip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Chip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { Chip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { Chip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { Chip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { Chip.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { Chip.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Chip.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { Chip.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { Chip.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Chip.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { Chip.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { Chip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Chip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { Chip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { Chip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { Chip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { Chip.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { Chip.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Chip.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { Chip.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { Chip.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Chip.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { Chip.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { Chip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Chip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { Chip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { Chip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { Chip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { Chip.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { Chip.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Chip.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { Chip.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { Chip.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Chip.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { Chip.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCircularProgressBarVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCircularProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..53d8d70b81 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCircularProgressBarVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CircularProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.circularprogressbar.Accent +import com.sdds.plasma.sd.service.styles.circularprogressbar.CircularProgressBar +import com.sdds.plasma.sd.service.styles.circularprogressbar.Default +import com.sdds.plasma.sd.service.styles.circularprogressbar.Gradient +import com.sdds.plasma.sd.service.styles.circularprogressbar.Info +import com.sdds.plasma.sd.service.styles.circularprogressbar.L +import com.sdds.plasma.sd.service.styles.circularprogressbar.M +import com.sdds.plasma.sd.service.styles.circularprogressbar.Negative +import com.sdds.plasma.sd.service.styles.circularprogressbar.Positive +import com.sdds.plasma.sd.service.styles.circularprogressbar.S +import com.sdds.plasma.sd.service.styles.circularprogressbar.Secondary +import com.sdds.plasma.sd.service.styles.circularprogressbar.Warning +import com.sdds.plasma.sd.service.styles.circularprogressbar.Xl +import com.sdds.plasma.sd.service.styles.circularprogressbar.Xs +import com.sdds.plasma.sd.service.styles.circularprogressbar.Xxl +import com.sdds.plasma.sd.service.styles.circularprogressbar.Xxs + +internal object PlasmaB2cCircularProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { CircularProgressBar.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { CircularProgressBar.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { CircularProgressBar.Xxl.Accent.style() }, + "Xxl.Gradient" to ComposeStyleReference { CircularProgressBar.Xxl.Gradient.style() }, + "Xxl.Info" to ComposeStyleReference { CircularProgressBar.Xxl.Info.style() }, + "Xxl.Negative" to ComposeStyleReference { CircularProgressBar.Xxl.Negative.style() }, + "Xxl.Positive" to ComposeStyleReference { CircularProgressBar.Xxl.Positive.style() }, + "Xxl.Warning" to ComposeStyleReference { CircularProgressBar.Xxl.Warning.style() }, + "Xl.Default" to ComposeStyleReference { CircularProgressBar.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { CircularProgressBar.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { CircularProgressBar.Xl.Accent.style() }, + "Xl.Gradient" to ComposeStyleReference { CircularProgressBar.Xl.Gradient.style() }, + "Xl.Info" to ComposeStyleReference { CircularProgressBar.Xl.Info.style() }, + "Xl.Negative" to ComposeStyleReference { CircularProgressBar.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { CircularProgressBar.Xl.Positive.style() }, + "Xl.Warning" to ComposeStyleReference { CircularProgressBar.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { CircularProgressBar.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { CircularProgressBar.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { CircularProgressBar.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { CircularProgressBar.L.Gradient.style() }, + "L.Info" to ComposeStyleReference { CircularProgressBar.L.Info.style() }, + "L.Negative" to ComposeStyleReference { CircularProgressBar.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { CircularProgressBar.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { CircularProgressBar.L.Warning.style() }, + "M.Default" to ComposeStyleReference { CircularProgressBar.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { CircularProgressBar.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { CircularProgressBar.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { CircularProgressBar.M.Gradient.style() }, + "M.Info" to ComposeStyleReference { CircularProgressBar.M.Info.style() }, + "M.Negative" to ComposeStyleReference { CircularProgressBar.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { CircularProgressBar.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { CircularProgressBar.M.Warning.style() }, + "S.Default" to ComposeStyleReference { CircularProgressBar.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { CircularProgressBar.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { CircularProgressBar.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { CircularProgressBar.S.Gradient.style() }, + "S.Info" to ComposeStyleReference { CircularProgressBar.S.Info.style() }, + "S.Negative" to ComposeStyleReference { CircularProgressBar.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { CircularProgressBar.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { CircularProgressBar.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { CircularProgressBar.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { CircularProgressBar.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { CircularProgressBar.Xs.Accent.style() }, + "Xs.Gradient" to ComposeStyleReference { CircularProgressBar.Xs.Gradient.style() }, + "Xs.Info" to ComposeStyleReference { CircularProgressBar.Xs.Info.style() }, + "Xs.Negative" to ComposeStyleReference { CircularProgressBar.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { CircularProgressBar.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { CircularProgressBar.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { CircularProgressBar.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { CircularProgressBar.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { CircularProgressBar.Xxs.Accent.style() }, + "Xxs.Gradient" to ComposeStyleReference { CircularProgressBar.Xxs.Gradient.style() }, + "Xxs.Info" to ComposeStyleReference { CircularProgressBar.Xxs.Info.style() }, + "Xxs.Negative" to ComposeStyleReference { CircularProgressBar.Xxs.Negative.style() }, + "Xxs.Positive" to ComposeStyleReference { CircularProgressBar.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { CircularProgressBar.Xxs.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeFieldVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeFieldVariationsCompose.kt new file mode 100644 index 0000000000..7f6adbde02 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeFieldVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.codefield.CodeField +import com.sdds.plasma.sd.service.styles.codefield.L +import com.sdds.plasma.sd.service.styles.codefield.M +import com.sdds.plasma.sd.service.styles.codefield.Segmented + +internal object PlasmaB2cCodeFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CodeField.L.style() }, + "L.Segmented" to ComposeStyleReference { CodeField.L.Segmented.style() }, + "M" to ComposeStyleReference { CodeField.M.style() }, + "M.Segmented" to ComposeStyleReference { CodeField.M.Segmented.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeInputVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeInputVariationsCompose.kt new file mode 100644 index 0000000000..967de84fb6 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCodeInputVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeInputStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.codeinput.CodeInput +import com.sdds.plasma.sd.service.styles.codeinput.L +import com.sdds.plasma.sd.service.styles.codeinput.M +import com.sdds.plasma.sd.service.styles.codeinput.S + +internal object PlasmaB2cCodeInputVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { CodeInput.S.style() }, + "M" to ComposeStyleReference { CodeInput.M.style() }, + "L" to ComposeStyleReference { CodeInput.L.style() }, + ) +} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cComposeComponents.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cComposeComponents.kt similarity index 86% rename from playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cComposeComponents.kt rename to tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cComposeComponents.kt index 674c8d7e9e..5653ac9a16 100644 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/compose/PlasmaB2cComposeComponents.kt +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cComposeComponents.kt @@ -1,30 +1,36 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.compose +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object PlasmaB2cComposeComponents : ComponentsProviderCompose() { +object PlasmaB2cComposeComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ComposeComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to PlasmaB2cAvatarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AvatarGroup, mapOf( "AvatarGroup" to PlasmaB2cAvatarGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Badge, mapOf( "BadgeClear" to PlasmaB2cBadgeClearVariationsCompose, @@ -32,7 +38,7 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "BadgeTransparent" to PlasmaB2cBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconBadge, mapOf( "IconBadgeClear" to PlasmaB2cIconBadgeClearVariationsCompose, @@ -40,63 +46,63 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "IconBadgeTransparent" to PlasmaB2cIconBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to PlasmaB2cBasicButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to PlasmaB2cIconButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.LinkButton, mapOf( "LinkButton" to PlasmaB2cLinkButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BottomSheet, mapOf( "ModalBottomSheet" to PlasmaB2cModalBottomSheetVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Card, mapOf( "CardSolid" to PlasmaB2cCardSolidVariationsCompose, "CardClear" to PlasmaB2cCardClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Cell, mapOf( "Cell" to PlasmaB2cCellVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to PlasmaB2cCheckBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBoxGroup, mapOf( "CheckBoxGroup" to PlasmaB2cCheckBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to PlasmaB2cChipVariationsCompose, "EmbeddedChip" to PlasmaB2cEmbeddedChipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroupDense" to PlasmaB2cChipGroupDenseVariationsCompose, @@ -105,137 +111,137 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "EmbeddedChipGroupWide" to PlasmaB2cEmbeddedChipGroupWideVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to PlasmaB2cCounterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to PlasmaB2cDividerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to PlasmaB2cIndicatorVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Overlay, mapOf( "Overlay" to PlasmaB2cOverlayVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ProgressBar, mapOf( "ProgressBar" to PlasmaB2cProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to PlasmaB2cCircularProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to PlasmaB2cPopoverVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to PlasmaB2cRadioBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBoxGroup, mapOf( "RadioBoxGroup" to PlasmaB2cRadioBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to PlasmaB2cSegmentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to PlasmaB2cSegmentItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to PlasmaB2cSwitchVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to PlasmaB2cTextFieldVariationsCompose, "TextFieldClear" to PlasmaB2cTextFieldClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextArea, mapOf( "TextArea" to PlasmaB2cTextAreaVariationsCompose, "TextAreaClear" to PlasmaB2cTextAreaClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to PlasmaB2cTooltipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ToolBar, mapOf( "ToolBarHorizontal" to PlasmaB2cToolBarHorizontalVariationsCompose, "ToolBarVertical" to PlasmaB2cToolBarVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Toast, mapOf( "Toast" to PlasmaB2cToastVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to PlasmaB2cModalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to PlasmaB2cRectSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Notification, mapOf( "NotificationCompact" to PlasmaB2cNotificationCompactVariationsCompose, "NotificationLoose" to PlasmaB2cNotificationLooseVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NotificationContent, mapOf( "NotificationContent" to PlasmaB2cNotificationContentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.List, mapOf( "ListNormal" to PlasmaB2cListNormalVariationsCompose, @@ -244,7 +250,7 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "DropdownMenuListTight" to PlasmaB2cDropdownMenuListTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ListItem, mapOf( "ListItemNormal" to PlasmaB2cListItemNormalVariationsCompose, @@ -253,32 +259,32 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "DropdownMenuItemTight" to PlasmaB2cDropdownMenuItemTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to PlasmaB2cSpinnerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextSkeleton, mapOf( "TextSkeleton" to PlasmaB2cTextSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to PlasmaB2cLoaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenuTight" to PlasmaB2cDropdownMenuTightVariationsCompose, "DropdownMenuNormal" to PlasmaB2cDropdownMenuNormalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AccordionItem, mapOf( "AccordionItemSolidActionStart" to PlasmaB2cAccordionItemSolidActionStartVariationsCompose, @@ -287,7 +293,7 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "AccordionItemClearActionEnd" to PlasmaB2cAccordionItemClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Accordion, mapOf( "AccordionSolidActionStart" to PlasmaB2cAccordionSolidActionStartVariationsCompose, @@ -296,26 +302,26 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "AccordionClearActionEnd" to PlasmaB2cAccordionClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to PlasmaB2cScrollBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Image, mapOf( "Image" to PlasmaB2cImageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to PlasmaB2cBasicButtonGroupVariationsCompose, "IconButtonGroup" to PlasmaB2cIconButtonGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBar, mapOf( "TabBarHasLabelClear" to PlasmaB2cTabBarHasLabelClearVariationsCompose, @@ -328,26 +334,26 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "TabBarIslandSolid" to PlasmaB2cTabBarIslandSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBarItem, mapOf( "TabBarItemClear" to PlasmaB2cTabBarItemClearVariationsCompose, "TabBarItemSolid" to PlasmaB2cTabBarItemSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeField, mapOf( "CodeField" to PlasmaB2cCodeFieldVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeInput, mapOf( "CodeInput" to PlasmaB2cCodeInputVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Drawer, mapOf( "DrawerCloseNone" to PlasmaB2cDrawerCloseNoneVariationsCompose, @@ -355,40 +361,40 @@ object PlasmaB2cComposeComponents : ComponentsProviderCompose() { "DrawerCloseOuter" to PlasmaB2cDrawerCloseOuterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NavigationBar, mapOf( "NavigationBarMainPage" to PlasmaB2cNavigationBarMainPageVariationsCompose, "NavigationBarInternalPage" to PlasmaB2cNavigationBarInternalPageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Autocomplete, mapOf( "AutocompleteTight" to PlasmaB2cAutocompleteTightVariationsCompose, "AutocompleteNormal" to PlasmaB2cAutocompleteNormalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownEmptyState, mapOf( "DropdownEmptyState" to PlasmaB2cDropdownEmptyStateVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Carousel, mapOf( "Carousel" to PlasmaB2cCarouselVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.PaginationDots, mapOf( "PaginationDotsHorizontal" to PlasmaB2cPaginationDotsHorizontalVariationsCompose, "PaginationDotsVertical" to PlasmaB2cPaginationDotsVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.File, mapOf( "FileCircularProgress" to PlasmaB2cFileCircularProgressVariationsCompose, diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCounterVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCounterVariationsCompose.kt new file mode 100644 index 0000000000..342153c0bf --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cCounterVariationsCompose.kt @@ -0,0 +1,67 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CounterStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.counter.Accent +import com.sdds.plasma.sd.service.styles.counter.Black +import com.sdds.plasma.sd.service.styles.counter.Counter +import com.sdds.plasma.sd.service.styles.counter.Default +import com.sdds.plasma.sd.service.styles.counter.L +import com.sdds.plasma.sd.service.styles.counter.M +import com.sdds.plasma.sd.service.styles.counter.Negative +import com.sdds.plasma.sd.service.styles.counter.Positive +import com.sdds.plasma.sd.service.styles.counter.S +import com.sdds.plasma.sd.service.styles.counter.Warning +import com.sdds.plasma.sd.service.styles.counter.White +import com.sdds.plasma.sd.service.styles.counter.Xs +import com.sdds.plasma.sd.service.styles.counter.Xxs + +internal object PlasmaB2cCounterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Counter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Counter.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Counter.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Counter.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Counter.L.Negative.style() }, + "L.Black" to ComposeStyleReference { Counter.L.Black.style() }, + "L.White" to ComposeStyleReference { Counter.L.White.style() }, + "M.Default" to ComposeStyleReference { Counter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Counter.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Counter.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Counter.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Counter.M.Negative.style() }, + "M.Black" to ComposeStyleReference { Counter.M.Black.style() }, + "M.White" to ComposeStyleReference { Counter.M.White.style() }, + "S.Default" to ComposeStyleReference { Counter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Counter.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Counter.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Counter.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Counter.S.Negative.style() }, + "S.Black" to ComposeStyleReference { Counter.S.Black.style() }, + "S.White" to ComposeStyleReference { Counter.S.White.style() }, + "Xs.Default" to ComposeStyleReference { Counter.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Counter.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Counter.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { Counter.Xs.Warning.style() }, + "Xs.Negative" to ComposeStyleReference { Counter.Xs.Negative.style() }, + "Xs.Black" to ComposeStyleReference { Counter.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { Counter.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { Counter.Xxs.Default.style() }, + "Xxs.Accent" to ComposeStyleReference { Counter.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Counter.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { Counter.Xxs.Warning.style() }, + "Xxs.Negative" to ComposeStyleReference { Counter.Xxs.Negative.style() }, + "Xxs.Black" to ComposeStyleReference { Counter.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { Counter.Xxs.White.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDividerVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDividerVariationsCompose.kt new file mode 100644 index 0000000000..89c5b97927 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDividerVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DividerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.divider.Default +import com.sdds.plasma.sd.service.styles.divider.Divider + +internal object PlasmaB2cDividerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Divider.Default.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseInnerVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseInnerVariationsCompose.kt new file mode 100644 index 0000000000..5f57dd54e2 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseInnerVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseInner +import com.sdds.plasma.sd.service.styles.drawer.HasShadow +import com.sdds.plasma.sd.service.styles.drawer.M + +internal object PlasmaB2cDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseInner.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseInner.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseNoneVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseNoneVariationsCompose.kt new file mode 100644 index 0000000000..5f6c909e02 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseNoneVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseNone +import com.sdds.plasma.sd.service.styles.drawer.HasShadow +import com.sdds.plasma.sd.service.styles.drawer.M + +internal object PlasmaB2cDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseNone.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseNone.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseOuterVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseOuterVariationsCompose.kt new file mode 100644 index 0000000000..45320bdcb0 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDrawerCloseOuterVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.drawer.DrawerCloseOuter +import com.sdds.plasma.sd.service.styles.drawer.HasShadow +import com.sdds.plasma.sd.service.styles.drawer.M + +internal object PlasmaB2cDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseOuter.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseOuter.M.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownEmptyStateVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownEmptyStateVariationsCompose.kt new file mode 100644 index 0000000000..417968b19c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownEmptyStateVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownEmptyStateStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.dropdownemptystate.DropdownEmptyState +import com.sdds.plasma.sd.service.styles.dropdownemptystate.HasButton +import com.sdds.plasma.sd.service.styles.dropdownemptystate.L +import com.sdds.plasma.sd.service.styles.dropdownemptystate.M +import com.sdds.plasma.sd.service.styles.dropdownemptystate.S +import com.sdds.plasma.sd.service.styles.dropdownemptystate.Xl +import com.sdds.plasma.sd.service.styles.dropdownemptystate.Xs + +internal object PlasmaB2cDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { DropdownEmptyState.Xs.style() }, + "Xs.HasButton" to ComposeStyleReference { DropdownEmptyState.Xs.HasButton.style() }, + "S" to ComposeStyleReference { DropdownEmptyState.S.style() }, + "S.HasButton" to ComposeStyleReference { DropdownEmptyState.S.HasButton.style() }, + "M" to ComposeStyleReference { DropdownEmptyState.M.style() }, + "M.HasButton" to ComposeStyleReference { DropdownEmptyState.M.HasButton.style() }, + "L" to ComposeStyleReference { DropdownEmptyState.L.style() }, + "L.HasButton" to ComposeStyleReference { DropdownEmptyState.L.HasButton.style() }, + "Xl" to ComposeStyleReference { DropdownEmptyState.Xl.style() }, + "Xl.HasButton" to ComposeStyleReference { DropdownEmptyState.Xl.HasButton.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..cd6c3f9339 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemNormalVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.listitem.Default +import com.sdds.plasma.sd.service.styles.listitem.DropdownMenuItemNormal +import com.sdds.plasma.sd.service.styles.listitem.L +import com.sdds.plasma.sd.service.styles.listitem.M +import com.sdds.plasma.sd.service.styles.listitem.Negative +import com.sdds.plasma.sd.service.styles.listitem.Positive +import com.sdds.plasma.sd.service.styles.listitem.S +import com.sdds.plasma.sd.service.styles.listitem.Xl +import com.sdds.plasma.sd.service.styles.listitem.Xs + +internal object PlasmaB2cDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemNormal.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemNormal.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemNormal.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemNormal.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemNormal.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemNormal.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemNormal.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemNormal.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemNormal.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt new file mode 100644 index 0000000000..94c511a8df --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuItemTightVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.listitem.Default +import com.sdds.plasma.sd.service.styles.listitem.DropdownMenuItemTight +import com.sdds.plasma.sd.service.styles.listitem.L +import com.sdds.plasma.sd.service.styles.listitem.M +import com.sdds.plasma.sd.service.styles.listitem.Negative +import com.sdds.plasma.sd.service.styles.listitem.Positive +import com.sdds.plasma.sd.service.styles.listitem.S +import com.sdds.plasma.sd.service.styles.listitem.Xl +import com.sdds.plasma.sd.service.styles.listitem.Xs + +internal object PlasmaB2cDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemTight.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemTight.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemTight.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemTight.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemTight.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemTight.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemTight.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemTight.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemTight.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemTight.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemTight.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xs.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt new file mode 100644 index 0000000000..cda752c0c8 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.list.DropdownMenuListNormal +import com.sdds.plasma.sd.service.styles.list.L +import com.sdds.plasma.sd.service.styles.list.M +import com.sdds.plasma.sd.service.styles.list.S +import com.sdds.plasma.sd.service.styles.list.Xl +import com.sdds.plasma.sd.service.styles.list.Xs + +internal object PlasmaB2cDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListTightVariationsCompose.kt new file mode 100644 index 0000000000..6220f45077 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.list.DropdownMenuListTight +import com.sdds.plasma.sd.service.styles.list.L +import com.sdds.plasma.sd.service.styles.list.M +import com.sdds.plasma.sd.service.styles.list.S +import com.sdds.plasma.sd.service.styles.list.Xl +import com.sdds.plasma.sd.service.styles.list.Xs + +internal object PlasmaB2cDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuNormalVariationsCompose.kt new file mode 100644 index 0000000000..d742ae8522 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.dropdownmenu.DropdownMenuNormal +import com.sdds.plasma.sd.service.styles.dropdownmenu.L +import com.sdds.plasma.sd.service.styles.dropdownmenu.M +import com.sdds.plasma.sd.service.styles.dropdownmenu.S +import com.sdds.plasma.sd.service.styles.dropdownmenu.Xl +import com.sdds.plasma.sd.service.styles.dropdownmenu.Xs + +internal object PlasmaB2cDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuTightVariationsCompose.kt new file mode 100644 index 0000000000..fa52bc49a8 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cDropdownMenuTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.dropdownmenu.DropdownMenuTight +import com.sdds.plasma.sd.service.styles.dropdownmenu.L +import com.sdds.plasma.sd.service.styles.dropdownmenu.M +import com.sdds.plasma.sd.service.styles.dropdownmenu.S +import com.sdds.plasma.sd.service.styles.dropdownmenu.Xl +import com.sdds.plasma.sd.service.styles.dropdownmenu.Xs + +internal object PlasmaB2cDropdownMenuTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..92b8064f04 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chipgroup.Accent +import com.sdds.plasma.sd.service.styles.chipgroup.Default +import com.sdds.plasma.sd.service.styles.chipgroup.EmbeddedChipGroupDense +import com.sdds.plasma.sd.service.styles.chipgroup.L +import com.sdds.plasma.sd.service.styles.chipgroup.M +import com.sdds.plasma.sd.service.styles.chipgroup.Negative +import com.sdds.plasma.sd.service.styles.chipgroup.Positive +import com.sdds.plasma.sd.service.styles.chipgroup.S +import com.sdds.plasma.sd.service.styles.chipgroup.Secondary +import com.sdds.plasma.sd.service.styles.chipgroup.Warning +import com.sdds.plasma.sd.service.styles.chipgroup.Xl +import com.sdds.plasma.sd.service.styles.chipgroup.Xs + +internal object PlasmaB2cEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..eeeaea0817 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipGroupWideVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chipgroup.Accent +import com.sdds.plasma.sd.service.styles.chipgroup.Default +import com.sdds.plasma.sd.service.styles.chipgroup.EmbeddedChipGroupWide +import com.sdds.plasma.sd.service.styles.chipgroup.L +import com.sdds.plasma.sd.service.styles.chipgroup.M +import com.sdds.plasma.sd.service.styles.chipgroup.Negative +import com.sdds.plasma.sd.service.styles.chipgroup.Positive +import com.sdds.plasma.sd.service.styles.chipgroup.S +import com.sdds.plasma.sd.service.styles.chipgroup.Secondary +import com.sdds.plasma.sd.service.styles.chipgroup.Warning +import com.sdds.plasma.sd.service.styles.chipgroup.Xl +import com.sdds.plasma.sd.service.styles.chipgroup.Xs + +internal object PlasmaB2cEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipVariationsCompose.kt new file mode 100644 index 0000000000..982b911860 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cEmbeddedChipVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.chip.Accent +import com.sdds.plasma.sd.service.styles.chip.Default +import com.sdds.plasma.sd.service.styles.chip.EmbeddedChip +import com.sdds.plasma.sd.service.styles.chip.L +import com.sdds.plasma.sd.service.styles.chip.M +import com.sdds.plasma.sd.service.styles.chip.Negative +import com.sdds.plasma.sd.service.styles.chip.Positive +import com.sdds.plasma.sd.service.styles.chip.S +import com.sdds.plasma.sd.service.styles.chip.Secondary +import com.sdds.plasma.sd.service.styles.chip.Warning +import com.sdds.plasma.sd.service.styles.chip.Xl +import com.sdds.plasma.sd.service.styles.chip.Xs + +internal object PlasmaB2cEmbeddedChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChip.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChip.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChip.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChip.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChip.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChip.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChip.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChip.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChip.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChip.Xs.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileCircularProgressVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileCircularProgressVariationsCompose.kt new file mode 100644 index 0000000000..fc25dcfcab --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileCircularProgressVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.FileStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.file.Default +import com.sdds.plasma.sd.service.styles.file.FileCircularProgress +import com.sdds.plasma.sd.service.styles.file.L +import com.sdds.plasma.sd.service.styles.file.M +import com.sdds.plasma.sd.service.styles.file.Negative +import com.sdds.plasma.sd.service.styles.file.S +import com.sdds.plasma.sd.service.styles.file.Xs + +internal object PlasmaB2cFileCircularProgressVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { FileCircularProgress.Xs.Default.style() }, + "Xs.Negative" to ComposeStyleReference { FileCircularProgress.Xs.Negative.style() }, + "S.Default" to ComposeStyleReference { FileCircularProgress.S.Default.style() }, + "S.Negative" to ComposeStyleReference { FileCircularProgress.S.Negative.style() }, + "M.Default" to ComposeStyleReference { FileCircularProgress.M.Default.style() }, + "M.Negative" to ComposeStyleReference { FileCircularProgress.M.Negative.style() }, + "L.Default" to ComposeStyleReference { FileCircularProgress.L.Default.style() }, + "L.Negative" to ComposeStyleReference { FileCircularProgress.L.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileLinearProgressVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileLinearProgressVariationsCompose.kt new file mode 100644 index 0000000000..b9189bad85 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cFileLinearProgressVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.FileStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.file.Default +import com.sdds.plasma.sd.service.styles.file.FileLinearProgress +import com.sdds.plasma.sd.service.styles.file.L +import com.sdds.plasma.sd.service.styles.file.M +import com.sdds.plasma.sd.service.styles.file.Negative +import com.sdds.plasma.sd.service.styles.file.S +import com.sdds.plasma.sd.service.styles.file.Xs + +internal object PlasmaB2cFileLinearProgressVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { FileLinearProgress.Xs.Default.style() }, + "Xs.Negative" to ComposeStyleReference { FileLinearProgress.Xs.Negative.style() }, + "S.Default" to ComposeStyleReference { FileLinearProgress.S.Default.style() }, + "S.Negative" to ComposeStyleReference { FileLinearProgress.S.Negative.style() }, + "M.Default" to ComposeStyleReference { FileLinearProgress.M.Default.style() }, + "M.Negative" to ComposeStyleReference { FileLinearProgress.M.Negative.style() }, + "L.Default" to ComposeStyleReference { FileLinearProgress.L.Default.style() }, + "L.Negative" to ComposeStyleReference { FileLinearProgress.L.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..8029a8f52c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.iconbadge.Accent +import com.sdds.plasma.sd.service.styles.iconbadge.Dark +import com.sdds.plasma.sd.service.styles.iconbadge.Default +import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeClear +import com.sdds.plasma.sd.service.styles.iconbadge.L +import com.sdds.plasma.sd.service.styles.iconbadge.Light +import com.sdds.plasma.sd.service.styles.iconbadge.M +import com.sdds.plasma.sd.service.styles.iconbadge.Negative +import com.sdds.plasma.sd.service.styles.iconbadge.Pilled +import com.sdds.plasma.sd.service.styles.iconbadge.Positive +import com.sdds.plasma.sd.service.styles.iconbadge.S +import com.sdds.plasma.sd.service.styles.iconbadge.Warning +import com.sdds.plasma.sd.service.styles.iconbadge.Xs + +internal object PlasmaB2cIconBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..55d67bd97f --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.iconbadge.Accent +import com.sdds.plasma.sd.service.styles.iconbadge.Dark +import com.sdds.plasma.sd.service.styles.iconbadge.Default +import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeSolid +import com.sdds.plasma.sd.service.styles.iconbadge.L +import com.sdds.plasma.sd.service.styles.iconbadge.Light +import com.sdds.plasma.sd.service.styles.iconbadge.M +import com.sdds.plasma.sd.service.styles.iconbadge.Negative +import com.sdds.plasma.sd.service.styles.iconbadge.Pilled +import com.sdds.plasma.sd.service.styles.iconbadge.Positive +import com.sdds.plasma.sd.service.styles.iconbadge.S +import com.sdds.plasma.sd.service.styles.iconbadge.Warning +import com.sdds.plasma.sd.service.styles.iconbadge.Xs + +internal object PlasmaB2cIconBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeTransparentVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..19f535fa24 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.iconbadge.Accent +import com.sdds.plasma.sd.service.styles.iconbadge.Dark +import com.sdds.plasma.sd.service.styles.iconbadge.Default +import com.sdds.plasma.sd.service.styles.iconbadge.IconBadgeTransparent +import com.sdds.plasma.sd.service.styles.iconbadge.L +import com.sdds.plasma.sd.service.styles.iconbadge.Light +import com.sdds.plasma.sd.service.styles.iconbadge.M +import com.sdds.plasma.sd.service.styles.iconbadge.Negative +import com.sdds.plasma.sd.service.styles.iconbadge.Pilled +import com.sdds.plasma.sd.service.styles.iconbadge.Positive +import com.sdds.plasma.sd.service.styles.iconbadge.S +import com.sdds.plasma.sd.service.styles.iconbadge.Warning +import com.sdds.plasma.sd.service.styles.iconbadge.Xs + +internal object PlasmaB2cIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonGroupVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..66a90388e8 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonGroupVariationsCompose.kt @@ -0,0 +1,82 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.buttongroup.Default +import com.sdds.plasma.sd.service.styles.buttongroup.Dense +import com.sdds.plasma.sd.service.styles.buttongroup.IconButtonGroup +import com.sdds.plasma.sd.service.styles.buttongroup.L +import com.sdds.plasma.sd.service.styles.buttongroup.M +import com.sdds.plasma.sd.service.styles.buttongroup.NoGap +import com.sdds.plasma.sd.service.styles.buttongroup.Pilled +import com.sdds.plasma.sd.service.styles.buttongroup.S +import com.sdds.plasma.sd.service.styles.buttongroup.Segmented +import com.sdds.plasma.sd.service.styles.buttongroup.Wide +import com.sdds.plasma.sd.service.styles.buttongroup.Xs + +internal object PlasmaB2cIconButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { IconButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { IconButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Pilled.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { IconButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Pilled.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Pilled.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { IconButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { IconButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { IconButtonGroup.S.Wide.Default.style() }, + "S.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.S.Wide.Pilled.style() }, + "S.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { IconButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { IconButtonGroup.S.Dense.Default.style() }, + "S.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.S.Dense.Pilled.style() }, + "S.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { IconButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { IconButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.S.NoGap.Pilled.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { IconButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { IconButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { IconButtonGroup.M.Wide.Default.style() }, + "M.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.M.Wide.Pilled.style() }, + "M.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { IconButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { IconButtonGroup.M.Dense.Default.style() }, + "M.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.M.Dense.Pilled.style() }, + "M.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { IconButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { IconButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.M.NoGap.Pilled.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { IconButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { IconButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { IconButtonGroup.L.Wide.Default.style() }, + "L.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.L.Wide.Pilled.style() }, + "L.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { IconButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { IconButtonGroup.L.Dense.Default.style() }, + "L.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.L.Dense.Pilled.style() }, + "L.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { IconButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { IconButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.L.NoGap.Pilled.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonVariationsCompose.kt new file mode 100644 index 0000000000..c977ab6f7c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIconButtonVariationsCompose.kt @@ -0,0 +1,157 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.iconbutton.Accent +import com.sdds.plasma.sd.service.styles.iconbutton.Black +import com.sdds.plasma.sd.service.styles.iconbutton.Clear +import com.sdds.plasma.sd.service.styles.iconbutton.Dark +import com.sdds.plasma.sd.service.styles.iconbutton.Default +import com.sdds.plasma.sd.service.styles.iconbutton.IconButton +import com.sdds.plasma.sd.service.styles.iconbutton.L +import com.sdds.plasma.sd.service.styles.iconbutton.M +import com.sdds.plasma.sd.service.styles.iconbutton.Negative +import com.sdds.plasma.sd.service.styles.iconbutton.Pilled +import com.sdds.plasma.sd.service.styles.iconbutton.Positive +import com.sdds.plasma.sd.service.styles.iconbutton.S +import com.sdds.plasma.sd.service.styles.iconbutton.Secondary +import com.sdds.plasma.sd.service.styles.iconbutton.Warning +import com.sdds.plasma.sd.service.styles.iconbutton.White +import com.sdds.plasma.sd.service.styles.iconbutton.Xl +import com.sdds.plasma.sd.service.styles.iconbutton.Xs +import com.sdds.plasma.sd.service.styles.iconbutton.Xxs + +internal object PlasmaB2cIconButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { IconButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { IconButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { IconButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { IconButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { IconButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { IconButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { IconButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { IconButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { IconButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { IconButton.Xl.White.style() }, + "Xl.Pilled.Default" to ComposeStyleReference { IconButton.Xl.Pilled.Default.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { IconButton.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { IconButton.Xl.Pilled.Accent.style() }, + "Xl.Pilled.Positive" to ComposeStyleReference { IconButton.Xl.Pilled.Positive.style() }, + "Xl.Pilled.Negative" to ComposeStyleReference { IconButton.Xl.Pilled.Negative.style() }, + "Xl.Pilled.Warning" to ComposeStyleReference { IconButton.Xl.Pilled.Warning.style() }, + "Xl.Pilled.Clear" to ComposeStyleReference { IconButton.Xl.Pilled.Clear.style() }, + "Xl.Pilled.Dark" to ComposeStyleReference { IconButton.Xl.Pilled.Dark.style() }, + "Xl.Pilled.Black" to ComposeStyleReference { IconButton.Xl.Pilled.Black.style() }, + "Xl.Pilled.White" to ComposeStyleReference { IconButton.Xl.Pilled.White.style() }, + "L.Default" to ComposeStyleReference { IconButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { IconButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { IconButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { IconButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { IconButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { IconButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { IconButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { IconButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { IconButton.L.Black.style() }, + "L.White" to ComposeStyleReference { IconButton.L.White.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconButton.L.Pilled.Default.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { IconButton.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconButton.L.Pilled.Accent.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconButton.L.Pilled.Positive.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconButton.L.Pilled.Negative.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconButton.L.Pilled.Warning.style() }, + "L.Pilled.Clear" to ComposeStyleReference { IconButton.L.Pilled.Clear.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconButton.L.Pilled.Dark.style() }, + "L.Pilled.Black" to ComposeStyleReference { IconButton.L.Pilled.Black.style() }, + "L.Pilled.White" to ComposeStyleReference { IconButton.L.Pilled.White.style() }, + "M.Default" to ComposeStyleReference { IconButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { IconButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { IconButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { IconButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { IconButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { IconButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { IconButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { IconButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { IconButton.M.Black.style() }, + "M.White" to ComposeStyleReference { IconButton.M.White.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconButton.M.Pilled.Default.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { IconButton.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconButton.M.Pilled.Accent.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconButton.M.Pilled.Positive.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconButton.M.Pilled.Negative.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconButton.M.Pilled.Warning.style() }, + "M.Pilled.Clear" to ComposeStyleReference { IconButton.M.Pilled.Clear.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconButton.M.Pilled.Dark.style() }, + "M.Pilled.Black" to ComposeStyleReference { IconButton.M.Pilled.Black.style() }, + "M.Pilled.White" to ComposeStyleReference { IconButton.M.Pilled.White.style() }, + "S.Default" to ComposeStyleReference { IconButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { IconButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { IconButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { IconButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { IconButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { IconButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { IconButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { IconButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { IconButton.S.Black.style() }, + "S.White" to ComposeStyleReference { IconButton.S.White.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconButton.S.Pilled.Default.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { IconButton.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconButton.S.Pilled.Accent.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconButton.S.Pilled.Positive.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconButton.S.Pilled.Negative.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconButton.S.Pilled.Warning.style() }, + "S.Pilled.Clear" to ComposeStyleReference { IconButton.S.Pilled.Clear.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconButton.S.Pilled.Dark.style() }, + "S.Pilled.Black" to ComposeStyleReference { IconButton.S.Pilled.Black.style() }, + "S.Pilled.White" to ComposeStyleReference { IconButton.S.Pilled.White.style() }, + "Xs.Default" to ComposeStyleReference { IconButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { IconButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { IconButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { IconButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { IconButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { IconButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { IconButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { IconButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { IconButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { IconButton.Xs.White.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconButton.Xs.Pilled.Default.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconButton.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconButton.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconButton.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconButton.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Clear" to ComposeStyleReference { IconButton.Xs.Pilled.Clear.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconButton.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Black" to ComposeStyleReference { IconButton.Xs.Pilled.Black.style() }, + "Xs.Pilled.White" to ComposeStyleReference { IconButton.Xs.Pilled.White.style() }, + "Xxs.Default" to ComposeStyleReference { IconButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { IconButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { IconButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { IconButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { IconButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { IconButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { IconButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { IconButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { IconButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { IconButton.Xxs.White.style() }, + "Xxs.Pilled.Default" to ComposeStyleReference { IconButton.Xxs.Pilled.Default.style() }, + "Xxs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xxs.Pilled.Secondary.style() }, + "Xxs.Pilled.Accent" to ComposeStyleReference { IconButton.Xxs.Pilled.Accent.style() }, + "Xxs.Pilled.Positive" to ComposeStyleReference { IconButton.Xxs.Pilled.Positive.style() }, + "Xxs.Pilled.Negative" to ComposeStyleReference { IconButton.Xxs.Pilled.Negative.style() }, + "Xxs.Pilled.Warning" to ComposeStyleReference { IconButton.Xxs.Pilled.Warning.style() }, + "Xxs.Pilled.Clear" to ComposeStyleReference { IconButton.Xxs.Pilled.Clear.style() }, + "Xxs.Pilled.Dark" to ComposeStyleReference { IconButton.Xxs.Pilled.Dark.style() }, + "Xxs.Pilled.Black" to ComposeStyleReference { IconButton.Xxs.Pilled.Black.style() }, + "Xxs.Pilled.White" to ComposeStyleReference { IconButton.Xxs.Pilled.White.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cImageVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cImageVariationsCompose.kt new file mode 100644 index 0000000000..4f10af100b --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cImageVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ImageStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.image.Image +import com.sdds.plasma.sd.service.styles.image.Ratio16x9 +import com.sdds.plasma.sd.service.styles.image.Ratio1x1 +import com.sdds.plasma.sd.service.styles.image.Ratio1x2 +import com.sdds.plasma.sd.service.styles.image.Ratio2x1 +import com.sdds.plasma.sd.service.styles.image.Ratio3x4 +import com.sdds.plasma.sd.service.styles.image.Ratio4x3 +import com.sdds.plasma.sd.service.styles.image.Ratio9x16 + +internal object PlasmaB2cImageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Ratio12" to ComposeStyleReference { Image.Ratio1x2.style() }, + "Ratio916" to ComposeStyleReference { Image.Ratio9x16.style() }, + "Ratio34" to ComposeStyleReference { Image.Ratio3x4.style() }, + "Ratio21" to ComposeStyleReference { Image.Ratio2x1.style() }, + "Ratio169" to ComposeStyleReference { Image.Ratio16x9.style() }, + "Ratio43" to ComposeStyleReference { Image.Ratio4x3.style() }, + "Ratio11" to ComposeStyleReference { Image.Ratio1x1.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIndicatorVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIndicatorVariationsCompose.kt new file mode 100644 index 0000000000..f92725b68e --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cIndicatorVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.IndicatorStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.indicator.Accent +import com.sdds.plasma.sd.service.styles.indicator.Black +import com.sdds.plasma.sd.service.styles.indicator.Dark +import com.sdds.plasma.sd.service.styles.indicator.Default +import com.sdds.plasma.sd.service.styles.indicator.Inactive +import com.sdds.plasma.sd.service.styles.indicator.Indicator +import com.sdds.plasma.sd.service.styles.indicator.L +import com.sdds.plasma.sd.service.styles.indicator.M +import com.sdds.plasma.sd.service.styles.indicator.Negative +import com.sdds.plasma.sd.service.styles.indicator.Positive +import com.sdds.plasma.sd.service.styles.indicator.S +import com.sdds.plasma.sd.service.styles.indicator.Warning +import com.sdds.plasma.sd.service.styles.indicator.White + +internal object PlasmaB2cIndicatorVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Indicator.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Indicator.L.Accent.style() }, + "L.Inactive" to ComposeStyleReference { Indicator.L.Inactive.style() }, + "L.Positive" to ComposeStyleReference { Indicator.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Indicator.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Indicator.L.Negative.style() }, + "L.Dark" to ComposeStyleReference { Indicator.L.Dark.style() }, + "L.Black" to ComposeStyleReference { Indicator.L.Black.style() }, + "L.White" to ComposeStyleReference { Indicator.L.White.style() }, + "M.Default" to ComposeStyleReference { Indicator.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Indicator.M.Accent.style() }, + "M.Inactive" to ComposeStyleReference { Indicator.M.Inactive.style() }, + "M.Positive" to ComposeStyleReference { Indicator.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Indicator.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Indicator.M.Negative.style() }, + "M.Dark" to ComposeStyleReference { Indicator.M.Dark.style() }, + "M.Black" to ComposeStyleReference { Indicator.M.Black.style() }, + "M.White" to ComposeStyleReference { Indicator.M.White.style() }, + "S.Default" to ComposeStyleReference { Indicator.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Indicator.S.Accent.style() }, + "S.Inactive" to ComposeStyleReference { Indicator.S.Inactive.style() }, + "S.Positive" to ComposeStyleReference { Indicator.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Indicator.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Indicator.S.Negative.style() }, + "S.Dark" to ComposeStyleReference { Indicator.S.Dark.style() }, + "S.Black" to ComposeStyleReference { Indicator.S.Black.style() }, + "S.White" to ComposeStyleReference { Indicator.S.White.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLinkButtonVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLinkButtonVariationsCompose.kt new file mode 100644 index 0000000000..caae6e0a6e --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLinkButtonVariationsCompose.kt @@ -0,0 +1,68 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.linkbutton.Accent +import com.sdds.plasma.sd.service.styles.linkbutton.Default +import com.sdds.plasma.sd.service.styles.linkbutton.L +import com.sdds.plasma.sd.service.styles.linkbutton.LinkButton +import com.sdds.plasma.sd.service.styles.linkbutton.M +import com.sdds.plasma.sd.service.styles.linkbutton.Negative +import com.sdds.plasma.sd.service.styles.linkbutton.Positive +import com.sdds.plasma.sd.service.styles.linkbutton.S +import com.sdds.plasma.sd.service.styles.linkbutton.Secondary +import com.sdds.plasma.sd.service.styles.linkbutton.Warning +import com.sdds.plasma.sd.service.styles.linkbutton.Xl +import com.sdds.plasma.sd.service.styles.linkbutton.Xs +import com.sdds.plasma.sd.service.styles.linkbutton.Xxs + +internal object PlasmaB2cLinkButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { LinkButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { LinkButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { LinkButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { LinkButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { LinkButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { LinkButton.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { LinkButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { LinkButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { LinkButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { LinkButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { LinkButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { LinkButton.L.Warning.style() }, + "M.Default" to ComposeStyleReference { LinkButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { LinkButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { LinkButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { LinkButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { LinkButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { LinkButton.M.Warning.style() }, + "S.Default" to ComposeStyleReference { LinkButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { LinkButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { LinkButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { LinkButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { LinkButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { LinkButton.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { LinkButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { LinkButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { LinkButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { LinkButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { LinkButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { LinkButton.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { LinkButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { LinkButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { LinkButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { LinkButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { LinkButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { LinkButton.Xxs.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..7116e4accb --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.listitem.L +import com.sdds.plasma.sd.service.styles.listitem.ListItemNormal +import com.sdds.plasma.sd.service.styles.listitem.M +import com.sdds.plasma.sd.service.styles.listitem.S +import com.sdds.plasma.sd.service.styles.listitem.Xl +import com.sdds.plasma.sd.service.styles.listitem.Xs + +internal object PlasmaB2cListItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemNormal.Xl.style() }, + "L" to ComposeStyleReference { ListItemNormal.L.style() }, + "M" to ComposeStyleReference { ListItemNormal.M.style() }, + "S" to ComposeStyleReference { ListItemNormal.S.style() }, + "Xs" to ComposeStyleReference { ListItemNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemTightVariationsCompose.kt new file mode 100644 index 0000000000..4fe5a0f924 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListItemTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.listitem.L +import com.sdds.plasma.sd.service.styles.listitem.ListItemTight +import com.sdds.plasma.sd.service.styles.listitem.M +import com.sdds.plasma.sd.service.styles.listitem.S +import com.sdds.plasma.sd.service.styles.listitem.Xl +import com.sdds.plasma.sd.service.styles.listitem.Xs + +internal object PlasmaB2cListItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemTight.Xl.style() }, + "L" to ComposeStyleReference { ListItemTight.L.style() }, + "M" to ComposeStyleReference { ListItemTight.M.style() }, + "S" to ComposeStyleReference { ListItemTight.S.style() }, + "Xs" to ComposeStyleReference { ListItemTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListNormalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListNormalVariationsCompose.kt new file mode 100644 index 0000000000..4e5582b2d9 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.list.L +import com.sdds.plasma.sd.service.styles.list.ListNormal +import com.sdds.plasma.sd.service.styles.list.M +import com.sdds.plasma.sd.service.styles.list.S +import com.sdds.plasma.sd.service.styles.list.Xl +import com.sdds.plasma.sd.service.styles.list.Xs + +internal object PlasmaB2cListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListNormal.Xl.style() }, + "L" to ComposeStyleReference { ListNormal.L.style() }, + "M" to ComposeStyleReference { ListNormal.M.style() }, + "S" to ComposeStyleReference { ListNormal.S.style() }, + "Xs" to ComposeStyleReference { ListNormal.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListTightVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListTightVariationsCompose.kt new file mode 100644 index 0000000000..b058202b2f --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.list.L +import com.sdds.plasma.sd.service.styles.list.ListTight +import com.sdds.plasma.sd.service.styles.list.M +import com.sdds.plasma.sd.service.styles.list.S +import com.sdds.plasma.sd.service.styles.list.Xl +import com.sdds.plasma.sd.service.styles.list.Xs + +internal object PlasmaB2cListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListTight.Xl.style() }, + "L" to ComposeStyleReference { ListTight.L.style() }, + "M" to ComposeStyleReference { ListTight.M.style() }, + "S" to ComposeStyleReference { ListTight.S.style() }, + "Xs" to ComposeStyleReference { ListTight.Xs.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLoaderVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLoaderVariationsCompose.kt new file mode 100644 index 0000000000..e9e64e224d --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cLoaderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.LoaderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.loader.Default +import com.sdds.plasma.sd.service.styles.loader.Loader + +internal object PlasmaB2cLoaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Loader.Default.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalBottomSheetVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalBottomSheetVariationsCompose.kt new file mode 100644 index 0000000000..9a6dbd1ca5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalBottomSheetVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalBottomSheetStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.bottomsheet.Default +import com.sdds.plasma.sd.service.styles.bottomsheet.ModalBottomSheet + +internal object PlasmaB2cModalBottomSheetVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ModalBottomSheet.Default.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalVariationsCompose.kt new file mode 100644 index 0000000000..53ed13be50 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cModalVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.modal.Default +import com.sdds.plasma.sd.service.styles.modal.Modal + +internal object PlasmaB2cModalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Modal.Default.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt new file mode 100644 index 0000000000..63fcdc574f --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarInternalPageVariationsCompose.kt @@ -0,0 +1,32 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.navigationbar.HasBackground +import com.sdds.plasma.sd.service.styles.navigationbar.NavigationBarInternalPage +import com.sdds.plasma.sd.service.styles.navigationbar.NoBackground +import com.sdds.plasma.sd.service.styles.navigationbar.Rounded +import com.sdds.plasma.sd.service.styles.navigationbar.Shadow + +internal object PlasmaB2cNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "NoBackground" to ComposeStyleReference { NavigationBarInternalPage.NoBackground.style() }, + "NoBackground.Rounded" to ComposeStyleReference { NavigationBarInternalPage.NoBackground.Rounded.style() }, + "HasBackground" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.style() }, + "HasBackground.Rounded" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.Rounded.style() }, + "HasBackground.Shadow" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.Shadow.style() }, + "HasBackground.Shadow.Rounded" to ComposeStyleReference { + NavigationBarInternalPage.HasBackground.Shadow.Rounded.style() + }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarMainPageVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarMainPageVariationsCompose.kt new file mode 100644 index 0000000000..c2dd6fbb20 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNavigationBarMainPageVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.navigationbar.HasBackground +import com.sdds.plasma.sd.service.styles.navigationbar.NavigationBarMainPage +import com.sdds.plasma.sd.service.styles.navigationbar.NoBackground +import com.sdds.plasma.sd.service.styles.navigationbar.Rounded +import com.sdds.plasma.sd.service.styles.navigationbar.Shadow + +internal object PlasmaB2cNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "NoBackground" to ComposeStyleReference { NavigationBarMainPage.NoBackground.style() }, + "NoBackground.Rounded" to ComposeStyleReference { NavigationBarMainPage.NoBackground.Rounded.style() }, + "HasBackground" to ComposeStyleReference { NavigationBarMainPage.HasBackground.style() }, + "HasBackground.Rounded" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Rounded.style() }, + "HasBackground.Shadow" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Shadow.style() }, + "HasBackground.Shadow.Rounded" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Shadow.Rounded.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationCompactVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationCompactVariationsCompose.kt new file mode 100644 index 0000000000..2643bf36e7 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationCompactVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.notification.L +import com.sdds.plasma.sd.service.styles.notification.M +import com.sdds.plasma.sd.service.styles.notification.NotificationCompact +import com.sdds.plasma.sd.service.styles.notification.S + +internal object PlasmaB2cNotificationCompactVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationCompact.L.style() }, + "M" to ComposeStyleReference { NotificationCompact.M.style() }, + "S" to ComposeStyleReference { NotificationCompact.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationContentVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationContentVariationsCompose.kt new file mode 100644 index 0000000000..6bfdf66c45 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationContentVariationsCompose.kt @@ -0,0 +1,89 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationContentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.notificationcontent.ButtonStretch +import com.sdds.plasma.sd.service.styles.notificationcontent.Default +import com.sdds.plasma.sd.service.styles.notificationcontent.IconStart +import com.sdds.plasma.sd.service.styles.notificationcontent.IconTop +import com.sdds.plasma.sd.service.styles.notificationcontent.Info +import com.sdds.plasma.sd.service.styles.notificationcontent.Negative +import com.sdds.plasma.sd.service.styles.notificationcontent.NoButtonStretch +import com.sdds.plasma.sd.service.styles.notificationcontent.NotificationContent +import com.sdds.plasma.sd.service.styles.notificationcontent.Positive +import com.sdds.plasma.sd.service.styles.notificationcontent.Warning + +internal object PlasmaB2cNotificationContentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonStretch.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.Default.style() }, + "ButtonStretch.Positive" to ComposeStyleReference { NotificationContent.ButtonStretch.Positive.style() }, + "ButtonStretch.Negative" to ComposeStyleReference { NotificationContent.ButtonStretch.Negative.style() }, + "ButtonStretch.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.Warning.style() }, + "ButtonStretch.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.Info.style() }, + "ButtonStretch.IconTop.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Default.style() }, + "ButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Positive.style() + }, + "ButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Negative.style() + }, + "ButtonStretch.IconTop.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Warning.style() }, + "ButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Info.style() }, + "ButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Default.style() + }, + "ButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Positive.style() + }, + "ButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Negative.style() + }, + "ButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Warning.style() + }, + "ButtonStretch.IconStart.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconStart.Info.style() }, + "NoButtonStretch.Default" to ComposeStyleReference { NotificationContent.NoButtonStretch.Default.style() }, + "NoButtonStretch.Positive" to ComposeStyleReference { NotificationContent.NoButtonStretch.Positive.style() }, + "NoButtonStretch.Negative" to ComposeStyleReference { NotificationContent.NoButtonStretch.Negative.style() }, + "NoButtonStretch.Warning" to ComposeStyleReference { NotificationContent.NoButtonStretch.Warning.style() }, + "NoButtonStretch.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.Info.style() }, + "NoButtonStretch.IconTop.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Default.style() + }, + "NoButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Positive.style() + }, + "NoButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Negative.style() + }, + "NoButtonStretch.IconTop.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Warning.style() + }, + "NoButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.IconTop.Info.style() }, + "NoButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Default.style() + }, + "NoButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Positive.style() + }, + "NoButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Negative.style() + }, + "NoButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Warning.style() + }, + "NoButtonStretch.IconStart.Info" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Info.style() + }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationLooseVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationLooseVariationsCompose.kt new file mode 100644 index 0000000000..03133ca727 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cNotificationLooseVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.notification.L +import com.sdds.plasma.sd.service.styles.notification.M +import com.sdds.plasma.sd.service.styles.notification.NotificationLoose +import com.sdds.plasma.sd.service.styles.notification.S + +internal object PlasmaB2cNotificationLooseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationLoose.L.style() }, + "M" to ComposeStyleReference { NotificationLoose.M.style() }, + "S" to ComposeStyleReference { NotificationLoose.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cOverlayVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cOverlayVariationsCompose.kt new file mode 100644 index 0000000000..f136d9b373 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cOverlayVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.OverlayStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.overlay.Default +import com.sdds.plasma.sd.service.styles.overlay.Overlay + +internal object PlasmaB2cOverlayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Overlay.Default.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..49b66a5df9 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsHorizontalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.paginationdots.ActiveTypeLine +import com.sdds.plasma.sd.service.styles.paginationdots.M +import com.sdds.plasma.sd.service.styles.paginationdots.PaginationDotsHorizontal +import com.sdds.plasma.sd.service.styles.paginationdots.S + +internal object PlasmaB2cPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsHorizontal.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsHorizontal.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt new file mode 100644 index 0000000000..72d0923ae5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPaginationDotsVerticalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.paginationdots.ActiveTypeLine +import com.sdds.plasma.sd.service.styles.paginationdots.M +import com.sdds.plasma.sd.service.styles.paginationdots.PaginationDotsVertical +import com.sdds.plasma.sd.service.styles.paginationdots.S + +internal object PlasmaB2cPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsVertical.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsVertical.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPopoverVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPopoverVariationsCompose.kt new file mode 100644 index 0000000000..fe2f1d5403 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cPopoverVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PopoverStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.popover.Accent +import com.sdds.plasma.sd.service.styles.popover.Default +import com.sdds.plasma.sd.service.styles.popover.M +import com.sdds.plasma.sd.service.styles.popover.Popover +import com.sdds.plasma.sd.service.styles.popover.S + +internal object PlasmaB2cPopoverVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { Popover.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Popover.M.Accent.style() }, + "S.Default" to ComposeStyleReference { Popover.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Popover.S.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cProgressBarVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..6dc192b194 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cProgressBarVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.progressbar.Accent +import com.sdds.plasma.sd.service.styles.progressbar.Default +import com.sdds.plasma.sd.service.styles.progressbar.Gradient +import com.sdds.plasma.sd.service.styles.progressbar.Info +import com.sdds.plasma.sd.service.styles.progressbar.Negative +import com.sdds.plasma.sd.service.styles.progressbar.Positive +import com.sdds.plasma.sd.service.styles.progressbar.ProgressBar +import com.sdds.plasma.sd.service.styles.progressbar.Secondary +import com.sdds.plasma.sd.service.styles.progressbar.Warning + +internal object PlasmaB2cProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ProgressBar.Default.style() }, + "Secondary" to ComposeStyleReference { ProgressBar.Secondary.style() }, + "Accent" to ComposeStyleReference { ProgressBar.Accent.style() }, + "Gradient" to ComposeStyleReference { ProgressBar.Gradient.style() }, + "Info" to ComposeStyleReference { ProgressBar.Info.style() }, + "Negative" to ComposeStyleReference { ProgressBar.Negative.style() }, + "Positive" to ComposeStyleReference { ProgressBar.Positive.style() }, + "Warning" to ComposeStyleReference { ProgressBar.Warning.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxGroupVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..a68a93293c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxGroupVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.radioboxgroup.M +import com.sdds.plasma.sd.service.styles.radioboxgroup.RadioBoxGroup +import com.sdds.plasma.sd.service.styles.radioboxgroup.S + +internal object PlasmaB2cRadioBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { RadioBoxGroup.M.style() }, + "S" to ComposeStyleReference { RadioBoxGroup.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxVariationsCompose.kt new file mode 100644 index 0000000000..6795af24b2 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRadioBoxVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.radiobox.L +import com.sdds.plasma.sd.service.styles.radiobox.M +import com.sdds.plasma.sd.service.styles.radiobox.RadioBox +import com.sdds.plasma.sd.service.styles.radiobox.S + +internal object PlasmaB2cRadioBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { RadioBox.L.style() }, + "M" to ComposeStyleReference { RadioBox.M.style() }, + "S" to ComposeStyleReference { RadioBox.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRectSkeletonVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRectSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..8dd557dc9c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRectSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RectSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.rectskeleton.Default +import com.sdds.plasma.sd.service.styles.rectskeleton.Lighter +import com.sdds.plasma.sd.service.styles.rectskeleton.RectSkeleton + +internal object PlasmaB2cRectSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RectSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { RectSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRegisterTheme.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRegisterTheme.kt new file mode 100644 index 0000000000..b16bb71cef --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cRegisterTheme.kt @@ -0,0 +1,41 @@ +package com.sdds.plasma.sd.service.compose.integration + +import androidx.compose.foundation.isSystemInDarkTheme +import com.sdds.compose.sandbox.ComposeTheme +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.plasma.sd.service.theme.PlasmaSdServiceTheme +import com.sdds.plasma.sd.service.theme.darkPlasmaSdServiceColors +import com.sdds.plasma.sd.service.theme.darkPlasmaSdServiceGradients +import com.sdds.plasma.sd.service.theme.lightPlasmaSdServiceColors +import com.sdds.plasma.sd.service.theme.lightPlasmaSdServiceGradients +import com.sdds.plasma.sd.service.theme.subthemes.Default +import com.sdds.plasma.sd.service.theme.subthemes.Inverse +import com.sdds.plasma.sd.service.theme.subthemes.OnDark +import com.sdds.plasma.sd.service.theme.subthemes.OnLight +import com.sdds.sandbox.ComponentProvider +import com.sdds.sandbox.ComponentProviderUtils.plus +import com.sdds.sandbox.ThemeManager + +fun SandboxActivity.registerTheme(componentProvider: ComponentProvider = ComponentProvider.Empty) { + val theme = ComposeTheme( + displayName = "PlasmaB2c", + components = PlasmaB2cComposeComponents + componentProvider, + themeWrapper = { + val isDark = isSystemInDarkTheme() + PlasmaSdServiceTheme( + colors = if (isDark) darkPlasmaSdServiceColors() else lightPlasmaSdServiceColors(), + gradients = if (isDark) darkPlasmaSdServiceGradients() else lightPlasmaSdServiceGradients(), + ) { + it() + } + }, + subthemes = mapOf( + SubTheme.DEFAULT to { PlasmaSdServiceTheme.Default(content = it) }, + SubTheme.ON_LIGHT to { PlasmaSdServiceTheme.OnLight(content = it) }, + SubTheme.ON_DARK to { PlasmaSdServiceTheme.OnDark(content = it) }, + SubTheme.INVERSE to { PlasmaSdServiceTheme.Inverse(content = it) }, + ), + ) + ThemeManager.updateTheme(theme) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cScrollBarVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cScrollBarVariationsCompose.kt new file mode 100644 index 0000000000..b7acca105f --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cScrollBarVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ScrollBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.scrollbar.M +import com.sdds.plasma.sd.service.styles.scrollbar.S +import com.sdds.plasma.sd.service.styles.scrollbar.ScrollBar + +internal object PlasmaB2cScrollBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { ScrollBar.S.style() }, + "M" to ComposeStyleReference { ScrollBar.M.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentItemVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentItemVariationsCompose.kt new file mode 100644 index 0000000000..9e6c907172 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentItemVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.segmentitem.Accent +import com.sdds.plasma.sd.service.styles.segmentitem.L +import com.sdds.plasma.sd.service.styles.segmentitem.M +import com.sdds.plasma.sd.service.styles.segmentitem.Pilled +import com.sdds.plasma.sd.service.styles.segmentitem.Primary +import com.sdds.plasma.sd.service.styles.segmentitem.S +import com.sdds.plasma.sd.service.styles.segmentitem.Secondary +import com.sdds.plasma.sd.service.styles.segmentitem.SegmentItem +import com.sdds.plasma.sd.service.styles.segmentitem.Xl +import com.sdds.plasma.sd.service.styles.segmentitem.Xs + +internal object PlasmaB2cSegmentItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { SegmentItem.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { SegmentItem.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { SegmentItem.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { SegmentItem.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { SegmentItem.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { SegmentItem.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { SegmentItem.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { SegmentItem.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { SegmentItem.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { SegmentItem.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { SegmentItem.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { SegmentItem.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { SegmentItem.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { SegmentItem.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { SegmentItem.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { SegmentItem.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { SegmentItem.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { SegmentItem.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { SegmentItem.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { SegmentItem.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { SegmentItem.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { SegmentItem.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { SegmentItem.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { SegmentItem.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentVariationsCompose.kt new file mode 100644 index 0000000000..3d00ac68b5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSegmentVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.segment.Accent +import com.sdds.plasma.sd.service.styles.segment.L +import com.sdds.plasma.sd.service.styles.segment.M +import com.sdds.plasma.sd.service.styles.segment.Pilled +import com.sdds.plasma.sd.service.styles.segment.Primary +import com.sdds.plasma.sd.service.styles.segment.S +import com.sdds.plasma.sd.service.styles.segment.Secondary +import com.sdds.plasma.sd.service.styles.segment.Segment +import com.sdds.plasma.sd.service.styles.segment.Xl +import com.sdds.plasma.sd.service.styles.segment.Xs + +internal object PlasmaB2cSegmentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { Segment.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { Segment.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Segment.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { Segment.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { Segment.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { Segment.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { Segment.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { Segment.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Segment.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { Segment.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Segment.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Segment.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { Segment.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { Segment.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Segment.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { Segment.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Segment.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Segment.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { Segment.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { Segment.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Segment.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { Segment.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Segment.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Segment.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { Segment.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { Segment.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Segment.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { Segment.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Segment.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Segment.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSpinnerVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSpinnerVariationsCompose.kt new file mode 100644 index 0000000000..ecaf9baf9c --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSpinnerVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SpinnerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.spinner.Accent +import com.sdds.plasma.sd.service.styles.spinner.Default +import com.sdds.plasma.sd.service.styles.spinner.Info +import com.sdds.plasma.sd.service.styles.spinner.L +import com.sdds.plasma.sd.service.styles.spinner.M +import com.sdds.plasma.sd.service.styles.spinner.Negative +import com.sdds.plasma.sd.service.styles.spinner.Positive +import com.sdds.plasma.sd.service.styles.spinner.S +import com.sdds.plasma.sd.service.styles.spinner.Scalable +import com.sdds.plasma.sd.service.styles.spinner.Secondary +import com.sdds.plasma.sd.service.styles.spinner.Spinner +import com.sdds.plasma.sd.service.styles.spinner.Warning +import com.sdds.plasma.sd.service.styles.spinner.Xl +import com.sdds.plasma.sd.service.styles.spinner.Xs +import com.sdds.plasma.sd.service.styles.spinner.Xxl +import com.sdds.plasma.sd.service.styles.spinner.Xxs + +internal object PlasmaB2cSpinnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { Spinner.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { Spinner.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { Spinner.Xxl.Accent.style() }, + "Xxl.Positive" to ComposeStyleReference { Spinner.Xxl.Positive.style() }, + "Xxl.Negative" to ComposeStyleReference { Spinner.Xxl.Negative.style() }, + "Xxl.Warning" to ComposeStyleReference { Spinner.Xxl.Warning.style() }, + "Xxl.Info" to ComposeStyleReference { Spinner.Xxl.Info.style() }, + "Xl.Default" to ComposeStyleReference { Spinner.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { Spinner.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Spinner.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { Spinner.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { Spinner.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { Spinner.Xl.Warning.style() }, + "Xl.Info" to ComposeStyleReference { Spinner.Xl.Info.style() }, + "L.Default" to ComposeStyleReference { Spinner.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { Spinner.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Spinner.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Spinner.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { Spinner.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { Spinner.L.Warning.style() }, + "L.Info" to ComposeStyleReference { Spinner.L.Info.style() }, + "M.Default" to ComposeStyleReference { Spinner.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { Spinner.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Spinner.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Spinner.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { Spinner.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { Spinner.M.Warning.style() }, + "M.Info" to ComposeStyleReference { Spinner.M.Info.style() }, + "S.Default" to ComposeStyleReference { Spinner.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { Spinner.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Spinner.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Spinner.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { Spinner.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { Spinner.S.Warning.style() }, + "S.Info" to ComposeStyleReference { Spinner.S.Info.style() }, + "Xs.Default" to ComposeStyleReference { Spinner.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { Spinner.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Spinner.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Spinner.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { Spinner.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { Spinner.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { Spinner.Xs.Info.style() }, + "Xxs.Default" to ComposeStyleReference { Spinner.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { Spinner.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { Spinner.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Spinner.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { Spinner.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { Spinner.Xxs.Warning.style() }, + "Xxs.Info" to ComposeStyleReference { Spinner.Xxs.Info.style() }, + "Scalable.Default" to ComposeStyleReference { Spinner.Scalable.Default.style() }, + "Scalable.Secondary" to ComposeStyleReference { Spinner.Scalable.Secondary.style() }, + "Scalable.Accent" to ComposeStyleReference { Spinner.Scalable.Accent.style() }, + "Scalable.Positive" to ComposeStyleReference { Spinner.Scalable.Positive.style() }, + "Scalable.Negative" to ComposeStyleReference { Spinner.Scalable.Negative.style() }, + "Scalable.Warning" to ComposeStyleReference { Spinner.Scalable.Warning.style() }, + "Scalable.Info" to ComposeStyleReference { Spinner.Scalable.Info.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSwitchVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSwitchVariationsCompose.kt new file mode 100644 index 0000000000..1db2ab305b --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cSwitchVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SwitchStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.switcher.L +import com.sdds.plasma.sd.service.styles.switcher.M +import com.sdds.plasma.sd.service.styles.switcher.S +import com.sdds.plasma.sd.service.styles.switcher.Switch +import com.sdds.plasma.sd.service.styles.switcher.ToggleS + +internal object PlasmaB2cSwitchVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Switch.L.style() }, + "L.ToggleS" to ComposeStyleReference { Switch.L.ToggleS.style() }, + "M" to ComposeStyleReference { Switch.M.style() }, + "M.ToggleS" to ComposeStyleReference { Switch.M.ToggleS.style() }, + "S" to ComposeStyleReference { Switch.S.style() }, + "S.ToggleS" to ComposeStyleReference { Switch.S.ToggleS.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarClearVariationsCompose.kt new file mode 100644 index 0000000000..16bca7fe78 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.Divider +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Rounded +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarClear + +internal object PlasmaB2cTabBarClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..41ee31658f --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.Divider +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Rounded +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarHasLabelClear + +internal object PlasmaB2cTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..1b0033880d --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarHasLabelSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.Divider +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Rounded +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarHasLabelSolid + +internal object PlasmaB2cTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandClearVariationsCompose.kt new file mode 100644 index 0000000000..e0d4530eb5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandClear + +internal object PlasmaB2cTabBarIslandClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..e3b912b333 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandHasLabelClear + +internal object PlasmaB2cTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..6ce26fd19a --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandHasLabelSolid + +internal object PlasmaB2cTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandSolidVariationsCompose.kt new file mode 100644 index 0000000000..0d33648038 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarIslandSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarIslandSolid + +internal object PlasmaB2cTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemClearVariationsCompose.kt new file mode 100644 index 0000000000..1322dfa1d9 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbaritem.Accent +import com.sdds.plasma.sd.service.styles.tabbaritem.Default +import com.sdds.plasma.sd.service.styles.tabbaritem.L +import com.sdds.plasma.sd.service.styles.tabbaritem.Label +import com.sdds.plasma.sd.service.styles.tabbaritem.M +import com.sdds.plasma.sd.service.styles.tabbaritem.Secondary +import com.sdds.plasma.sd.service.styles.tabbaritem.TabBarItemClear + +internal object PlasmaB2cTabBarItemClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemClear.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemClear.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemClear.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemClear.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemClear.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemClear.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemClear.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemClear.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemClear.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemClear.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemSolidVariationsCompose.kt new file mode 100644 index 0000000000..3e0d84f4db --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarItemSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbaritem.Accent +import com.sdds.plasma.sd.service.styles.tabbaritem.Default +import com.sdds.plasma.sd.service.styles.tabbaritem.L +import com.sdds.plasma.sd.service.styles.tabbaritem.Label +import com.sdds.plasma.sd.service.styles.tabbaritem.M +import com.sdds.plasma.sd.service.styles.tabbaritem.Secondary +import com.sdds.plasma.sd.service.styles.tabbaritem.TabBarItemSolid + +internal object PlasmaB2cTabBarItemSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemSolid.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemSolid.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemSolid.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemSolid.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemSolid.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemSolid.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarSolidVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarSolidVariationsCompose.kt new file mode 100644 index 0000000000..3edd6dd1a8 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTabBarSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tabbar.Accent +import com.sdds.plasma.sd.service.styles.tabbar.Default +import com.sdds.plasma.sd.service.styles.tabbar.Divider +import com.sdds.plasma.sd.service.styles.tabbar.L +import com.sdds.plasma.sd.service.styles.tabbar.M +import com.sdds.plasma.sd.service.styles.tabbar.Rounded +import com.sdds.plasma.sd.service.styles.tabbar.Secondary +import com.sdds.plasma.sd.service.styles.tabbar.Shadow +import com.sdds.plasma.sd.service.styles.tabbar.TabBarSolid + +internal object PlasmaB2cTabBarSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaClearVariationsCompose.kt new file mode 100644 index 0000000000..00c3796ba5 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaClearVariationsCompose.kt @@ -0,0 +1,212 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.textarea.Default +import com.sdds.plasma.sd.service.styles.textarea.Error +import com.sdds.plasma.sd.service.styles.textarea.InnerLabel +import com.sdds.plasma.sd.service.styles.textarea.L +import com.sdds.plasma.sd.service.styles.textarea.M +import com.sdds.plasma.sd.service.styles.textarea.OuterLabel +import com.sdds.plasma.sd.service.styles.textarea.RequiredEnd +import com.sdds.plasma.sd.service.styles.textarea.RequiredStart +import com.sdds.plasma.sd.service.styles.textarea.S +import com.sdds.plasma.sd.service.styles.textarea.TextAreaClear +import com.sdds.plasma.sd.service.styles.textarea.Warning +import com.sdds.plasma.sd.service.styles.textarea.Xl +import com.sdds.plasma.sd.service.styles.textarea.Xs + +internal object PlasmaB2cTextAreaClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextAreaClear.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextAreaClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextAreaClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextAreaClear.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextAreaClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextAreaClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextAreaClear.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextAreaClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextAreaClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextAreaClear.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextAreaClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextAreaClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextAreaClear.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextAreaClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextAreaClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaVariationsCompose.kt new file mode 100644 index 0000000000..6eeec29cc9 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextAreaVariationsCompose.kt @@ -0,0 +1,158 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.textarea.Default +import com.sdds.plasma.sd.service.styles.textarea.Error +import com.sdds.plasma.sd.service.styles.textarea.InnerLabel +import com.sdds.plasma.sd.service.styles.textarea.L +import com.sdds.plasma.sd.service.styles.textarea.M +import com.sdds.plasma.sd.service.styles.textarea.OuterLabel +import com.sdds.plasma.sd.service.styles.textarea.RequiredEnd +import com.sdds.plasma.sd.service.styles.textarea.RequiredStart +import com.sdds.plasma.sd.service.styles.textarea.S +import com.sdds.plasma.sd.service.styles.textarea.TextArea +import com.sdds.plasma.sd.service.styles.textarea.Warning +import com.sdds.plasma.sd.service.styles.textarea.Xl +import com.sdds.plasma.sd.service.styles.textarea.Xs + +internal object PlasmaB2cTextAreaVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextArea.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextArea.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextArea.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextArea.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextArea.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextArea.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextArea.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextArea.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextArea.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextArea.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextArea.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextArea.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextArea.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextArea.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextArea.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextArea.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextArea.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextArea.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextArea.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextArea.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextArea.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextArea.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextArea.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextArea.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextArea.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextArea.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextArea.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextArea.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextArea.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextArea.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextArea.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextArea.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextArea.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldClearVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldClearVariationsCompose.kt new file mode 100644 index 0000000000..53fb87d328 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldClearVariationsCompose.kt @@ -0,0 +1,279 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.textfield.Default +import com.sdds.plasma.sd.service.styles.textfield.Error +import com.sdds.plasma.sd.service.styles.textfield.InnerLabel +import com.sdds.plasma.sd.service.styles.textfield.L +import com.sdds.plasma.sd.service.styles.textfield.M +import com.sdds.plasma.sd.service.styles.textfield.OuterLabel +import com.sdds.plasma.sd.service.styles.textfield.RequiredEnd +import com.sdds.plasma.sd.service.styles.textfield.RequiredStart +import com.sdds.plasma.sd.service.styles.textfield.S +import com.sdds.plasma.sd.service.styles.textfield.Success +import com.sdds.plasma.sd.service.styles.textfield.TextFieldClear +import com.sdds.plasma.sd.service.styles.textfield.Warning +import com.sdds.plasma.sd.service.styles.textfield.Xl +import com.sdds.plasma.sd.service.styles.textfield.Xs + +internal object PlasmaB2cTextFieldClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextFieldClear.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextFieldClear.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextFieldClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextFieldClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextFieldClear.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextFieldClear.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextFieldClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextFieldClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Success.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Success.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextFieldClear.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextFieldClear.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextFieldClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextFieldClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Success.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Success.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextFieldClear.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextFieldClear.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextFieldClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextFieldClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Success.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Success.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextFieldClear.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextFieldClear.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextFieldClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextFieldClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldVariationsCompose.kt new file mode 100644 index 0000000000..1332120b70 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextFieldVariationsCompose.kt @@ -0,0 +1,219 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.textfield.Default +import com.sdds.plasma.sd.service.styles.textfield.Error +import com.sdds.plasma.sd.service.styles.textfield.InnerLabel +import com.sdds.plasma.sd.service.styles.textfield.L +import com.sdds.plasma.sd.service.styles.textfield.M +import com.sdds.plasma.sd.service.styles.textfield.OuterLabel +import com.sdds.plasma.sd.service.styles.textfield.RequiredEnd +import com.sdds.plasma.sd.service.styles.textfield.RequiredStart +import com.sdds.plasma.sd.service.styles.textfield.S +import com.sdds.plasma.sd.service.styles.textfield.Success +import com.sdds.plasma.sd.service.styles.textfield.TextField +import com.sdds.plasma.sd.service.styles.textfield.Warning +import com.sdds.plasma.sd.service.styles.textfield.Xl +import com.sdds.plasma.sd.service.styles.textfield.Xs + +internal object PlasmaB2cTextFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextField.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextField.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextField.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextField.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextField.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextField.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextField.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextField.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextField.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextField.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextField.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextField.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextField.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextField.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextField.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextField.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextField.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextField.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextField.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextField.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextField.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextField.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Success.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextField.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextField.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextField.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextField.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Success.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextField.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextField.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextField.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextField.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextField.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextField.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextField.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextField.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextField.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextField.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextField.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextField.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextField.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextField.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextField.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Success.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextField.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextField.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextField.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextField.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Success.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextField.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextField.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextField.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextField.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextField.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextField.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextField.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextField.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextField.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextField.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextField.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextField.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextField.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextField.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextField.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Success.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextField.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextField.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextField.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextField.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Success.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextField.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextField.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextField.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextField.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextField.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextField.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextField.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextSkeletonVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..978f58400e --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTextSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.textskeleton.Default +import com.sdds.plasma.sd.service.styles.textskeleton.Lighter +import com.sdds.plasma.sd.service.styles.textskeleton.TextSkeleton + +internal object PlasmaB2cTextSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TextSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { TextSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToastVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToastVariationsCompose.kt new file mode 100644 index 0000000000..82724a4632 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToastVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToastStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.toast.Default +import com.sdds.plasma.sd.service.styles.toast.Negative +import com.sdds.plasma.sd.service.styles.toast.Pilled +import com.sdds.plasma.sd.service.styles.toast.Positive +import com.sdds.plasma.sd.service.styles.toast.Rounded +import com.sdds.plasma.sd.service.styles.toast.Toast + +internal object PlasmaB2cToastVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Rounded.Default" to ComposeStyleReference { Toast.Rounded.Default.style() }, + "Rounded.Positive" to ComposeStyleReference { Toast.Rounded.Positive.style() }, + "Rounded.Negative" to ComposeStyleReference { Toast.Rounded.Negative.style() }, + "Pilled.Default" to ComposeStyleReference { Toast.Pilled.Default.style() }, + "Pilled.Positive" to ComposeStyleReference { Toast.Pilled.Positive.style() }, + "Pilled.Negative" to ComposeStyleReference { Toast.Pilled.Negative.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarHorizontalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..eb951c5d89 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarHorizontalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.toolbar.HasShadow +import com.sdds.plasma.sd.service.styles.toolbar.L +import com.sdds.plasma.sd.service.styles.toolbar.M +import com.sdds.plasma.sd.service.styles.toolbar.S +import com.sdds.plasma.sd.service.styles.toolbar.ToolBarHorizontal +import com.sdds.plasma.sd.service.styles.toolbar.Xs + +internal object PlasmaB2cToolBarHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarHorizontal.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarHorizontal.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarHorizontal.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarHorizontal.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarHorizontal.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarHorizontal.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarHorizontal.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarHorizontal.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarVerticalVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarVerticalVariationsCompose.kt new file mode 100644 index 0000000000..af3532f6d6 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cToolBarVerticalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.toolbar.HasShadow +import com.sdds.plasma.sd.service.styles.toolbar.L +import com.sdds.plasma.sd.service.styles.toolbar.M +import com.sdds.plasma.sd.service.styles.toolbar.S +import com.sdds.plasma.sd.service.styles.toolbar.ToolBarVertical +import com.sdds.plasma.sd.service.styles.toolbar.Xs + +internal object PlasmaB2cToolBarVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarVertical.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarVertical.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarVertical.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarVertical.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarVertical.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarVertical.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarVertical.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarVertical.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTooltipVariationsCompose.kt b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTooltipVariationsCompose.kt new file mode 100644 index 0000000000..fab0ab2781 --- /dev/null +++ b/tokens/plasma.sd.service.compose/integration/src/main/kotlin/com/sdds/plasma/sd/service/compose/integration/PlasmaB2cTooltipVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.plasma.sd.service.compose.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TooltipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.plasma.sd.service.styles.tooltip.M +import com.sdds.plasma.sd.service.styles.tooltip.S +import com.sdds.plasma.sd.service.styles.tooltip.Tooltip + +internal object PlasmaB2cTooltipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { Tooltip.M.style() }, + "S" to ComposeStyleReference { Tooltip.S.style() }, + ) +} diff --git a/tokens/plasma.sd.service.view/app/build.gradle.kts b/tokens/plasma.sd.service.view/app/build.gradle.kts new file mode 100644 index 0000000000..3b879739fb --- /dev/null +++ b/tokens/plasma.sd.service.view/app/build.gradle.kts @@ -0,0 +1,22 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.auto-bump") + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.sdds.plasma.sd.service.sandbox" +} + +dependencies { + implementation(project(":plasma.sd.service.view:integration")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:sandbox-view") + implementation("integration-core:uikit-fixtures") + implementation(libs.sdds.uikit.compose) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.android.material) + implementation(libs.base.androidX.activity) +} diff --git a/tokens/plasma.sd.service.view/app/src/main/AndroidManifest.xml b/tokens/plasma.sd.service.view/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..269c482c2d --- /dev/null +++ b/tokens/plasma.sd.service.view/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/plasma.sd.service.view/app/src/main/kotlin/com/sdds/plasma/sd/service/sandbox/AppActivity.kt b/tokens/plasma.sd.service.view/app/src/main/kotlin/com/sdds/plasma/sd/service/sandbox/AppActivity.kt new file mode 100644 index 0000000000..78d73049cb --- /dev/null +++ b/tokens/plasma.sd.service.view/app/src/main/kotlin/com/sdds/plasma/sd/service/sandbox/AppActivity.kt @@ -0,0 +1,27 @@ +package com.sdds.plasma.sd.service.sandbox + +import android.os.Bundle +import com.plasma.sd.service.integration.PlasmaB2cViewComponents +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.plasma.sd.service.R +import com.sdds.uikit.fixtures.stories.registerCoreStories +import com.sdds.uikit.fixtures.stories.registerCoreTheme + +internal class AppActivity : SandboxActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + registerCoreStories() + registerCoreTheme( + displayName = getString(com.sdds.plasma.sd.service.sandbox.R.string.app_name), + themeRes = R.style.Plasma_SdService_MaterialComponents_DayNight, + components = PlasmaB2cViewComponents, + subThemeRes = mapOf( + SubTheme.DEFAULT to R.style.Plasma_SdService_Default, + SubTheme.ON_DARK to R.style.Plasma_SdService_OnDark, + SubTheme.ON_LIGHT to R.style.Plasma_SdService_OnLight, + SubTheme.INVERSE to R.style.Plasma_SdService_Inverse, + ), + ) + super.onCreate(savedInstanceState) + } +} diff --git a/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_banner.png b/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_banner.png new file mode 100644 index 0000000000..54a9d62e6b Binary files /dev/null and b/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_banner.png differ diff --git a/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_bg.png b/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_bg.png new file mode 100644 index 0000000000..d0d811ada5 Binary files /dev/null and b/tokens/plasma.sd.service.view/app/src/main/res/drawable/app_bg.png differ diff --git a/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher.png b/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher.png new file mode 100644 index 0000000000..d96dc8d170 Binary files /dev/null and b/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher.png differ diff --git a/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher_round.png b/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher_round.png new file mode 100644 index 0000000000..0a029e5eb1 Binary files /dev/null and b/tokens/plasma.sd.service.view/app/src/main/res/drawable/ic_launcher_round.png differ diff --git a/tokens/plasma.sd.service.view/app/src/main/res/values/strings.xml b/tokens/plasma.sd.service.view/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..084f82eb87 --- /dev/null +++ b/tokens/plasma.sd.service.view/app/src/main/res/values/strings.xml @@ -0,0 +1,4 @@ + + + Sd Service + \ No newline at end of file diff --git a/tokens/plasma.sd.service.view/build.gradle.kts b/tokens/plasma.sd.service.view/build.gradle.kts index 860d0e0d64..7bd5db5dc9 100644 --- a/tokens/plasma.sd.service.view/build.gradle.kts +++ b/tokens/plasma.sd.service.view/build.gradle.kts @@ -40,7 +40,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-fixtures") + testImplementation("integration-core:uikit-fixtures") implementation(icons.sdds.icons) implementation(libs.sdds.uikit) implementation(libs.base.androidX.core) diff --git a/tokens/plasma.sd.service.view/integration/build.gradle.kts b/tokens/plasma.sd.service.view/integration/build.gradle.kts new file mode 100644 index 0000000000..60f48ec413 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/build.gradle.kts @@ -0,0 +1,20 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-view") +} + +android { + namespace = "com.sdds.sd.service.sandbox.integration" +} + +dependencies { + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:sandbox-view") + implementation(project(":plasma.sd.service.view")) + implementation(libs.sdds.uikit) + + implementation(libs.base.androidX.core) + implementation(libs.base.androidX.appcompat) +} diff --git a/tokens/plasma.sd.service.view/integration/gradle.properties b/tokens/plasma.sd.service.view/integration/gradle.properties new file mode 100644 index 0000000000..32b5151cd2 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/gradle.properties @@ -0,0 +1,2 @@ +integration.view.config-path=../config-info-view-system.json +integration.view.package-name=com.plasma.sd.service.integration \ No newline at end of file diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionEndVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionEndVariationsView.kt new file mode 100644 index 0000000000..392bc49ab5 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionEndVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionClearActionEndVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionEndH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionStartVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionStartVariationsView.kt new file mode 100644 index 0000000000..f1ab3d1e22 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionClearActionStartVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionClearActionStartVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionClearActionStartH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionEndVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionEndVariationsView.kt new file mode 100644 index 0000000000..59b1bca14c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionEndVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionItemClearActionEndVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionEndH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionStartVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionStartVariationsView.kt new file mode 100644 index 0000000000..1f346c2094 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemClearActionStartVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionItemClearActionStartVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemClearActionStartH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt new file mode 100644 index 0000000000..4048fa5bd5 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionEndVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionItemSolidActionEndVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionEndH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt new file mode 100644 index 0000000000..7bf9ffc313 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionItemSolidActionStartVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionItemSolidActionStartVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionItemSolidActionStartH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionEndVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionEndVariationsView.kt new file mode 100644 index 0000000000..78f30b7ea8 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionEndVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionSolidActionEndVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionEndH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionStartVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionStartVariationsView.kt new file mode 100644 index 0000000000..111997cd3d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAccordionSolidActionStartVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAccordionSolidActionStartVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartXs), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartL), + "H2" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH2), + "H3" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH3), + "H4" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH4), + "H5" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AccordionSolidActionStartH5), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteNormalVariationsView.kt new file mode 100644 index 0000000000..daa4e5fa6d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteNormalVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAutocompleteNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteNormalXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteTightVariationsView.kt new file mode 100644 index 0000000000..0f60636e5e --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAutocompleteTightVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAutocompleteTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AutocompleteTightXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarGroupVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarGroupVariationsView.kt new file mode 100644 index 0000000000..ac7dba34aa --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarGroupVariationsView.kt @@ -0,0 +1,20 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAvatarGroupVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AvatarGroupS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarVariationsView.kt new file mode 100644 index 0000000000..b4a7c47edb --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cAvatarVariationsView.kt @@ -0,0 +1,23 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cAvatarVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xxl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AvatarXxl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AvatarL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AvatarM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_AvatarS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeClearVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeClearVariationsView.kt new file mode 100644 index 0000000000..9826ca16a5 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeClearVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cBadgeClearVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeClearXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeSolidVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeSolidVariationsView.kt new file mode 100644 index 0000000000..b30c5a64c1 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeSolidVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cBadgeSolidVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeSolidXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeTransparentVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeTransparentVariationsView.kt new file mode 100644 index 0000000000..b2c6ed760f --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBadgeTransparentVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cBadgeTransparentVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BadgeTransparentXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonGroupVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonGroupVariationsView.kt new file mode 100644 index 0000000000..9113daef14 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonGroupVariationsView.kt @@ -0,0 +1,69 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cBasicButtonGroupVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxs), + "Xxs.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWide), + "Xxs.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWideDefault), + "Xxs.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsWideSegmented), + "Xxs.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDense), + "Xxs.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDenseDefault), + "Xxs.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsDenseSegmented), + "Xxs.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGap), + "Xxs.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGapDefault), + "Xxs.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXxsNoGapSegmented), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXs), + "Xs.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWide), + "Xs.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWideDefault), + "Xs.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsWideSegmented), + "Xs.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDense), + "Xs.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDenseDefault), + "Xs.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsDenseSegmented), + "Xs.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGap), + "Xs.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGapDefault), + "Xs.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupXsNoGapSegmented), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupS), + "S.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWide), + "S.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWideDefault), + "S.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSWideSegmented), + "S.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDense), + "S.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDenseDefault), + "S.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSDenseSegmented), + "S.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGap), + "S.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGapDefault), + "S.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupSNoGapSegmented), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupM), + "M.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWide), + "M.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWideDefault), + "M.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMWideSegmented), + "M.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDense), + "M.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDenseDefault), + "M.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMDenseSegmented), + "M.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGap), + "M.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGapDefault), + "M.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupMNoGapSegmented), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupL), + "L.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWide), + "L.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWideDefault), + "L.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLWideSegmented), + "L.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDense), + "L.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDenseDefault), + "L.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLDenseSegmented), + "L.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGap), + "L.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGapDefault), + "L.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonGroupLNoGapSegmented), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonVariationsView.kt new file mode 100644 index 0000000000..d0e0ed22ab --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cBasicButtonVariationsView.kt @@ -0,0 +1,85 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cBasicButtonVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlDefault), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlAccent), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlNegative), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlWarning), + "Xl.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlClear), + "Xl.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlDark), + "Xl.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlBlack), + "Xl.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXlWhite), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLDefault), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLAccent), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLNegative), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLWarning), + "L.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLClear), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLDark), + "L.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLBlack), + "L.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonLWhite), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMDefault), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMAccent), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMNegative), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMWarning), + "M.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMClear), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMDark), + "M.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMBlack), + "M.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonMWhite), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSDefault), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSAccent), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSNegative), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSWarning), + "S.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSClear), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSDark), + "S.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSBlack), + "S.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonSWhite), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsDefault), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsAccent), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsNegative), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsWarning), + "Xs.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsClear), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsDark), + "Xs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsBlack), + "Xs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXsWhite), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsDefault), + "Xxs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsSecondary), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsAccent), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsPositive), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsNegative), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsWarning), + "Xxs.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsClear), + "Xxs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsDark), + "Xxs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsBlack), + "Xxs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_BasicButtonXxsWhite), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardClearVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardClearVariationsView.kt new file mode 100644 index 0000000000..b10b59b9a4 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardClearVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCardClearVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardClearL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardClearM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardClearS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardSolidVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardSolidVariationsView.kt new file mode 100644 index 0000000000..0d89eb3ba8 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCardSolidVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCardSolidVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardSolidL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardSolidM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CardSolidS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCarouselVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCarouselVariationsView.kt new file mode 100644 index 0000000000..5b8337d97f --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCarouselVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCarouselVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "ButtonsPlacementInner" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CarouselButtonsPlacementInner), + "ButtonsPlacementOuter" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CarouselButtonsPlacementOuter), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCellVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCellVariationsView.kt new file mode 100644 index 0000000000..a70d88eb47 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCellVariationsView.kt @@ -0,0 +1,23 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCellVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CellL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CellM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CellS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CellXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxGroupVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxGroupVariationsView.kt new file mode 100644 index 0000000000..58a9563409 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxGroupVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCheckBoxGroupVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxGroupS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxVariationsView.kt new file mode 100644 index 0000000000..e68a50fae4 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCheckBoxVariationsView.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCheckBoxVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxLDefault), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxLNegative), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxMDefault), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxMNegative), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxSDefault), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CheckBoxSNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupDenseVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupDenseVariationsView.kt new file mode 100644 index 0000000000..cdc9560cb7 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupDenseVariationsView.kt @@ -0,0 +1,75 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cChipGroupDenseVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLWarning), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledPositive), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledSecondary), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseLPilledWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMWarning), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledPositive), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledSecondary), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseMPilledWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSWarning), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledPositive), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledSecondary), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseSPilledWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsWarning), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledPositive), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledSecondary), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupDenseXsPilledWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupWideVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupWideVariationsView.kt new file mode 100644 index 0000000000..24972f5689 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipGroupWideVariationsView.kt @@ -0,0 +1,75 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cChipGroupWideVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLWarning), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledPositive), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledSecondary), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideLPilledWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMWarning), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledPositive), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledSecondary), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideMPilledWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSWarning), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledPositive), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledSecondary), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideSPilledWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsWarning), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledPositive), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledSecondary), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipGroupWideXsPilledWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipVariationsView.kt new file mode 100644 index 0000000000..c33bf0dc5e --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cChipVariationsView.kt @@ -0,0 +1,75 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cChipVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLWarning), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledPositive), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledSecondary), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipLPilledWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMWarning), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledPositive), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledSecondary), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipMPilledWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSWarning), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledPositive), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledSecondary), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipSPilledWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsWarning), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledPositive), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledSecondary), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ChipXsPilledWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCircularProgressBarVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCircularProgressBarVariationsView.kt new file mode 100644 index 0000000000..3217125e94 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCircularProgressBarVariationsView.kt @@ -0,0 +1,82 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCircularProgressBarVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xxl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxl), + "Xxl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlDefault), + "Xxl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlSecondary), + "Xxl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlAccent), + "Xxl.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlGradient), + "Xxl.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlInfo), + "Xxl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlNegative), + "Xxl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlPositive), + "Xxl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxlWarning), + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlDefault), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlAccent), + "Xl.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlGradient), + "Xl.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlInfo), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlNegative), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlPositive), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXlWarning), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLDefault), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLAccent), + "L.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLGradient), + "L.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLInfo), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarLWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMDefault), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMAccent), + "M.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMGradient), + "M.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMInfo), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarMWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSDefault), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSAccent), + "S.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSGradient), + "S.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSInfo), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarSWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsDefault), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsAccent), + "Xs.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsGradient), + "Xs.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsInfo), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXsWarning), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsDefault), + "Xxs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsSecondary), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsAccent), + "Xxs.Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsGradient), + "Xxs.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsInfo), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsNegative), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsPositive), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CircularProgressBarXxsWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeFieldVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeFieldVariationsView.kt new file mode 100644 index 0000000000..507dba024a --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeFieldVariationsView.kt @@ -0,0 +1,23 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCodeFieldVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldL), + "L.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldLSegmented), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldM), + "M.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeFieldMSegmented), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeInputVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeInputVariationsView.kt new file mode 100644 index 0000000000..e05687ebcb --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCodeInputVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCodeInputVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeInputS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeInputM), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CodeInputL), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCounterVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCounterVariationsView.kt new file mode 100644 index 0000000000..bd7e872e86 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cCounterVariationsView.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cCounterVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLAccent), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLWarning), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLNegative), + "L.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLBlack), + "L.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterLWhite), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMAccent), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMWarning), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMNegative), + "M.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMBlack), + "M.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterMWhite), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSAccent), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSWarning), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSNegative), + "S.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSBlack), + "S.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterSWhite), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsAccent), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsWarning), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsNegative), + "Xs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsBlack), + "Xs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXsWhite), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsDefault), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsAccent), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsPositive), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsWarning), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsNegative), + "Xxs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsBlack), + "Xxs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_CounterXxsWhite), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDividerVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDividerVariationsView.kt new file mode 100644 index 0000000000..fe2fdf67cb --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDividerVariationsView.kt @@ -0,0 +1,20 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDividerVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_Divider), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseInnerVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseInnerVariationsView.kt new file mode 100644 index 0000000000..0a403b997b --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseInnerVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDrawerCloseInnerVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseInnerM), + "M.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseInnerMHasShadow), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseNoneVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseNoneVariationsView.kt new file mode 100644 index 0000000000..af4d86275c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseNoneVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDrawerCloseNoneVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseNoneM), + "M.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseNoneMHasShadow), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseOuterVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseOuterVariationsView.kt new file mode 100644 index 0000000000..a18fffaaa3 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDrawerCloseOuterVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDrawerCloseOuterVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseOuterM), + "M.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DrawerCloseOuterMHasShadow), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownEmptyStateVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownEmptyStateVariationsView.kt new file mode 100644 index 0000000000..6bfc637eb7 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownEmptyStateVariationsView.kt @@ -0,0 +1,29 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownEmptyStateVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXs), + "Xs.HasButton" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXsHasButton), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateS), + "S.HasButton" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateSHasButton), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateM), + "M.HasButton" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateMHasButton), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateL), + "L.HasButton" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateLHasButton), + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXl), + "Xl.HasButton" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownEmptyStateXlHasButton), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemNormalVariationsView.kt new file mode 100644 index 0000000000..f50f725f74 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemNormalVariationsView.kt @@ -0,0 +1,39 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuItemNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlDefault), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXlNegative), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLDefault), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalLNegative), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMDefault), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalMNegative), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSDefault), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalSNegative), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsDefault), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemNormalXsNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemTightVariationsView.kt new file mode 100644 index 0000000000..67920b4a35 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuItemTightVariationsView.kt @@ -0,0 +1,39 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuItemTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlDefault), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXlNegative), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLDefault), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightLNegative), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMDefault), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightMNegative), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSDefault), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightSNegative), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsDefault), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuItemTightXsNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListNormalVariationsView.kt new file mode 100644 index 0000000000..2851020331 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListNormalVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuListNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListNormalXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListTightVariationsView.kt new file mode 100644 index 0000000000..df201cf53d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuListTightVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuListTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuListTightXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuNormalVariationsView.kt new file mode 100644 index 0000000000..6cba2d164d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuNormalVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuNormalXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuTightVariationsView.kt new file mode 100644 index 0000000000..b5c873406c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cDropdownMenuTightVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cDropdownMenuTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_DropdownMenuTightXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt new file mode 100644 index 0000000000..8d3af4fd3f --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupDenseVariationsView.kt @@ -0,0 +1,47 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cEmbeddedChipGroupDenseVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseLWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseMWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseSWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupDenseXsWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt new file mode 100644 index 0000000000..3c3fd4c316 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipGroupWideVariationsView.kt @@ -0,0 +1,47 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cEmbeddedChipGroupWideVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideLWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideMWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideSWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipGroupWideXsWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipVariationsView.kt new file mode 100644 index 0000000000..5ae02e2017 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cEmbeddedChipVariationsView.kt @@ -0,0 +1,47 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cEmbeddedChipVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLPositive), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLSecondary), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipLWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMPositive), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMSecondary), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipMWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSPositive), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSSecondary), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipSWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsPositive), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsSecondary), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_EmbeddedChipXsWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileCircularProgressVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileCircularProgressVariationsView.kt new file mode 100644 index 0000000000..5ef74a8510 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileCircularProgressVariationsView.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cFileCircularProgressVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXsDefault), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressXsNegative), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressSDefault), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressSNegative), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressMDefault), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressMNegative), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressLDefault), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileCircularProgressLNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileLinearProgressVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileLinearProgressVariationsView.kt new file mode 100644 index 0000000000..700be15dc1 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cFileLinearProgressVariationsView.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cFileLinearProgressVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXsDefault), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressXsNegative), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressSDefault), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressSNegative), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressMDefault), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressMNegative), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressLDefault), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_FileLinearProgressLNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeClearVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeClearVariationsView.kt new file mode 100644 index 0000000000..42f5f9a8ce --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeClearVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIconBadgeClearVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeClearXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeSolidVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeSolidVariationsView.kt new file mode 100644 index 0000000000..6cb922b9d6 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeSolidVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIconBadgeSolidVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeSolidXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeTransparentVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeTransparentVariationsView.kt new file mode 100644 index 0000000000..28312d496e --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconBadgeTransparentVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIconBadgeTransparentVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLAccent), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLNegative), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLWarning), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLDark), + "L.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLLight), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledDefault), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledAccent), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledNegative), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledPositive), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledWarning), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledDark), + "L.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentLPilledLight), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMAccent), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMNegative), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMWarning), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMDark), + "M.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMLight), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledDefault), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledAccent), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledNegative), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledPositive), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledWarning), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledDark), + "M.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentMPilledLight), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSAccent), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSNegative), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSWarning), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSDark), + "S.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSLight), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledDefault), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledAccent), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledNegative), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledPositive), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledWarning), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledDark), + "S.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentSPilledLight), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsDefault), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsAccent), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsNegative), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPositive), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsWarning), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsDark), + "Xs.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsLight), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledDefault), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledAccent), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledNegative), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledPositive), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledWarning), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledDark), + "Xs.Pilled.Light" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconBadgeTransparentXsPilledLight), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonGroupVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonGroupVariationsView.kt new file mode 100644 index 0000000000..38454199fb --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonGroupVariationsView.kt @@ -0,0 +1,71 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIconButtonGroupVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXs), + "Xs.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWide), + "Xs.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWideDefault), + "Xs.Wide.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWidePilled), + "Xs.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsWideSegmented), + "Xs.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDense), + "Xs.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDenseDefault), + "Xs.Dense.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDensePilled), + "Xs.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsDenseSegmented), + "Xs.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGap), + "Xs.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapDefault), + "Xs.NoGap.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapPilled), + "Xs.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupXsNoGapSegmented), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupS), + "S.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWide), + "S.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWideDefault), + "S.Wide.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWidePilled), + "S.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSWideSegmented), + "S.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDense), + "S.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDenseDefault), + "S.Dense.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDensePilled), + "S.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSDenseSegmented), + "S.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGap), + "S.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapDefault), + "S.NoGap.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapPilled), + "S.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupSNoGapSegmented), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupM), + "M.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWide), + "M.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWideDefault), + "M.Wide.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWidePilled), + "M.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMWideSegmented), + "M.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDense), + "M.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDenseDefault), + "M.Dense.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDensePilled), + "M.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMDenseSegmented), + "M.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGap), + "M.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapDefault), + "M.NoGap.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapPilled), + "M.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupMNoGapSegmented), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupL), + "L.Wide" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWide), + "L.Wide.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWideDefault), + "L.Wide.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWidePilled), + "L.Wide.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLWideSegmented), + "L.Dense" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDense), + "L.Dense.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDenseDefault), + "L.Dense.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDensePilled), + "L.Dense.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLDenseSegmented), + "L.NoGap" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGap), + "L.NoGap.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapDefault), + "L.NoGap.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapPilled), + "L.NoGap.Segmented" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonGroupLNoGapSegmented), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonVariationsView.kt new file mode 100644 index 0000000000..43a40a7f89 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIconButtonVariationsView.kt @@ -0,0 +1,151 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIconButtonVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlDefault), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlAccent), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlNegative), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlWarning), + "Xl.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlClear), + "Xl.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlDark), + "Xl.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlBlack), + "Xl.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlWhite), + "Xl.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilled), + "Xl.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledDefault), + "Xl.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledSecondary), + "Xl.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledAccent), + "Xl.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledPositive), + "Xl.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledNegative), + "Xl.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledWarning), + "Xl.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledClear), + "Xl.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledDark), + "Xl.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledBlack), + "Xl.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXlPilledWhite), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLDefault), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLAccent), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLNegative), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLWarning), + "L.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLClear), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLDark), + "L.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLBlack), + "L.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLWhite), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilled), + "L.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledDefault), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledSecondary), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledAccent), + "L.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledPositive), + "L.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledNegative), + "L.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledWarning), + "L.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledClear), + "L.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledDark), + "L.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledBlack), + "L.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonLPilledWhite), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMDefault), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMAccent), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMNegative), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMWarning), + "M.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMClear), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMDark), + "M.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMBlack), + "M.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMWhite), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilled), + "M.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledDefault), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledSecondary), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledAccent), + "M.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledPositive), + "M.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledNegative), + "M.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledWarning), + "M.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledClear), + "M.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledDark), + "M.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledBlack), + "M.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonMPilledWhite), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSDefault), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSAccent), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSNegative), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSWarning), + "S.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSClear), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSDark), + "S.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSBlack), + "S.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSWhite), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilled), + "S.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledDefault), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledSecondary), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledAccent), + "S.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledPositive), + "S.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledNegative), + "S.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledWarning), + "S.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledClear), + "S.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledDark), + "S.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledBlack), + "S.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonSPilledWhite), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsDefault), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsAccent), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsNegative), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsWarning), + "Xs.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsClear), + "Xs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsDark), + "Xs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsBlack), + "Xs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsWhite), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilled), + "Xs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledDefault), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledSecondary), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledAccent), + "Xs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledPositive), + "Xs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledNegative), + "Xs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledWarning), + "Xs.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledClear), + "Xs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledDark), + "Xs.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledBlack), + "Xs.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXsPilledWhite), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsDefault), + "Xxs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsSecondary), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsAccent), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPositive), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsNegative), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsWarning), + "Xxs.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsClear), + "Xxs.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsDark), + "Xxs.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsBlack), + "Xxs.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsWhite), + "Xxs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilled), + "Xxs.Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledDefault), + "Xxs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledSecondary), + "Xxs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledAccent), + "Xxs.Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledPositive), + "Xxs.Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledNegative), + "Xxs.Pilled.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledWarning), + "Xxs.Pilled.Clear" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledClear), + "Xxs.Pilled.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledDark), + "Xxs.Pilled.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledBlack), + "Xxs.Pilled.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IconButtonXxsPilledWhite), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cImageViewVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cImageViewVariationsView.kt new file mode 100644 index 0000000000..26b34512ff --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cImageViewVariationsView.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cImageViewVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Ratio12" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_1_2), + "Ratio916" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_9_16), + "Ratio34" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_3_4), + "Ratio21" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_2_1), + "Ratio169" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_16_9), + "Ratio43" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_4_3), + "Ratio11" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ImageViewRatio_1_1), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIndicatorVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIndicatorVariationsView.kt new file mode 100644 index 0000000000..7ba22d7ebf --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cIndicatorVariationsView.kt @@ -0,0 +1,49 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cIndicatorVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLDefault), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLAccent), + "L.Inactive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLInactive), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLPositive), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLWarning), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLNegative), + "L.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLDark), + "L.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLBlack), + "L.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorLWhite), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMAccent), + "M.Inactive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMInactive), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMPositive), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMWarning), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMNegative), + "M.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMDark), + "M.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMBlack), + "M.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorMWhite), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSAccent), + "S.Inactive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSInactive), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSPositive), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSWarning), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSNegative), + "S.Dark" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSDark), + "S.Black" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSBlack), + "S.White" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_IndicatorSWhite), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLinkButtonVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLinkButtonVariationsView.kt new file mode 100644 index 0000000000..1b0cb81749 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLinkButtonVariationsView.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cLinkButtonVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlDefault), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlAccent), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlNegative), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXlWarning), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLDefault), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLAccent), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLNegative), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonLWarning), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMDefault), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMAccent), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMNegative), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonMWarning), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSDefault), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSAccent), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSNegative), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonSWarning), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsDefault), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsAccent), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsNegative), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXsWarning), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsDefault), + "Xxs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsSecondary), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsAccent), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsPositive), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsNegative), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_LinkButtonXxsWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemNormalVariationsView.kt new file mode 100644 index 0000000000..c3db4df472 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemNormalVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cListItemNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemNormalXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemTightVariationsView.kt new file mode 100644 index 0000000000..9f5b55c73c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListItemTightVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cListItemTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListItemTightXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListNormalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListNormalVariationsView.kt new file mode 100644 index 0000000000..b0b0eeae84 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListNormalVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cListNormalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListNormalXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListNormalL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListNormalM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListNormalS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListNormalXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListTightVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListTightVariationsView.kt new file mode 100644 index 0000000000..113f4cf25b --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cListTightVariationsView.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cListTightVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListTightXl), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListTightL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListTightM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListTightS), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ListTightXs), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLoaderVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLoaderVariationsView.kt new file mode 100644 index 0000000000..13abee97c4 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cLoaderVariationsView.kt @@ -0,0 +1,20 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cLoaderVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_Loader), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cModalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cModalVariationsView.kt new file mode 100644 index 0000000000..c1e5cea1b3 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cModalVariationsView.kt @@ -0,0 +1,20 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cModalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_Modal), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarInternalPageVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarInternalPageVariationsView.kt new file mode 100644 index 0000000000..211a5e353c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarInternalPageVariationsView.kt @@ -0,0 +1,25 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cNavigationBarInternalPageVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "NoBackground" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageNoBackground), + "NoBackground.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageNoBackgroundRounded), + "HasBackground" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackground), + "HasBackground.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundRounded), + "HasBackground.Shadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadow), + "HasBackground.Shadow.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarInternalPageHasBackgroundShadowRounded), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarMainPageVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarMainPageVariationsView.kt new file mode 100644 index 0000000000..8612e95071 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNavigationBarMainPageVariationsView.kt @@ -0,0 +1,25 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cNavigationBarMainPageVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "NoBackground" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageNoBackground), + "NoBackground.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageNoBackgroundRounded), + "HasBackground" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackground), + "HasBackground.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundRounded), + "HasBackground.Shadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundShadow), + "HasBackground.Shadow.Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NavigationBarMainPageHasBackgroundShadowRounded), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationCompactVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationCompactVariationsView.kt new file mode 100644 index 0000000000..258ad98b7b --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationCompactVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cNotificationCompactVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationCompactS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationContentVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationContentVariationsView.kt new file mode 100644 index 0000000000..8cffb36838 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationContentVariationsView.kt @@ -0,0 +1,55 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cNotificationContentVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "ButtonStretch" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretch), + "ButtonStretch.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchDefault), + "ButtonStretch.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchPositive), + "ButtonStretch.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchNegative), + "ButtonStretch.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchWarning), + "ButtonStretch.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchInfo), + "ButtonStretch.IconTop" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTop), + "ButtonStretch.IconTop.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopDefault), + "ButtonStretch.IconTop.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopPositive), + "ButtonStretch.IconTop.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopNegative), + "ButtonStretch.IconTop.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopWarning), + "ButtonStretch.IconTop.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconTopInfo), + "ButtonStretch.IconStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStart), + "ButtonStretch.IconStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartDefault), + "ButtonStretch.IconStart.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartPositive), + "ButtonStretch.IconStart.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartNegative), + "ButtonStretch.IconStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartWarning), + "ButtonStretch.IconStart.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentButtonStretchIconStartInfo), + "NoButtonStretch" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretch), + "NoButtonStretch.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchDefault), + "NoButtonStretch.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchPositive), + "NoButtonStretch.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchNegative), + "NoButtonStretch.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchWarning), + "NoButtonStretch.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchInfo), + "NoButtonStretch.IconTop" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTop), + "NoButtonStretch.IconTop.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopDefault), + "NoButtonStretch.IconTop.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopPositive), + "NoButtonStretch.IconTop.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopNegative), + "NoButtonStretch.IconTop.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopWarning), + "NoButtonStretch.IconTop.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconTopInfo), + "NoButtonStretch.IconStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStart), + "NoButtonStretch.IconStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartDefault), + "NoButtonStretch.IconStart.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartPositive), + "NoButtonStretch.IconStart.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartNegative), + "NoButtonStretch.IconStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartWarning), + "NoButtonStretch.IconStart.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationContentNoButtonStretchIconStartInfo), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationLooseVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationLooseVariationsView.kt new file mode 100644 index 0000000000..5185b1cd58 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cNotificationLooseVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cNotificationLooseVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_NotificationLooseS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cOverlayViewVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cOverlayViewVariationsView.kt new file mode 100644 index 0000000000..03f9a510de --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cOverlayViewVariationsView.kt @@ -0,0 +1,20 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cOverlayViewVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_OverlayView), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsHorizontalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsHorizontalVariationsView.kt new file mode 100644 index 0000000000..5104d34dde --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsHorizontalVariationsView.kt @@ -0,0 +1,23 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cPaginationDotsHorizontalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalM), + "M.ActiveTypeLine" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalMActiveTypeLine), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalS), + "S.ActiveTypeLine" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsHorizontalSActiveTypeLine), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsVerticalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsVerticalVariationsView.kt new file mode 100644 index 0000000000..c8a92bba75 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPaginationDotsVerticalVariationsView.kt @@ -0,0 +1,23 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cPaginationDotsVerticalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalM), + "M.ActiveTypeLine" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalMActiveTypeLine), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalS), + "S.ActiveTypeLine" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PaginationDotsVerticalSActiveTypeLine), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPopoverVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPopoverVariationsView.kt new file mode 100644 index 0000000000..ca8bb6310b --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cPopoverVariationsView.kt @@ -0,0 +1,25 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cPopoverVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverMDefault), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverMAccent), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverSDefault), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_PopoverSAccent), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cProgressBarVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cProgressBarVariationsView.kt new file mode 100644 index 0000000000..c48706072e --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cProgressBarVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cProgressBarVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + ".Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarDefault), + ".Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarSecondary), + ".Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarAccent), + ".Gradient" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarGradient), + ".Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarInfo), + ".Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarNegative), + ".Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarPositive), + ".Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ProgressBarWarning), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxGroupVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxGroupVariationsView.kt new file mode 100644 index 0000000000..550226d92f --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxGroupVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cRadioBoxGroupVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxGroupM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxGroupS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxVariationsView.kt new file mode 100644 index 0000000000..09f2710053 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRadioBoxVariationsView.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cRadioBoxVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxL), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RadioBoxS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRectSkeletonVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRectSkeletonVariationsView.kt new file mode 100644 index 0000000000..6b4e6e422a --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cRectSkeletonVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cRectSkeletonVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + ".Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RectSkeletonDefault), + ".Lighter" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_RectSkeletonLighter), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cScrollBarVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cScrollBarVariationsView.kt new file mode 100644 index 0000000000..6ee7116dee --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cScrollBarVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cScrollBarVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ScrollBarS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ScrollBarM), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentItemVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentItemVariationsView.kt new file mode 100644 index 0000000000..32948b574b --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentItemVariationsView.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cSegmentItemVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXl), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlAccent), + "Xl.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPrimary), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlSecondary), + "Xl.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilled), + "Xl.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledAccent), + "Xl.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledPrimary), + "Xl.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXlPilledSecondary), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemL), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLAccent), + "L.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPrimary), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLSecondary), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilled), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledAccent), + "L.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledPrimary), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemLPilledSecondary), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemM), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMAccent), + "M.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPrimary), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMSecondary), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilled), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledAccent), + "M.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledPrimary), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemMPilledSecondary), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemS), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSAccent), + "S.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPrimary), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSSecondary), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilled), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledAccent), + "S.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledPrimary), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemSPilledSecondary), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXs), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsAccent), + "Xs.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPrimary), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsSecondary), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilled), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledAccent), + "Xs.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledPrimary), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentItemXsPilledSecondary), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentVariationsView.kt new file mode 100644 index 0000000000..b3ec4aaa65 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSegmentVariationsView.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cSegmentVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXl), + "Xl.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPrimary), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlAccent), + "Xl.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilled), + "Xl.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledPrimary), + "Xl.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledSecondary), + "Xl.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXlPilledAccent), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentL), + "L.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPrimary), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLAccent), + "L.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilled), + "L.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledPrimary), + "L.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledSecondary), + "L.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentLPilledAccent), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentM), + "M.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPrimary), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMAccent), + "M.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilled), + "M.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledPrimary), + "M.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledSecondary), + "M.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentMPilledAccent), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentS), + "S.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPrimary), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSAccent), + "S.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilled), + "S.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledPrimary), + "S.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledSecondary), + "S.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentSPilledAccent), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXs), + "Xs.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPrimary), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsAccent), + "Xs.Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilled), + "Xs.Pilled.Primary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledPrimary), + "Xs.Pilled.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledSecondary), + "Xs.Pilled.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SegmentXsPilledAccent), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSpinnerVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSpinnerVariationsView.kt new file mode 100644 index 0000000000..21ccd53fcc --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSpinnerVariationsView.kt @@ -0,0 +1,83 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cSpinnerVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xxl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxl), + "Xxl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlDefault), + "Xxl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlSecondary), + "Xxl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlAccent), + "Xxl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlPositive), + "Xxl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlNegative), + "Xxl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlWarning), + "Xxl.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxlInfo), + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlDefault), + "Xl.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlSecondary), + "Xl.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlAccent), + "Xl.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlPositive), + "Xl.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlNegative), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlWarning), + "Xl.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXlInfo), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLDefault), + "L.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLSecondary), + "L.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLAccent), + "L.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLPositive), + "L.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLNegative), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLWarning), + "L.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerLInfo), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMDefault), + "M.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMSecondary), + "M.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMAccent), + "M.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMPositive), + "M.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMNegative), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMWarning), + "M.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerMInfo), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSDefault), + "S.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSSecondary), + "S.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSAccent), + "S.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSPositive), + "S.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSNegative), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSWarning), + "S.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerSInfo), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsDefault), + "Xs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsSecondary), + "Xs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsAccent), + "Xs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsPositive), + "Xs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsNegative), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsWarning), + "Xs.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXsInfo), + "Xxs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxs), + "Xxs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsDefault), + "Xxs.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsSecondary), + "Xxs.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsAccent), + "Xxs.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsPositive), + "Xxs.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsNegative), + "Xxs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsWarning), + "Xxs.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerXxsInfo), + "Scalable" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalable), + "Scalable.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableDefault), + "Scalable.Secondary" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableSecondary), + "Scalable.Accent" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableAccent), + "Scalable.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalablePositive), + "Scalable.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableNegative), + "Scalable.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableWarning), + "Scalable.Info" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SpinnerScalableInfo), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSwitchVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSwitchVariationsView.kt new file mode 100644 index 0000000000..91df6d8f88 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cSwitchVariationsView.kt @@ -0,0 +1,25 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cSwitchVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchL), + "L.ToggleS" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchLToggleS), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchM), + "M.ToggleS" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchMToggleS), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchS), + "S.ToggleS" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_SwitchSToggleS), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextAreaVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextAreaVariationsView.kt new file mode 100644 index 0000000000..4faf0e2e24 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextAreaVariationsView.kt @@ -0,0 +1,187 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cTextAreaVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsDefault), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsWarning), + "Xs.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsError), + "Xs.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStart), + "Xs.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartDefault), + "Xs.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartWarning), + "Xs.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredStartError), + "Xs.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEnd), + "Xs.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndDefault), + "Xs.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndWarning), + "Xs.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsRequiredEndError), + "Xs.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabel), + "Xs.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelDefault), + "Xs.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelWarning), + "Xs.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelError), + "Xs.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStart), + "Xs.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartDefault), + "Xs.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartWarning), + "Xs.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredStartError), + "Xs.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEnd), + "Xs.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndDefault), + "Xs.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndWarning), + "Xs.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXsOuterLabelRequiredEndError), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSDefault), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSWarning), + "S.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSError), + "S.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStart), + "S.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartDefault), + "S.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartWarning), + "S.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredStartError), + "S.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEnd), + "S.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndDefault), + "S.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndWarning), + "S.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSRequiredEndError), + "S.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabel), + "S.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelDefault), + "S.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelWarning), + "S.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelError), + "S.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStart), + "S.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartDefault), + "S.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartWarning), + "S.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredStartError), + "S.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEnd), + "S.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndDefault), + "S.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndWarning), + "S.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSOuterLabelRequiredEndError), + "S.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabel), + "S.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelDefault), + "S.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelWarning), + "S.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelError), + "S.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStart), + "S.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartDefault), + "S.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartWarning), + "S.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredStartError), + "S.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEnd), + "S.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndDefault), + "S.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndWarning), + "S.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaSInnerLabelRequiredEndError), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMDefault), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMWarning), + "M.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMError), + "M.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStart), + "M.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartDefault), + "M.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartWarning), + "M.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredStartError), + "M.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEnd), + "M.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndDefault), + "M.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndWarning), + "M.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMRequiredEndError), + "M.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabel), + "M.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelDefault), + "M.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelWarning), + "M.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelError), + "M.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStart), + "M.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartDefault), + "M.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartWarning), + "M.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredStartError), + "M.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEnd), + "M.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndDefault), + "M.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndWarning), + "M.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMOuterLabelRequiredEndError), + "M.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabel), + "M.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelDefault), + "M.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelWarning), + "M.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelError), + "M.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStart), + "M.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartDefault), + "M.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartWarning), + "M.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredStartError), + "M.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEnd), + "M.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndDefault), + "M.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndWarning), + "M.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaMInnerLabelRequiredEndError), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLDefault), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLWarning), + "L.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLError), + "L.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStart), + "L.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartDefault), + "L.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartWarning), + "L.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredStartError), + "L.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEnd), + "L.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndDefault), + "L.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndWarning), + "L.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLRequiredEndError), + "L.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabel), + "L.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelDefault), + "L.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelWarning), + "L.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelError), + "L.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStart), + "L.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartDefault), + "L.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartWarning), + "L.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredStartError), + "L.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEnd), + "L.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndDefault), + "L.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndWarning), + "L.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLOuterLabelRequiredEndError), + "L.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabel), + "L.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelDefault), + "L.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelWarning), + "L.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelError), + "L.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStart), + "L.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartDefault), + "L.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartWarning), + "L.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredStartError), + "L.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEnd), + "L.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndDefault), + "L.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndWarning), + "L.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaLInnerLabelRequiredEndError), + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlDefault), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlWarning), + "Xl.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlError), + "Xl.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStart), + "Xl.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartDefault), + "Xl.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartWarning), + "Xl.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredStartError), + "Xl.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEnd), + "Xl.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndDefault), + "Xl.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndWarning), + "Xl.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlRequiredEndError), + "Xl.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabel), + "Xl.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelDefault), + "Xl.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelWarning), + "Xl.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelError), + "Xl.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStart), + "Xl.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartDefault), + "Xl.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartWarning), + "Xl.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredStartError), + "Xl.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEnd), + "Xl.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndDefault), + "Xl.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndWarning), + "Xl.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlOuterLabelRequiredEndError), + "Xl.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabel), + "Xl.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelDefault), + "Xl.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelWarning), + "Xl.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelError), + "Xl.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStart), + "Xl.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartDefault), + "Xl.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartWarning), + "Xl.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredStartError), + "Xl.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEnd), + "Xl.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndDefault), + "Xl.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndWarning), + "Xl.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextAreaXlInnerLabelRequiredEndError), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextFieldVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextFieldVariationsView.kt new file mode 100644 index 0000000000..5f60cc696c --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextFieldVariationsView.kt @@ -0,0 +1,229 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cTextFieldVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXs), + "Xs.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsDefault), + "Xs.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsSuccess), + "Xs.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsWarning), + "Xs.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsError), + "Xs.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStart), + "Xs.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartDefault), + "Xs.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartSuccess), + "Xs.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartWarning), + "Xs.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredStartError), + "Xs.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEnd), + "Xs.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndDefault), + "Xs.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndSuccess), + "Xs.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndWarning), + "Xs.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsRequiredEndError), + "Xs.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabel), + "Xs.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelDefault), + "Xs.OuterLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelSuccess), + "Xs.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelWarning), + "Xs.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelError), + "Xs.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStart), + "Xs.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartDefault), + "Xs.OuterLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartSuccess), + "Xs.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartWarning), + "Xs.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredStartError), + "Xs.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEnd), + "Xs.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndDefault), + "Xs.OuterLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndSuccess), + "Xs.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndWarning), + "Xs.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXsOuterLabelRequiredEndError), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldS), + "S.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSDefault), + "S.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSSuccess), + "S.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSWarning), + "S.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSError), + "S.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStart), + "S.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartDefault), + "S.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartSuccess), + "S.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartWarning), + "S.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredStartError), + "S.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEnd), + "S.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndDefault), + "S.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndSuccess), + "S.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndWarning), + "S.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSRequiredEndError), + "S.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabel), + "S.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelDefault), + "S.OuterLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelSuccess), + "S.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelWarning), + "S.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelError), + "S.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStart), + "S.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartDefault), + "S.OuterLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartSuccess), + "S.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartWarning), + "S.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredStartError), + "S.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEnd), + "S.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndDefault), + "S.OuterLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndSuccess), + "S.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndWarning), + "S.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSOuterLabelRequiredEndError), + "S.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabel), + "S.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelDefault), + "S.InnerLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelSuccess), + "S.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelWarning), + "S.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelError), + "S.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStart), + "S.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartDefault), + "S.InnerLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartSuccess), + "S.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartWarning), + "S.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredStartError), + "S.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEnd), + "S.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndDefault), + "S.InnerLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndSuccess), + "S.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndWarning), + "S.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldSInnerLabelRequiredEndError), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldM), + "M.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMDefault), + "M.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMSuccess), + "M.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMWarning), + "M.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMError), + "M.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStart), + "M.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartDefault), + "M.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartSuccess), + "M.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartWarning), + "M.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredStartError), + "M.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEnd), + "M.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndDefault), + "M.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndSuccess), + "M.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndWarning), + "M.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMRequiredEndError), + "M.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabel), + "M.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelDefault), + "M.OuterLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelSuccess), + "M.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelWarning), + "M.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelError), + "M.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStart), + "M.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartDefault), + "M.OuterLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartSuccess), + "M.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartWarning), + "M.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredStartError), + "M.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEnd), + "M.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndDefault), + "M.OuterLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndSuccess), + "M.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndWarning), + "M.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMOuterLabelRequiredEndError), + "M.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabel), + "M.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelDefault), + "M.InnerLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelSuccess), + "M.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelWarning), + "M.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelError), + "M.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStart), + "M.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartDefault), + "M.InnerLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartSuccess), + "M.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartWarning), + "M.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredStartError), + "M.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEnd), + "M.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndDefault), + "M.InnerLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndSuccess), + "M.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndWarning), + "M.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldMInnerLabelRequiredEndError), + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldL), + "L.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLDefault), + "L.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLSuccess), + "L.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLWarning), + "L.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLError), + "L.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStart), + "L.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartDefault), + "L.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartSuccess), + "L.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartWarning), + "L.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredStartError), + "L.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEnd), + "L.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndDefault), + "L.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndSuccess), + "L.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndWarning), + "L.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLRequiredEndError), + "L.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabel), + "L.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelDefault), + "L.OuterLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelSuccess), + "L.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelWarning), + "L.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelError), + "L.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStart), + "L.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartDefault), + "L.OuterLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartSuccess), + "L.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartWarning), + "L.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredStartError), + "L.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEnd), + "L.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndDefault), + "L.OuterLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndSuccess), + "L.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndWarning), + "L.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLOuterLabelRequiredEndError), + "L.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabel), + "L.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelDefault), + "L.InnerLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelSuccess), + "L.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelWarning), + "L.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelError), + "L.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStart), + "L.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartDefault), + "L.InnerLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartSuccess), + "L.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartWarning), + "L.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredStartError), + "L.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEnd), + "L.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndDefault), + "L.InnerLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndSuccess), + "L.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndWarning), + "L.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldLInnerLabelRequiredEndError), + "Xl" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXl), + "Xl.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlDefault), + "Xl.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlSuccess), + "Xl.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlWarning), + "Xl.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlError), + "Xl.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStart), + "Xl.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartDefault), + "Xl.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartSuccess), + "Xl.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartWarning), + "Xl.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredStartError), + "Xl.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEnd), + "Xl.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndDefault), + "Xl.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndSuccess), + "Xl.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndWarning), + "Xl.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlRequiredEndError), + "Xl.OuterLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabel), + "Xl.OuterLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelDefault), + "Xl.OuterLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelSuccess), + "Xl.OuterLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelWarning), + "Xl.OuterLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelError), + "Xl.OuterLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStart), + "Xl.OuterLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartDefault), + "Xl.OuterLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartSuccess), + "Xl.OuterLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartWarning), + "Xl.OuterLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredStartError), + "Xl.OuterLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEnd), + "Xl.OuterLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndDefault), + "Xl.OuterLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndSuccess), + "Xl.OuterLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndWarning), + "Xl.OuterLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlOuterLabelRequiredEndError), + "Xl.InnerLabel" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabel), + "Xl.InnerLabel.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelDefault), + "Xl.InnerLabel.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelSuccess), + "Xl.InnerLabel.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelWarning), + "Xl.InnerLabel.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelError), + "Xl.InnerLabel.RequiredStart" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStart), + "Xl.InnerLabel.RequiredStart.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartDefault), + "Xl.InnerLabel.RequiredStart.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartSuccess), + "Xl.InnerLabel.RequiredStart.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartWarning), + "Xl.InnerLabel.RequiredStart.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredStartError), + "Xl.InnerLabel.RequiredEnd" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEnd), + "Xl.InnerLabel.RequiredEnd.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndDefault), + "Xl.InnerLabel.RequiredEnd.Success" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndSuccess), + "Xl.InnerLabel.RequiredEnd.Warning" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndWarning), + "Xl.InnerLabel.RequiredEnd.Error" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextFieldXlInnerLabelRequiredEndError), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextSkeletonVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextSkeletonVariationsView.kt new file mode 100644 index 0000000000..4df473a5b6 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTextSkeletonVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cTextSkeletonVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + ".Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextSkeletonDefault), + ".Lighter" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TextSkeletonLighter), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToastVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToastVariationsView.kt new file mode 100644 index 0000000000..a7b247524d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToastVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cToastVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "Rounded" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastRounded), + "Rounded.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedDefault), + "Rounded.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedPositive), + "Rounded.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastRoundedNegative), + "Pilled" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastPilled), + "Pilled.Default" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledDefault), + "Pilled.Positive" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledPositive), + "Pilled.Negative" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToastPilledNegative), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarHorizontalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarHorizontalVariationsView.kt new file mode 100644 index 0000000000..058233e58d --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarHorizontalVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cToolBarHorizontalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalL), + "L.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalLHasShadow), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalM), + "M.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalMHasShadow), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalS), + "S.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalSHasShadow), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalXs), + "Xs.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarHorizontalXsHasShadow), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarVerticalVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarVerticalVariationsView.kt new file mode 100644 index 0000000000..5f030ffdd3 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cToolBarVerticalVariationsView.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cToolBarVerticalVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "L" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalL), + "L.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalLHasShadow), + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalM), + "M.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalMHasShadow), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalS), + "S.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalSHasShadow), + "Xs" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalXs), + "Xs.HasShadow" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_ToolBarVerticalXsHasShadow), + ) +} diff --git a/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTooltipVariationsView.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTooltipVariationsView.kt new file mode 100644 index 0000000000..1d860fed86 --- /dev/null +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cTooltipVariationsView.kt @@ -0,0 +1,21 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.plasma.sd.service.integration + +import com.sdds.sandbox.AndroidViewStyleProvider +import com.sdds.sandbox.AndroidViewStyleReference +import com.sdds.sandbox.viewStyleReference +import com.sdds.plasma.sd.service.R as DsR + +internal object PlasmaB2cTooltipVariationsView : AndroidViewStyleProvider() { + override val variations: Map = + mapOf( + "M" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TooltipM), + "S" to viewStyleReference(DsR.style.Plasma_SdService_ComponentOverlays_TooltipS), + ) +} diff --git a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cViewComponents.kt b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cViewComponents.kt similarity index 86% rename from playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cViewComponents.kt rename to tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cViewComponents.kt index 6070c52985..43dc421c8a 100644 --- a/playground/sandbox-plasma-sd-service-integration/src/main/kotlin/com/sdds/playground/sandbox/plasma/sd/service/integration/view/PlasmaB2cViewComponents.kt +++ b/tokens/plasma.sd.service.view/integration/src/main/kotlin/com/plasma/sd/service/integration/PlasmaB2cViewComponents.kt @@ -1,29 +1,36 @@ -package com.sdds.playground.sandbox.plasma.sd.service.integration.view +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderView -import com.sdds.playground.sandbox.core.integration.component.ViewComponent +package com.plasma.sd.service.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object PlasmaB2cViewComponents : ComponentsProviderView() { +object PlasmaB2cViewComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ViewComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to PlasmaB2cAvatarVariationsView, ), ), - ViewComponent( + Component( ComponentKey.AvatarGroup, mapOf( "AvatarGroup" to PlasmaB2cAvatarGroupVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Badge, mapOf( "BadgeClear" to PlasmaB2cBadgeClearVariationsView, @@ -31,7 +38,7 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "BadgeTransparent" to PlasmaB2cBadgeTransparentVariationsView, ), ), - ViewComponent( + Component( ComponentKey.IconBadge, mapOf( "IconBadgeClear" to PlasmaB2cIconBadgeClearVariationsView, @@ -39,57 +46,57 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "IconBadgeTransparent" to PlasmaB2cIconBadgeTransparentVariationsView, ), ), - ViewComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to PlasmaB2cBasicButtonVariationsView, ), ), - ViewComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to PlasmaB2cIconButtonVariationsView, ), ), - ViewComponent( + Component( ComponentKey.LinkButton, mapOf( "LinkButton" to PlasmaB2cLinkButtonVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Card, mapOf( "CardSolid" to PlasmaB2cCardSolidVariationsView, "CardClear" to PlasmaB2cCardClearVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Cell, mapOf( "Cell" to PlasmaB2cCellVariationsView, ), ), - ViewComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to PlasmaB2cCheckBoxVariationsView, ), ), - ViewComponent( + Component( ComponentKey.CheckBoxGroup, mapOf( "CheckBoxGroup" to PlasmaB2cCheckBoxGroupVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to PlasmaB2cChipVariationsView, "EmbeddedChip" to PlasmaB2cEmbeddedChipVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroupDense" to PlasmaB2cChipGroupDenseVariationsView, @@ -98,135 +105,135 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "EmbeddedChipGroupWide" to PlasmaB2cEmbeddedChipGroupWideVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to PlasmaB2cCounterVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to PlasmaB2cDividerVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to PlasmaB2cIndicatorVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Overlay, mapOf( "OverlayView" to PlasmaB2cOverlayViewVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ProgressBar, mapOf( "ProgressBar" to PlasmaB2cProgressBarVariationsView, ), ), - ViewComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to PlasmaB2cCircularProgressBarVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to PlasmaB2cPopoverVariationsView, ), ), - ViewComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to PlasmaB2cRadioBoxVariationsView, ), ), - ViewComponent( + Component( ComponentKey.RadioBoxGroup, mapOf( "RadioBoxGroup" to PlasmaB2cRadioBoxGroupVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to PlasmaB2cSegmentVariationsView, ), ), - ViewComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to PlasmaB2cSegmentItemVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to PlasmaB2cSwitchVariationsView, ), ), - ViewComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to PlasmaB2cTextFieldVariationsView, ), ), - ViewComponent( + Component( ComponentKey.TextArea, mapOf( "TextArea" to PlasmaB2cTextAreaVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to PlasmaB2cTooltipVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ToolBar, mapOf( "ToolBarHorizontal" to PlasmaB2cToolBarHorizontalVariationsView, "ToolBarVertical" to PlasmaB2cToolBarVerticalVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Toast, mapOf( "Toast" to PlasmaB2cToastVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to PlasmaB2cModalVariationsView, ), ), - ViewComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to PlasmaB2cRectSkeletonVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Notification, mapOf( "NotificationCompact" to PlasmaB2cNotificationCompactVariationsView, "NotificationLoose" to PlasmaB2cNotificationLooseVariationsView, ), ), - ViewComponent( + Component( ComponentKey.NotificationContent, mapOf( "NotificationContent" to PlasmaB2cNotificationContentVariationsView, ), ), - ViewComponent( + Component( ComponentKey.List, mapOf( "ListNormal" to PlasmaB2cListNormalVariationsView, @@ -235,7 +242,7 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "DropdownMenuListTight" to PlasmaB2cDropdownMenuListTightVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ListItem, mapOf( "ListItemNormal" to PlasmaB2cListItemNormalVariationsView, @@ -244,32 +251,32 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "DropdownMenuItemTight" to PlasmaB2cDropdownMenuItemTightVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to PlasmaB2cSpinnerVariationsView, ), ), - ViewComponent( + Component( ComponentKey.TextSkeleton, mapOf( "TextSkeleton" to PlasmaB2cTextSkeletonVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to PlasmaB2cLoaderVariationsView, ), ), - ViewComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenuTight" to PlasmaB2cDropdownMenuTightVariationsView, "DropdownMenuNormal" to PlasmaB2cDropdownMenuNormalVariationsView, ), ), - ViewComponent( + Component( ComponentKey.AccordionItem, mapOf( "AccordionItemSolidActionStart" to PlasmaB2cAccordionItemSolidActionStartVariationsView, @@ -278,7 +285,7 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "AccordionItemClearActionEnd" to PlasmaB2cAccordionItemClearActionEndVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Accordion, mapOf( "AccordionSolidActionStart" to PlasmaB2cAccordionSolidActionStartVariationsView, @@ -287,38 +294,38 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "AccordionClearActionEnd" to PlasmaB2cAccordionClearActionEndVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to PlasmaB2cScrollBarVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Image, mapOf( "ImageView" to PlasmaB2cImageViewVariationsView, ), ), - ViewComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to PlasmaB2cBasicButtonGroupVariationsView, "IconButtonGroup" to PlasmaB2cIconButtonGroupVariationsView, ), ), - ViewComponent( + Component( ComponentKey.CodeField, mapOf( "CodeField" to PlasmaB2cCodeFieldVariationsView, ), ), - ViewComponent( + Component( ComponentKey.CodeInput, mapOf( "CodeInput" to PlasmaB2cCodeInputVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Drawer, mapOf( "DrawerCloseNone" to PlasmaB2cDrawerCloseNoneVariationsView, @@ -326,40 +333,40 @@ object PlasmaB2cViewComponents : ComponentsProviderView() { "DrawerCloseOuter" to PlasmaB2cDrawerCloseOuterVariationsView, ), ), - ViewComponent( + Component( ComponentKey.NavigationBar, mapOf( "NavigationBarMainPage" to PlasmaB2cNavigationBarMainPageVariationsView, "NavigationBarInternalPage" to PlasmaB2cNavigationBarInternalPageVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Autocomplete, mapOf( "AutocompleteTight" to PlasmaB2cAutocompleteTightVariationsView, "AutocompleteNormal" to PlasmaB2cAutocompleteNormalVariationsView, ), ), - ViewComponent( + Component( ComponentKey.DropdownEmptyState, mapOf( "DropdownEmptyState" to PlasmaB2cDropdownEmptyStateVariationsView, ), ), - ViewComponent( + Component( ComponentKey.Carousel, mapOf( "Carousel" to PlasmaB2cCarouselVariationsView, ), ), - ViewComponent( + Component( ComponentKey.PaginationDots, mapOf( "PaginationDotsHorizontal" to PlasmaB2cPaginationDotsHorizontalVariationsView, "PaginationDotsVertical" to PlasmaB2cPaginationDotsVerticalVariationsView, ), ), - ViewComponent( + Component( ComponentKey.File, mapOf( "FileCircularProgress" to PlasmaB2cFileCircularProgressVariationsView, diff --git a/tokens/sdds-sbcom-compose/app/build.gradle.kts b/tokens/sdds-sbcom-compose/app/build.gradle.kts new file mode 100644 index 0000000000..db52a5e917 --- /dev/null +++ b/tokens/sdds-sbcom-compose/app/build.gradle.kts @@ -0,0 +1,23 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.compose") + id("convention.auto-bump") + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.sdds.sbcom.compose.sandbox" +} + +dependencies { + implementation(project(":sdds-sbcom-compose:integration")) + implementation(project(":sdds-sbcom-compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:uikit-compose-fixtures") + implementation(libs.base.androidX.compose.foundation) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.android.material) + implementation(libs.base.androidX.activity) +} diff --git a/tokens/sdds-sbcom-compose/app/src/main/AndroidManifest.xml b/tokens/sdds-sbcom-compose/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..d98b78caf6 --- /dev/null +++ b/tokens/sdds-sbcom-compose/app/src/main/AndroidManifest.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/sdds-sbcom-compose/app/src/main/java/com/sdds/sbcom/compose/sandbox/AppActivity.kt b/tokens/sdds-sbcom-compose/app/src/main/java/com/sdds/sbcom/compose/sandbox/AppActivity.kt new file mode 100644 index 0000000000..1c01ac2289 --- /dev/null +++ b/tokens/sdds-sbcom-compose/app/src/main/java/com/sdds/sbcom/compose/sandbox/AppActivity.kt @@ -0,0 +1,26 @@ +package com.sdds.sbcom.compose.sandbox + +import android.os.Bundle +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.compose.uikit.fixtures.stories.registerCoreStories +import com.sdds.sbcom.integration.registerTheme + +/** + * Главная активность приложения, интегрированная с Sandbox-окружением для демонстрации компонентов. + * + * Наследуется от [SandboxActivity], которая предоставляет базовую инфраструктуру + * для отображения сторибука с компонентами. В этой активности происходит + * инициализация и регистрация всех доступных историй компонентов перед + * запуском основного интерфейса. + * + * @see SandboxActivity + * @see registerCoreStories + */ +class AppActivity : SandboxActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + registerCoreStories() + registerTheme() + } +} diff --git a/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_banner.png b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_banner.png new file mode 100644 index 0000000000..54a9d62e6b Binary files /dev/null and b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_banner.png differ diff --git a/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_bg.png b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_bg.png new file mode 100644 index 0000000000..d0d811ada5 Binary files /dev/null and b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/app_bg.png differ diff --git a/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher.png b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher.png new file mode 100644 index 0000000000..d96dc8d170 Binary files /dev/null and b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher.png differ diff --git a/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher_round.png b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher_round.png new file mode 100644 index 0000000000..0a029e5eb1 Binary files /dev/null and b/tokens/sdds-sbcom-compose/app/src/main/res/drawable/ic_launcher_round.png differ diff --git a/tokens/sdds-sbcom-compose/app/src/main/res/values/strings.xml b/tokens/sdds-sbcom-compose/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..800b8274b4 --- /dev/null +++ b/tokens/sdds-sbcom-compose/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Sdds Sbcom + \ No newline at end of file diff --git a/tokens/sdds-sbcom-compose/integration/build.gradle.kts b/tokens/sdds-sbcom-compose/integration/build.gradle.kts new file mode 100644 index 0000000000..01ea4ffd76 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/build.gradle.kts @@ -0,0 +1,21 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-compose") + id("convention.compose") +} + +android { + namespace = "com.sdds.sbcom.compose.integration" +} + +dependencies { + implementation(project(":sdds-sbcom-compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation(libs.sdds.uikit.compose) + implementation(icons.sdds.icons) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/sdds-sbcom-compose/integration/gradle.properties b/tokens/sdds-sbcom-compose/integration/gradle.properties new file mode 100644 index 0000000000..c5b72bab60 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/gradle.properties @@ -0,0 +1,3 @@ +integration.compose.config-path=../tokens/sdds-sbcom-compose/config-info-compose.json +integration.compose.package-name=com.sdds.sbcom.integration +integration.compose.scheme=V2 \ No newline at end of file diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomAvatarVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomAvatarVariationsCompose.kt new file mode 100644 index 0000000000..1a8abdb051 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomAvatarVariationsCompose.kt @@ -0,0 +1,44 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.avatar.Avatar +import com.sdds.sbcom.styles.avatar.Size180 +import com.sdds.sbcom.styles.avatar.Size20 +import com.sdds.sbcom.styles.avatar.Size24 +import com.sdds.sbcom.styles.avatar.Size26 +import com.sdds.sbcom.styles.avatar.Size32 +import com.sdds.sbcom.styles.avatar.Size36 +import com.sdds.sbcom.styles.avatar.Size40 +import com.sdds.sbcom.styles.avatar.Size44 +import com.sdds.sbcom.styles.avatar.Size48 +import com.sdds.sbcom.styles.avatar.Size56 +import com.sdds.sbcom.styles.avatar.Size64 +import com.sdds.sbcom.styles.avatar.Size72 + +internal object SddsSbcomAvatarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Size180" to ComposeStyleReference { Avatar.Size180.style() }, + "Size72" to ComposeStyleReference { Avatar.Size72.style() }, + "Size64" to ComposeStyleReference { Avatar.Size64.style() }, + "Size56" to ComposeStyleReference { Avatar.Size56.style() }, + "Size48" to ComposeStyleReference { Avatar.Size48.style() }, + "Size44" to ComposeStyleReference { Avatar.Size44.style() }, + "Size40" to ComposeStyleReference { Avatar.Size40.style() }, + "Size36" to ComposeStyleReference { Avatar.Size36.style() }, + "Size32" to ComposeStyleReference { Avatar.Size32.style() }, + "Size26" to ComposeStyleReference { Avatar.Size26.style() }, + "Size24" to ComposeStyleReference { Avatar.Size24.style() }, + "Size20" to ComposeStyleReference { Avatar.Size20.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonGroupVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..7f4b5080e7 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.buttongroup.BasicButtonGroup +import com.sdds.sbcom.styles.buttongroup.Default + +internal object SddsSbcomBasicButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { BasicButtonGroup.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonVariationsCompose.kt new file mode 100644 index 0000000000..c88eeca0c6 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomBasicButtonVariationsCompose.kt @@ -0,0 +1,49 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.basicbutton.AccentFilled +import com.sdds.sbcom.styles.basicbutton.AccentGrey +import com.sdds.sbcom.styles.basicbutton.AccentWhite +import com.sdds.sbcom.styles.basicbutton.BasicButton +import com.sdds.sbcom.styles.basicbutton.DangerTint +import com.sdds.sbcom.styles.basicbutton.M +import com.sdds.sbcom.styles.basicbutton.Primary +import com.sdds.sbcom.styles.basicbutton.S +import com.sdds.sbcom.styles.basicbutton.Xs +import com.sdds.sbcom.styles.basicbutton.Xxs + +internal object SddsSbcomBasicButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Primary" to ComposeStyleReference { BasicButton.M.Primary.style() }, + "M.AccentFilled" to ComposeStyleReference { BasicButton.M.AccentFilled.style() }, + "M.AccentWhite" to ComposeStyleReference { BasicButton.M.AccentWhite.style() }, + "M.AccentGrey" to ComposeStyleReference { BasicButton.M.AccentGrey.style() }, + "M.DangerTint" to ComposeStyleReference { BasicButton.M.DangerTint.style() }, + "S.Primary" to ComposeStyleReference { BasicButton.S.Primary.style() }, + "S.AccentFilled" to ComposeStyleReference { BasicButton.S.AccentFilled.style() }, + "S.AccentWhite" to ComposeStyleReference { BasicButton.S.AccentWhite.style() }, + "S.AccentGrey" to ComposeStyleReference { BasicButton.S.AccentGrey.style() }, + "S.DangerTint" to ComposeStyleReference { BasicButton.S.DangerTint.style() }, + "Xs.Primary" to ComposeStyleReference { BasicButton.Xs.Primary.style() }, + "Xs.AccentFilled" to ComposeStyleReference { BasicButton.Xs.AccentFilled.style() }, + "Xs.AccentWhite" to ComposeStyleReference { BasicButton.Xs.AccentWhite.style() }, + "Xs.AccentGrey" to ComposeStyleReference { BasicButton.Xs.AccentGrey.style() }, + "Xs.DangerTint" to ComposeStyleReference { BasicButton.Xs.DangerTint.style() }, + "Xxs.Primary" to ComposeStyleReference { BasicButton.Xxs.Primary.style() }, + "Xxs.AccentFilled" to ComposeStyleReference { BasicButton.Xxs.AccentFilled.style() }, + "Xxs.AccentWhite" to ComposeStyleReference { BasicButton.Xxs.AccentWhite.style() }, + "Xxs.AccentGrey" to ComposeStyleReference { BasicButton.Xxs.AccentGrey.style() }, + "Xxs.DangerTint" to ComposeStyleReference { BasicButton.Xxs.DangerTint.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCheckBoxVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCheckBoxVariationsCompose.kt new file mode 100644 index 0000000000..b1eca900f8 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCheckBoxVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.checkbox.CheckBox +import com.sdds.sbcom.styles.checkbox.Default + +internal object SddsSbcomCheckBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { CheckBox.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipGroupVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipGroupVariationsCompose.kt new file mode 100644 index 0000000000..24d47807bd --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipGroupVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.chipgroup.ChipGroup +import com.sdds.sbcom.styles.chipgroup.Default +import com.sdds.sbcom.styles.chipgroup.HasContentStart + +internal object SddsSbcomChipGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ChipGroup.Default.style() }, + "HasContentStart" to ComposeStyleReference { ChipGroup.HasContentStart.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipVariationsCompose.kt new file mode 100644 index 0000000000..07acf28e6c --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomChipVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.chip.Chip +import com.sdds.sbcom.styles.chip.Default +import com.sdds.sbcom.styles.chip.HasContentStart + +internal object SddsSbcomChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Chip.Default.style() }, + "HasContentStart" to ComposeStyleReference { Chip.HasContentStart.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCircularProgressBarVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCircularProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..8b3458ac11 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCircularProgressBarVariationsCompose.kt @@ -0,0 +1,55 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CircularProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.circularprogressbar.Accent +import com.sdds.sbcom.styles.circularprogressbar.CircularProgressBar +import com.sdds.sbcom.styles.circularprogressbar.Danger +import com.sdds.sbcom.styles.circularprogressbar.GlobalWhite +import com.sdds.sbcom.styles.circularprogressbar.M +import com.sdds.sbcom.styles.circularprogressbar.Primary +import com.sdds.sbcom.styles.circularprogressbar.S +import com.sdds.sbcom.styles.circularprogressbar.Secondary +import com.sdds.sbcom.styles.circularprogressbar.Xs +import com.sdds.sbcom.styles.circularprogressbar.Xxl +import com.sdds.sbcom.styles.circularprogressbar.Xxs + +internal object SddsSbcomCircularProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Primary" to ComposeStyleReference { CircularProgressBar.Xxl.Primary.style() }, + "Xxl.Secondary" to ComposeStyleReference { CircularProgressBar.Xxl.Secondary.style() }, + "Xxl.GlobalWhite" to ComposeStyleReference { CircularProgressBar.Xxl.GlobalWhite.style() }, + "Xxl.Accent" to ComposeStyleReference { CircularProgressBar.Xxl.Accent.style() }, + "Xxl.Danger" to ComposeStyleReference { CircularProgressBar.Xxl.Danger.style() }, + "M.Primary" to ComposeStyleReference { CircularProgressBar.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { CircularProgressBar.M.Secondary.style() }, + "M.GlobalWhite" to ComposeStyleReference { CircularProgressBar.M.GlobalWhite.style() }, + "M.Accent" to ComposeStyleReference { CircularProgressBar.M.Accent.style() }, + "M.Danger" to ComposeStyleReference { CircularProgressBar.M.Danger.style() }, + "S.Primary" to ComposeStyleReference { CircularProgressBar.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { CircularProgressBar.S.Secondary.style() }, + "S.GlobalWhite" to ComposeStyleReference { CircularProgressBar.S.GlobalWhite.style() }, + "S.Accent" to ComposeStyleReference { CircularProgressBar.S.Accent.style() }, + "S.Danger" to ComposeStyleReference { CircularProgressBar.S.Danger.style() }, + "Xs.Primary" to ComposeStyleReference { CircularProgressBar.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { CircularProgressBar.Xs.Secondary.style() }, + "Xs.GlobalWhite" to ComposeStyleReference { CircularProgressBar.Xs.GlobalWhite.style() }, + "Xs.Accent" to ComposeStyleReference { CircularProgressBar.Xs.Accent.style() }, + "Xs.Danger" to ComposeStyleReference { CircularProgressBar.Xs.Danger.style() }, + "Xxs.Primary" to ComposeStyleReference { CircularProgressBar.Xxs.Primary.style() }, + "Xxs.Secondary" to ComposeStyleReference { CircularProgressBar.Xxs.Secondary.style() }, + "Xxs.GlobalWhite" to ComposeStyleReference { CircularProgressBar.Xxs.GlobalWhite.style() }, + "Xxs.Accent" to ComposeStyleReference { CircularProgressBar.Xxs.Accent.style() }, + "Xxs.Danger" to ComposeStyleReference { CircularProgressBar.Xxs.Danger.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt new file mode 100644 index 0000000000..4d7c888c82 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CollapsingNavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.collapsingnavigationbar.CollapsingNavigationBarInternalPage +import com.sdds.sbcom.styles.collapsingnavigationbar.Default + +internal object SddsSbcomCollapsingNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { CollapsingNavigationBarInternalPage.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt new file mode 100644 index 0000000000..e30e78af8c --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCollapsingNavigationBarMainPageVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CollapsingNavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.collapsingnavigationbar.CollapsingNavigationBarMainPage +import com.sdds.sbcom.styles.collapsingnavigationbar.Default + +internal object SddsSbcomCollapsingNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { CollapsingNavigationBarMainPage.Default.style() }, + ) +} diff --git a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomComposeComponents.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomComposeComponents.kt similarity index 80% rename from playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomComposeComponents.kt rename to tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomComposeComponents.kt index ef9e541894..1e53f28eba 100644 --- a/playground/sandbox-sdds-sbcom-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/sbcom/integration/compose/SddsSbcomComposeComponents.kt +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomComposeComponents.kt @@ -1,218 +1,224 @@ -package com.sdds.playground.sandbox.sdds.sbcom.integration.compose +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent +package com.sdds.sbcom.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object SddsSbcomComposeComponents : ComponentsProviderCompose() { +object SddsSbcomComposeComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ComposeComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to SddsSbcomAvatarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to SddsSbcomBasicButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to SddsSbcomIconButtonVariationsCompose, "IconButtonClear" to SddsSbcomIconButtonClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.LinkButton, mapOf( "LinkButton" to SddsSbcomLinkButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BottomSheet, mapOf( "ModalBottomSheet" to SddsSbcomModalBottomSheetVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to SddsSbcomCheckBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to SddsSbcomChipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroup" to SddsSbcomChipGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to SddsSbcomCounterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to SddsSbcomDividerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to SddsSbcomIndicatorVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to SddsSbcomLoaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Overlay, mapOf( "Overlay" to SddsSbcomOverlayVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to SddsSbcomCircularProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to SddsSbcomPopoverVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to SddsSbcomRadioBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to SddsSbcomSegmentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to SddsSbcomSegmentItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to SddsSbcomSwitchVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to SddsSbcomTextFieldVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to SddsSbcomTooltipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to SddsSbcomModalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to SddsSbcomRectSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to SddsSbcomSpinnerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.List, mapOf( "DropdownMenuList" to SddsSbcomDropdownMenuListVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ListItem, mapOf( "DropdownMenuItem" to SddsSbcomDropdownMenuItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenu" to SddsSbcomDropdownMenuVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to SddsSbcomScrollBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to SddsSbcomBasicButtonGroupVariationsCompose, "IconButtonGroup" to SddsSbcomIconButtonGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBar, mapOf( "TabBar" to SddsSbcomTabBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBarItem, mapOf( "TabBarItem" to SddsSbcomTabBarItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tabs, mapOf( "TabsFolder" to SddsSbcomTabsFolderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabItem, mapOf( "TabItemFolder" to SddsSbcomTabItemFolderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CollapsingNavigationBar, mapOf( "CollapsingNavigationBarMainPage" to SddsSbcomCollapsingNavigationBarMainPageVariationsCompose, diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCounterVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCounterVariationsCompose.kt new file mode 100644 index 0000000000..a998af5219 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomCounterVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CounterStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.counter.Accent +import com.sdds.sbcom.styles.counter.Counter +import com.sdds.sbcom.styles.counter.Danger +import com.sdds.sbcom.styles.counter.Primary +import com.sdds.sbcom.styles.counter.Secondary + +internal object SddsSbcomCounterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Primary" to ComposeStyleReference { Counter.Primary.style() }, + "Secondary" to ComposeStyleReference { Counter.Secondary.style() }, + "Accent" to ComposeStyleReference { Counter.Accent.style() }, + "Danger" to ComposeStyleReference { Counter.Danger.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDividerVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDividerVariationsCompose.kt new file mode 100644 index 0000000000..83c688a194 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDividerVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DividerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.divider.Default +import com.sdds.sbcom.styles.divider.Divider + +internal object SddsSbcomDividerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Divider.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuItemVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuItemVariationsCompose.kt new file mode 100644 index 0000000000..7b72459adb --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuItemVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.listitem.Default +import com.sdds.sbcom.styles.listitem.DropdownMenuItem + +internal object SddsSbcomDropdownMenuItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { DropdownMenuItem.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuListVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuListVariationsCompose.kt new file mode 100644 index 0000000000..8baaa96a0b --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuListVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.list.Default +import com.sdds.sbcom.styles.list.DropdownMenuList + +internal object SddsSbcomDropdownMenuListVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { DropdownMenuList.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuVariationsCompose.kt new file mode 100644 index 0000000000..51e187b8c8 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomDropdownMenuVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.dropdownmenu.Default +import com.sdds.sbcom.styles.dropdownmenu.DropdownMenu + +internal object SddsSbcomDropdownMenuVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { DropdownMenu.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonClearVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonClearVariationsCompose.kt new file mode 100644 index 0000000000..e74bacffdc --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonClearVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.iconbutton.Accent +import com.sdds.sbcom.styles.iconbutton.DangerTint +import com.sdds.sbcom.styles.iconbutton.IconButtonClear +import com.sdds.sbcom.styles.iconbutton.M +import com.sdds.sbcom.styles.iconbutton.S +import com.sdds.sbcom.styles.iconbutton.Xs + +internal object SddsSbcomIconButtonClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Accent" to ComposeStyleReference { IconButtonClear.M.Accent.style() }, + "M.DangerTint" to ComposeStyleReference { IconButtonClear.M.DangerTint.style() }, + "S.Accent" to ComposeStyleReference { IconButtonClear.S.Accent.style() }, + "S.DangerTint" to ComposeStyleReference { IconButtonClear.S.DangerTint.style() }, + "Xs.Accent" to ComposeStyleReference { IconButtonClear.Xs.Accent.style() }, + "Xs.DangerTint" to ComposeStyleReference { IconButtonClear.Xs.DangerTint.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonGroupVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..b9dab43815 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.buttongroup.Default +import com.sdds.sbcom.styles.buttongroup.IconButtonGroup + +internal object SddsSbcomIconButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { IconButtonGroup.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonVariationsCompose.kt new file mode 100644 index 0000000000..d529d73e67 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIconButtonVariationsCompose.kt @@ -0,0 +1,35 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.iconbutton.AccentFilled +import com.sdds.sbcom.styles.iconbutton.AccentGrey +import com.sdds.sbcom.styles.iconbutton.DangerTint +import com.sdds.sbcom.styles.iconbutton.IconButton +import com.sdds.sbcom.styles.iconbutton.M +import com.sdds.sbcom.styles.iconbutton.S +import com.sdds.sbcom.styles.iconbutton.Xs + +internal object SddsSbcomIconButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.AccentFilled" to ComposeStyleReference { IconButton.M.AccentFilled.style() }, + "M.AccentGrey" to ComposeStyleReference { IconButton.M.AccentGrey.style() }, + "M.DangerTint" to ComposeStyleReference { IconButton.M.DangerTint.style() }, + "S.AccentFilled" to ComposeStyleReference { IconButton.S.AccentFilled.style() }, + "S.AccentGrey" to ComposeStyleReference { IconButton.S.AccentGrey.style() }, + "S.DangerTint" to ComposeStyleReference { IconButton.S.DangerTint.style() }, + "Xs.AccentFilled" to ComposeStyleReference { IconButton.Xs.AccentFilled.style() }, + "Xs.AccentGrey" to ComposeStyleReference { IconButton.Xs.AccentGrey.style() }, + "Xs.DangerTint" to ComposeStyleReference { IconButton.Xs.DangerTint.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIndicatorVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIndicatorVariationsCompose.kt new file mode 100644 index 0000000000..4228793357 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomIndicatorVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.IndicatorStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.indicator.Danger +import com.sdds.sbcom.styles.indicator.GlobalWhite +import com.sdds.sbcom.styles.indicator.Indicator +import com.sdds.sbcom.styles.indicator.Mute +import com.sdds.sbcom.styles.indicator.Success +import com.sdds.sbcom.styles.indicator.Warning + +internal object SddsSbcomIndicatorVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Success" to ComposeStyleReference { Indicator.Success.style() }, + "GlobalWhite" to ComposeStyleReference { Indicator.GlobalWhite.style() }, + "Mute" to ComposeStyleReference { Indicator.Mute.style() }, + "Danger" to ComposeStyleReference { Indicator.Danger.style() }, + "Warning" to ComposeStyleReference { Indicator.Warning.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLinkButtonVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLinkButtonVariationsCompose.kt new file mode 100644 index 0000000000..a9fabf9439 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLinkButtonVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.linkbutton.Accent +import com.sdds.sbcom.styles.linkbutton.DangerTint +import com.sdds.sbcom.styles.linkbutton.LinkButton +import com.sdds.sbcom.styles.linkbutton.M +import com.sdds.sbcom.styles.linkbutton.S +import com.sdds.sbcom.styles.linkbutton.Xs +import com.sdds.sbcom.styles.linkbutton.Xxs + +internal object SddsSbcomLinkButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Accent" to ComposeStyleReference { LinkButton.M.Accent.style() }, + "M.DangerTint" to ComposeStyleReference { LinkButton.M.DangerTint.style() }, + "S.Accent" to ComposeStyleReference { LinkButton.S.Accent.style() }, + "S.DangerTint" to ComposeStyleReference { LinkButton.S.DangerTint.style() }, + "Xs.Accent" to ComposeStyleReference { LinkButton.Xs.Accent.style() }, + "Xs.DangerTint" to ComposeStyleReference { LinkButton.Xs.DangerTint.style() }, + "Xxs.Accent" to ComposeStyleReference { LinkButton.Xxs.Accent.style() }, + "Xxs.DangerTint" to ComposeStyleReference { LinkButton.Xxs.DangerTint.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLoaderVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLoaderVariationsCompose.kt new file mode 100644 index 0000000000..b41bc3ff02 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomLoaderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.LoaderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.loader.Default +import com.sdds.sbcom.styles.loader.Loader + +internal object SddsSbcomLoaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Loader.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalBottomSheetVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalBottomSheetVariationsCompose.kt new file mode 100644 index 0000000000..276761fc4b --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalBottomSheetVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalBottomSheetStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.bottomsheet.Default +import com.sdds.sbcom.styles.bottomsheet.ModalBottomSheet + +internal object SddsSbcomModalBottomSheetVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ModalBottomSheet.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalVariationsCompose.kt new file mode 100644 index 0000000000..fb3784bb51 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomModalVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.modal.Default +import com.sdds.sbcom.styles.modal.Modal + +internal object SddsSbcomModalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Modal.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomOverlayVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomOverlayVariationsCompose.kt new file mode 100644 index 0000000000..280fc62e56 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomOverlayVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.OverlayStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.overlay.Default +import com.sdds.sbcom.styles.overlay.Overlay + +internal object SddsSbcomOverlayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Overlay.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomPopoverVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomPopoverVariationsCompose.kt new file mode 100644 index 0000000000..1f3721fee8 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomPopoverVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PopoverStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.popover.Accent +import com.sdds.sbcom.styles.popover.Default +import com.sdds.sbcom.styles.popover.M +import com.sdds.sbcom.styles.popover.Popover +import com.sdds.sbcom.styles.popover.S + +internal object SddsSbcomPopoverVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { Popover.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Popover.M.Accent.style() }, + "S.Default" to ComposeStyleReference { Popover.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Popover.S.Accent.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRadioBoxVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRadioBoxVariationsCompose.kt new file mode 100644 index 0000000000..e6bfc2aaa8 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRadioBoxVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.radiobox.Default +import com.sdds.sbcom.styles.radiobox.RadioBox + +internal object SddsSbcomRadioBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RadioBox.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRectSkeletonVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRectSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..7e7062a51c --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRectSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RectSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.rectskeleton.Default +import com.sdds.sbcom.styles.rectskeleton.Pulse +import com.sdds.sbcom.styles.rectskeleton.RectSkeleton + +internal object SddsSbcomRectSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RectSkeleton.Default.style() }, + "Pulse" to ComposeStyleReference { RectSkeleton.Pulse.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRegisterTheme.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRegisterTheme.kt new file mode 100644 index 0000000000..c73179f2ba --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomRegisterTheme.kt @@ -0,0 +1,41 @@ +package com.sdds.sbcom.integration + +import androidx.compose.foundation.isSystemInDarkTheme +import com.sdds.compose.sandbox.ComposeTheme +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.sandbox.ComponentProvider +import com.sdds.sandbox.ComponentProviderUtils.plus +import com.sdds.sandbox.ThemeManager +import com.sdds.sbcom.theme.SddsSbComTheme +import com.sdds.sbcom.theme.darkSddsSbComColors +import com.sdds.sbcom.theme.darkSddsSbComGradients +import com.sdds.sbcom.theme.lightSddsSbComColors +import com.sdds.sbcom.theme.lightSddsSbComGradients +import com.sdds.sbcom.theme.subthemes.Default +import com.sdds.sbcom.theme.subthemes.Inverse +import com.sdds.sbcom.theme.subthemes.OnDark +import com.sdds.sbcom.theme.subthemes.OnLight + +fun SandboxActivity.registerTheme(componentProvider: ComponentProvider = ComponentProvider.Empty) { + val theme = ComposeTheme( + displayName = "SddsSbcom", + components = SddsSbcomComposeComponents + componentProvider, + themeWrapper = { + val isDark = isSystemInDarkTheme() + SddsSbComTheme( + colors = if (isDark) darkSddsSbComColors() else lightSddsSbComColors(), + gradients = if (isDark) darkSddsSbComGradients() else lightSddsSbComGradients(), + ) { + it() + } + }, + subthemes = mapOf( + SubTheme.DEFAULT to { SddsSbComTheme.Default(content = it) }, + SubTheme.ON_LIGHT to { SddsSbComTheme.OnLight(content = it) }, + SubTheme.ON_DARK to { SddsSbComTheme.OnDark(content = it) }, + SubTheme.INVERSE to { SddsSbComTheme.Inverse(content = it) }, + ), + ) + ThemeManager.updateTheme(theme) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomScrollBarVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomScrollBarVariationsCompose.kt new file mode 100644 index 0000000000..78210539eb --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomScrollBarVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ScrollBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.scrollbar.Default +import com.sdds.sbcom.styles.scrollbar.ScrollBar + +internal object SddsSbcomScrollBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ScrollBar.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentItemVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentItemVariationsCompose.kt new file mode 100644 index 0000000000..cc99c23f62 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentItemVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.segmentitem.Default +import com.sdds.sbcom.styles.segmentitem.SegmentItem + +internal object SddsSbcomSegmentItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { SegmentItem.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentVariationsCompose.kt new file mode 100644 index 0000000000..43eb8e0542 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSegmentVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.segment.Default +import com.sdds.sbcom.styles.segment.Segment + +internal object SddsSbcomSegmentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Segment.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSpinnerVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSpinnerVariationsCompose.kt new file mode 100644 index 0000000000..37b87bc483 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSpinnerVariationsCompose.kt @@ -0,0 +1,49 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SpinnerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.spinner.Accent +import com.sdds.sbcom.styles.spinner.Danger +import com.sdds.sbcom.styles.spinner.GlobalWhite +import com.sdds.sbcom.styles.spinner.M +import com.sdds.sbcom.styles.spinner.Primary +import com.sdds.sbcom.styles.spinner.S +import com.sdds.sbcom.styles.spinner.Secondary +import com.sdds.sbcom.styles.spinner.Spinner +import com.sdds.sbcom.styles.spinner.Xs +import com.sdds.sbcom.styles.spinner.Xxs + +internal object SddsSbcomSpinnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Primary" to ComposeStyleReference { Spinner.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { Spinner.M.Secondary.style() }, + "M.GlobalWhite" to ComposeStyleReference { Spinner.M.GlobalWhite.style() }, + "M.Accent" to ComposeStyleReference { Spinner.M.Accent.style() }, + "M.Danger" to ComposeStyleReference { Spinner.M.Danger.style() }, + "S.Primary" to ComposeStyleReference { Spinner.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { Spinner.S.Secondary.style() }, + "S.GlobalWhite" to ComposeStyleReference { Spinner.S.GlobalWhite.style() }, + "S.Accent" to ComposeStyleReference { Spinner.S.Accent.style() }, + "S.Danger" to ComposeStyleReference { Spinner.S.Danger.style() }, + "Xs.Primary" to ComposeStyleReference { Spinner.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { Spinner.Xs.Secondary.style() }, + "Xs.GlobalWhite" to ComposeStyleReference { Spinner.Xs.GlobalWhite.style() }, + "Xs.Accent" to ComposeStyleReference { Spinner.Xs.Accent.style() }, + "Xs.Danger" to ComposeStyleReference { Spinner.Xs.Danger.style() }, + "Xxs.Primary" to ComposeStyleReference { Spinner.Xxs.Primary.style() }, + "Xxs.Secondary" to ComposeStyleReference { Spinner.Xxs.Secondary.style() }, + "Xxs.GlobalWhite" to ComposeStyleReference { Spinner.Xxs.GlobalWhite.style() }, + "Xxs.Accent" to ComposeStyleReference { Spinner.Xxs.Accent.style() }, + "Xxs.Danger" to ComposeStyleReference { Spinner.Xxs.Danger.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSwitchVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSwitchVariationsCompose.kt new file mode 100644 index 0000000000..9decb72c8c --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomSwitchVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SwitchStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.switcher.Default +import com.sdds.sbcom.styles.switcher.Switch + +internal object SddsSbcomSwitchVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Switch.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarItemVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarItemVariationsCompose.kt new file mode 100644 index 0000000000..46d922585f --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarItemVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.tabbaritem.Default +import com.sdds.sbcom.styles.tabbaritem.TabBarItem + +internal object SddsSbcomTabBarItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TabBarItem.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarVariationsCompose.kt new file mode 100644 index 0000000000..bc57ef93e1 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabBarVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.tabbar.Default +import com.sdds.sbcom.styles.tabbar.TabBar + +internal object SddsSbcomTabBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TabBar.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabItemFolderVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabItemFolderVariationsCompose.kt new file mode 100644 index 0000000000..5dfaa947ef --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabItemFolderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.tabitem.Default +import com.sdds.sbcom.styles.tabitem.TabItemFolder + +internal object SddsSbcomTabItemFolderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TabItemFolder.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabsFolderVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabsFolderVariationsCompose.kt new file mode 100644 index 0000000000..f8bf712b56 --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTabsFolderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.tabs.Default +import com.sdds.sbcom.styles.tabs.TabsFolder + +internal object SddsSbcomTabsFolderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TabsFolder.Default.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTextFieldVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTextFieldVariationsCompose.kt new file mode 100644 index 0000000000..f9a7f1bc7f --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTextFieldVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.textfield.Default +import com.sdds.sbcom.styles.textfield.Error +import com.sdds.sbcom.styles.textfield.TextField + +internal object SddsSbcomTextFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TextField.Default.style() }, + "Error" to ComposeStyleReference { TextField.Error.style() }, + ) +} diff --git a/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTooltipVariationsCompose.kt b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTooltipVariationsCompose.kt new file mode 100644 index 0000000000..1102ad370a --- /dev/null +++ b/tokens/sdds-sbcom-compose/integration/src/main/kotlin/com/sdds/sbcom/integration/SddsSbcomTooltipVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.sbcom.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TooltipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.sbcom.styles.tooltip.Default +import com.sdds.sbcom.styles.tooltip.Tooltip + +internal object SddsSbcomTooltipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Tooltip.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/app/build.gradle.kts b/tokens/sdds.serv.compose/app/build.gradle.kts new file mode 100644 index 0000000000..5dc945d141 --- /dev/null +++ b/tokens/sdds.serv.compose/app/build.gradle.kts @@ -0,0 +1,24 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.sandbox-app") + id("convention.compose") + id("convention.auto-bump") + alias(libs.plugins.kotlin.android) +} + +android { + namespace = "com.sdds.serv.sandbox" +} + +dependencies { + implementation(project(":sdds.serv.compose:integration")) + implementation(project(":sdds.serv.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation("integration-core:uikit-compose-fixtures") + implementation(libs.base.androidX.compose.foundation) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.android.material) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.constraintLayout) +} diff --git a/tokens/sdds.serv.compose/app/src/main/AndroidManifest.xml b/tokens/sdds.serv.compose/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..bffc60334a --- /dev/null +++ b/tokens/sdds.serv.compose/app/src/main/AndroidManifest.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tokens/sdds.serv.compose/app/src/main/kotlin/com/sdds/serv/sandbox/AppActivity.kt b/tokens/sdds.serv.compose/app/src/main/kotlin/com/sdds/serv/sandbox/AppActivity.kt new file mode 100644 index 0000000000..daa08f6e47 --- /dev/null +++ b/tokens/sdds.serv.compose/app/src/main/kotlin/com/sdds/serv/sandbox/AppActivity.kt @@ -0,0 +1,26 @@ +package com.sdds.serv.sandbox + +import android.os.Bundle +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.compose.uikit.fixtures.stories.registerCoreStories +import com.sdds.serv.integration.registerTheme + +/** + * Главная активность приложения, интегрированная с Sandbox-окружением для демонстрации компонентов. + * + * Наследуется от [SandboxActivity], которая предоставляет базовую инфраструктуру + * для отображения сторибука с компонентами. В этой активности происходит + * инициализация и регистрация всех доступных историй компонентов перед + * запуском основного интерфейса. + * + * @see SandboxActivity + * @see registerCoreStories + */ +class AppActivity : SandboxActivity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + registerCoreStories() + registerTheme() + } +} diff --git a/tokens/sdds.serv.compose/app/src/main/res/drawable/app_banner.png b/tokens/sdds.serv.compose/app/src/main/res/drawable/app_banner.png new file mode 100644 index 0000000000..54a9d62e6b Binary files /dev/null and b/tokens/sdds.serv.compose/app/src/main/res/drawable/app_banner.png differ diff --git a/tokens/sdds.serv.compose/app/src/main/res/drawable/app_bg.png b/tokens/sdds.serv.compose/app/src/main/res/drawable/app_bg.png new file mode 100644 index 0000000000..d0d811ada5 Binary files /dev/null and b/tokens/sdds.serv.compose/app/src/main/res/drawable/app_bg.png differ diff --git a/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher.png b/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher.png new file mode 100644 index 0000000000..d96dc8d170 Binary files /dev/null and b/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher.png differ diff --git a/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher_round.png b/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher_round.png new file mode 100644 index 0000000000..0a029e5eb1 Binary files /dev/null and b/tokens/sdds.serv.compose/app/src/main/res/drawable/ic_launcher_round.png differ diff --git a/tokens/sdds.serv.compose/app/src/main/res/values/strings.xml b/tokens/sdds.serv.compose/app/src/main/res/values/strings.xml new file mode 100644 index 0000000000..1982417ae5 --- /dev/null +++ b/tokens/sdds.serv.compose/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Sdds Serv + \ No newline at end of file diff --git a/tokens/sdds.serv.compose/build.gradle.kts b/tokens/sdds.serv.compose/build.gradle.kts index 472da77c9a..f2f596445c 100644 --- a/tokens/sdds.serv.compose/build.gradle.kts +++ b/tokens/sdds.serv.compose/build.gradle.kts @@ -35,7 +35,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") + testImplementation("integration-core:uikit-compose-fixtures") implementation(libs.sdds.uikit.compose) implementation(icons.sdds.icons) implementation(libs.base.androidX.compose.foundation) diff --git a/tokens/sdds.serv.compose/integration/build.gradle.kts b/tokens/sdds.serv.compose/integration/build.gradle.kts new file mode 100644 index 0000000000..6bf3bdcc87 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/build.gradle.kts @@ -0,0 +1,21 @@ +@Suppress("DSL_SCOPE_VIOLATION") +plugins { + id("convention.android-lib") + id("convention.integration-compose") + id("convention.compose") +} + +android { + namespace = "com.sdds.serv.compose.integration" +} + +dependencies { + implementation(project(":sdds.serv.compose")) + implementation("integration-core:sandbox-core") + implementation("integration-core:sandbox-compose") + implementation(libs.sdds.uikit.compose) + implementation(icons.sdds.icons) + implementation(libs.base.androidX.activity) + implementation(libs.base.androidX.appcompat) + implementation(libs.base.androidX.compose.foundation) +} diff --git a/tokens/sdds.serv.compose/integration/gradle.properties b/tokens/sdds.serv.compose/integration/gradle.properties new file mode 100644 index 0000000000..6518e46d99 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/gradle.properties @@ -0,0 +1,3 @@ +integration.compose.config-path=../tokens/sdds.serv.compose/config-info-compose.json +integration.compose.package-name=com.sdds.serv.integration +integration.compose.scheme=V2 \ No newline at end of file diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionEndVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..f22738b421 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordion.AccordionClearActionEnd +import com.sdds.serv.styles.accordion.H2 +import com.sdds.serv.styles.accordion.H3 +import com.sdds.serv.styles.accordion.H4 +import com.sdds.serv.styles.accordion.H5 +import com.sdds.serv.styles.accordion.L +import com.sdds.serv.styles.accordion.M +import com.sdds.serv.styles.accordion.S +import com.sdds.serv.styles.accordion.Xs + +internal object SddsServAccordionClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionStartVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..32edc03936 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordion.AccordionClearActionStart +import com.sdds.serv.styles.accordion.H2 +import com.sdds.serv.styles.accordion.H3 +import com.sdds.serv.styles.accordion.H4 +import com.sdds.serv.styles.accordion.H5 +import com.sdds.serv.styles.accordion.L +import com.sdds.serv.styles.accordion.M +import com.sdds.serv.styles.accordion.S +import com.sdds.serv.styles.accordion.Xs + +internal object SddsServAccordionClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionClearActionStart.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionEndVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionEndVariationsCompose.kt new file mode 100644 index 0000000000..e7e0fc5dc9 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordionitem.AccordionItemClearActionEnd +import com.sdds.serv.styles.accordionitem.H2 +import com.sdds.serv.styles.accordionitem.H3 +import com.sdds.serv.styles.accordionitem.H4 +import com.sdds.serv.styles.accordionitem.H5 +import com.sdds.serv.styles.accordionitem.L +import com.sdds.serv.styles.accordionitem.M +import com.sdds.serv.styles.accordionitem.S +import com.sdds.serv.styles.accordionitem.Xs + +internal object SddsServAccordionItemClearActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionEnd.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionStartVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionStartVariationsCompose.kt new file mode 100644 index 0000000000..ac75f71acd --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemClearActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordionitem.AccordionItemClearActionStart +import com.sdds.serv.styles.accordionitem.H2 +import com.sdds.serv.styles.accordionitem.H3 +import com.sdds.serv.styles.accordionitem.H4 +import com.sdds.serv.styles.accordionitem.H5 +import com.sdds.serv.styles.accordionitem.L +import com.sdds.serv.styles.accordionitem.M +import com.sdds.serv.styles.accordionitem.S +import com.sdds.serv.styles.accordionitem.Xs + +internal object SddsServAccordionItemClearActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemClearActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemClearActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemClearActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemClearActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemClearActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemClearActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemClearActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemClearActionStart.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionEndVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..47935ad7a9 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordionitem.AccordionItemSolidActionEnd +import com.sdds.serv.styles.accordionitem.H2 +import com.sdds.serv.styles.accordionitem.H3 +import com.sdds.serv.styles.accordionitem.H4 +import com.sdds.serv.styles.accordionitem.H5 +import com.sdds.serv.styles.accordionitem.L +import com.sdds.serv.styles.accordionitem.M +import com.sdds.serv.styles.accordionitem.S +import com.sdds.serv.styles.accordionitem.Xs + +internal object SddsServAccordionItemSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionStartVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..2cae1a97af --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionItemSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordionitem.AccordionItemSolidActionStart +import com.sdds.serv.styles.accordionitem.H2 +import com.sdds.serv.styles.accordionitem.H3 +import com.sdds.serv.styles.accordionitem.H4 +import com.sdds.serv.styles.accordionitem.H5 +import com.sdds.serv.styles.accordionitem.L +import com.sdds.serv.styles.accordionitem.M +import com.sdds.serv.styles.accordionitem.S +import com.sdds.serv.styles.accordionitem.Xs + +internal object SddsServAccordionItemSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionItemSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionItemSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionItemSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionItemSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionItemSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionItemSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionItemSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionItemSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionEndVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionEndVariationsCompose.kt new file mode 100644 index 0000000000..4c87d54431 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionEndVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordion.AccordionSolidActionEnd +import com.sdds.serv.styles.accordion.H2 +import com.sdds.serv.styles.accordion.H3 +import com.sdds.serv.styles.accordion.H4 +import com.sdds.serv.styles.accordion.H5 +import com.sdds.serv.styles.accordion.L +import com.sdds.serv.styles.accordion.M +import com.sdds.serv.styles.accordion.S +import com.sdds.serv.styles.accordion.Xs + +internal object SddsServAccordionSolidActionEndVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionEnd.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionEnd.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionEnd.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionEnd.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionEnd.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionEnd.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionEnd.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionEnd.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionStartVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionStartVariationsCompose.kt new file mode 100644 index 0000000000..82a4b56ff3 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAccordionSolidActionStartVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AccordionStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.accordion.AccordionSolidActionStart +import com.sdds.serv.styles.accordion.H2 +import com.sdds.serv.styles.accordion.H3 +import com.sdds.serv.styles.accordion.H4 +import com.sdds.serv.styles.accordion.H5 +import com.sdds.serv.styles.accordion.L +import com.sdds.serv.styles.accordion.M +import com.sdds.serv.styles.accordion.S +import com.sdds.serv.styles.accordion.Xs + +internal object SddsServAccordionSolidActionStartVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { AccordionSolidActionStart.Xs.style() }, + "S" to ComposeStyleReference { AccordionSolidActionStart.S.style() }, + "M" to ComposeStyleReference { AccordionSolidActionStart.M.style() }, + "L" to ComposeStyleReference { AccordionSolidActionStart.L.style() }, + "H2" to ComposeStyleReference { AccordionSolidActionStart.H2.style() }, + "H3" to ComposeStyleReference { AccordionSolidActionStart.H3.style() }, + "H4" to ComposeStyleReference { AccordionSolidActionStart.H4.style() }, + "H5" to ComposeStyleReference { AccordionSolidActionStart.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteNormalVariationsCompose.kt new file mode 100644 index 0000000000..f51402b846 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AutocompleteStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.autocomplete.AutocompleteNormal +import com.sdds.serv.styles.autocomplete.L +import com.sdds.serv.styles.autocomplete.M +import com.sdds.serv.styles.autocomplete.S +import com.sdds.serv.styles.autocomplete.Xl +import com.sdds.serv.styles.autocomplete.Xs + +internal object SddsServAutocompleteNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { AutocompleteNormal.Xl.style() }, + "L" to ComposeStyleReference { AutocompleteNormal.L.style() }, + "M" to ComposeStyleReference { AutocompleteNormal.M.style() }, + "S" to ComposeStyleReference { AutocompleteNormal.S.style() }, + "Xs" to ComposeStyleReference { AutocompleteNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteTightVariationsCompose.kt new file mode 100644 index 0000000000..d2b4a09491 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAutocompleteTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AutocompleteStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.autocomplete.AutocompleteTight +import com.sdds.serv.styles.autocomplete.L +import com.sdds.serv.styles.autocomplete.M +import com.sdds.serv.styles.autocomplete.S +import com.sdds.serv.styles.autocomplete.Xl +import com.sdds.serv.styles.autocomplete.Xs + +internal object SddsServAutocompleteTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { AutocompleteTight.Xl.style() }, + "L" to ComposeStyleReference { AutocompleteTight.L.style() }, + "M" to ComposeStyleReference { AutocompleteTight.M.style() }, + "S" to ComposeStyleReference { AutocompleteTight.S.style() }, + "Xs" to ComposeStyleReference { AutocompleteTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarGroupVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarGroupVariationsCompose.kt new file mode 100644 index 0000000000..c000b09d5d --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarGroupVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.avatargroup.AvatarGroup +import com.sdds.serv.styles.avatargroup.S + +internal object SddsServAvatarGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { AvatarGroup.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarVariationsCompose.kt new file mode 100644 index 0000000000..2f441377db --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServAvatarVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.AvatarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.avatar.Avatar +import com.sdds.serv.styles.avatar.L +import com.sdds.serv.styles.avatar.M +import com.sdds.serv.styles.avatar.S +import com.sdds.serv.styles.avatar.Xxl + +internal object SddsServAvatarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl" to ComposeStyleReference { Avatar.Xxl.style() }, + "L" to ComposeStyleReference { Avatar.L.style() }, + "M" to ComposeStyleReference { Avatar.M.style() }, + "S" to ComposeStyleReference { Avatar.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..a3ccc1b63a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.badge.Accent +import com.sdds.serv.styles.badge.BadgeClear +import com.sdds.serv.styles.badge.Dark +import com.sdds.serv.styles.badge.Default +import com.sdds.serv.styles.badge.L +import com.sdds.serv.styles.badge.Light +import com.sdds.serv.styles.badge.M +import com.sdds.serv.styles.badge.Negative +import com.sdds.serv.styles.badge.Pilled +import com.sdds.serv.styles.badge.Positive +import com.sdds.serv.styles.badge.S +import com.sdds.serv.styles.badge.Warning +import com.sdds.serv.styles.badge.Xs + +internal object SddsServBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..ed9eaedace --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.badge.Accent +import com.sdds.serv.styles.badge.BadgeSolid +import com.sdds.serv.styles.badge.Dark +import com.sdds.serv.styles.badge.Default +import com.sdds.serv.styles.badge.L +import com.sdds.serv.styles.badge.Light +import com.sdds.serv.styles.badge.M +import com.sdds.serv.styles.badge.Negative +import com.sdds.serv.styles.badge.Pilled +import com.sdds.serv.styles.badge.Positive +import com.sdds.serv.styles.badge.S +import com.sdds.serv.styles.badge.Warning +import com.sdds.serv.styles.badge.Xs + +internal object SddsServBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeTransparentVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..5a2accab49 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.badge.Accent +import com.sdds.serv.styles.badge.BadgeTransparent +import com.sdds.serv.styles.badge.Dark +import com.sdds.serv.styles.badge.Default +import com.sdds.serv.styles.badge.L +import com.sdds.serv.styles.badge.Light +import com.sdds.serv.styles.badge.M +import com.sdds.serv.styles.badge.Negative +import com.sdds.serv.styles.badge.Pilled +import com.sdds.serv.styles.badge.Positive +import com.sdds.serv.styles.badge.S +import com.sdds.serv.styles.badge.Warning +import com.sdds.serv.styles.badge.Xs + +internal object SddsServBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { BadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { BadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { BadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { BadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { BadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { BadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { BadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { BadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { BadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { BadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { BadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { BadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { BadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { BadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { BadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { BadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { BadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { BadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { BadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { BadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { BadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { BadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { BadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { BadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { BadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { BadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { BadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { BadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { BadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { BadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonGroupVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..779135985a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonGroupVariationsCompose.kt @@ -0,0 +1,80 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.buttongroup.BasicButtonGroup +import com.sdds.serv.styles.buttongroup.Default +import com.sdds.serv.styles.buttongroup.Dense +import com.sdds.serv.styles.buttongroup.L +import com.sdds.serv.styles.buttongroup.M +import com.sdds.serv.styles.buttongroup.NoGap +import com.sdds.serv.styles.buttongroup.S +import com.sdds.serv.styles.buttongroup.Segmented +import com.sdds.serv.styles.buttongroup.Wide +import com.sdds.serv.styles.buttongroup.Xs +import com.sdds.serv.styles.buttongroup.Xxs + +internal object SddsServBasicButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxs" to ComposeStyleReference { BasicButtonGroup.Xxs.style() }, + "Xxs.Wide" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.style() }, + "Xxs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Default.style() }, + "Xxs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Wide.Segmented.style() }, + "Xxs.Dense" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.style() }, + "Xxs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Default.style() }, + "Xxs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.Dense.Segmented.style() }, + "Xxs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.style() }, + "Xxs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Default.style() }, + "Xxs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xxs.NoGap.Segmented.style() }, + "Xs" to ComposeStyleReference { BasicButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { BasicButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { BasicButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { BasicButtonGroup.S.Wide.Default.style() }, + "S.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { BasicButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { BasicButtonGroup.S.Dense.Default.style() }, + "S.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { BasicButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { BasicButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { BasicButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { BasicButtonGroup.M.Wide.Default.style() }, + "M.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { BasicButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { BasicButtonGroup.M.Dense.Default.style() }, + "M.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { BasicButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { BasicButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { BasicButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { BasicButtonGroup.L.Wide.Default.style() }, + "L.Wide.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { BasicButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { BasicButtonGroup.L.Dense.Default.style() }, + "L.Dense.Segmented" to ComposeStyleReference { BasicButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { BasicButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { BasicButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonVariationsCompose.kt new file mode 100644 index 0000000000..7784fa49eb --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServBasicButtonVariationsCompose.kt @@ -0,0 +1,96 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.basicbutton.Accent +import com.sdds.serv.styles.basicbutton.BasicButton +import com.sdds.serv.styles.basicbutton.Black +import com.sdds.serv.styles.basicbutton.Clear +import com.sdds.serv.styles.basicbutton.Dark +import com.sdds.serv.styles.basicbutton.Default +import com.sdds.serv.styles.basicbutton.L +import com.sdds.serv.styles.basicbutton.M +import com.sdds.serv.styles.basicbutton.Negative +import com.sdds.serv.styles.basicbutton.Positive +import com.sdds.serv.styles.basicbutton.S +import com.sdds.serv.styles.basicbutton.Secondary +import com.sdds.serv.styles.basicbutton.Warning +import com.sdds.serv.styles.basicbutton.White +import com.sdds.serv.styles.basicbutton.Xl +import com.sdds.serv.styles.basicbutton.Xs +import com.sdds.serv.styles.basicbutton.Xxs + +internal object SddsServBasicButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { BasicButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { BasicButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { BasicButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { BasicButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { BasicButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { BasicButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { BasicButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { BasicButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { BasicButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { BasicButton.Xl.White.style() }, + "L.Default" to ComposeStyleReference { BasicButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { BasicButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { BasicButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { BasicButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { BasicButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { BasicButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { BasicButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { BasicButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { BasicButton.L.Black.style() }, + "L.White" to ComposeStyleReference { BasicButton.L.White.style() }, + "M.Default" to ComposeStyleReference { BasicButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { BasicButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { BasicButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { BasicButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { BasicButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { BasicButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { BasicButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { BasicButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { BasicButton.M.Black.style() }, + "M.White" to ComposeStyleReference { BasicButton.M.White.style() }, + "S.Default" to ComposeStyleReference { BasicButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { BasicButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { BasicButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { BasicButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { BasicButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { BasicButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { BasicButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { BasicButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { BasicButton.S.Black.style() }, + "S.White" to ComposeStyleReference { BasicButton.S.White.style() }, + "Xs.Default" to ComposeStyleReference { BasicButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { BasicButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { BasicButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { BasicButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { BasicButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { BasicButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { BasicButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { BasicButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { BasicButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { BasicButton.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { BasicButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { BasicButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { BasicButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { BasicButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { BasicButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { BasicButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { BasicButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { BasicButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { BasicButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { BasicButton.Xxs.White.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardClearVariationsCompose.kt new file mode 100644 index 0000000000..1857864d5d --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardClearVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.card.CardClear +import com.sdds.serv.styles.card.L +import com.sdds.serv.styles.card.M +import com.sdds.serv.styles.card.S + +internal object SddsServCardClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardClear.L.style() }, + "M" to ComposeStyleReference { CardClear.M.style() }, + "S" to ComposeStyleReference { CardClear.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardSolidVariationsCompose.kt new file mode 100644 index 0000000000..f3aafce5b6 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCardSolidVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CardStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.card.CardSolid +import com.sdds.serv.styles.card.L +import com.sdds.serv.styles.card.M +import com.sdds.serv.styles.card.S + +internal object SddsServCardSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CardSolid.L.style() }, + "M" to ComposeStyleReference { CardSolid.M.style() }, + "S" to ComposeStyleReference { CardSolid.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCarouselVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCarouselVariationsCompose.kt new file mode 100644 index 0000000000..b9fc4201f7 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCarouselVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CarouselStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.carousel.ButtonsPlacementInner +import com.sdds.serv.styles.carousel.ButtonsPlacementOuter +import com.sdds.serv.styles.carousel.Carousel + +internal object SddsServCarouselVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonsPlacementInner" to ComposeStyleReference { Carousel.ButtonsPlacementInner.style() }, + "ButtonsPlacementOuter" to ComposeStyleReference { Carousel.ButtonsPlacementOuter.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCellVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCellVariationsCompose.kt new file mode 100644 index 0000000000..41aaf297c7 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCellVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CellStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.cell.Cell +import com.sdds.serv.styles.cell.L +import com.sdds.serv.styles.cell.M +import com.sdds.serv.styles.cell.S +import com.sdds.serv.styles.cell.Xs + +internal object SddsServCellVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Cell.L.style() }, + "M" to ComposeStyleReference { Cell.M.style() }, + "S" to ComposeStyleReference { Cell.S.style() }, + "Xs" to ComposeStyleReference { Cell.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxGroupVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..7b161fbbd8 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxGroupVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.checkboxgroup.CheckBoxGroup +import com.sdds.serv.styles.checkboxgroup.L +import com.sdds.serv.styles.checkboxgroup.M +import com.sdds.serv.styles.checkboxgroup.S + +internal object SddsServCheckBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CheckBoxGroup.L.style() }, + "M" to ComposeStyleReference { CheckBoxGroup.M.style() }, + "S" to ComposeStyleReference { CheckBoxGroup.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxVariationsCompose.kt new file mode 100644 index 0000000000..339f39f874 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCheckBoxVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CheckBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.checkbox.CheckBox +import com.sdds.serv.styles.checkbox.Default +import com.sdds.serv.styles.checkbox.L +import com.sdds.serv.styles.checkbox.M +import com.sdds.serv.styles.checkbox.Negative +import com.sdds.serv.styles.checkbox.S + +internal object SddsServCheckBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { CheckBox.L.Default.style() }, + "L.Negative" to ComposeStyleReference { CheckBox.L.Negative.style() }, + "M.Default" to ComposeStyleReference { CheckBox.M.Default.style() }, + "M.Negative" to ComposeStyleReference { CheckBox.M.Negative.style() }, + "S.Default" to ComposeStyleReference { CheckBox.S.Default.style() }, + "S.Negative" to ComposeStyleReference { CheckBox.S.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupDenseVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..fab0c3771e --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupDenseVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chipgroup.Accent +import com.sdds.serv.styles.chipgroup.ChipGroupDense +import com.sdds.serv.styles.chipgroup.Default +import com.sdds.serv.styles.chipgroup.L +import com.sdds.serv.styles.chipgroup.M +import com.sdds.serv.styles.chipgroup.Negative +import com.sdds.serv.styles.chipgroup.Pilled +import com.sdds.serv.styles.chipgroup.Positive +import com.sdds.serv.styles.chipgroup.S +import com.sdds.serv.styles.chipgroup.Secondary +import com.sdds.serv.styles.chipgroup.Warning +import com.sdds.serv.styles.chipgroup.Xs + +internal object SddsServChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupDense.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupDense.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupDense.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupDense.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupDense.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupDense.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupDense.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupWideVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..84c5aca2ec --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipGroupWideVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chipgroup.Accent +import com.sdds.serv.styles.chipgroup.ChipGroupWide +import com.sdds.serv.styles.chipgroup.Default +import com.sdds.serv.styles.chipgroup.L +import com.sdds.serv.styles.chipgroup.M +import com.sdds.serv.styles.chipgroup.Negative +import com.sdds.serv.styles.chipgroup.Pilled +import com.sdds.serv.styles.chipgroup.Positive +import com.sdds.serv.styles.chipgroup.S +import com.sdds.serv.styles.chipgroup.Secondary +import com.sdds.serv.styles.chipgroup.Warning +import com.sdds.serv.styles.chipgroup.Xs + +internal object SddsServChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { ChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { ChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { ChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { ChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { ChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { ChipGroupWide.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { ChipGroupWide.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { ChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { ChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { ChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { ChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { ChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { ChipGroupWide.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { ChipGroupWide.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { ChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { ChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { ChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { ChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { ChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { ChipGroupWide.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { ChipGroupWide.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { ChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { ChipGroupWide.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipVariationsCompose.kt new file mode 100644 index 0000000000..d43cb1b039 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServChipVariationsCompose.kt @@ -0,0 +1,79 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chip.Accent +import com.sdds.serv.styles.chip.Chip +import com.sdds.serv.styles.chip.Default +import com.sdds.serv.styles.chip.L +import com.sdds.serv.styles.chip.M +import com.sdds.serv.styles.chip.Negative +import com.sdds.serv.styles.chip.Pilled +import com.sdds.serv.styles.chip.Positive +import com.sdds.serv.styles.chip.S +import com.sdds.serv.styles.chip.Secondary +import com.sdds.serv.styles.chip.Warning +import com.sdds.serv.styles.chip.Xs + +internal object SddsServChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Chip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Chip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { Chip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { Chip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { Chip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { Chip.L.Warning.style() }, + "L.Pilled.Default" to ComposeStyleReference { Chip.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Chip.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { Chip.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { Chip.L.Pilled.Positive.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Chip.L.Pilled.Secondary.style() }, + "L.Pilled.Warning" to ComposeStyleReference { Chip.L.Pilled.Warning.style() }, + "M.Default" to ComposeStyleReference { Chip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Chip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { Chip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { Chip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { Chip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { Chip.M.Warning.style() }, + "M.Pilled.Default" to ComposeStyleReference { Chip.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Chip.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { Chip.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { Chip.M.Pilled.Positive.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Chip.M.Pilled.Secondary.style() }, + "M.Pilled.Warning" to ComposeStyleReference { Chip.M.Pilled.Warning.style() }, + "S.Default" to ComposeStyleReference { Chip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Chip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { Chip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { Chip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { Chip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { Chip.S.Warning.style() }, + "S.Pilled.Default" to ComposeStyleReference { Chip.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Chip.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { Chip.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { Chip.S.Pilled.Positive.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Chip.S.Pilled.Secondary.style() }, + "S.Pilled.Warning" to ComposeStyleReference { Chip.S.Pilled.Warning.style() }, + "Xs.Default" to ComposeStyleReference { Chip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Chip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { Chip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { Chip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { Chip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { Chip.Xs.Warning.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { Chip.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Chip.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { Chip.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { Chip.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Chip.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { Chip.Xs.Pilled.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCircularProgressBarVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCircularProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..14c5b0f4f5 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCircularProgressBarVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CircularProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.circularprogressbar.Accent +import com.sdds.serv.styles.circularprogressbar.CircularProgressBar +import com.sdds.serv.styles.circularprogressbar.Default +import com.sdds.serv.styles.circularprogressbar.Gradient +import com.sdds.serv.styles.circularprogressbar.Info +import com.sdds.serv.styles.circularprogressbar.L +import com.sdds.serv.styles.circularprogressbar.M +import com.sdds.serv.styles.circularprogressbar.Negative +import com.sdds.serv.styles.circularprogressbar.Positive +import com.sdds.serv.styles.circularprogressbar.S +import com.sdds.serv.styles.circularprogressbar.Secondary +import com.sdds.serv.styles.circularprogressbar.Warning +import com.sdds.serv.styles.circularprogressbar.Xl +import com.sdds.serv.styles.circularprogressbar.Xs +import com.sdds.serv.styles.circularprogressbar.Xxl +import com.sdds.serv.styles.circularprogressbar.Xxs + +internal object SddsServCircularProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { CircularProgressBar.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { CircularProgressBar.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { CircularProgressBar.Xxl.Accent.style() }, + "Xxl.Gradient" to ComposeStyleReference { CircularProgressBar.Xxl.Gradient.style() }, + "Xxl.Info" to ComposeStyleReference { CircularProgressBar.Xxl.Info.style() }, + "Xxl.Negative" to ComposeStyleReference { CircularProgressBar.Xxl.Negative.style() }, + "Xxl.Positive" to ComposeStyleReference { CircularProgressBar.Xxl.Positive.style() }, + "Xxl.Warning" to ComposeStyleReference { CircularProgressBar.Xxl.Warning.style() }, + "Xl.Default" to ComposeStyleReference { CircularProgressBar.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { CircularProgressBar.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { CircularProgressBar.Xl.Accent.style() }, + "Xl.Gradient" to ComposeStyleReference { CircularProgressBar.Xl.Gradient.style() }, + "Xl.Info" to ComposeStyleReference { CircularProgressBar.Xl.Info.style() }, + "Xl.Negative" to ComposeStyleReference { CircularProgressBar.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { CircularProgressBar.Xl.Positive.style() }, + "Xl.Warning" to ComposeStyleReference { CircularProgressBar.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { CircularProgressBar.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { CircularProgressBar.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { CircularProgressBar.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { CircularProgressBar.L.Gradient.style() }, + "L.Info" to ComposeStyleReference { CircularProgressBar.L.Info.style() }, + "L.Negative" to ComposeStyleReference { CircularProgressBar.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { CircularProgressBar.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { CircularProgressBar.L.Warning.style() }, + "M.Default" to ComposeStyleReference { CircularProgressBar.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { CircularProgressBar.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { CircularProgressBar.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { CircularProgressBar.M.Gradient.style() }, + "M.Info" to ComposeStyleReference { CircularProgressBar.M.Info.style() }, + "M.Negative" to ComposeStyleReference { CircularProgressBar.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { CircularProgressBar.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { CircularProgressBar.M.Warning.style() }, + "S.Default" to ComposeStyleReference { CircularProgressBar.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { CircularProgressBar.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { CircularProgressBar.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { CircularProgressBar.S.Gradient.style() }, + "S.Info" to ComposeStyleReference { CircularProgressBar.S.Info.style() }, + "S.Negative" to ComposeStyleReference { CircularProgressBar.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { CircularProgressBar.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { CircularProgressBar.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { CircularProgressBar.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { CircularProgressBar.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { CircularProgressBar.Xs.Accent.style() }, + "Xs.Gradient" to ComposeStyleReference { CircularProgressBar.Xs.Gradient.style() }, + "Xs.Info" to ComposeStyleReference { CircularProgressBar.Xs.Info.style() }, + "Xs.Negative" to ComposeStyleReference { CircularProgressBar.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { CircularProgressBar.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { CircularProgressBar.Xs.Warning.style() }, + "Xxs.Default" to ComposeStyleReference { CircularProgressBar.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { CircularProgressBar.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { CircularProgressBar.Xxs.Accent.style() }, + "Xxs.Gradient" to ComposeStyleReference { CircularProgressBar.Xxs.Gradient.style() }, + "Xxs.Info" to ComposeStyleReference { CircularProgressBar.Xxs.Info.style() }, + "Xxs.Negative" to ComposeStyleReference { CircularProgressBar.Xxs.Negative.style() }, + "Xxs.Positive" to ComposeStyleReference { CircularProgressBar.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { CircularProgressBar.Xxs.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeFieldVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeFieldVariationsCompose.kt new file mode 100644 index 0000000000..be274de2ed --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeFieldVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.codefield.CodeField +import com.sdds.serv.styles.codefield.L +import com.sdds.serv.styles.codefield.M +import com.sdds.serv.styles.codefield.Segmented + +internal object SddsServCodeFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { CodeField.L.style() }, + "L.Segmented" to ComposeStyleReference { CodeField.L.Segmented.style() }, + "M" to ComposeStyleReference { CodeField.M.style() }, + "M.Segmented" to ComposeStyleReference { CodeField.M.Segmented.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeInputVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeInputVariationsCompose.kt new file mode 100644 index 0000000000..993e8c5551 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCodeInputVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CodeInputStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.codeinput.CodeInput +import com.sdds.serv.styles.codeinput.L +import com.sdds.serv.styles.codeinput.M +import com.sdds.serv.styles.codeinput.S + +internal object SddsServCodeInputVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { CodeInput.S.style() }, + "M" to ComposeStyleReference { CodeInput.M.style() }, + "L" to ComposeStyleReference { CodeInput.L.style() }, + ) +} diff --git a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServComposeComponents.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServComposeComponents.kt similarity index 86% rename from playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServComposeComponents.kt rename to tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServComposeComponents.kt index 027f2096e7..d3bc41a99e 100644 --- a/playground/sandbox-sdds-serv-integration/src/main/kotlin/com/sdds/playground/sandbox/sdds/serv/integration/compose/SddsServComposeComponents.kt +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServComposeComponents.kt @@ -1,30 +1,36 @@ -package com.sdds.playground.sandbox.sdds.serv.integration.compose +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) -import com.sdds.compose.uikit.style.Style -import com.sdds.playground.sandbox.core.integration.component.ComponentKey -import com.sdds.playground.sandbox.core.integration.component.ComponentsProviderCompose -import com.sdds.playground.sandbox.core.integration.component.ComposeComponent +package com.sdds.serv.integration + +import com.sdds.sandbox.Component +import com.sdds.sandbox.ComponentKey +import com.sdds.sandbox.ComponentProvider /** * Компоненты */ -object SddsServComposeComponents : ComponentsProviderCompose() { +object SddsServComposeComponents : ComponentProvider() { - override val generated: Map> = + override val generated: Map> = listOf( - ComposeComponent( + Component( ComponentKey.Avatar, mapOf( "Avatar" to SddsServAvatarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AvatarGroup, mapOf( "AvatarGroup" to SddsServAvatarGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Badge, mapOf( "BadgeClear" to SddsServBadgeClearVariationsCompose, @@ -32,7 +38,7 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "BadgeTransparent" to SddsServBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconBadge, mapOf( "IconBadgeClear" to SddsServIconBadgeClearVariationsCompose, @@ -40,63 +46,63 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "IconBadgeTransparent" to SddsServIconBadgeTransparentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BasicButton, mapOf( "BasicButton" to SddsServBasicButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconButton, mapOf( "IconButton" to SddsServIconButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.LinkButton, mapOf( "LinkButton" to SddsServLinkButtonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.BottomSheet, mapOf( "ModalBottomSheet" to SddsServModalBottomSheetVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Card, mapOf( "CardSolid" to SddsServCardSolidVariationsCompose, "CardClear" to SddsServCardClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Cell, mapOf( "Cell" to SddsServCellVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBox, mapOf( "CheckBox" to SddsServCheckBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CheckBoxGroup, mapOf( "CheckBoxGroup" to SddsServCheckBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Chip, mapOf( "Chip" to SddsServChipVariationsCompose, "EmbeddedChip" to SddsServEmbeddedChipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ChipGroup, mapOf( "ChipGroupDense" to SddsServChipGroupDenseVariationsCompose, @@ -105,155 +111,155 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "EmbeddedChipGroupWide" to SddsServEmbeddedChipGroupWideVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Counter, mapOf( "Counter" to SddsServCounterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Divider, mapOf( "Divider" to SddsServDividerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Indicator, mapOf( "Indicator" to SddsServIndicatorVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Loader, mapOf( "Loader" to SddsServLoaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Overlay, mapOf( "Overlay" to SddsServOverlayVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ProgressBar, mapOf( "ProgressBar" to SddsServProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CircularProgressBar, mapOf( "CircularProgressBar" to SddsServCircularProgressBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Popover, mapOf( "Popover" to SddsServPopoverVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBox, mapOf( "RadioBox" to SddsServRadioBoxVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RadioBoxGroup, mapOf( "RadioBoxGroup" to SddsServRadioBoxGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Segment, mapOf( "Segment" to SddsServSegmentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SegmentItem, mapOf( "SegmentItem" to SddsServSegmentItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Switch, mapOf( "Switch" to SddsServSwitchVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextField, mapOf( "TextField" to SddsServTextFieldVariationsCompose, "TextFieldClear" to SddsServTextFieldClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextArea, mapOf( "TextArea" to SddsServTextAreaVariationsCompose, "TextAreaClear" to SddsServTextAreaClearVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tooltip, mapOf( "Tooltip" to SddsServTooltipVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ToolBar, mapOf( "ToolBarHorizontal" to SddsServToolBarHorizontalVariationsCompose, "ToolBarVertical" to SddsServToolBarVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Toast, mapOf( "Toast" to SddsServToastVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Modal, mapOf( "Modal" to SddsServModalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.RectSkeleton, mapOf( "RectSkeleton" to SddsServRectSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Note, mapOf( "Note" to SddsServNoteVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NoteCompact, mapOf( "NoteCompact" to SddsServNoteCompactVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Notification, mapOf( "NotificationCompact" to SddsServNotificationCompactVariationsCompose, "NotificationLoose" to SddsServNotificationLooseVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NotificationContent, mapOf( "NotificationContent" to SddsServNotificationContentVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.List, mapOf( "ListNormal" to SddsServListNormalVariationsCompose, @@ -262,7 +268,7 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "DropdownMenuListTight" to SddsServDropdownMenuListTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ListItem, mapOf( "ListItemNormal" to SddsServListItemNormalVariationsCompose, @@ -271,26 +277,26 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "DropdownMenuItemTight" to SddsServDropdownMenuItemTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Spinner, mapOf( "Spinner" to SddsServSpinnerVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TextSkeleton, mapOf( "TextSkeleton" to SddsServTextSkeletonVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownMenu, mapOf( "DropdownMenuTight" to SddsServDropdownMenuTightVariationsCompose, "DropdownMenuNormal" to SddsServDropdownMenuNormalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.AccordionItem, mapOf( "AccordionItemSolidActionStart" to SddsServAccordionItemSolidActionStartVariationsCompose, @@ -299,7 +305,7 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "AccordionItemClearActionEnd" to SddsServAccordionItemClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Accordion, mapOf( "AccordionSolidActionStart" to SddsServAccordionSolidActionStartVariationsCompose, @@ -308,13 +314,13 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "AccordionClearActionEnd" to SddsServAccordionClearActionEndVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ScrollBar, mapOf( "ScrollBar" to SddsServScrollBarVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Slider, mapOf( "SliderHorizontalLabelInner" to SddsServSliderHorizontalLabelInnerVariationsCompose, @@ -323,20 +329,20 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "SliderVerticalLabelOuter" to SddsServSliderVerticalLabelOuterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Image, mapOf( "Image" to SddsServImageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.ButtonGroup, mapOf( "BasicButtonGroup" to SddsServBasicButtonGroupVariationsCompose, "IconButtonGroup" to SddsServIconButtonGroupVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBar, mapOf( "TabBarHasLabelClear" to SddsServTabBarHasLabelClearVariationsCompose, @@ -349,26 +355,26 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "TabBarIslandSolid" to SddsServTabBarIslandSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabBarItem, mapOf( "TabBarItemClear" to SddsServTabBarItemClearVariationsCompose, "TabBarItemSolid" to SddsServTabBarItemSolidVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeField, mapOf( "CodeField" to SddsServCodeFieldVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.CodeInput, mapOf( "CodeInput" to SddsServCodeInputVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Drawer, mapOf( "DrawerCloseNone" to SddsServDrawerCloseNoneVariationsCompose, @@ -376,85 +382,85 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "DrawerCloseOuter" to SddsServDrawerCloseOuterVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Tabs, mapOf( "TabsDefault" to SddsServTabsDefaultVariationsCompose, "TabsHeader" to SddsServTabsHeaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconTabs, mapOf( "IconTabs" to SddsServIconTabsVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.TabItem, mapOf( "TabItemDefault" to SddsServTabItemDefaultVariationsCompose, "TabItemHeader" to SddsServTabItemHeaderVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.IconTabItem, mapOf( "IconTabItem" to SddsServIconTabItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.NavigationBar, mapOf( "NavigationBarMainPage" to SddsServNavigationBarMainPageVariationsCompose, "NavigationBarInternalPage" to SddsServNavigationBarInternalPageVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.PaginationDots, mapOf( "PaginationDotsHorizontal" to SddsServPaginationDotsHorizontalVariationsCompose, "PaginationDotsVertical" to SddsServPaginationDotsVerticalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Autocomplete, mapOf( "AutocompleteTight" to SddsServAutocompleteTightVariationsCompose, "AutocompleteNormal" to SddsServAutocompleteNormalVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.DropdownEmptyState, mapOf( "DropdownEmptyState" to SddsServDropdownEmptyStateVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Carousel, mapOf( "Carousel" to SddsServCarouselVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.File, mapOf( "FileCircularProgress" to SddsServFileCircularProgressVariationsCompose, "FileLinearProgress" to SddsServFileLinearProgressVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.FormItem, mapOf( "FormItem" to SddsServFormItemVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Editable, mapOf( "Editable" to SddsServEditableVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.Select, mapOf( "SelectSingleNormal" to SddsServSelectSingleNormalVariationsCompose, @@ -463,7 +469,7 @@ object SddsServComposeComponents : ComponentsProviderCompose() { "SelectMultipleTight" to SddsServSelectMultipleTightVariationsCompose, ), ), - ComposeComponent( + Component( ComponentKey.SelectItem, mapOf( "SelectItemSingleNormal" to SddsServSelectItemSingleNormalVariationsCompose, diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCounterVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCounterVariationsCompose.kt new file mode 100644 index 0000000000..5b790d3dc4 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServCounterVariationsCompose.kt @@ -0,0 +1,67 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.CounterStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.counter.Accent +import com.sdds.serv.styles.counter.Black +import com.sdds.serv.styles.counter.Counter +import com.sdds.serv.styles.counter.Default +import com.sdds.serv.styles.counter.L +import com.sdds.serv.styles.counter.M +import com.sdds.serv.styles.counter.Negative +import com.sdds.serv.styles.counter.Positive +import com.sdds.serv.styles.counter.S +import com.sdds.serv.styles.counter.Warning +import com.sdds.serv.styles.counter.White +import com.sdds.serv.styles.counter.Xs +import com.sdds.serv.styles.counter.Xxs + +internal object SddsServCounterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Counter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Counter.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Counter.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Counter.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Counter.L.Negative.style() }, + "L.Black" to ComposeStyleReference { Counter.L.Black.style() }, + "L.White" to ComposeStyleReference { Counter.L.White.style() }, + "M.Default" to ComposeStyleReference { Counter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Counter.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Counter.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Counter.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Counter.M.Negative.style() }, + "M.Black" to ComposeStyleReference { Counter.M.Black.style() }, + "M.White" to ComposeStyleReference { Counter.M.White.style() }, + "S.Default" to ComposeStyleReference { Counter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Counter.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Counter.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Counter.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Counter.S.Negative.style() }, + "S.Black" to ComposeStyleReference { Counter.S.Black.style() }, + "S.White" to ComposeStyleReference { Counter.S.White.style() }, + "Xs.Default" to ComposeStyleReference { Counter.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { Counter.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Counter.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { Counter.Xs.Warning.style() }, + "Xs.Negative" to ComposeStyleReference { Counter.Xs.Negative.style() }, + "Xs.Black" to ComposeStyleReference { Counter.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { Counter.Xs.White.style() }, + "Xxs.Default" to ComposeStyleReference { Counter.Xxs.Default.style() }, + "Xxs.Accent" to ComposeStyleReference { Counter.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Counter.Xxs.Positive.style() }, + "Xxs.Warning" to ComposeStyleReference { Counter.Xxs.Warning.style() }, + "Xxs.Negative" to ComposeStyleReference { Counter.Xxs.Negative.style() }, + "Xxs.Black" to ComposeStyleReference { Counter.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { Counter.Xxs.White.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDividerVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDividerVariationsCompose.kt new file mode 100644 index 0000000000..91aad279ab --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDividerVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DividerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.divider.Default +import com.sdds.serv.styles.divider.Divider + +internal object SddsServDividerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Divider.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseInnerVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseInnerVariationsCompose.kt new file mode 100644 index 0000000000..f3a2bf1725 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseInnerVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.drawer.DrawerCloseInner +import com.sdds.serv.styles.drawer.HasShadow +import com.sdds.serv.styles.drawer.M + +internal object SddsServDrawerCloseInnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseInner.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseInner.M.HasShadow.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseNoneVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseNoneVariationsCompose.kt new file mode 100644 index 0000000000..baf261e518 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseNoneVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.drawer.DrawerCloseNone +import com.sdds.serv.styles.drawer.HasShadow +import com.sdds.serv.styles.drawer.M + +internal object SddsServDrawerCloseNoneVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseNone.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseNone.M.HasShadow.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseOuterVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseOuterVariationsCompose.kt new file mode 100644 index 0000000000..972eb05157 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDrawerCloseOuterVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DrawerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.drawer.DrawerCloseOuter +import com.sdds.serv.styles.drawer.HasShadow +import com.sdds.serv.styles.drawer.M + +internal object SddsServDrawerCloseOuterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { DrawerCloseOuter.M.style() }, + "M.HasShadow" to ComposeStyleReference { DrawerCloseOuter.M.HasShadow.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownEmptyStateVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownEmptyStateVariationsCompose.kt new file mode 100644 index 0000000000..d804acc085 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownEmptyStateVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownEmptyStateStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.dropdownemptystate.DropdownEmptyState +import com.sdds.serv.styles.dropdownemptystate.HasButton +import com.sdds.serv.styles.dropdownemptystate.L +import com.sdds.serv.styles.dropdownemptystate.M +import com.sdds.serv.styles.dropdownemptystate.S +import com.sdds.serv.styles.dropdownemptystate.Xl +import com.sdds.serv.styles.dropdownemptystate.Xs + +internal object SddsServDropdownEmptyStateVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { DropdownEmptyState.Xs.style() }, + "Xs.HasButton" to ComposeStyleReference { DropdownEmptyState.Xs.HasButton.style() }, + "S" to ComposeStyleReference { DropdownEmptyState.S.style() }, + "S.HasButton" to ComposeStyleReference { DropdownEmptyState.S.HasButton.style() }, + "M" to ComposeStyleReference { DropdownEmptyState.M.style() }, + "M.HasButton" to ComposeStyleReference { DropdownEmptyState.M.HasButton.style() }, + "L" to ComposeStyleReference { DropdownEmptyState.L.style() }, + "L.HasButton" to ComposeStyleReference { DropdownEmptyState.L.HasButton.style() }, + "Xl" to ComposeStyleReference { DropdownEmptyState.Xl.style() }, + "Xl.HasButton" to ComposeStyleReference { DropdownEmptyState.Xl.HasButton.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..d17ab28a9c --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemNormalVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.listitem.Default +import com.sdds.serv.styles.listitem.DropdownMenuItemNormal +import com.sdds.serv.styles.listitem.L +import com.sdds.serv.styles.listitem.M +import com.sdds.serv.styles.listitem.Negative +import com.sdds.serv.styles.listitem.Positive +import com.sdds.serv.styles.listitem.S +import com.sdds.serv.styles.listitem.Xl +import com.sdds.serv.styles.listitem.Xs + +internal object SddsServDropdownMenuItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemNormal.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemNormal.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemNormal.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemNormal.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemNormal.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemNormal.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemNormal.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemNormal.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemNormal.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemNormal.Xs.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemTightVariationsCompose.kt new file mode 100644 index 0000000000..37c6a16ac1 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuItemTightVariationsCompose.kt @@ -0,0 +1,43 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.listitem.Default +import com.sdds.serv.styles.listitem.DropdownMenuItemTight +import com.sdds.serv.styles.listitem.L +import com.sdds.serv.styles.listitem.M +import com.sdds.serv.styles.listitem.Negative +import com.sdds.serv.styles.listitem.Positive +import com.sdds.serv.styles.listitem.S +import com.sdds.serv.styles.listitem.Xl +import com.sdds.serv.styles.listitem.Xs + +internal object SddsServDropdownMenuItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { DropdownMenuItemTight.Xl.Default.style() }, + "Xl.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xl.Negative.style() }, + "L.Default" to ComposeStyleReference { DropdownMenuItemTight.L.Default.style() }, + "L.Positive" to ComposeStyleReference { DropdownMenuItemTight.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { DropdownMenuItemTight.L.Negative.style() }, + "M.Default" to ComposeStyleReference { DropdownMenuItemTight.M.Default.style() }, + "M.Positive" to ComposeStyleReference { DropdownMenuItemTight.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { DropdownMenuItemTight.M.Negative.style() }, + "S.Default" to ComposeStyleReference { DropdownMenuItemTight.S.Default.style() }, + "S.Positive" to ComposeStyleReference { DropdownMenuItemTight.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { DropdownMenuItemTight.S.Negative.style() }, + "Xs.Default" to ComposeStyleReference { DropdownMenuItemTight.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { DropdownMenuItemTight.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { DropdownMenuItemTight.Xs.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListNormalVariationsCompose.kt new file mode 100644 index 0000000000..10465403dc --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.list.DropdownMenuListNormal +import com.sdds.serv.styles.list.L +import com.sdds.serv.styles.list.M +import com.sdds.serv.styles.list.S +import com.sdds.serv.styles.list.Xl +import com.sdds.serv.styles.list.Xs + +internal object SddsServDropdownMenuListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListTightVariationsCompose.kt new file mode 100644 index 0000000000..03df357776 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.list.DropdownMenuListTight +import com.sdds.serv.styles.list.L +import com.sdds.serv.styles.list.M +import com.sdds.serv.styles.list.S +import com.sdds.serv.styles.list.Xl +import com.sdds.serv.styles.list.Xs + +internal object SddsServDropdownMenuListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuListTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuListTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuListTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuListTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuListTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuNormalVariationsCompose.kt new file mode 100644 index 0000000000..2a9ef89e87 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.dropdownmenu.DropdownMenuNormal +import com.sdds.serv.styles.dropdownmenu.L +import com.sdds.serv.styles.dropdownmenu.M +import com.sdds.serv.styles.dropdownmenu.S +import com.sdds.serv.styles.dropdownmenu.Xl +import com.sdds.serv.styles.dropdownmenu.Xs + +internal object SddsServDropdownMenuNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuNormal.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuNormal.L.style() }, + "M" to ComposeStyleReference { DropdownMenuNormal.M.style() }, + "S" to ComposeStyleReference { DropdownMenuNormal.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuTightVariationsCompose.kt new file mode 100644 index 0000000000..d8d3a6f656 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServDropdownMenuTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.DropdownMenuStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.dropdownmenu.DropdownMenuTight +import com.sdds.serv.styles.dropdownmenu.L +import com.sdds.serv.styles.dropdownmenu.M +import com.sdds.serv.styles.dropdownmenu.S +import com.sdds.serv.styles.dropdownmenu.Xl +import com.sdds.serv.styles.dropdownmenu.Xs + +internal object SddsServDropdownMenuTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { DropdownMenuTight.Xl.style() }, + "L" to ComposeStyleReference { DropdownMenuTight.L.style() }, + "M" to ComposeStyleReference { DropdownMenuTight.M.style() }, + "S" to ComposeStyleReference { DropdownMenuTight.S.style() }, + "Xs" to ComposeStyleReference { DropdownMenuTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEditableVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEditableVariationsCompose.kt new file mode 100644 index 0000000000..98b3b04adf --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEditableVariationsCompose.kt @@ -0,0 +1,40 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.EditableStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.editable.BodyL +import com.sdds.serv.styles.editable.BodyM +import com.sdds.serv.styles.editable.BodyS +import com.sdds.serv.styles.editable.BodyXs +import com.sdds.serv.styles.editable.BodyXxs +import com.sdds.serv.styles.editable.Editable +import com.sdds.serv.styles.editable.H1 +import com.sdds.serv.styles.editable.H2 +import com.sdds.serv.styles.editable.H3 +import com.sdds.serv.styles.editable.H4 +import com.sdds.serv.styles.editable.H5 + +internal object SddsServEditableVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "H1" to ComposeStyleReference { Editable.H1.style() }, + "H2" to ComposeStyleReference { Editable.H2.style() }, + "H3" to ComposeStyleReference { Editable.H3.style() }, + "H4" to ComposeStyleReference { Editable.H4.style() }, + "H5" to ComposeStyleReference { Editable.H5.style() }, + "BodyL" to ComposeStyleReference { Editable.BodyL.style() }, + "BodyM" to ComposeStyleReference { Editable.BodyM.style() }, + "BodyS" to ComposeStyleReference { Editable.BodyS.style() }, + "BodyXs" to ComposeStyleReference { Editable.BodyXs.style() }, + "BodyXxs" to ComposeStyleReference { Editable.BodyXxs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupDenseVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupDenseVariationsCompose.kt new file mode 100644 index 0000000000..fc58108f12 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupDenseVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chipgroup.Accent +import com.sdds.serv.styles.chipgroup.Default +import com.sdds.serv.styles.chipgroup.EmbeddedChipGroupDense +import com.sdds.serv.styles.chipgroup.L +import com.sdds.serv.styles.chipgroup.M +import com.sdds.serv.styles.chipgroup.Negative +import com.sdds.serv.styles.chipgroup.Positive +import com.sdds.serv.styles.chipgroup.S +import com.sdds.serv.styles.chipgroup.Secondary +import com.sdds.serv.styles.chipgroup.Warning +import com.sdds.serv.styles.chipgroup.Xl +import com.sdds.serv.styles.chipgroup.Xs + +internal object SddsServEmbeddedChipGroupDenseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupDense.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupDense.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupDense.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupDense.Xs.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupWideVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupWideVariationsCompose.kt new file mode 100644 index 0000000000..2bb7b86a01 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipGroupWideVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chipgroup.Accent +import com.sdds.serv.styles.chipgroup.Default +import com.sdds.serv.styles.chipgroup.EmbeddedChipGroupWide +import com.sdds.serv.styles.chipgroup.L +import com.sdds.serv.styles.chipgroup.M +import com.sdds.serv.styles.chipgroup.Negative +import com.sdds.serv.styles.chipgroup.Positive +import com.sdds.serv.styles.chipgroup.S +import com.sdds.serv.styles.chipgroup.Secondary +import com.sdds.serv.styles.chipgroup.Warning +import com.sdds.serv.styles.chipgroup.Xl +import com.sdds.serv.styles.chipgroup.Xs + +internal object SddsServEmbeddedChipGroupWideVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChipGroupWide.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChipGroupWide.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChipGroupWide.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChipGroupWide.Xs.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipVariationsCompose.kt new file mode 100644 index 0000000000..59f45e3493 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServEmbeddedChipVariationsCompose.kt @@ -0,0 +1,61 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ChipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.chip.Accent +import com.sdds.serv.styles.chip.Default +import com.sdds.serv.styles.chip.EmbeddedChip +import com.sdds.serv.styles.chip.L +import com.sdds.serv.styles.chip.M +import com.sdds.serv.styles.chip.Negative +import com.sdds.serv.styles.chip.Positive +import com.sdds.serv.styles.chip.S +import com.sdds.serv.styles.chip.Secondary +import com.sdds.serv.styles.chip.Warning +import com.sdds.serv.styles.chip.Xl +import com.sdds.serv.styles.chip.Xs + +internal object SddsServEmbeddedChipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { EmbeddedChip.Xl.Default.style() }, + "Xl.Accent" to ComposeStyleReference { EmbeddedChip.Xl.Accent.style() }, + "Xl.Negative" to ComposeStyleReference { EmbeddedChip.Xl.Negative.style() }, + "Xl.Positive" to ComposeStyleReference { EmbeddedChip.Xl.Positive.style() }, + "Xl.Secondary" to ComposeStyleReference { EmbeddedChip.Xl.Secondary.style() }, + "Xl.Warning" to ComposeStyleReference { EmbeddedChip.Xl.Warning.style() }, + "L.Default" to ComposeStyleReference { EmbeddedChip.L.Default.style() }, + "L.Accent" to ComposeStyleReference { EmbeddedChip.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { EmbeddedChip.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { EmbeddedChip.L.Positive.style() }, + "L.Secondary" to ComposeStyleReference { EmbeddedChip.L.Secondary.style() }, + "L.Warning" to ComposeStyleReference { EmbeddedChip.L.Warning.style() }, + "M.Default" to ComposeStyleReference { EmbeddedChip.M.Default.style() }, + "M.Accent" to ComposeStyleReference { EmbeddedChip.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { EmbeddedChip.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { EmbeddedChip.M.Positive.style() }, + "M.Secondary" to ComposeStyleReference { EmbeddedChip.M.Secondary.style() }, + "M.Warning" to ComposeStyleReference { EmbeddedChip.M.Warning.style() }, + "S.Default" to ComposeStyleReference { EmbeddedChip.S.Default.style() }, + "S.Accent" to ComposeStyleReference { EmbeddedChip.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { EmbeddedChip.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { EmbeddedChip.S.Positive.style() }, + "S.Secondary" to ComposeStyleReference { EmbeddedChip.S.Secondary.style() }, + "S.Warning" to ComposeStyleReference { EmbeddedChip.S.Warning.style() }, + "Xs.Default" to ComposeStyleReference { EmbeddedChip.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { EmbeddedChip.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { EmbeddedChip.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { EmbeddedChip.Xs.Positive.style() }, + "Xs.Secondary" to ComposeStyleReference { EmbeddedChip.Xs.Secondary.style() }, + "Xs.Warning" to ComposeStyleReference { EmbeddedChip.Xs.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileCircularProgressVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileCircularProgressVariationsCompose.kt new file mode 100644 index 0000000000..30cb769404 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileCircularProgressVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.FileStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.file.Default +import com.sdds.serv.styles.file.FileCircularProgress +import com.sdds.serv.styles.file.L +import com.sdds.serv.styles.file.M +import com.sdds.serv.styles.file.Negative +import com.sdds.serv.styles.file.S +import com.sdds.serv.styles.file.Xs + +internal object SddsServFileCircularProgressVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { FileCircularProgress.Xs.Default.style() }, + "Xs.Negative" to ComposeStyleReference { FileCircularProgress.Xs.Negative.style() }, + "S.Default" to ComposeStyleReference { FileCircularProgress.S.Default.style() }, + "S.Negative" to ComposeStyleReference { FileCircularProgress.S.Negative.style() }, + "M.Default" to ComposeStyleReference { FileCircularProgress.M.Default.style() }, + "M.Negative" to ComposeStyleReference { FileCircularProgress.M.Negative.style() }, + "L.Default" to ComposeStyleReference { FileCircularProgress.L.Default.style() }, + "L.Negative" to ComposeStyleReference { FileCircularProgress.L.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileLinearProgressVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileLinearProgressVariationsCompose.kt new file mode 100644 index 0000000000..b464f1d721 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFileLinearProgressVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.FileStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.file.Default +import com.sdds.serv.styles.file.FileLinearProgress +import com.sdds.serv.styles.file.L +import com.sdds.serv.styles.file.M +import com.sdds.serv.styles.file.Negative +import com.sdds.serv.styles.file.S +import com.sdds.serv.styles.file.Xs + +internal object SddsServFileLinearProgressVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { FileLinearProgress.Xs.Default.style() }, + "Xs.Negative" to ComposeStyleReference { FileLinearProgress.Xs.Negative.style() }, + "S.Default" to ComposeStyleReference { FileLinearProgress.S.Default.style() }, + "S.Negative" to ComposeStyleReference { FileLinearProgress.S.Negative.style() }, + "M.Default" to ComposeStyleReference { FileLinearProgress.M.Default.style() }, + "M.Negative" to ComposeStyleReference { FileLinearProgress.M.Negative.style() }, + "L.Default" to ComposeStyleReference { FileLinearProgress.L.Default.style() }, + "L.Negative" to ComposeStyleReference { FileLinearProgress.L.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFormItemVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFormItemVariationsCompose.kt new file mode 100644 index 0000000000..fe197c4f07 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServFormItemVariationsCompose.kt @@ -0,0 +1,180 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.FormItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.formitem.Default +import com.sdds.serv.styles.formitem.FormItem +import com.sdds.serv.styles.formitem.L +import com.sdds.serv.styles.formitem.M +import com.sdds.serv.styles.formitem.Negative +import com.sdds.serv.styles.formitem.Positive +import com.sdds.serv.styles.formitem.RequiredEnd +import com.sdds.serv.styles.formitem.RequiredStart +import com.sdds.serv.styles.formitem.S +import com.sdds.serv.styles.formitem.TitleStart +import com.sdds.serv.styles.formitem.TitleTop +import com.sdds.serv.styles.formitem.Warning +import com.sdds.serv.styles.formitem.Xs + +internal object SddsServFormItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { FormItem.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { FormItem.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { FormItem.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { FormItem.Xs.Warning.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { FormItem.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Positive" to ComposeStyleReference { FormItem.Xs.RequiredStart.Positive.style() }, + "Xs.RequiredStart.Negative" to ComposeStyleReference { FormItem.Xs.RequiredStart.Negative.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { FormItem.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { FormItem.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Positive" to ComposeStyleReference { FormItem.Xs.RequiredEnd.Positive.style() }, + "Xs.RequiredEnd.Negative" to ComposeStyleReference { FormItem.Xs.RequiredEnd.Negative.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { FormItem.Xs.RequiredEnd.Warning.style() }, + "Xs.TitleTop.Default" to ComposeStyleReference { FormItem.Xs.TitleTop.Default.style() }, + "Xs.TitleTop.Positive" to ComposeStyleReference { FormItem.Xs.TitleTop.Positive.style() }, + "Xs.TitleTop.Negative" to ComposeStyleReference { FormItem.Xs.TitleTop.Negative.style() }, + "Xs.TitleTop.Warning" to ComposeStyleReference { FormItem.Xs.TitleTop.Warning.style() }, + "Xs.TitleTop.RequiredStart.Default" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredStart.Default.style() }, + "Xs.TitleTop.RequiredStart.Positive" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredStart.Positive.style() }, + "Xs.TitleTop.RequiredStart.Negative" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredStart.Negative.style() }, + "Xs.TitleTop.RequiredStart.Warning" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredStart.Warning.style() }, + "Xs.TitleTop.RequiredEnd.Default" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredEnd.Default.style() }, + "Xs.TitleTop.RequiredEnd.Positive" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredEnd.Positive.style() }, + "Xs.TitleTop.RequiredEnd.Negative" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredEnd.Negative.style() }, + "Xs.TitleTop.RequiredEnd.Warning" to ComposeStyleReference { FormItem.Xs.TitleTop.RequiredEnd.Warning.style() }, + "Xs.TitleStart.Default" to ComposeStyleReference { FormItem.Xs.TitleStart.Default.style() }, + "Xs.TitleStart.Positive" to ComposeStyleReference { FormItem.Xs.TitleStart.Positive.style() }, + "Xs.TitleStart.Negative" to ComposeStyleReference { FormItem.Xs.TitleStart.Negative.style() }, + "Xs.TitleStart.Warning" to ComposeStyleReference { FormItem.Xs.TitleStart.Warning.style() }, + "Xs.TitleStart.RequiredStart.Default" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredStart.Default.style() }, + "Xs.TitleStart.RequiredStart.Positive" to ComposeStyleReference { + FormItem.Xs.TitleStart.RequiredStart.Positive.style() + }, + "Xs.TitleStart.RequiredStart.Negative" to ComposeStyleReference { + FormItem.Xs.TitleStart.RequiredStart.Negative.style() + }, + "Xs.TitleStart.RequiredStart.Warning" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredStart.Warning.style() }, + "Xs.TitleStart.RequiredEnd.Default" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredEnd.Default.style() }, + "Xs.TitleStart.RequiredEnd.Positive" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredEnd.Positive.style() }, + "Xs.TitleStart.RequiredEnd.Negative" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredEnd.Negative.style() }, + "Xs.TitleStart.RequiredEnd.Warning" to ComposeStyleReference { FormItem.Xs.TitleStart.RequiredEnd.Warning.style() }, + "S.Default" to ComposeStyleReference { FormItem.S.Default.style() }, + "S.Positive" to ComposeStyleReference { FormItem.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { FormItem.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { FormItem.S.Warning.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { FormItem.S.RequiredStart.Default.style() }, + "S.RequiredStart.Positive" to ComposeStyleReference { FormItem.S.RequiredStart.Positive.style() }, + "S.RequiredStart.Negative" to ComposeStyleReference { FormItem.S.RequiredStart.Negative.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { FormItem.S.RequiredStart.Warning.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { FormItem.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Positive" to ComposeStyleReference { FormItem.S.RequiredEnd.Positive.style() }, + "S.RequiredEnd.Negative" to ComposeStyleReference { FormItem.S.RequiredEnd.Negative.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { FormItem.S.RequiredEnd.Warning.style() }, + "S.TitleTop.Default" to ComposeStyleReference { FormItem.S.TitleTop.Default.style() }, + "S.TitleTop.Positive" to ComposeStyleReference { FormItem.S.TitleTop.Positive.style() }, + "S.TitleTop.Negative" to ComposeStyleReference { FormItem.S.TitleTop.Negative.style() }, + "S.TitleTop.Warning" to ComposeStyleReference { FormItem.S.TitleTop.Warning.style() }, + "S.TitleTop.RequiredStart.Default" to ComposeStyleReference { FormItem.S.TitleTop.RequiredStart.Default.style() }, + "S.TitleTop.RequiredStart.Positive" to ComposeStyleReference { FormItem.S.TitleTop.RequiredStart.Positive.style() }, + "S.TitleTop.RequiredStart.Negative" to ComposeStyleReference { FormItem.S.TitleTop.RequiredStart.Negative.style() }, + "S.TitleTop.RequiredStart.Warning" to ComposeStyleReference { FormItem.S.TitleTop.RequiredStart.Warning.style() }, + "S.TitleTop.RequiredEnd.Default" to ComposeStyleReference { FormItem.S.TitleTop.RequiredEnd.Default.style() }, + "S.TitleTop.RequiredEnd.Positive" to ComposeStyleReference { FormItem.S.TitleTop.RequiredEnd.Positive.style() }, + "S.TitleTop.RequiredEnd.Negative" to ComposeStyleReference { FormItem.S.TitleTop.RequiredEnd.Negative.style() }, + "S.TitleTop.RequiredEnd.Warning" to ComposeStyleReference { FormItem.S.TitleTop.RequiredEnd.Warning.style() }, + "S.TitleStart.Default" to ComposeStyleReference { FormItem.S.TitleStart.Default.style() }, + "S.TitleStart.Positive" to ComposeStyleReference { FormItem.S.TitleStart.Positive.style() }, + "S.TitleStart.Negative" to ComposeStyleReference { FormItem.S.TitleStart.Negative.style() }, + "S.TitleStart.Warning" to ComposeStyleReference { FormItem.S.TitleStart.Warning.style() }, + "S.TitleStart.RequiredStart.Default" to ComposeStyleReference { FormItem.S.TitleStart.RequiredStart.Default.style() }, + "S.TitleStart.RequiredStart.Positive" to ComposeStyleReference { FormItem.S.TitleStart.RequiredStart.Positive.style() }, + "S.TitleStart.RequiredStart.Negative" to ComposeStyleReference { FormItem.S.TitleStart.RequiredStart.Negative.style() }, + "S.TitleStart.RequiredStart.Warning" to ComposeStyleReference { FormItem.S.TitleStart.RequiredStart.Warning.style() }, + "S.TitleStart.RequiredEnd.Default" to ComposeStyleReference { FormItem.S.TitleStart.RequiredEnd.Default.style() }, + "S.TitleStart.RequiredEnd.Positive" to ComposeStyleReference { FormItem.S.TitleStart.RequiredEnd.Positive.style() }, + "S.TitleStart.RequiredEnd.Negative" to ComposeStyleReference { FormItem.S.TitleStart.RequiredEnd.Negative.style() }, + "S.TitleStart.RequiredEnd.Warning" to ComposeStyleReference { FormItem.S.TitleStart.RequiredEnd.Warning.style() }, + "M.Default" to ComposeStyleReference { FormItem.M.Default.style() }, + "M.Positive" to ComposeStyleReference { FormItem.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { FormItem.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { FormItem.M.Warning.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { FormItem.M.RequiredStart.Default.style() }, + "M.RequiredStart.Positive" to ComposeStyleReference { FormItem.M.RequiredStart.Positive.style() }, + "M.RequiredStart.Negative" to ComposeStyleReference { FormItem.M.RequiredStart.Negative.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { FormItem.M.RequiredStart.Warning.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { FormItem.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Positive" to ComposeStyleReference { FormItem.M.RequiredEnd.Positive.style() }, + "M.RequiredEnd.Negative" to ComposeStyleReference { FormItem.M.RequiredEnd.Negative.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { FormItem.M.RequiredEnd.Warning.style() }, + "M.TitleTop.Default" to ComposeStyleReference { FormItem.M.TitleTop.Default.style() }, + "M.TitleTop.Positive" to ComposeStyleReference { FormItem.M.TitleTop.Positive.style() }, + "M.TitleTop.Negative" to ComposeStyleReference { FormItem.M.TitleTop.Negative.style() }, + "M.TitleTop.Warning" to ComposeStyleReference { FormItem.M.TitleTop.Warning.style() }, + "M.TitleTop.RequiredStart.Default" to ComposeStyleReference { FormItem.M.TitleTop.RequiredStart.Default.style() }, + "M.TitleTop.RequiredStart.Positive" to ComposeStyleReference { FormItem.M.TitleTop.RequiredStart.Positive.style() }, + "M.TitleTop.RequiredStart.Negative" to ComposeStyleReference { FormItem.M.TitleTop.RequiredStart.Negative.style() }, + "M.TitleTop.RequiredStart.Warning" to ComposeStyleReference { FormItem.M.TitleTop.RequiredStart.Warning.style() }, + "M.TitleTop.RequiredEnd.Default" to ComposeStyleReference { FormItem.M.TitleTop.RequiredEnd.Default.style() }, + "M.TitleTop.RequiredEnd.Positive" to ComposeStyleReference { FormItem.M.TitleTop.RequiredEnd.Positive.style() }, + "M.TitleTop.RequiredEnd.Negative" to ComposeStyleReference { FormItem.M.TitleTop.RequiredEnd.Negative.style() }, + "M.TitleTop.RequiredEnd.Warning" to ComposeStyleReference { FormItem.M.TitleTop.RequiredEnd.Warning.style() }, + "M.TitleStart.Default" to ComposeStyleReference { FormItem.M.TitleStart.Default.style() }, + "M.TitleStart.Positive" to ComposeStyleReference { FormItem.M.TitleStart.Positive.style() }, + "M.TitleStart.Negative" to ComposeStyleReference { FormItem.M.TitleStart.Negative.style() }, + "M.TitleStart.Warning" to ComposeStyleReference { FormItem.M.TitleStart.Warning.style() }, + "M.TitleStart.RequiredStart.Default" to ComposeStyleReference { FormItem.M.TitleStart.RequiredStart.Default.style() }, + "M.TitleStart.RequiredStart.Positive" to ComposeStyleReference { FormItem.M.TitleStart.RequiredStart.Positive.style() }, + "M.TitleStart.RequiredStart.Negative" to ComposeStyleReference { FormItem.M.TitleStart.RequiredStart.Negative.style() }, + "M.TitleStart.RequiredStart.Warning" to ComposeStyleReference { FormItem.M.TitleStart.RequiredStart.Warning.style() }, + "M.TitleStart.RequiredEnd.Default" to ComposeStyleReference { FormItem.M.TitleStart.RequiredEnd.Default.style() }, + "M.TitleStart.RequiredEnd.Positive" to ComposeStyleReference { FormItem.M.TitleStart.RequiredEnd.Positive.style() }, + "M.TitleStart.RequiredEnd.Negative" to ComposeStyleReference { FormItem.M.TitleStart.RequiredEnd.Negative.style() }, + "M.TitleStart.RequiredEnd.Warning" to ComposeStyleReference { FormItem.M.TitleStart.RequiredEnd.Warning.style() }, + "L.Default" to ComposeStyleReference { FormItem.L.Default.style() }, + "L.Positive" to ComposeStyleReference { FormItem.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { FormItem.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { FormItem.L.Warning.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { FormItem.L.RequiredStart.Default.style() }, + "L.RequiredStart.Positive" to ComposeStyleReference { FormItem.L.RequiredStart.Positive.style() }, + "L.RequiredStart.Negative" to ComposeStyleReference { FormItem.L.RequiredStart.Negative.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { FormItem.L.RequiredStart.Warning.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { FormItem.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Positive" to ComposeStyleReference { FormItem.L.RequiredEnd.Positive.style() }, + "L.RequiredEnd.Negative" to ComposeStyleReference { FormItem.L.RequiredEnd.Negative.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { FormItem.L.RequiredEnd.Warning.style() }, + "L.TitleTop.Default" to ComposeStyleReference { FormItem.L.TitleTop.Default.style() }, + "L.TitleTop.Positive" to ComposeStyleReference { FormItem.L.TitleTop.Positive.style() }, + "L.TitleTop.Negative" to ComposeStyleReference { FormItem.L.TitleTop.Negative.style() }, + "L.TitleTop.Warning" to ComposeStyleReference { FormItem.L.TitleTop.Warning.style() }, + "L.TitleTop.RequiredStart.Default" to ComposeStyleReference { FormItem.L.TitleTop.RequiredStart.Default.style() }, + "L.TitleTop.RequiredStart.Positive" to ComposeStyleReference { FormItem.L.TitleTop.RequiredStart.Positive.style() }, + "L.TitleTop.RequiredStart.Negative" to ComposeStyleReference { FormItem.L.TitleTop.RequiredStart.Negative.style() }, + "L.TitleTop.RequiredStart.Warning" to ComposeStyleReference { FormItem.L.TitleTop.RequiredStart.Warning.style() }, + "L.TitleTop.RequiredEnd.Default" to ComposeStyleReference { FormItem.L.TitleTop.RequiredEnd.Default.style() }, + "L.TitleTop.RequiredEnd.Positive" to ComposeStyleReference { FormItem.L.TitleTop.RequiredEnd.Positive.style() }, + "L.TitleTop.RequiredEnd.Negative" to ComposeStyleReference { FormItem.L.TitleTop.RequiredEnd.Negative.style() }, + "L.TitleTop.RequiredEnd.Warning" to ComposeStyleReference { FormItem.L.TitleTop.RequiredEnd.Warning.style() }, + "L.TitleStart.Default" to ComposeStyleReference { FormItem.L.TitleStart.Default.style() }, + "L.TitleStart.Positive" to ComposeStyleReference { FormItem.L.TitleStart.Positive.style() }, + "L.TitleStart.Negative" to ComposeStyleReference { FormItem.L.TitleStart.Negative.style() }, + "L.TitleStart.Warning" to ComposeStyleReference { FormItem.L.TitleStart.Warning.style() }, + "L.TitleStart.RequiredStart.Default" to ComposeStyleReference { FormItem.L.TitleStart.RequiredStart.Default.style() }, + "L.TitleStart.RequiredStart.Positive" to ComposeStyleReference { FormItem.L.TitleStart.RequiredStart.Positive.style() }, + "L.TitleStart.RequiredStart.Negative" to ComposeStyleReference { FormItem.L.TitleStart.RequiredStart.Negative.style() }, + "L.TitleStart.RequiredStart.Warning" to ComposeStyleReference { FormItem.L.TitleStart.RequiredStart.Warning.style() }, + "L.TitleStart.RequiredEnd.Default" to ComposeStyleReference { FormItem.L.TitleStart.RequiredEnd.Default.style() }, + "L.TitleStart.RequiredEnd.Positive" to ComposeStyleReference { FormItem.L.TitleStart.RequiredEnd.Positive.style() }, + "L.TitleStart.RequiredEnd.Negative" to ComposeStyleReference { FormItem.L.TitleStart.RequiredEnd.Negative.style() }, + "L.TitleStart.RequiredEnd.Warning" to ComposeStyleReference { FormItem.L.TitleStart.RequiredEnd.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeClearVariationsCompose.kt new file mode 100644 index 0000000000..e70c3bdd09 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeClearVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.iconbadge.Accent +import com.sdds.serv.styles.iconbadge.Dark +import com.sdds.serv.styles.iconbadge.Default +import com.sdds.serv.styles.iconbadge.IconBadgeClear +import com.sdds.serv.styles.iconbadge.L +import com.sdds.serv.styles.iconbadge.Light +import com.sdds.serv.styles.iconbadge.M +import com.sdds.serv.styles.iconbadge.Negative +import com.sdds.serv.styles.iconbadge.Pilled +import com.sdds.serv.styles.iconbadge.Positive +import com.sdds.serv.styles.iconbadge.S +import com.sdds.serv.styles.iconbadge.Warning +import com.sdds.serv.styles.iconbadge.Xs + +internal object SddsServIconBadgeClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeClear.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeClear.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeClear.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeClear.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeClear.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeClear.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeClear.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeClear.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeClear.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeClear.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeClear.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeClear.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeClear.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeClear.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeClear.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeClear.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeClear.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeClear.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeClear.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeClear.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeClear.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeClear.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeClear.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeClear.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeClear.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeClear.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeClear.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeClear.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeSolidVariationsCompose.kt new file mode 100644 index 0000000000..c6a4c7ffbc --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeSolidVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.iconbadge.Accent +import com.sdds.serv.styles.iconbadge.Dark +import com.sdds.serv.styles.iconbadge.Default +import com.sdds.serv.styles.iconbadge.IconBadgeSolid +import com.sdds.serv.styles.iconbadge.L +import com.sdds.serv.styles.iconbadge.Light +import com.sdds.serv.styles.iconbadge.M +import com.sdds.serv.styles.iconbadge.Negative +import com.sdds.serv.styles.iconbadge.Pilled +import com.sdds.serv.styles.iconbadge.Positive +import com.sdds.serv.styles.iconbadge.S +import com.sdds.serv.styles.iconbadge.Warning +import com.sdds.serv.styles.iconbadge.Xs + +internal object SddsServIconBadgeSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeSolid.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeSolid.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeSolid.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeSolid.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeSolid.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeSolid.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeSolid.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeSolid.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeSolid.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeSolid.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeSolid.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeSolid.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeSolid.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeSolid.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeSolid.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeSolid.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeSolid.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeSolid.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeSolid.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeSolid.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeTransparentVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeTransparentVariationsCompose.kt new file mode 100644 index 0000000000..67794dff0a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconBadgeTransparentVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.BadgeStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.iconbadge.Accent +import com.sdds.serv.styles.iconbadge.Dark +import com.sdds.serv.styles.iconbadge.Default +import com.sdds.serv.styles.iconbadge.IconBadgeTransparent +import com.sdds.serv.styles.iconbadge.L +import com.sdds.serv.styles.iconbadge.Light +import com.sdds.serv.styles.iconbadge.M +import com.sdds.serv.styles.iconbadge.Negative +import com.sdds.serv.styles.iconbadge.Pilled +import com.sdds.serv.styles.iconbadge.Positive +import com.sdds.serv.styles.iconbadge.S +import com.sdds.serv.styles.iconbadge.Warning +import com.sdds.serv.styles.iconbadge.Xs + +internal object SddsServIconBadgeTransparentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { IconBadgeTransparent.L.Default.style() }, + "L.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Accent.style() }, + "L.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Negative.style() }, + "L.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Warning.style() }, + "L.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Dark.style() }, + "L.Light" to ComposeStyleReference { IconBadgeTransparent.L.Light.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Default.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Accent.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Negative.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Positive.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Warning.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Dark.style() }, + "L.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.L.Pilled.Light.style() }, + "M.Default" to ComposeStyleReference { IconBadgeTransparent.M.Default.style() }, + "M.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Accent.style() }, + "M.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Negative.style() }, + "M.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Warning.style() }, + "M.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Dark.style() }, + "M.Light" to ComposeStyleReference { IconBadgeTransparent.M.Light.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Default.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Accent.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Negative.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Positive.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Warning.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Dark.style() }, + "M.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.M.Pilled.Light.style() }, + "S.Default" to ComposeStyleReference { IconBadgeTransparent.S.Default.style() }, + "S.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Accent.style() }, + "S.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Negative.style() }, + "S.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Warning.style() }, + "S.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Dark.style() }, + "S.Light" to ComposeStyleReference { IconBadgeTransparent.S.Light.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Default.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Accent.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Negative.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Positive.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Warning.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Dark.style() }, + "S.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.S.Pilled.Light.style() }, + "Xs.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Default.style() }, + "Xs.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Accent.style() }, + "Xs.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Negative.style() }, + "Xs.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Positive.style() }, + "Xs.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Warning.style() }, + "Xs.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Dark.style() }, + "Xs.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Light.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Default.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Light" to ComposeStyleReference { IconBadgeTransparent.Xs.Pilled.Light.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonGroupVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonGroupVariationsCompose.kt new file mode 100644 index 0000000000..7aa8aee72a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonGroupVariationsCompose.kt @@ -0,0 +1,82 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.buttongroup.Default +import com.sdds.serv.styles.buttongroup.Dense +import com.sdds.serv.styles.buttongroup.IconButtonGroup +import com.sdds.serv.styles.buttongroup.L +import com.sdds.serv.styles.buttongroup.M +import com.sdds.serv.styles.buttongroup.NoGap +import com.sdds.serv.styles.buttongroup.Pilled +import com.sdds.serv.styles.buttongroup.S +import com.sdds.serv.styles.buttongroup.Segmented +import com.sdds.serv.styles.buttongroup.Wide +import com.sdds.serv.styles.buttongroup.Xs + +internal object SddsServIconButtonGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs" to ComposeStyleReference { IconButtonGroup.Xs.style() }, + "Xs.Wide" to ComposeStyleReference { IconButtonGroup.Xs.Wide.style() }, + "Xs.Wide.Default" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Default.style() }, + "Xs.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Pilled.style() }, + "Xs.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Wide.Segmented.style() }, + "Xs.Dense" to ComposeStyleReference { IconButtonGroup.Xs.Dense.style() }, + "Xs.Dense.Default" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Default.style() }, + "Xs.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Pilled.style() }, + "Xs.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.Dense.Segmented.style() }, + "Xs.NoGap" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.style() }, + "Xs.NoGap.Default" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Default.style() }, + "Xs.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Pilled.style() }, + "Xs.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.Xs.NoGap.Segmented.style() }, + "S" to ComposeStyleReference { IconButtonGroup.S.style() }, + "S.Wide" to ComposeStyleReference { IconButtonGroup.S.Wide.style() }, + "S.Wide.Default" to ComposeStyleReference { IconButtonGroup.S.Wide.Default.style() }, + "S.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.S.Wide.Pilled.style() }, + "S.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.S.Wide.Segmented.style() }, + "S.Dense" to ComposeStyleReference { IconButtonGroup.S.Dense.style() }, + "S.Dense.Default" to ComposeStyleReference { IconButtonGroup.S.Dense.Default.style() }, + "S.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.S.Dense.Pilled.style() }, + "S.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.S.Dense.Segmented.style() }, + "S.NoGap" to ComposeStyleReference { IconButtonGroup.S.NoGap.style() }, + "S.NoGap.Default" to ComposeStyleReference { IconButtonGroup.S.NoGap.Default.style() }, + "S.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.S.NoGap.Pilled.style() }, + "S.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.S.NoGap.Segmented.style() }, + "M" to ComposeStyleReference { IconButtonGroup.M.style() }, + "M.Wide" to ComposeStyleReference { IconButtonGroup.M.Wide.style() }, + "M.Wide.Default" to ComposeStyleReference { IconButtonGroup.M.Wide.Default.style() }, + "M.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.M.Wide.Pilled.style() }, + "M.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.M.Wide.Segmented.style() }, + "M.Dense" to ComposeStyleReference { IconButtonGroup.M.Dense.style() }, + "M.Dense.Default" to ComposeStyleReference { IconButtonGroup.M.Dense.Default.style() }, + "M.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.M.Dense.Pilled.style() }, + "M.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.M.Dense.Segmented.style() }, + "M.NoGap" to ComposeStyleReference { IconButtonGroup.M.NoGap.style() }, + "M.NoGap.Default" to ComposeStyleReference { IconButtonGroup.M.NoGap.Default.style() }, + "M.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.M.NoGap.Pilled.style() }, + "M.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.M.NoGap.Segmented.style() }, + "L" to ComposeStyleReference { IconButtonGroup.L.style() }, + "L.Wide" to ComposeStyleReference { IconButtonGroup.L.Wide.style() }, + "L.Wide.Default" to ComposeStyleReference { IconButtonGroup.L.Wide.Default.style() }, + "L.Wide.Pilled" to ComposeStyleReference { IconButtonGroup.L.Wide.Pilled.style() }, + "L.Wide.Segmented" to ComposeStyleReference { IconButtonGroup.L.Wide.Segmented.style() }, + "L.Dense" to ComposeStyleReference { IconButtonGroup.L.Dense.style() }, + "L.Dense.Default" to ComposeStyleReference { IconButtonGroup.L.Dense.Default.style() }, + "L.Dense.Pilled" to ComposeStyleReference { IconButtonGroup.L.Dense.Pilled.style() }, + "L.Dense.Segmented" to ComposeStyleReference { IconButtonGroup.L.Dense.Segmented.style() }, + "L.NoGap" to ComposeStyleReference { IconButtonGroup.L.NoGap.style() }, + "L.NoGap.Default" to ComposeStyleReference { IconButtonGroup.L.NoGap.Default.style() }, + "L.NoGap.Pilled" to ComposeStyleReference { IconButtonGroup.L.NoGap.Pilled.style() }, + "L.NoGap.Segmented" to ComposeStyleReference { IconButtonGroup.L.NoGap.Segmented.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonVariationsCompose.kt new file mode 100644 index 0000000000..3724381f8c --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconButtonVariationsCompose.kt @@ -0,0 +1,157 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.iconbutton.Accent +import com.sdds.serv.styles.iconbutton.Black +import com.sdds.serv.styles.iconbutton.Clear +import com.sdds.serv.styles.iconbutton.Dark +import com.sdds.serv.styles.iconbutton.Default +import com.sdds.serv.styles.iconbutton.IconButton +import com.sdds.serv.styles.iconbutton.L +import com.sdds.serv.styles.iconbutton.M +import com.sdds.serv.styles.iconbutton.Negative +import com.sdds.serv.styles.iconbutton.Pilled +import com.sdds.serv.styles.iconbutton.Positive +import com.sdds.serv.styles.iconbutton.S +import com.sdds.serv.styles.iconbutton.Secondary +import com.sdds.serv.styles.iconbutton.Warning +import com.sdds.serv.styles.iconbutton.White +import com.sdds.serv.styles.iconbutton.Xl +import com.sdds.serv.styles.iconbutton.Xs +import com.sdds.serv.styles.iconbutton.Xxs + +internal object SddsServIconButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { IconButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { IconButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { IconButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { IconButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { IconButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { IconButton.Xl.Warning.style() }, + "Xl.Clear" to ComposeStyleReference { IconButton.Xl.Clear.style() }, + "Xl.Dark" to ComposeStyleReference { IconButton.Xl.Dark.style() }, + "Xl.Black" to ComposeStyleReference { IconButton.Xl.Black.style() }, + "Xl.White" to ComposeStyleReference { IconButton.Xl.White.style() }, + "Xl.Pilled.Default" to ComposeStyleReference { IconButton.Xl.Pilled.Default.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { IconButton.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { IconButton.Xl.Pilled.Accent.style() }, + "Xl.Pilled.Positive" to ComposeStyleReference { IconButton.Xl.Pilled.Positive.style() }, + "Xl.Pilled.Negative" to ComposeStyleReference { IconButton.Xl.Pilled.Negative.style() }, + "Xl.Pilled.Warning" to ComposeStyleReference { IconButton.Xl.Pilled.Warning.style() }, + "Xl.Pilled.Clear" to ComposeStyleReference { IconButton.Xl.Pilled.Clear.style() }, + "Xl.Pilled.Dark" to ComposeStyleReference { IconButton.Xl.Pilled.Dark.style() }, + "Xl.Pilled.Black" to ComposeStyleReference { IconButton.Xl.Pilled.Black.style() }, + "Xl.Pilled.White" to ComposeStyleReference { IconButton.Xl.Pilled.White.style() }, + "L.Default" to ComposeStyleReference { IconButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { IconButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { IconButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { IconButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { IconButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { IconButton.L.Warning.style() }, + "L.Clear" to ComposeStyleReference { IconButton.L.Clear.style() }, + "L.Dark" to ComposeStyleReference { IconButton.L.Dark.style() }, + "L.Black" to ComposeStyleReference { IconButton.L.Black.style() }, + "L.White" to ComposeStyleReference { IconButton.L.White.style() }, + "L.Pilled.Default" to ComposeStyleReference { IconButton.L.Pilled.Default.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { IconButton.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { IconButton.L.Pilled.Accent.style() }, + "L.Pilled.Positive" to ComposeStyleReference { IconButton.L.Pilled.Positive.style() }, + "L.Pilled.Negative" to ComposeStyleReference { IconButton.L.Pilled.Negative.style() }, + "L.Pilled.Warning" to ComposeStyleReference { IconButton.L.Pilled.Warning.style() }, + "L.Pilled.Clear" to ComposeStyleReference { IconButton.L.Pilled.Clear.style() }, + "L.Pilled.Dark" to ComposeStyleReference { IconButton.L.Pilled.Dark.style() }, + "L.Pilled.Black" to ComposeStyleReference { IconButton.L.Pilled.Black.style() }, + "L.Pilled.White" to ComposeStyleReference { IconButton.L.Pilled.White.style() }, + "M.Default" to ComposeStyleReference { IconButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { IconButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { IconButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { IconButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { IconButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { IconButton.M.Warning.style() }, + "M.Clear" to ComposeStyleReference { IconButton.M.Clear.style() }, + "M.Dark" to ComposeStyleReference { IconButton.M.Dark.style() }, + "M.Black" to ComposeStyleReference { IconButton.M.Black.style() }, + "M.White" to ComposeStyleReference { IconButton.M.White.style() }, + "M.Pilled.Default" to ComposeStyleReference { IconButton.M.Pilled.Default.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { IconButton.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { IconButton.M.Pilled.Accent.style() }, + "M.Pilled.Positive" to ComposeStyleReference { IconButton.M.Pilled.Positive.style() }, + "M.Pilled.Negative" to ComposeStyleReference { IconButton.M.Pilled.Negative.style() }, + "M.Pilled.Warning" to ComposeStyleReference { IconButton.M.Pilled.Warning.style() }, + "M.Pilled.Clear" to ComposeStyleReference { IconButton.M.Pilled.Clear.style() }, + "M.Pilled.Dark" to ComposeStyleReference { IconButton.M.Pilled.Dark.style() }, + "M.Pilled.Black" to ComposeStyleReference { IconButton.M.Pilled.Black.style() }, + "M.Pilled.White" to ComposeStyleReference { IconButton.M.Pilled.White.style() }, + "S.Default" to ComposeStyleReference { IconButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { IconButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { IconButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { IconButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { IconButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { IconButton.S.Warning.style() }, + "S.Clear" to ComposeStyleReference { IconButton.S.Clear.style() }, + "S.Dark" to ComposeStyleReference { IconButton.S.Dark.style() }, + "S.Black" to ComposeStyleReference { IconButton.S.Black.style() }, + "S.White" to ComposeStyleReference { IconButton.S.White.style() }, + "S.Pilled.Default" to ComposeStyleReference { IconButton.S.Pilled.Default.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { IconButton.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { IconButton.S.Pilled.Accent.style() }, + "S.Pilled.Positive" to ComposeStyleReference { IconButton.S.Pilled.Positive.style() }, + "S.Pilled.Negative" to ComposeStyleReference { IconButton.S.Pilled.Negative.style() }, + "S.Pilled.Warning" to ComposeStyleReference { IconButton.S.Pilled.Warning.style() }, + "S.Pilled.Clear" to ComposeStyleReference { IconButton.S.Pilled.Clear.style() }, + "S.Pilled.Dark" to ComposeStyleReference { IconButton.S.Pilled.Dark.style() }, + "S.Pilled.Black" to ComposeStyleReference { IconButton.S.Pilled.Black.style() }, + "S.Pilled.White" to ComposeStyleReference { IconButton.S.Pilled.White.style() }, + "Xs.Default" to ComposeStyleReference { IconButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { IconButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { IconButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { IconButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { IconButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { IconButton.Xs.Warning.style() }, + "Xs.Clear" to ComposeStyleReference { IconButton.Xs.Clear.style() }, + "Xs.Dark" to ComposeStyleReference { IconButton.Xs.Dark.style() }, + "Xs.Black" to ComposeStyleReference { IconButton.Xs.Black.style() }, + "Xs.White" to ComposeStyleReference { IconButton.Xs.White.style() }, + "Xs.Pilled.Default" to ComposeStyleReference { IconButton.Xs.Pilled.Default.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { IconButton.Xs.Pilled.Accent.style() }, + "Xs.Pilled.Positive" to ComposeStyleReference { IconButton.Xs.Pilled.Positive.style() }, + "Xs.Pilled.Negative" to ComposeStyleReference { IconButton.Xs.Pilled.Negative.style() }, + "Xs.Pilled.Warning" to ComposeStyleReference { IconButton.Xs.Pilled.Warning.style() }, + "Xs.Pilled.Clear" to ComposeStyleReference { IconButton.Xs.Pilled.Clear.style() }, + "Xs.Pilled.Dark" to ComposeStyleReference { IconButton.Xs.Pilled.Dark.style() }, + "Xs.Pilled.Black" to ComposeStyleReference { IconButton.Xs.Pilled.Black.style() }, + "Xs.Pilled.White" to ComposeStyleReference { IconButton.Xs.Pilled.White.style() }, + "Xxs.Default" to ComposeStyleReference { IconButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { IconButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { IconButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { IconButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { IconButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { IconButton.Xxs.Warning.style() }, + "Xxs.Clear" to ComposeStyleReference { IconButton.Xxs.Clear.style() }, + "Xxs.Dark" to ComposeStyleReference { IconButton.Xxs.Dark.style() }, + "Xxs.Black" to ComposeStyleReference { IconButton.Xxs.Black.style() }, + "Xxs.White" to ComposeStyleReference { IconButton.Xxs.White.style() }, + "Xxs.Pilled.Default" to ComposeStyleReference { IconButton.Xxs.Pilled.Default.style() }, + "Xxs.Pilled.Secondary" to ComposeStyleReference { IconButton.Xxs.Pilled.Secondary.style() }, + "Xxs.Pilled.Accent" to ComposeStyleReference { IconButton.Xxs.Pilled.Accent.style() }, + "Xxs.Pilled.Positive" to ComposeStyleReference { IconButton.Xxs.Pilled.Positive.style() }, + "Xxs.Pilled.Negative" to ComposeStyleReference { IconButton.Xxs.Pilled.Negative.style() }, + "Xxs.Pilled.Warning" to ComposeStyleReference { IconButton.Xxs.Pilled.Warning.style() }, + "Xxs.Pilled.Clear" to ComposeStyleReference { IconButton.Xxs.Pilled.Clear.style() }, + "Xxs.Pilled.Dark" to ComposeStyleReference { IconButton.Xxs.Pilled.Dark.style() }, + "Xxs.Pilled.Black" to ComposeStyleReference { IconButton.Xxs.Pilled.Black.style() }, + "Xxs.Pilled.White" to ComposeStyleReference { IconButton.Xxs.Pilled.White.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabItemVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabItemVariationsCompose.kt new file mode 100644 index 0000000000..2353ba8ae9 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabItemVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.icontabitem.IconTabItem +import com.sdds.serv.styles.icontabitem.L +import com.sdds.serv.styles.icontabitem.M +import com.sdds.serv.styles.icontabitem.S +import com.sdds.serv.styles.icontabitem.Xs + +internal object SddsServIconTabItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { IconTabItem.L.style() }, + "M" to ComposeStyleReference { IconTabItem.M.style() }, + "S" to ComposeStyleReference { IconTabItem.S.style() }, + "Xs" to ComposeStyleReference { IconTabItem.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabsVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabsVariationsCompose.kt new file mode 100644 index 0000000000..8bfef14207 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIconTabsVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabs.Horizontal +import com.sdds.serv.styles.tabs.IconTabs +import com.sdds.serv.styles.tabs.L +import com.sdds.serv.styles.tabs.M +import com.sdds.serv.styles.tabs.S +import com.sdds.serv.styles.tabs.Vertical +import com.sdds.serv.styles.tabs.Xs + +internal object SddsServIconTabsVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { IconTabs.L.style() }, + "L.Vertical" to ComposeStyleReference { IconTabs.L.Vertical.style() }, + "L.Horizontal" to ComposeStyleReference { IconTabs.L.Horizontal.style() }, + "M" to ComposeStyleReference { IconTabs.M.style() }, + "M.Vertical" to ComposeStyleReference { IconTabs.M.Vertical.style() }, + "M.Horizontal" to ComposeStyleReference { IconTabs.M.Horizontal.style() }, + "S" to ComposeStyleReference { IconTabs.S.style() }, + "S.Vertical" to ComposeStyleReference { IconTabs.S.Vertical.style() }, + "S.Horizontal" to ComposeStyleReference { IconTabs.S.Horizontal.style() }, + "Xs" to ComposeStyleReference { IconTabs.Xs.style() }, + "Xs.Vertical" to ComposeStyleReference { IconTabs.Xs.Vertical.style() }, + "Xs.Horizontal" to ComposeStyleReference { IconTabs.Xs.Horizontal.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServImageVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServImageVariationsCompose.kt new file mode 100644 index 0000000000..6344947703 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServImageVariationsCompose.kt @@ -0,0 +1,34 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ImageStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.image.Image +import com.sdds.serv.styles.image.Ratio16x9 +import com.sdds.serv.styles.image.Ratio1x1 +import com.sdds.serv.styles.image.Ratio1x2 +import com.sdds.serv.styles.image.Ratio2x1 +import com.sdds.serv.styles.image.Ratio3x4 +import com.sdds.serv.styles.image.Ratio4x3 +import com.sdds.serv.styles.image.Ratio9x16 + +internal object SddsServImageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Ratio12" to ComposeStyleReference { Image.Ratio1x2.style() }, + "Ratio916" to ComposeStyleReference { Image.Ratio9x16.style() }, + "Ratio34" to ComposeStyleReference { Image.Ratio3x4.style() }, + "Ratio21" to ComposeStyleReference { Image.Ratio2x1.style() }, + "Ratio169" to ComposeStyleReference { Image.Ratio16x9.style() }, + "Ratio43" to ComposeStyleReference { Image.Ratio4x3.style() }, + "Ratio11" to ComposeStyleReference { Image.Ratio1x1.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIndicatorVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIndicatorVariationsCompose.kt new file mode 100644 index 0000000000..87885fc40a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServIndicatorVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.IndicatorStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.indicator.Accent +import com.sdds.serv.styles.indicator.Black +import com.sdds.serv.styles.indicator.Dark +import com.sdds.serv.styles.indicator.Default +import com.sdds.serv.styles.indicator.Inactive +import com.sdds.serv.styles.indicator.Indicator +import com.sdds.serv.styles.indicator.L +import com.sdds.serv.styles.indicator.M +import com.sdds.serv.styles.indicator.Negative +import com.sdds.serv.styles.indicator.Positive +import com.sdds.serv.styles.indicator.S +import com.sdds.serv.styles.indicator.Warning +import com.sdds.serv.styles.indicator.White + +internal object SddsServIndicatorVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Indicator.L.Default.style() }, + "L.Accent" to ComposeStyleReference { Indicator.L.Accent.style() }, + "L.Inactive" to ComposeStyleReference { Indicator.L.Inactive.style() }, + "L.Positive" to ComposeStyleReference { Indicator.L.Positive.style() }, + "L.Warning" to ComposeStyleReference { Indicator.L.Warning.style() }, + "L.Negative" to ComposeStyleReference { Indicator.L.Negative.style() }, + "L.Dark" to ComposeStyleReference { Indicator.L.Dark.style() }, + "L.Black" to ComposeStyleReference { Indicator.L.Black.style() }, + "L.White" to ComposeStyleReference { Indicator.L.White.style() }, + "M.Default" to ComposeStyleReference { Indicator.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Indicator.M.Accent.style() }, + "M.Inactive" to ComposeStyleReference { Indicator.M.Inactive.style() }, + "M.Positive" to ComposeStyleReference { Indicator.M.Positive.style() }, + "M.Warning" to ComposeStyleReference { Indicator.M.Warning.style() }, + "M.Negative" to ComposeStyleReference { Indicator.M.Negative.style() }, + "M.Dark" to ComposeStyleReference { Indicator.M.Dark.style() }, + "M.Black" to ComposeStyleReference { Indicator.M.Black.style() }, + "M.White" to ComposeStyleReference { Indicator.M.White.style() }, + "S.Default" to ComposeStyleReference { Indicator.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Indicator.S.Accent.style() }, + "S.Inactive" to ComposeStyleReference { Indicator.S.Inactive.style() }, + "S.Positive" to ComposeStyleReference { Indicator.S.Positive.style() }, + "S.Warning" to ComposeStyleReference { Indicator.S.Warning.style() }, + "S.Negative" to ComposeStyleReference { Indicator.S.Negative.style() }, + "S.Dark" to ComposeStyleReference { Indicator.S.Dark.style() }, + "S.Black" to ComposeStyleReference { Indicator.S.Black.style() }, + "S.White" to ComposeStyleReference { Indicator.S.White.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLinkButtonVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLinkButtonVariationsCompose.kt new file mode 100644 index 0000000000..2d39fb51a7 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLinkButtonVariationsCompose.kt @@ -0,0 +1,75 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ButtonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.linkbutton.Accent +import com.sdds.serv.styles.linkbutton.Default +import com.sdds.serv.styles.linkbutton.Info +import com.sdds.serv.styles.linkbutton.L +import com.sdds.serv.styles.linkbutton.LinkButton +import com.sdds.serv.styles.linkbutton.M +import com.sdds.serv.styles.linkbutton.Negative +import com.sdds.serv.styles.linkbutton.Positive +import com.sdds.serv.styles.linkbutton.S +import com.sdds.serv.styles.linkbutton.Secondary +import com.sdds.serv.styles.linkbutton.Warning +import com.sdds.serv.styles.linkbutton.Xl +import com.sdds.serv.styles.linkbutton.Xs +import com.sdds.serv.styles.linkbutton.Xxs + +internal object SddsServLinkButtonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Default" to ComposeStyleReference { LinkButton.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { LinkButton.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { LinkButton.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { LinkButton.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { LinkButton.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { LinkButton.Xl.Warning.style() }, + "Xl.Info" to ComposeStyleReference { LinkButton.Xl.Info.style() }, + "L.Default" to ComposeStyleReference { LinkButton.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { LinkButton.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { LinkButton.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { LinkButton.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { LinkButton.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { LinkButton.L.Warning.style() }, + "L.Info" to ComposeStyleReference { LinkButton.L.Info.style() }, + "M.Default" to ComposeStyleReference { LinkButton.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { LinkButton.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { LinkButton.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { LinkButton.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { LinkButton.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { LinkButton.M.Warning.style() }, + "M.Info" to ComposeStyleReference { LinkButton.M.Info.style() }, + "S.Default" to ComposeStyleReference { LinkButton.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { LinkButton.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { LinkButton.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { LinkButton.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { LinkButton.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { LinkButton.S.Warning.style() }, + "S.Info" to ComposeStyleReference { LinkButton.S.Info.style() }, + "Xs.Default" to ComposeStyleReference { LinkButton.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { LinkButton.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { LinkButton.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { LinkButton.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { LinkButton.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { LinkButton.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { LinkButton.Xs.Info.style() }, + "Xxs.Default" to ComposeStyleReference { LinkButton.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { LinkButton.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { LinkButton.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { LinkButton.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { LinkButton.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { LinkButton.Xxs.Warning.style() }, + "Xxs.Info" to ComposeStyleReference { LinkButton.Xxs.Info.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemNormalVariationsCompose.kt new file mode 100644 index 0000000000..f59c681844 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.listitem.L +import com.sdds.serv.styles.listitem.ListItemNormal +import com.sdds.serv.styles.listitem.M +import com.sdds.serv.styles.listitem.S +import com.sdds.serv.styles.listitem.Xl +import com.sdds.serv.styles.listitem.Xs + +internal object SddsServListItemNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemNormal.Xl.style() }, + "L" to ComposeStyleReference { ListItemNormal.L.style() }, + "M" to ComposeStyleReference { ListItemNormal.M.style() }, + "S" to ComposeStyleReference { ListItemNormal.S.style() }, + "Xs" to ComposeStyleReference { ListItemNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemTightVariationsCompose.kt new file mode 100644 index 0000000000..19d1b7b230 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListItemTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.listitem.L +import com.sdds.serv.styles.listitem.ListItemTight +import com.sdds.serv.styles.listitem.M +import com.sdds.serv.styles.listitem.S +import com.sdds.serv.styles.listitem.Xl +import com.sdds.serv.styles.listitem.Xs + +internal object SddsServListItemTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListItemTight.Xl.style() }, + "L" to ComposeStyleReference { ListItemTight.L.style() }, + "M" to ComposeStyleReference { ListItemTight.M.style() }, + "S" to ComposeStyleReference { ListItemTight.S.style() }, + "Xs" to ComposeStyleReference { ListItemTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListNormalVariationsCompose.kt new file mode 100644 index 0000000000..d1475ae756 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.list.L +import com.sdds.serv.styles.list.ListNormal +import com.sdds.serv.styles.list.M +import com.sdds.serv.styles.list.S +import com.sdds.serv.styles.list.Xl +import com.sdds.serv.styles.list.Xs + +internal object SddsServListNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListNormal.Xl.style() }, + "L" to ComposeStyleReference { ListNormal.L.style() }, + "M" to ComposeStyleReference { ListNormal.M.style() }, + "S" to ComposeStyleReference { ListNormal.S.style() }, + "Xs" to ComposeStyleReference { ListNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListTightVariationsCompose.kt new file mode 100644 index 0000000000..fe834248c4 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServListTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ListStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.list.L +import com.sdds.serv.styles.list.ListTight +import com.sdds.serv.styles.list.M +import com.sdds.serv.styles.list.S +import com.sdds.serv.styles.list.Xl +import com.sdds.serv.styles.list.Xs + +internal object SddsServListTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { ListTight.Xl.style() }, + "L" to ComposeStyleReference { ListTight.L.style() }, + "M" to ComposeStyleReference { ListTight.M.style() }, + "S" to ComposeStyleReference { ListTight.S.style() }, + "Xs" to ComposeStyleReference { ListTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLoaderVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLoaderVariationsCompose.kt new file mode 100644 index 0000000000..211dc91699 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServLoaderVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.LoaderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.loader.Default +import com.sdds.serv.styles.loader.Loader + +internal object SddsServLoaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Loader.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalBottomSheetVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalBottomSheetVariationsCompose.kt new file mode 100644 index 0000000000..2b7672a7cb --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalBottomSheetVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalBottomSheetStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.bottomsheet.Default +import com.sdds.serv.styles.bottomsheet.ModalBottomSheet + +internal object SddsServModalBottomSheetVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ModalBottomSheet.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalVariationsCompose.kt new file mode 100644 index 0000000000..a4059fb6b2 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServModalVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ModalStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.modal.Default +import com.sdds.serv.styles.modal.Modal + +internal object SddsServModalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Modal.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarInternalPageVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarInternalPageVariationsCompose.kt new file mode 100644 index 0000000000..e2614aa53b --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarInternalPageVariationsCompose.kt @@ -0,0 +1,32 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.navigationbar.HasBackground +import com.sdds.serv.styles.navigationbar.NavigationBarInternalPage +import com.sdds.serv.styles.navigationbar.NoBackground +import com.sdds.serv.styles.navigationbar.Rounded +import com.sdds.serv.styles.navigationbar.Shadow + +internal object SddsServNavigationBarInternalPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "NoBackground" to ComposeStyleReference { NavigationBarInternalPage.NoBackground.style() }, + "NoBackground.Rounded" to ComposeStyleReference { NavigationBarInternalPage.NoBackground.Rounded.style() }, + "HasBackground" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.style() }, + "HasBackground.Rounded" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.Rounded.style() }, + "HasBackground.Shadow" to ComposeStyleReference { NavigationBarInternalPage.HasBackground.Shadow.style() }, + "HasBackground.Shadow.Rounded" to ComposeStyleReference { + NavigationBarInternalPage.HasBackground.Shadow.Rounded.style() + }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarMainPageVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarMainPageVariationsCompose.kt new file mode 100644 index 0000000000..ca53950155 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNavigationBarMainPageVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NavigationBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.navigationbar.HasBackground +import com.sdds.serv.styles.navigationbar.NavigationBarMainPage +import com.sdds.serv.styles.navigationbar.NoBackground +import com.sdds.serv.styles.navigationbar.Rounded +import com.sdds.serv.styles.navigationbar.Shadow + +internal object SddsServNavigationBarMainPageVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "NoBackground" to ComposeStyleReference { NavigationBarMainPage.NoBackground.style() }, + "NoBackground.Rounded" to ComposeStyleReference { NavigationBarMainPage.NoBackground.Rounded.style() }, + "HasBackground" to ComposeStyleReference { NavigationBarMainPage.HasBackground.style() }, + "HasBackground.Rounded" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Rounded.style() }, + "HasBackground.Shadow" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Shadow.style() }, + "HasBackground.Shadow.Rounded" to ComposeStyleReference { NavigationBarMainPage.HasBackground.Shadow.Rounded.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteCompactVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteCompactVariationsCompose.kt new file mode 100644 index 0000000000..d1098dd994 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteCompactVariationsCompose.kt @@ -0,0 +1,132 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NoteCompactStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.notecompact.ContentScalable +import com.sdds.serv.styles.notecompact.Default +import com.sdds.serv.styles.notecompact.HasClose +import com.sdds.serv.styles.notecompact.HasCloseContentScalable +import com.sdds.serv.styles.notecompact.Info +import com.sdds.serv.styles.notecompact.L +import com.sdds.serv.styles.notecompact.M +import com.sdds.serv.styles.notecompact.Negative +import com.sdds.serv.styles.notecompact.NoteCompact +import com.sdds.serv.styles.notecompact.Positive +import com.sdds.serv.styles.notecompact.S +import com.sdds.serv.styles.notecompact.Warning +import com.sdds.serv.styles.notecompact.Xs + +internal object SddsServNoteCompactVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { NoteCompact.L.Default.style() }, + "L.Positive" to ComposeStyleReference { NoteCompact.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { NoteCompact.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { NoteCompact.L.Warning.style() }, + "L.Info" to ComposeStyleReference { NoteCompact.L.Info.style() }, + "L.HasClose.Default" to ComposeStyleReference { NoteCompact.L.HasClose.Default.style() }, + "L.HasClose.Positive" to ComposeStyleReference { NoteCompact.L.HasClose.Positive.style() }, + "L.HasClose.Negative" to ComposeStyleReference { NoteCompact.L.HasClose.Negative.style() }, + "L.HasClose.Warning" to ComposeStyleReference { NoteCompact.L.HasClose.Warning.style() }, + "L.HasClose.Info" to ComposeStyleReference { NoteCompact.L.HasClose.Info.style() }, + "L.ContentScalable.Default" to ComposeStyleReference { NoteCompact.L.ContentScalable.Default.style() }, + "L.ContentScalable.Positive" to ComposeStyleReference { NoteCompact.L.ContentScalable.Positive.style() }, + "L.ContentScalable.Negative" to ComposeStyleReference { NoteCompact.L.ContentScalable.Negative.style() }, + "L.ContentScalable.Warning" to ComposeStyleReference { NoteCompact.L.ContentScalable.Warning.style() }, + "L.ContentScalable.Info" to ComposeStyleReference { NoteCompact.L.ContentScalable.Info.style() }, + "L.HasCloseContentScalable.Default" to ComposeStyleReference { NoteCompact.L.HasCloseContentScalable.Default.style() }, + "L.HasCloseContentScalable.Positive" to ComposeStyleReference { + NoteCompact.L.HasCloseContentScalable.Positive.style() + }, + "L.HasCloseContentScalable.Negative" to ComposeStyleReference { + NoteCompact.L.HasCloseContentScalable.Negative.style() + }, + "L.HasCloseContentScalable.Warning" to ComposeStyleReference { NoteCompact.L.HasCloseContentScalable.Warning.style() }, + "L.HasCloseContentScalable.Info" to ComposeStyleReference { NoteCompact.L.HasCloseContentScalable.Info.style() }, + "M.Default" to ComposeStyleReference { NoteCompact.M.Default.style() }, + "M.Positive" to ComposeStyleReference { NoteCompact.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { NoteCompact.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { NoteCompact.M.Warning.style() }, + "M.Info" to ComposeStyleReference { NoteCompact.M.Info.style() }, + "M.HasClose.Default" to ComposeStyleReference { NoteCompact.M.HasClose.Default.style() }, + "M.HasClose.Positive" to ComposeStyleReference { NoteCompact.M.HasClose.Positive.style() }, + "M.HasClose.Negative" to ComposeStyleReference { NoteCompact.M.HasClose.Negative.style() }, + "M.HasClose.Warning" to ComposeStyleReference { NoteCompact.M.HasClose.Warning.style() }, + "M.HasClose.Info" to ComposeStyleReference { NoteCompact.M.HasClose.Info.style() }, + "M.ContentScalable.Default" to ComposeStyleReference { NoteCompact.M.ContentScalable.Default.style() }, + "M.ContentScalable.Positive" to ComposeStyleReference { NoteCompact.M.ContentScalable.Positive.style() }, + "M.ContentScalable.Negative" to ComposeStyleReference { NoteCompact.M.ContentScalable.Negative.style() }, + "M.ContentScalable.Warning" to ComposeStyleReference { NoteCompact.M.ContentScalable.Warning.style() }, + "M.ContentScalable.Info" to ComposeStyleReference { NoteCompact.M.ContentScalable.Info.style() }, + "M.HasCloseContentScalable.Default" to ComposeStyleReference { NoteCompact.M.HasCloseContentScalable.Default.style() }, + "M.HasCloseContentScalable.Positive" to ComposeStyleReference { + NoteCompact.M.HasCloseContentScalable.Positive.style() + }, + "M.HasCloseContentScalable.Negative" to ComposeStyleReference { + NoteCompact.M.HasCloseContentScalable.Negative.style() + }, + "M.HasCloseContentScalable.Warning" to ComposeStyleReference { NoteCompact.M.HasCloseContentScalable.Warning.style() }, + "M.HasCloseContentScalable.Info" to ComposeStyleReference { NoteCompact.M.HasCloseContentScalable.Info.style() }, + "S.Default" to ComposeStyleReference { NoteCompact.S.Default.style() }, + "S.Positive" to ComposeStyleReference { NoteCompact.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { NoteCompact.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { NoteCompact.S.Warning.style() }, + "S.Info" to ComposeStyleReference { NoteCompact.S.Info.style() }, + "S.HasClose.Default" to ComposeStyleReference { NoteCompact.S.HasClose.Default.style() }, + "S.HasClose.Positive" to ComposeStyleReference { NoteCompact.S.HasClose.Positive.style() }, + "S.HasClose.Negative" to ComposeStyleReference { NoteCompact.S.HasClose.Negative.style() }, + "S.HasClose.Warning" to ComposeStyleReference { NoteCompact.S.HasClose.Warning.style() }, + "S.HasClose.Info" to ComposeStyleReference { NoteCompact.S.HasClose.Info.style() }, + "S.ContentScalable.Default" to ComposeStyleReference { NoteCompact.S.ContentScalable.Default.style() }, + "S.ContentScalable.Positive" to ComposeStyleReference { NoteCompact.S.ContentScalable.Positive.style() }, + "S.ContentScalable.Negative" to ComposeStyleReference { NoteCompact.S.ContentScalable.Negative.style() }, + "S.ContentScalable.Warning" to ComposeStyleReference { NoteCompact.S.ContentScalable.Warning.style() }, + "S.ContentScalable.Info" to ComposeStyleReference { NoteCompact.S.ContentScalable.Info.style() }, + "S.HasCloseContentScalable.Default" to ComposeStyleReference { NoteCompact.S.HasCloseContentScalable.Default.style() }, + "S.HasCloseContentScalable.Positive" to ComposeStyleReference { + NoteCompact.S.HasCloseContentScalable.Positive.style() + }, + "S.HasCloseContentScalable.Negative" to ComposeStyleReference { + NoteCompact.S.HasCloseContentScalable.Negative.style() + }, + "S.HasCloseContentScalable.Warning" to ComposeStyleReference { NoteCompact.S.HasCloseContentScalable.Warning.style() }, + "S.HasCloseContentScalable.Info" to ComposeStyleReference { NoteCompact.S.HasCloseContentScalable.Info.style() }, + "Xs.Default" to ComposeStyleReference { NoteCompact.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { NoteCompact.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { NoteCompact.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { NoteCompact.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { NoteCompact.Xs.Info.style() }, + "Xs.HasClose.Default" to ComposeStyleReference { NoteCompact.Xs.HasClose.Default.style() }, + "Xs.HasClose.Positive" to ComposeStyleReference { NoteCompact.Xs.HasClose.Positive.style() }, + "Xs.HasClose.Negative" to ComposeStyleReference { NoteCompact.Xs.HasClose.Negative.style() }, + "Xs.HasClose.Warning" to ComposeStyleReference { NoteCompact.Xs.HasClose.Warning.style() }, + "Xs.HasClose.Info" to ComposeStyleReference { NoteCompact.Xs.HasClose.Info.style() }, + "Xs.ContentScalable.Default" to ComposeStyleReference { NoteCompact.Xs.ContentScalable.Default.style() }, + "Xs.ContentScalable.Positive" to ComposeStyleReference { NoteCompact.Xs.ContentScalable.Positive.style() }, + "Xs.ContentScalable.Negative" to ComposeStyleReference { NoteCompact.Xs.ContentScalable.Negative.style() }, + "Xs.ContentScalable.Warning" to ComposeStyleReference { NoteCompact.Xs.ContentScalable.Warning.style() }, + "Xs.ContentScalable.Info" to ComposeStyleReference { NoteCompact.Xs.ContentScalable.Info.style() }, + "Xs.HasCloseContentScalable.Default" to ComposeStyleReference { + NoteCompact.Xs.HasCloseContentScalable.Default.style() + }, + "Xs.HasCloseContentScalable.Positive" to ComposeStyleReference { + NoteCompact.Xs.HasCloseContentScalable.Positive.style() + }, + "Xs.HasCloseContentScalable.Negative" to ComposeStyleReference { + NoteCompact.Xs.HasCloseContentScalable.Negative.style() + }, + "Xs.HasCloseContentScalable.Warning" to ComposeStyleReference { + NoteCompact.Xs.HasCloseContentScalable.Warning.style() + }, + "Xs.HasCloseContentScalable.Info" to ComposeStyleReference { NoteCompact.Xs.HasCloseContentScalable.Info.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteVariationsCompose.kt new file mode 100644 index 0000000000..6170349b7b --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNoteVariationsCompose.kt @@ -0,0 +1,112 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NoteStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.note.ContentScalable +import com.sdds.serv.styles.note.Default +import com.sdds.serv.styles.note.HasClose +import com.sdds.serv.styles.note.HasCloseContentScalable +import com.sdds.serv.styles.note.Info +import com.sdds.serv.styles.note.L +import com.sdds.serv.styles.note.M +import com.sdds.serv.styles.note.Negative +import com.sdds.serv.styles.note.Note +import com.sdds.serv.styles.note.Positive +import com.sdds.serv.styles.note.S +import com.sdds.serv.styles.note.Warning +import com.sdds.serv.styles.note.Xs + +internal object SddsServNoteVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { Note.L.Default.style() }, + "L.Positive" to ComposeStyleReference { Note.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { Note.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { Note.L.Warning.style() }, + "L.Info" to ComposeStyleReference { Note.L.Info.style() }, + "L.HasClose.Default" to ComposeStyleReference { Note.L.HasClose.Default.style() }, + "L.HasClose.Positive" to ComposeStyleReference { Note.L.HasClose.Positive.style() }, + "L.HasClose.Negative" to ComposeStyleReference { Note.L.HasClose.Negative.style() }, + "L.HasClose.Warning" to ComposeStyleReference { Note.L.HasClose.Warning.style() }, + "L.HasClose.Info" to ComposeStyleReference { Note.L.HasClose.Info.style() }, + "L.ContentScalable.Default" to ComposeStyleReference { Note.L.ContentScalable.Default.style() }, + "L.ContentScalable.Positive" to ComposeStyleReference { Note.L.ContentScalable.Positive.style() }, + "L.ContentScalable.Negative" to ComposeStyleReference { Note.L.ContentScalable.Negative.style() }, + "L.ContentScalable.Warning" to ComposeStyleReference { Note.L.ContentScalable.Warning.style() }, + "L.ContentScalable.Info" to ComposeStyleReference { Note.L.ContentScalable.Info.style() }, + "L.HasCloseContentScalable.Default" to ComposeStyleReference { Note.L.HasCloseContentScalable.Default.style() }, + "L.HasCloseContentScalable.Positive" to ComposeStyleReference { Note.L.HasCloseContentScalable.Positive.style() }, + "L.HasCloseContentScalable.Negative" to ComposeStyleReference { Note.L.HasCloseContentScalable.Negative.style() }, + "L.HasCloseContentScalable.Warning" to ComposeStyleReference { Note.L.HasCloseContentScalable.Warning.style() }, + "L.HasCloseContentScalable.Info" to ComposeStyleReference { Note.L.HasCloseContentScalable.Info.style() }, + "M.Default" to ComposeStyleReference { Note.M.Default.style() }, + "M.Positive" to ComposeStyleReference { Note.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { Note.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { Note.M.Warning.style() }, + "M.Info" to ComposeStyleReference { Note.M.Info.style() }, + "M.HasClose.Default" to ComposeStyleReference { Note.M.HasClose.Default.style() }, + "M.HasClose.Positive" to ComposeStyleReference { Note.M.HasClose.Positive.style() }, + "M.HasClose.Negative" to ComposeStyleReference { Note.M.HasClose.Negative.style() }, + "M.HasClose.Warning" to ComposeStyleReference { Note.M.HasClose.Warning.style() }, + "M.HasClose.Info" to ComposeStyleReference { Note.M.HasClose.Info.style() }, + "M.ContentScalable.Default" to ComposeStyleReference { Note.M.ContentScalable.Default.style() }, + "M.ContentScalable.Positive" to ComposeStyleReference { Note.M.ContentScalable.Positive.style() }, + "M.ContentScalable.Negative" to ComposeStyleReference { Note.M.ContentScalable.Negative.style() }, + "M.ContentScalable.Warning" to ComposeStyleReference { Note.M.ContentScalable.Warning.style() }, + "M.ContentScalable.Info" to ComposeStyleReference { Note.M.ContentScalable.Info.style() }, + "M.HasCloseContentScalable.Default" to ComposeStyleReference { Note.M.HasCloseContentScalable.Default.style() }, + "M.HasCloseContentScalable.Positive" to ComposeStyleReference { Note.M.HasCloseContentScalable.Positive.style() }, + "M.HasCloseContentScalable.Negative" to ComposeStyleReference { Note.M.HasCloseContentScalable.Negative.style() }, + "M.HasCloseContentScalable.Warning" to ComposeStyleReference { Note.M.HasCloseContentScalable.Warning.style() }, + "M.HasCloseContentScalable.Info" to ComposeStyleReference { Note.M.HasCloseContentScalable.Info.style() }, + "S.Default" to ComposeStyleReference { Note.S.Default.style() }, + "S.Positive" to ComposeStyleReference { Note.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { Note.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { Note.S.Warning.style() }, + "S.Info" to ComposeStyleReference { Note.S.Info.style() }, + "S.HasClose.Default" to ComposeStyleReference { Note.S.HasClose.Default.style() }, + "S.HasClose.Positive" to ComposeStyleReference { Note.S.HasClose.Positive.style() }, + "S.HasClose.Negative" to ComposeStyleReference { Note.S.HasClose.Negative.style() }, + "S.HasClose.Warning" to ComposeStyleReference { Note.S.HasClose.Warning.style() }, + "S.HasClose.Info" to ComposeStyleReference { Note.S.HasClose.Info.style() }, + "S.ContentScalable.Default" to ComposeStyleReference { Note.S.ContentScalable.Default.style() }, + "S.ContentScalable.Positive" to ComposeStyleReference { Note.S.ContentScalable.Positive.style() }, + "S.ContentScalable.Negative" to ComposeStyleReference { Note.S.ContentScalable.Negative.style() }, + "S.ContentScalable.Warning" to ComposeStyleReference { Note.S.ContentScalable.Warning.style() }, + "S.ContentScalable.Info" to ComposeStyleReference { Note.S.ContentScalable.Info.style() }, + "S.HasCloseContentScalable.Default" to ComposeStyleReference { Note.S.HasCloseContentScalable.Default.style() }, + "S.HasCloseContentScalable.Positive" to ComposeStyleReference { Note.S.HasCloseContentScalable.Positive.style() }, + "S.HasCloseContentScalable.Negative" to ComposeStyleReference { Note.S.HasCloseContentScalable.Negative.style() }, + "S.HasCloseContentScalable.Warning" to ComposeStyleReference { Note.S.HasCloseContentScalable.Warning.style() }, + "S.HasCloseContentScalable.Info" to ComposeStyleReference { Note.S.HasCloseContentScalable.Info.style() }, + "Xs.Default" to ComposeStyleReference { Note.Xs.Default.style() }, + "Xs.Positive" to ComposeStyleReference { Note.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { Note.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { Note.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { Note.Xs.Info.style() }, + "Xs.HasClose.Default" to ComposeStyleReference { Note.Xs.HasClose.Default.style() }, + "Xs.HasClose.Positive" to ComposeStyleReference { Note.Xs.HasClose.Positive.style() }, + "Xs.HasClose.Negative" to ComposeStyleReference { Note.Xs.HasClose.Negative.style() }, + "Xs.HasClose.Warning" to ComposeStyleReference { Note.Xs.HasClose.Warning.style() }, + "Xs.HasClose.Info" to ComposeStyleReference { Note.Xs.HasClose.Info.style() }, + "Xs.ContentScalable.Default" to ComposeStyleReference { Note.Xs.ContentScalable.Default.style() }, + "Xs.ContentScalable.Positive" to ComposeStyleReference { Note.Xs.ContentScalable.Positive.style() }, + "Xs.ContentScalable.Negative" to ComposeStyleReference { Note.Xs.ContentScalable.Negative.style() }, + "Xs.ContentScalable.Warning" to ComposeStyleReference { Note.Xs.ContentScalable.Warning.style() }, + "Xs.ContentScalable.Info" to ComposeStyleReference { Note.Xs.ContentScalable.Info.style() }, + "Xs.HasCloseContentScalable.Default" to ComposeStyleReference { Note.Xs.HasCloseContentScalable.Default.style() }, + "Xs.HasCloseContentScalable.Positive" to ComposeStyleReference { Note.Xs.HasCloseContentScalable.Positive.style() }, + "Xs.HasCloseContentScalable.Negative" to ComposeStyleReference { Note.Xs.HasCloseContentScalable.Negative.style() }, + "Xs.HasCloseContentScalable.Warning" to ComposeStyleReference { Note.Xs.HasCloseContentScalable.Warning.style() }, + "Xs.HasCloseContentScalable.Info" to ComposeStyleReference { Note.Xs.HasCloseContentScalable.Info.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationCompactVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationCompactVariationsCompose.kt new file mode 100644 index 0000000000..b54d643e02 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationCompactVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.notification.L +import com.sdds.serv.styles.notification.M +import com.sdds.serv.styles.notification.NotificationCompact +import com.sdds.serv.styles.notification.S + +internal object SddsServNotificationCompactVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationCompact.L.style() }, + "M" to ComposeStyleReference { NotificationCompact.M.style() }, + "S" to ComposeStyleReference { NotificationCompact.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationContentVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationContentVariationsCompose.kt new file mode 100644 index 0000000000..1c4d28aea3 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationContentVariationsCompose.kt @@ -0,0 +1,89 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationContentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.notificationcontent.ButtonStretch +import com.sdds.serv.styles.notificationcontent.Default +import com.sdds.serv.styles.notificationcontent.IconStart +import com.sdds.serv.styles.notificationcontent.IconTop +import com.sdds.serv.styles.notificationcontent.Info +import com.sdds.serv.styles.notificationcontent.Negative +import com.sdds.serv.styles.notificationcontent.NoButtonStretch +import com.sdds.serv.styles.notificationcontent.NotificationContent +import com.sdds.serv.styles.notificationcontent.Positive +import com.sdds.serv.styles.notificationcontent.Warning + +internal object SddsServNotificationContentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "ButtonStretch.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.Default.style() }, + "ButtonStretch.Positive" to ComposeStyleReference { NotificationContent.ButtonStretch.Positive.style() }, + "ButtonStretch.Negative" to ComposeStyleReference { NotificationContent.ButtonStretch.Negative.style() }, + "ButtonStretch.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.Warning.style() }, + "ButtonStretch.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.Info.style() }, + "ButtonStretch.IconTop.Default" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Default.style() }, + "ButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Positive.style() + }, + "ButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconTop.Negative.style() + }, + "ButtonStretch.IconTop.Warning" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Warning.style() }, + "ButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconTop.Info.style() }, + "ButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Default.style() + }, + "ButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Positive.style() + }, + "ButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Negative.style() + }, + "ButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.ButtonStretch.IconStart.Warning.style() + }, + "ButtonStretch.IconStart.Info" to ComposeStyleReference { NotificationContent.ButtonStretch.IconStart.Info.style() }, + "NoButtonStretch.Default" to ComposeStyleReference { NotificationContent.NoButtonStretch.Default.style() }, + "NoButtonStretch.Positive" to ComposeStyleReference { NotificationContent.NoButtonStretch.Positive.style() }, + "NoButtonStretch.Negative" to ComposeStyleReference { NotificationContent.NoButtonStretch.Negative.style() }, + "NoButtonStretch.Warning" to ComposeStyleReference { NotificationContent.NoButtonStretch.Warning.style() }, + "NoButtonStretch.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.Info.style() }, + "NoButtonStretch.IconTop.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Default.style() + }, + "NoButtonStretch.IconTop.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Positive.style() + }, + "NoButtonStretch.IconTop.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Negative.style() + }, + "NoButtonStretch.IconTop.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconTop.Warning.style() + }, + "NoButtonStretch.IconTop.Info" to ComposeStyleReference { NotificationContent.NoButtonStretch.IconTop.Info.style() }, + "NoButtonStretch.IconStart.Default" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Default.style() + }, + "NoButtonStretch.IconStart.Positive" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Positive.style() + }, + "NoButtonStretch.IconStart.Negative" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Negative.style() + }, + "NoButtonStretch.IconStart.Warning" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Warning.style() + }, + "NoButtonStretch.IconStart.Info" to ComposeStyleReference { + NotificationContent.NoButtonStretch.IconStart.Info.style() + }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationLooseVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationLooseVariationsCompose.kt new file mode 100644 index 0000000000..6cf2592ed7 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServNotificationLooseVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.NotificationStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.notification.L +import com.sdds.serv.styles.notification.M +import com.sdds.serv.styles.notification.NotificationLoose +import com.sdds.serv.styles.notification.S + +internal object SddsServNotificationLooseVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { NotificationLoose.L.style() }, + "M" to ComposeStyleReference { NotificationLoose.M.style() }, + "S" to ComposeStyleReference { NotificationLoose.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServOverlayVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServOverlayVariationsCompose.kt new file mode 100644 index 0000000000..ede513f94b --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServOverlayVariationsCompose.kt @@ -0,0 +1,22 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.OverlayStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.overlay.Default +import com.sdds.serv.styles.overlay.Overlay + +internal object SddsServOverlayVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { Overlay.Default.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsHorizontalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..904e2ba813 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsHorizontalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.paginationdots.ActiveTypeLine +import com.sdds.serv.styles.paginationdots.M +import com.sdds.serv.styles.paginationdots.PaginationDotsHorizontal +import com.sdds.serv.styles.paginationdots.S + +internal object SddsServPaginationDotsHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsHorizontal.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsHorizontal.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsHorizontal.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsVerticalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsVerticalVariationsCompose.kt new file mode 100644 index 0000000000..3a5c637104 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPaginationDotsVerticalVariationsCompose.kt @@ -0,0 +1,27 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PaginationDotsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.paginationdots.ActiveTypeLine +import com.sdds.serv.styles.paginationdots.M +import com.sdds.serv.styles.paginationdots.PaginationDotsVertical +import com.sdds.serv.styles.paginationdots.S + +internal object SddsServPaginationDotsVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { PaginationDotsVertical.M.style() }, + "M.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.M.ActiveTypeLine.style() }, + "S" to ComposeStyleReference { PaginationDotsVertical.S.style() }, + "S.ActiveTypeLine" to ComposeStyleReference { PaginationDotsVertical.S.ActiveTypeLine.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPopoverVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPopoverVariationsCompose.kt new file mode 100644 index 0000000000..5b8418504f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServPopoverVariationsCompose.kt @@ -0,0 +1,28 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.PopoverStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.popover.Accent +import com.sdds.serv.styles.popover.Default +import com.sdds.serv.styles.popover.M +import com.sdds.serv.styles.popover.Popover +import com.sdds.serv.styles.popover.S + +internal object SddsServPopoverVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { Popover.M.Default.style() }, + "M.Accent" to ComposeStyleReference { Popover.M.Accent.style() }, + "S.Default" to ComposeStyleReference { Popover.S.Default.style() }, + "S.Accent" to ComposeStyleReference { Popover.S.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServProgressBarVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServProgressBarVariationsCompose.kt new file mode 100644 index 0000000000..fbd8c45261 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServProgressBarVariationsCompose.kt @@ -0,0 +1,36 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ProgressBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.progressbar.Accent +import com.sdds.serv.styles.progressbar.Default +import com.sdds.serv.styles.progressbar.Gradient +import com.sdds.serv.styles.progressbar.Info +import com.sdds.serv.styles.progressbar.Negative +import com.sdds.serv.styles.progressbar.Positive +import com.sdds.serv.styles.progressbar.ProgressBar +import com.sdds.serv.styles.progressbar.Secondary +import com.sdds.serv.styles.progressbar.Warning + +internal object SddsServProgressBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { ProgressBar.Default.style() }, + "Secondary" to ComposeStyleReference { ProgressBar.Secondary.style() }, + "Accent" to ComposeStyleReference { ProgressBar.Accent.style() }, + "Gradient" to ComposeStyleReference { ProgressBar.Gradient.style() }, + "Info" to ComposeStyleReference { ProgressBar.Info.style() }, + "Negative" to ComposeStyleReference { ProgressBar.Negative.style() }, + "Positive" to ComposeStyleReference { ProgressBar.Positive.style() }, + "Warning" to ComposeStyleReference { ProgressBar.Warning.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxGroupVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxGroupVariationsCompose.kt new file mode 100644 index 0000000000..c59aa8613c --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxGroupVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxGroupStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.radioboxgroup.M +import com.sdds.serv.styles.radioboxgroup.RadioBoxGroup +import com.sdds.serv.styles.radioboxgroup.S + +internal object SddsServRadioBoxGroupVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { RadioBoxGroup.M.style() }, + "S" to ComposeStyleReference { RadioBoxGroup.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxVariationsCompose.kt new file mode 100644 index 0000000000..59190f4050 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRadioBoxVariationsCompose.kt @@ -0,0 +1,26 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RadioBoxStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.radiobox.L +import com.sdds.serv.styles.radiobox.M +import com.sdds.serv.styles.radiobox.RadioBox +import com.sdds.serv.styles.radiobox.S + +internal object SddsServRadioBoxVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { RadioBox.L.style() }, + "M" to ComposeStyleReference { RadioBox.M.style() }, + "S" to ComposeStyleReference { RadioBox.S.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRectSkeletonVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRectSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..7fc1145a7d --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRectSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.RectSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.rectskeleton.Default +import com.sdds.serv.styles.rectskeleton.Lighter +import com.sdds.serv.styles.rectskeleton.RectSkeleton + +internal object SddsServRectSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { RectSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { RectSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRegisterTheme.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRegisterTheme.kt new file mode 100644 index 0000000000..3b4cdc787a --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServRegisterTheme.kt @@ -0,0 +1,41 @@ +package com.sdds.serv.integration + +import androidx.compose.foundation.isSystemInDarkTheme +import com.sdds.compose.sandbox.ComposeTheme +import com.sdds.compose.sandbox.SubTheme +import com.sdds.compose.sandbox.ui.SandboxActivity +import com.sdds.sandbox.ComponentProvider +import com.sdds.sandbox.ComponentProviderUtils.plus +import com.sdds.sandbox.ThemeManager +import com.sdds.serv.theme.SddsServTheme +import com.sdds.serv.theme.darkSddsServColors +import com.sdds.serv.theme.darkSddsServGradients +import com.sdds.serv.theme.lightSddsServColors +import com.sdds.serv.theme.lightSddsServGradients +import com.sdds.serv.theme.subthemes.Default +import com.sdds.serv.theme.subthemes.Inverse +import com.sdds.serv.theme.subthemes.OnDark +import com.sdds.serv.theme.subthemes.OnLight + +fun SandboxActivity.registerTheme(componentProvider: ComponentProvider = ComponentProvider.Empty) { + val theme = ComposeTheme( + displayName = "SddsServ", + components = SddsServComposeComponents + componentProvider, + themeWrapper = { + val isDark = isSystemInDarkTheme() + SddsServTheme( + colors = if (isDark) darkSddsServColors() else lightSddsServColors(), + gradients = if (isDark) darkSddsServGradients() else lightSddsServGradients(), + ) { + it.invoke() + } + }, + subthemes = mapOf( + SubTheme.DEFAULT to { SddsServTheme.Default(content = it) }, + SubTheme.ON_LIGHT to { SddsServTheme.OnLight(content = it) }, + SubTheme.ON_DARK to { SddsServTheme.OnDark(content = it) }, + SubTheme.INVERSE to { SddsServTheme.Inverse(content = it) }, + ), + ) + ThemeManager.updateTheme(theme) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServScrollBarVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServScrollBarVariationsCompose.kt new file mode 100644 index 0000000000..104c0cfdb4 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServScrollBarVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ScrollBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.scrollbar.M +import com.sdds.serv.styles.scrollbar.S +import com.sdds.serv.styles.scrollbar.ScrollBar + +internal object SddsServScrollBarVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "S" to ComposeStyleReference { ScrollBar.S.style() }, + "M" to ComposeStyleReference { ScrollBar.M.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentItemVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentItemVariationsCompose.kt new file mode 100644 index 0000000000..291a4bcb66 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentItemVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.segmentitem.Accent +import com.sdds.serv.styles.segmentitem.L +import com.sdds.serv.styles.segmentitem.M +import com.sdds.serv.styles.segmentitem.Pilled +import com.sdds.serv.styles.segmentitem.Primary +import com.sdds.serv.styles.segmentitem.S +import com.sdds.serv.styles.segmentitem.Secondary +import com.sdds.serv.styles.segmentitem.SegmentItem +import com.sdds.serv.styles.segmentitem.Xl +import com.sdds.serv.styles.segmentitem.Xs + +internal object SddsServSegmentItemVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { SegmentItem.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { SegmentItem.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { SegmentItem.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { SegmentItem.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { SegmentItem.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { SegmentItem.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { SegmentItem.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { SegmentItem.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { SegmentItem.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { SegmentItem.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { SegmentItem.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { SegmentItem.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { SegmentItem.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { SegmentItem.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { SegmentItem.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { SegmentItem.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { SegmentItem.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { SegmentItem.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { SegmentItem.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { SegmentItem.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { SegmentItem.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { SegmentItem.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { SegmentItem.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { SegmentItem.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { SegmentItem.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { SegmentItem.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentVariationsCompose.kt new file mode 100644 index 0000000000..2a3209cc66 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSegmentVariationsCompose.kt @@ -0,0 +1,59 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SegmentStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.segment.Accent +import com.sdds.serv.styles.segment.L +import com.sdds.serv.styles.segment.M +import com.sdds.serv.styles.segment.Pilled +import com.sdds.serv.styles.segment.Primary +import com.sdds.serv.styles.segment.S +import com.sdds.serv.styles.segment.Secondary +import com.sdds.serv.styles.segment.Segment +import com.sdds.serv.styles.segment.Xl +import com.sdds.serv.styles.segment.Xs + +internal object SddsServSegmentVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl.Primary" to ComposeStyleReference { Segment.Xl.Primary.style() }, + "Xl.Secondary" to ComposeStyleReference { Segment.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Segment.Xl.Accent.style() }, + "Xl.Pilled.Primary" to ComposeStyleReference { Segment.Xl.Pilled.Primary.style() }, + "Xl.Pilled.Secondary" to ComposeStyleReference { Segment.Xl.Pilled.Secondary.style() }, + "Xl.Pilled.Accent" to ComposeStyleReference { Segment.Xl.Pilled.Accent.style() }, + "L.Primary" to ComposeStyleReference { Segment.L.Primary.style() }, + "L.Secondary" to ComposeStyleReference { Segment.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Segment.L.Accent.style() }, + "L.Pilled.Primary" to ComposeStyleReference { Segment.L.Pilled.Primary.style() }, + "L.Pilled.Secondary" to ComposeStyleReference { Segment.L.Pilled.Secondary.style() }, + "L.Pilled.Accent" to ComposeStyleReference { Segment.L.Pilled.Accent.style() }, + "M.Primary" to ComposeStyleReference { Segment.M.Primary.style() }, + "M.Secondary" to ComposeStyleReference { Segment.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Segment.M.Accent.style() }, + "M.Pilled.Primary" to ComposeStyleReference { Segment.M.Pilled.Primary.style() }, + "M.Pilled.Secondary" to ComposeStyleReference { Segment.M.Pilled.Secondary.style() }, + "M.Pilled.Accent" to ComposeStyleReference { Segment.M.Pilled.Accent.style() }, + "S.Primary" to ComposeStyleReference { Segment.S.Primary.style() }, + "S.Secondary" to ComposeStyleReference { Segment.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Segment.S.Accent.style() }, + "S.Pilled.Primary" to ComposeStyleReference { Segment.S.Pilled.Primary.style() }, + "S.Pilled.Secondary" to ComposeStyleReference { Segment.S.Pilled.Secondary.style() }, + "S.Pilled.Accent" to ComposeStyleReference { Segment.S.Pilled.Accent.style() }, + "Xs.Primary" to ComposeStyleReference { Segment.Xs.Primary.style() }, + "Xs.Secondary" to ComposeStyleReference { Segment.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Segment.Xs.Accent.style() }, + "Xs.Pilled.Primary" to ComposeStyleReference { Segment.Xs.Pilled.Primary.style() }, + "Xs.Pilled.Secondary" to ComposeStyleReference { Segment.Xs.Pilled.Secondary.style() }, + "Xs.Pilled.Accent" to ComposeStyleReference { Segment.Xs.Pilled.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleNormalVariationsCompose.kt new file mode 100644 index 0000000000..5f96b5677e --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.selectitem.L +import com.sdds.serv.styles.selectitem.M +import com.sdds.serv.styles.selectitem.S +import com.sdds.serv.styles.selectitem.SelectItemMultipleNormal +import com.sdds.serv.styles.selectitem.Xl +import com.sdds.serv.styles.selectitem.Xs + +internal object SddsServSelectItemMultipleNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectItemMultipleNormal.Xl.style() }, + "L" to ComposeStyleReference { SelectItemMultipleNormal.L.style() }, + "M" to ComposeStyleReference { SelectItemMultipleNormal.M.style() }, + "S" to ComposeStyleReference { SelectItemMultipleNormal.S.style() }, + "Xs" to ComposeStyleReference { SelectItemMultipleNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleTightVariationsCompose.kt new file mode 100644 index 0000000000..8a626c056f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemMultipleTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.selectitem.L +import com.sdds.serv.styles.selectitem.M +import com.sdds.serv.styles.selectitem.S +import com.sdds.serv.styles.selectitem.SelectItemMultipleTight +import com.sdds.serv.styles.selectitem.Xl +import com.sdds.serv.styles.selectitem.Xs + +internal object SddsServSelectItemMultipleTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectItemMultipleTight.Xl.style() }, + "L" to ComposeStyleReference { SelectItemMultipleTight.L.style() }, + "M" to ComposeStyleReference { SelectItemMultipleTight.M.style() }, + "S" to ComposeStyleReference { SelectItemMultipleTight.S.style() }, + "Xs" to ComposeStyleReference { SelectItemMultipleTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleNormalVariationsCompose.kt new file mode 100644 index 0000000000..0397ea033c --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.selectitem.L +import com.sdds.serv.styles.selectitem.M +import com.sdds.serv.styles.selectitem.S +import com.sdds.serv.styles.selectitem.SelectItemSingleNormal +import com.sdds.serv.styles.selectitem.Xl +import com.sdds.serv.styles.selectitem.Xs + +internal object SddsServSelectItemSingleNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectItemSingleNormal.Xl.style() }, + "L" to ComposeStyleReference { SelectItemSingleNormal.L.style() }, + "M" to ComposeStyleReference { SelectItemSingleNormal.M.style() }, + "S" to ComposeStyleReference { SelectItemSingleNormal.S.style() }, + "Xs" to ComposeStyleReference { SelectItemSingleNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleTightVariationsCompose.kt new file mode 100644 index 0000000000..27483ff2ac --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectItemSingleTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.selectitem.L +import com.sdds.serv.styles.selectitem.M +import com.sdds.serv.styles.selectitem.S +import com.sdds.serv.styles.selectitem.SelectItemSingleTight +import com.sdds.serv.styles.selectitem.Xl +import com.sdds.serv.styles.selectitem.Xs + +internal object SddsServSelectItemSingleTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectItemSingleTight.Xl.style() }, + "L" to ComposeStyleReference { SelectItemSingleTight.L.style() }, + "M" to ComposeStyleReference { SelectItemSingleTight.M.style() }, + "S" to ComposeStyleReference { SelectItemSingleTight.S.style() }, + "Xs" to ComposeStyleReference { SelectItemSingleTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleNormalVariationsCompose.kt new file mode 100644 index 0000000000..93de6b6579 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.select.L +import com.sdds.serv.styles.select.M +import com.sdds.serv.styles.select.S +import com.sdds.serv.styles.select.SelectMultipleNormal +import com.sdds.serv.styles.select.Xl +import com.sdds.serv.styles.select.Xs + +internal object SddsServSelectMultipleNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectMultipleNormal.Xl.style() }, + "L" to ComposeStyleReference { SelectMultipleNormal.L.style() }, + "M" to ComposeStyleReference { SelectMultipleNormal.M.style() }, + "S" to ComposeStyleReference { SelectMultipleNormal.S.style() }, + "Xs" to ComposeStyleReference { SelectMultipleNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleTightVariationsCompose.kt new file mode 100644 index 0000000000..22ee2cfa2e --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectMultipleTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.select.L +import com.sdds.serv.styles.select.M +import com.sdds.serv.styles.select.S +import com.sdds.serv.styles.select.SelectMultipleTight +import com.sdds.serv.styles.select.Xl +import com.sdds.serv.styles.select.Xs + +internal object SddsServSelectMultipleTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectMultipleTight.Xl.style() }, + "L" to ComposeStyleReference { SelectMultipleTight.L.style() }, + "M" to ComposeStyleReference { SelectMultipleTight.M.style() }, + "S" to ComposeStyleReference { SelectMultipleTight.S.style() }, + "Xs" to ComposeStyleReference { SelectMultipleTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleNormalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleNormalVariationsCompose.kt new file mode 100644 index 0000000000..613a892aeb --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleNormalVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.select.L +import com.sdds.serv.styles.select.M +import com.sdds.serv.styles.select.S +import com.sdds.serv.styles.select.SelectSingleNormal +import com.sdds.serv.styles.select.Xl +import com.sdds.serv.styles.select.Xs + +internal object SddsServSelectSingleNormalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectSingleNormal.Xl.style() }, + "L" to ComposeStyleReference { SelectSingleNormal.L.style() }, + "M" to ComposeStyleReference { SelectSingleNormal.M.style() }, + "S" to ComposeStyleReference { SelectSingleNormal.S.style() }, + "Xs" to ComposeStyleReference { SelectSingleNormal.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleTightVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleTightVariationsCompose.kt new file mode 100644 index 0000000000..230f98267e --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSelectSingleTightVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SelectStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.select.L +import com.sdds.serv.styles.select.M +import com.sdds.serv.styles.select.S +import com.sdds.serv.styles.select.SelectSingleTight +import com.sdds.serv.styles.select.Xl +import com.sdds.serv.styles.select.Xs + +internal object SddsServSelectSingleTightVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xl" to ComposeStyleReference { SelectSingleTight.Xl.style() }, + "L" to ComposeStyleReference { SelectSingleTight.L.style() }, + "M" to ComposeStyleReference { SelectSingleTight.M.style() }, + "S" to ComposeStyleReference { SelectSingleTight.S.style() }, + "Xs" to ComposeStyleReference { SelectSingleTight.Xs.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelInnerVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelInnerVariationsCompose.kt new file mode 100644 index 0000000000..62f520a4fa --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelInnerVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SliderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.slider.Accent +import com.sdds.serv.styles.slider.Default +import com.sdds.serv.styles.slider.Gradient +import com.sdds.serv.styles.slider.L +import com.sdds.serv.styles.slider.LimitLabelCenter +import com.sdds.serv.styles.slider.M +import com.sdds.serv.styles.slider.S +import com.sdds.serv.styles.slider.SliderHorizontalLabelInner +import com.sdds.serv.styles.slider.ThumbS + +internal object SddsServSliderHorizontalLabelInnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { SliderHorizontalLabelInner.L.Default.style() }, + "L.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.L.Gradient.style() }, + "L.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelInner.L.LimitLabelCenter.Default.style() }, + "L.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.L.LimitLabelCenter.Accent.style() }, + "L.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.L.LimitLabelCenter.Gradient.style() + }, + "L.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Default.style() + }, + "L.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Accent.style() + }, + "L.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.L.LimitLabelCenter.ThumbS.Gradient.style() + }, + "L.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelInner.L.ThumbS.Default.style() }, + "L.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.L.ThumbS.Accent.style() }, + "L.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.L.ThumbS.Gradient.style() }, + "M.Default" to ComposeStyleReference { SliderHorizontalLabelInner.M.Default.style() }, + "M.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.M.Gradient.style() }, + "M.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelInner.M.LimitLabelCenter.Default.style() }, + "M.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.M.LimitLabelCenter.Accent.style() }, + "M.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.M.LimitLabelCenter.Gradient.style() + }, + "M.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Default.style() + }, + "M.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Accent.style() + }, + "M.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.M.LimitLabelCenter.ThumbS.Gradient.style() + }, + "M.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelInner.M.ThumbS.Default.style() }, + "M.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.M.ThumbS.Accent.style() }, + "M.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.M.ThumbS.Gradient.style() }, + "S.Default" to ComposeStyleReference { SliderHorizontalLabelInner.S.Default.style() }, + "S.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.S.Gradient.style() }, + "S.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelInner.S.LimitLabelCenter.Default.style() }, + "S.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.S.LimitLabelCenter.Accent.style() }, + "S.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.S.LimitLabelCenter.Gradient.style() + }, + "S.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Default.style() + }, + "S.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Accent.style() + }, + "S.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelInner.S.LimitLabelCenter.ThumbS.Gradient.style() + }, + "S.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelInner.S.ThumbS.Default.style() }, + "S.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelInner.S.ThumbS.Accent.style() }, + "S.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelInner.S.ThumbS.Gradient.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelOuterVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelOuterVariationsCompose.kt new file mode 100644 index 0000000000..5269ed65d6 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderHorizontalLabelOuterVariationsCompose.kt @@ -0,0 +1,88 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SliderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.slider.Accent +import com.sdds.serv.styles.slider.Default +import com.sdds.serv.styles.slider.Gradient +import com.sdds.serv.styles.slider.L +import com.sdds.serv.styles.slider.LimitLabelCenter +import com.sdds.serv.styles.slider.M +import com.sdds.serv.styles.slider.S +import com.sdds.serv.styles.slider.SliderHorizontalLabelOuter +import com.sdds.serv.styles.slider.ThumbS + +internal object SddsServSliderHorizontalLabelOuterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.L.Gradient.style() }, + "L.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.L.LimitLabelCenter.Default.style() }, + "L.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.L.LimitLabelCenter.Accent.style() }, + "L.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.L.LimitLabelCenter.Gradient.style() + }, + "L.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Default.style() + }, + "L.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Accent.style() + }, + "L.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.L.LimitLabelCenter.ThumbS.Gradient.style() + }, + "L.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.L.ThumbS.Default.style() }, + "L.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.L.ThumbS.Accent.style() }, + "L.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.L.ThumbS.Gradient.style() }, + "M.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.M.Gradient.style() }, + "M.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.M.LimitLabelCenter.Default.style() }, + "M.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.M.LimitLabelCenter.Accent.style() }, + "M.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.M.LimitLabelCenter.Gradient.style() + }, + "M.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Default.style() + }, + "M.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Accent.style() + }, + "M.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.M.LimitLabelCenter.ThumbS.Gradient.style() + }, + "M.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.M.ThumbS.Default.style() }, + "M.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.M.ThumbS.Accent.style() }, + "M.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.M.ThumbS.Gradient.style() }, + "S.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.S.Gradient.style() }, + "S.LimitLabelCenter.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.S.LimitLabelCenter.Default.style() }, + "S.LimitLabelCenter.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.S.LimitLabelCenter.Accent.style() }, + "S.LimitLabelCenter.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.S.LimitLabelCenter.Gradient.style() + }, + "S.LimitLabelCenter.ThumbS.Default" to ComposeStyleReference { + SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Default.style() + }, + "S.LimitLabelCenter.ThumbS.Accent" to ComposeStyleReference { + SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Accent.style() + }, + "S.LimitLabelCenter.ThumbS.Gradient" to ComposeStyleReference { + SliderHorizontalLabelOuter.S.LimitLabelCenter.ThumbS.Gradient.style() + }, + "S.ThumbS.Default" to ComposeStyleReference { SliderHorizontalLabelOuter.S.ThumbS.Default.style() }, + "S.ThumbS.Accent" to ComposeStyleReference { SliderHorizontalLabelOuter.S.ThumbS.Accent.style() }, + "S.ThumbS.Gradient" to ComposeStyleReference { SliderHorizontalLabelOuter.S.ThumbS.Gradient.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelInnerVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelInnerVariationsCompose.kt new file mode 100644 index 0000000000..c96dee747f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelInnerVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SliderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.slider.Accent +import com.sdds.serv.styles.slider.Default +import com.sdds.serv.styles.slider.Gradient +import com.sdds.serv.styles.slider.L +import com.sdds.serv.styles.slider.LabelEnd +import com.sdds.serv.styles.slider.M +import com.sdds.serv.styles.slider.S +import com.sdds.serv.styles.slider.SliderVerticalLabelInner +import com.sdds.serv.styles.slider.ThumbS + +internal object SddsServSliderVerticalLabelInnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { SliderVerticalLabelInner.L.Default.style() }, + "L.Accent" to ComposeStyleReference { SliderVerticalLabelInner.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.L.Gradient.style() }, + "L.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.Default.style() }, + "L.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.Accent.style() }, + "L.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.Gradient.style() }, + "L.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Default.style() }, + "L.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Accent.style() }, + "L.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.L.LabelEnd.ThumbS.Gradient.style() }, + "L.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.L.ThumbS.Default.style() }, + "L.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.L.ThumbS.Accent.style() }, + "L.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.L.ThumbS.Gradient.style() }, + "M.Default" to ComposeStyleReference { SliderVerticalLabelInner.M.Default.style() }, + "M.Accent" to ComposeStyleReference { SliderVerticalLabelInner.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.M.Gradient.style() }, + "M.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.Default.style() }, + "M.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.Accent.style() }, + "M.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.Gradient.style() }, + "M.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Default.style() }, + "M.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Accent.style() }, + "M.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.M.LabelEnd.ThumbS.Gradient.style() }, + "M.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.M.ThumbS.Default.style() }, + "M.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.M.ThumbS.Accent.style() }, + "M.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.M.ThumbS.Gradient.style() }, + "S.Default" to ComposeStyleReference { SliderVerticalLabelInner.S.Default.style() }, + "S.Accent" to ComposeStyleReference { SliderVerticalLabelInner.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.S.Gradient.style() }, + "S.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.Default.style() }, + "S.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.Accent.style() }, + "S.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.Gradient.style() }, + "S.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Default.style() }, + "S.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Accent.style() }, + "S.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.S.LabelEnd.ThumbS.Gradient.style() }, + "S.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelInner.S.ThumbS.Default.style() }, + "S.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelInner.S.ThumbS.Accent.style() }, + "S.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelInner.S.ThumbS.Gradient.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelOuterVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelOuterVariationsCompose.kt new file mode 100644 index 0000000000..7ee8e3b8f1 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSliderVerticalLabelOuterVariationsCompose.kt @@ -0,0 +1,155 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SliderStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.slider.Accent +import com.sdds.serv.styles.slider.AlignmentEnd +import com.sdds.serv.styles.slider.Default +import com.sdds.serv.styles.slider.Gradient +import com.sdds.serv.styles.slider.L +import com.sdds.serv.styles.slider.LabelEnd +import com.sdds.serv.styles.slider.M +import com.sdds.serv.styles.slider.S +import com.sdds.serv.styles.slider.SliderVerticalLabelOuter +import com.sdds.serv.styles.slider.ThumbS + +internal object SddsServSliderVerticalLabelOuterVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L.Default" to ComposeStyleReference { SliderVerticalLabelOuter.L.Default.style() }, + "L.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.L.Accent.style() }, + "L.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.L.Gradient.style() }, + "L.AlignmentEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.L.AlignmentEnd.Default.style() }, + "L.AlignmentEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.L.AlignmentEnd.Accent.style() }, + "L.AlignmentEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.L.AlignmentEnd.Gradient.style() }, + "L.AlignmentEnd.LabelEnd.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Default.style() + }, + "L.AlignmentEnd.LabelEnd.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Accent.style() + }, + "L.AlignmentEnd.LabelEnd.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.Gradient.style() + }, + "L.AlignmentEnd.LabelEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Default.style() + }, + "L.AlignmentEnd.LabelEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Accent.style() + }, + "L.AlignmentEnd.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() + }, + "L.AlignmentEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Default.style() + }, + "L.AlignmentEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Accent.style() + }, + "L.AlignmentEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.L.AlignmentEnd.ThumbS.Gradient.style() + }, + "L.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.Default.style() }, + "L.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.Accent.style() }, + "L.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.Gradient.style() }, + "L.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Default.style() }, + "L.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Accent.style() }, + "L.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.L.LabelEnd.ThumbS.Gradient.style() }, + "L.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.L.ThumbS.Default.style() }, + "L.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.L.ThumbS.Accent.style() }, + "L.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.L.ThumbS.Gradient.style() }, + "M.Default" to ComposeStyleReference { SliderVerticalLabelOuter.M.Default.style() }, + "M.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.M.Accent.style() }, + "M.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.M.Gradient.style() }, + "M.AlignmentEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.M.AlignmentEnd.Default.style() }, + "M.AlignmentEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.M.AlignmentEnd.Accent.style() }, + "M.AlignmentEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.M.AlignmentEnd.Gradient.style() }, + "M.AlignmentEnd.LabelEnd.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Default.style() + }, + "M.AlignmentEnd.LabelEnd.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Accent.style() + }, + "M.AlignmentEnd.LabelEnd.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.Gradient.style() + }, + "M.AlignmentEnd.LabelEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Default.style() + }, + "M.AlignmentEnd.LabelEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Accent.style() + }, + "M.AlignmentEnd.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() + }, + "M.AlignmentEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Default.style() + }, + "M.AlignmentEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Accent.style() + }, + "M.AlignmentEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.M.AlignmentEnd.ThumbS.Gradient.style() + }, + "M.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.Default.style() }, + "M.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.Accent.style() }, + "M.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.Gradient.style() }, + "M.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Default.style() }, + "M.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Accent.style() }, + "M.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.M.LabelEnd.ThumbS.Gradient.style() }, + "M.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.M.ThumbS.Default.style() }, + "M.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.M.ThumbS.Accent.style() }, + "M.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.M.ThumbS.Gradient.style() }, + "S.Default" to ComposeStyleReference { SliderVerticalLabelOuter.S.Default.style() }, + "S.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.S.Accent.style() }, + "S.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.S.Gradient.style() }, + "S.AlignmentEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.S.AlignmentEnd.Default.style() }, + "S.AlignmentEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.S.AlignmentEnd.Accent.style() }, + "S.AlignmentEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.S.AlignmentEnd.Gradient.style() }, + "S.AlignmentEnd.LabelEnd.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Default.style() + }, + "S.AlignmentEnd.LabelEnd.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Accent.style() + }, + "S.AlignmentEnd.LabelEnd.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.Gradient.style() + }, + "S.AlignmentEnd.LabelEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Default.style() + }, + "S.AlignmentEnd.LabelEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Accent.style() + }, + "S.AlignmentEnd.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.LabelEnd.ThumbS.Gradient.style() + }, + "S.AlignmentEnd.ThumbS.Default" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Default.style() + }, + "S.AlignmentEnd.ThumbS.Accent" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Accent.style() + }, + "S.AlignmentEnd.ThumbS.Gradient" to ComposeStyleReference { + SliderVerticalLabelOuter.S.AlignmentEnd.ThumbS.Gradient.style() + }, + "S.LabelEnd.Default" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.Default.style() }, + "S.LabelEnd.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.Accent.style() }, + "S.LabelEnd.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.Gradient.style() }, + "S.LabelEnd.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Default.style() }, + "S.LabelEnd.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Accent.style() }, + "S.LabelEnd.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.S.LabelEnd.ThumbS.Gradient.style() }, + "S.ThumbS.Default" to ComposeStyleReference { SliderVerticalLabelOuter.S.ThumbS.Default.style() }, + "S.ThumbS.Accent" to ComposeStyleReference { SliderVerticalLabelOuter.S.ThumbS.Accent.style() }, + "S.ThumbS.Gradient" to ComposeStyleReference { SliderVerticalLabelOuter.S.ThumbS.Gradient.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSpinnerVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSpinnerVariationsCompose.kt new file mode 100644 index 0000000000..32fed541ce --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSpinnerVariationsCompose.kt @@ -0,0 +1,91 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SpinnerStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.spinner.Accent +import com.sdds.serv.styles.spinner.Default +import com.sdds.serv.styles.spinner.Info +import com.sdds.serv.styles.spinner.L +import com.sdds.serv.styles.spinner.M +import com.sdds.serv.styles.spinner.Negative +import com.sdds.serv.styles.spinner.Positive +import com.sdds.serv.styles.spinner.S +import com.sdds.serv.styles.spinner.Scalable +import com.sdds.serv.styles.spinner.Secondary +import com.sdds.serv.styles.spinner.Spinner +import com.sdds.serv.styles.spinner.Warning +import com.sdds.serv.styles.spinner.Xl +import com.sdds.serv.styles.spinner.Xs +import com.sdds.serv.styles.spinner.Xxl +import com.sdds.serv.styles.spinner.Xxs + +internal object SddsServSpinnerVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xxl.Default" to ComposeStyleReference { Spinner.Xxl.Default.style() }, + "Xxl.Secondary" to ComposeStyleReference { Spinner.Xxl.Secondary.style() }, + "Xxl.Accent" to ComposeStyleReference { Spinner.Xxl.Accent.style() }, + "Xxl.Positive" to ComposeStyleReference { Spinner.Xxl.Positive.style() }, + "Xxl.Negative" to ComposeStyleReference { Spinner.Xxl.Negative.style() }, + "Xxl.Warning" to ComposeStyleReference { Spinner.Xxl.Warning.style() }, + "Xxl.Info" to ComposeStyleReference { Spinner.Xxl.Info.style() }, + "Xl.Default" to ComposeStyleReference { Spinner.Xl.Default.style() }, + "Xl.Secondary" to ComposeStyleReference { Spinner.Xl.Secondary.style() }, + "Xl.Accent" to ComposeStyleReference { Spinner.Xl.Accent.style() }, + "Xl.Positive" to ComposeStyleReference { Spinner.Xl.Positive.style() }, + "Xl.Negative" to ComposeStyleReference { Spinner.Xl.Negative.style() }, + "Xl.Warning" to ComposeStyleReference { Spinner.Xl.Warning.style() }, + "Xl.Info" to ComposeStyleReference { Spinner.Xl.Info.style() }, + "L.Default" to ComposeStyleReference { Spinner.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { Spinner.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { Spinner.L.Accent.style() }, + "L.Positive" to ComposeStyleReference { Spinner.L.Positive.style() }, + "L.Negative" to ComposeStyleReference { Spinner.L.Negative.style() }, + "L.Warning" to ComposeStyleReference { Spinner.L.Warning.style() }, + "L.Info" to ComposeStyleReference { Spinner.L.Info.style() }, + "M.Default" to ComposeStyleReference { Spinner.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { Spinner.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { Spinner.M.Accent.style() }, + "M.Positive" to ComposeStyleReference { Spinner.M.Positive.style() }, + "M.Negative" to ComposeStyleReference { Spinner.M.Negative.style() }, + "M.Warning" to ComposeStyleReference { Spinner.M.Warning.style() }, + "M.Info" to ComposeStyleReference { Spinner.M.Info.style() }, + "S.Default" to ComposeStyleReference { Spinner.S.Default.style() }, + "S.Secondary" to ComposeStyleReference { Spinner.S.Secondary.style() }, + "S.Accent" to ComposeStyleReference { Spinner.S.Accent.style() }, + "S.Positive" to ComposeStyleReference { Spinner.S.Positive.style() }, + "S.Negative" to ComposeStyleReference { Spinner.S.Negative.style() }, + "S.Warning" to ComposeStyleReference { Spinner.S.Warning.style() }, + "S.Info" to ComposeStyleReference { Spinner.S.Info.style() }, + "Xs.Default" to ComposeStyleReference { Spinner.Xs.Default.style() }, + "Xs.Secondary" to ComposeStyleReference { Spinner.Xs.Secondary.style() }, + "Xs.Accent" to ComposeStyleReference { Spinner.Xs.Accent.style() }, + "Xs.Positive" to ComposeStyleReference { Spinner.Xs.Positive.style() }, + "Xs.Negative" to ComposeStyleReference { Spinner.Xs.Negative.style() }, + "Xs.Warning" to ComposeStyleReference { Spinner.Xs.Warning.style() }, + "Xs.Info" to ComposeStyleReference { Spinner.Xs.Info.style() }, + "Xxs.Default" to ComposeStyleReference { Spinner.Xxs.Default.style() }, + "Xxs.Secondary" to ComposeStyleReference { Spinner.Xxs.Secondary.style() }, + "Xxs.Accent" to ComposeStyleReference { Spinner.Xxs.Accent.style() }, + "Xxs.Positive" to ComposeStyleReference { Spinner.Xxs.Positive.style() }, + "Xxs.Negative" to ComposeStyleReference { Spinner.Xxs.Negative.style() }, + "Xxs.Warning" to ComposeStyleReference { Spinner.Xxs.Warning.style() }, + "Xxs.Info" to ComposeStyleReference { Spinner.Xxs.Info.style() }, + "Scalable.Default" to ComposeStyleReference { Spinner.Scalable.Default.style() }, + "Scalable.Secondary" to ComposeStyleReference { Spinner.Scalable.Secondary.style() }, + "Scalable.Accent" to ComposeStyleReference { Spinner.Scalable.Accent.style() }, + "Scalable.Positive" to ComposeStyleReference { Spinner.Scalable.Positive.style() }, + "Scalable.Negative" to ComposeStyleReference { Spinner.Scalable.Negative.style() }, + "Scalable.Warning" to ComposeStyleReference { Spinner.Scalable.Warning.style() }, + "Scalable.Info" to ComposeStyleReference { Spinner.Scalable.Info.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSwitchVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSwitchVariationsCompose.kt new file mode 100644 index 0000000000..412ff115d2 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServSwitchVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.SwitchStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.switcher.L +import com.sdds.serv.styles.switcher.M +import com.sdds.serv.styles.switcher.S +import com.sdds.serv.styles.switcher.Switch +import com.sdds.serv.styles.switcher.ToggleS + +internal object SddsServSwitchVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { Switch.L.style() }, + "L.ToggleS" to ComposeStyleReference { Switch.L.ToggleS.style() }, + "M" to ComposeStyleReference { Switch.M.style() }, + "M.ToggleS" to ComposeStyleReference { Switch.M.ToggleS.style() }, + "S" to ComposeStyleReference { Switch.S.style() }, + "S.ToggleS" to ComposeStyleReference { Switch.S.ToggleS.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarClearVariationsCompose.kt new file mode 100644 index 0000000000..8325a709be --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.Divider +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Rounded +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarClear + +internal object SddsServTabBarClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..d93d79c5a8 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelClearVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.Divider +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Rounded +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarHasLabelClear + +internal object SddsServTabBarHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelClear.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..3cfd92554f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarHasLabelSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.Divider +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Rounded +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarHasLabelSolid + +internal object SddsServTabBarHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarHasLabelSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandClearVariationsCompose.kt new file mode 100644 index 0000000000..3218a69386 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarIslandClear + +internal object SddsServTabBarIslandClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelClearVariationsCompose.kt new file mode 100644 index 0000000000..d81a460ced --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarIslandHasLabelClear + +internal object SddsServTabBarIslandHasLabelClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelClear.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt new file mode 100644 index 0000000000..8930993ac5 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandHasLabelSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarIslandHasLabelSolid + +internal object SddsServTabBarIslandHasLabelSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandHasLabelSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandSolidVariationsCompose.kt new file mode 100644 index 0000000000..9b7b374cc7 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarIslandSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarIslandSolid + +internal object SddsServTabBarIslandSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarIslandSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.M.Shadow.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarIslandSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarIslandSolid.L.Shadow.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemClearVariationsCompose.kt new file mode 100644 index 0000000000..83d2d66acc --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemClearVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbaritem.Accent +import com.sdds.serv.styles.tabbaritem.Default +import com.sdds.serv.styles.tabbaritem.L +import com.sdds.serv.styles.tabbaritem.Label +import com.sdds.serv.styles.tabbaritem.M +import com.sdds.serv.styles.tabbaritem.Secondary +import com.sdds.serv.styles.tabbaritem.TabBarItemClear + +internal object SddsServTabBarItemClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemClear.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemClear.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemClear.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemClear.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemClear.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemClear.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemClear.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemClear.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemClear.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemClear.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemClear.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemClear.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemSolidVariationsCompose.kt new file mode 100644 index 0000000000..6953021052 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarItemSolidVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbaritem.Accent +import com.sdds.serv.styles.tabbaritem.Default +import com.sdds.serv.styles.tabbaritem.L +import com.sdds.serv.styles.tabbaritem.Label +import com.sdds.serv.styles.tabbaritem.M +import com.sdds.serv.styles.tabbaritem.Secondary +import com.sdds.serv.styles.tabbaritem.TabBarItemSolid + +internal object SddsServTabBarItemSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarItemSolid.M.Default.style() }, + "M.Accent" to ComposeStyleReference { TabBarItemSolid.M.Accent.style() }, + "M.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Secondary.style() }, + "M.Label.Default" to ComposeStyleReference { TabBarItemSolid.M.Label.Default.style() }, + "M.Label.Accent" to ComposeStyleReference { TabBarItemSolid.M.Label.Accent.style() }, + "M.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.M.Label.Secondary.style() }, + "L.Default" to ComposeStyleReference { TabBarItemSolid.L.Default.style() }, + "L.Accent" to ComposeStyleReference { TabBarItemSolid.L.Accent.style() }, + "L.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Secondary.style() }, + "L.Label.Default" to ComposeStyleReference { TabBarItemSolid.L.Label.Default.style() }, + "L.Label.Accent" to ComposeStyleReference { TabBarItemSolid.L.Label.Accent.style() }, + "L.Label.Secondary" to ComposeStyleReference { TabBarItemSolid.L.Label.Secondary.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarSolidVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarSolidVariationsCompose.kt new file mode 100644 index 0000000000..f2b4c7de4f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabBarSolidVariationsCompose.kt @@ -0,0 +1,64 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabbar.Accent +import com.sdds.serv.styles.tabbar.Default +import com.sdds.serv.styles.tabbar.Divider +import com.sdds.serv.styles.tabbar.L +import com.sdds.serv.styles.tabbar.M +import com.sdds.serv.styles.tabbar.Rounded +import com.sdds.serv.styles.tabbar.Secondary +import com.sdds.serv.styles.tabbar.Shadow +import com.sdds.serv.styles.tabbar.TabBarSolid + +internal object SddsServTabBarSolidVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M.Default" to ComposeStyleReference { TabBarSolid.M.Default.style() }, + "M.Secondary" to ComposeStyleReference { TabBarSolid.M.Secondary.style() }, + "M.Accent" to ComposeStyleReference { TabBarSolid.M.Accent.style() }, + "M.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Rounded.Default.style() }, + "M.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Rounded.Secondary.style() }, + "M.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Rounded.Accent.style() }, + "M.Shadow.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Default.style() }, + "M.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Secondary.style() }, + "M.Shadow.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Accent.style() }, + "M.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Default.style() }, + "M.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Secondary.style() }, + "M.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Shadow.Rounded.Accent.style() }, + "M.Divider.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Default.style() }, + "M.Divider.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Secondary.style() }, + "M.Divider.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Accent.style() }, + "M.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Default.style() }, + "M.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Secondary.style() }, + "M.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.M.Divider.Rounded.Accent.style() }, + "L.Default" to ComposeStyleReference { TabBarSolid.L.Default.style() }, + "L.Secondary" to ComposeStyleReference { TabBarSolid.L.Secondary.style() }, + "L.Accent" to ComposeStyleReference { TabBarSolid.L.Accent.style() }, + "L.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Rounded.Default.style() }, + "L.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Rounded.Secondary.style() }, + "L.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Rounded.Accent.style() }, + "L.Shadow.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Default.style() }, + "L.Shadow.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Secondary.style() }, + "L.Shadow.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Accent.style() }, + "L.Shadow.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Default.style() }, + "L.Shadow.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Secondary.style() }, + "L.Shadow.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Shadow.Rounded.Accent.style() }, + "L.Divider.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Default.style() }, + "L.Divider.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Secondary.style() }, + "L.Divider.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Accent.style() }, + "L.Divider.Rounded.Default" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Default.style() }, + "L.Divider.Rounded.Secondary" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Secondary.style() }, + "L.Divider.Rounded.Accent" to ComposeStyleReference { TabBarSolid.L.Divider.Rounded.Accent.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemDefaultVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemDefaultVariationsCompose.kt new file mode 100644 index 0000000000..2e696ca054 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemDefaultVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabitem.Horizontal +import com.sdds.serv.styles.tabitem.L +import com.sdds.serv.styles.tabitem.M +import com.sdds.serv.styles.tabitem.S +import com.sdds.serv.styles.tabitem.TabItemDefault +import com.sdds.serv.styles.tabitem.Vertical +import com.sdds.serv.styles.tabitem.Xs + +internal object SddsServTabItemDefaultVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { TabItemDefault.L.style() }, + "L.Horizontal" to ComposeStyleReference { TabItemDefault.L.Horizontal.style() }, + "L.Vertical" to ComposeStyleReference { TabItemDefault.L.Vertical.style() }, + "M" to ComposeStyleReference { TabItemDefault.M.style() }, + "M.Horizontal" to ComposeStyleReference { TabItemDefault.M.Horizontal.style() }, + "M.Vertical" to ComposeStyleReference { TabItemDefault.M.Vertical.style() }, + "S" to ComposeStyleReference { TabItemDefault.S.style() }, + "S.Horizontal" to ComposeStyleReference { TabItemDefault.S.Horizontal.style() }, + "S.Vertical" to ComposeStyleReference { TabItemDefault.S.Vertical.style() }, + "Xs" to ComposeStyleReference { TabItemDefault.Xs.style() }, + "Xs.Horizontal" to ComposeStyleReference { TabItemDefault.Xs.Horizontal.style() }, + "Xs.Vertical" to ComposeStyleReference { TabItemDefault.Xs.Vertical.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemHeaderVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemHeaderVariationsCompose.kt new file mode 100644 index 0000000000..b6a8841a18 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabItemHeaderVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabItemStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabitem.H1 +import com.sdds.serv.styles.tabitem.H2 +import com.sdds.serv.styles.tabitem.H3 +import com.sdds.serv.styles.tabitem.H4 +import com.sdds.serv.styles.tabitem.H5 +import com.sdds.serv.styles.tabitem.TabItemHeader + +internal object SddsServTabItemHeaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "H1" to ComposeStyleReference { TabItemHeader.H1.style() }, + "H2" to ComposeStyleReference { TabItemHeader.H2.style() }, + "H3" to ComposeStyleReference { TabItemHeader.H3.style() }, + "H4" to ComposeStyleReference { TabItemHeader.H4.style() }, + "H5" to ComposeStyleReference { TabItemHeader.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsDefaultVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsDefaultVariationsCompose.kt new file mode 100644 index 0000000000..f892b4937c --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsDefaultVariationsCompose.kt @@ -0,0 +1,38 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabs.Horizontal +import com.sdds.serv.styles.tabs.L +import com.sdds.serv.styles.tabs.M +import com.sdds.serv.styles.tabs.S +import com.sdds.serv.styles.tabs.TabsDefault +import com.sdds.serv.styles.tabs.Vertical +import com.sdds.serv.styles.tabs.Xs + +internal object SddsServTabsDefaultVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { TabsDefault.L.style() }, + "L.Vertical" to ComposeStyleReference { TabsDefault.L.Vertical.style() }, + "L.Horizontal" to ComposeStyleReference { TabsDefault.L.Horizontal.style() }, + "M" to ComposeStyleReference { TabsDefault.M.style() }, + "M.Vertical" to ComposeStyleReference { TabsDefault.M.Vertical.style() }, + "M.Horizontal" to ComposeStyleReference { TabsDefault.M.Horizontal.style() }, + "S" to ComposeStyleReference { TabsDefault.S.style() }, + "S.Vertical" to ComposeStyleReference { TabsDefault.S.Vertical.style() }, + "S.Horizontal" to ComposeStyleReference { TabsDefault.S.Horizontal.style() }, + "Xs" to ComposeStyleReference { TabsDefault.Xs.style() }, + "Xs.Vertical" to ComposeStyleReference { TabsDefault.Xs.Vertical.style() }, + "Xs.Horizontal" to ComposeStyleReference { TabsDefault.Xs.Horizontal.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsHeaderVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsHeaderVariationsCompose.kt new file mode 100644 index 0000000000..2ef2d895db --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTabsHeaderVariationsCompose.kt @@ -0,0 +1,30 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TabsStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tabs.H1 +import com.sdds.serv.styles.tabs.H2 +import com.sdds.serv.styles.tabs.H3 +import com.sdds.serv.styles.tabs.H4 +import com.sdds.serv.styles.tabs.H5 +import com.sdds.serv.styles.tabs.TabsHeader + +internal object SddsServTabsHeaderVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "H1" to ComposeStyleReference { TabsHeader.H1.style() }, + "H2" to ComposeStyleReference { TabsHeader.H2.style() }, + "H3" to ComposeStyleReference { TabsHeader.H3.style() }, + "H4" to ComposeStyleReference { TabsHeader.H4.style() }, + "H5" to ComposeStyleReference { TabsHeader.H5.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaClearVariationsCompose.kt new file mode 100644 index 0000000000..cd7c4a130f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaClearVariationsCompose.kt @@ -0,0 +1,212 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.textarea.Default +import com.sdds.serv.styles.textarea.Error +import com.sdds.serv.styles.textarea.InnerLabel +import com.sdds.serv.styles.textarea.L +import com.sdds.serv.styles.textarea.M +import com.sdds.serv.styles.textarea.OuterLabel +import com.sdds.serv.styles.textarea.RequiredEnd +import com.sdds.serv.styles.textarea.RequiredStart +import com.sdds.serv.styles.textarea.S +import com.sdds.serv.styles.textarea.TextAreaClear +import com.sdds.serv.styles.textarea.Warning +import com.sdds.serv.styles.textarea.Xl +import com.sdds.serv.styles.textarea.Xs + +internal object SddsServTextAreaClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextAreaClear.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextAreaClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextAreaClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextAreaClear.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextAreaClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextAreaClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextAreaClear.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextAreaClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextAreaClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextAreaClear.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextAreaClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextAreaClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextAreaClear.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextAreaClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextAreaClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextAreaClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextAreaClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaVariationsCompose.kt new file mode 100644 index 0000000000..2548737882 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextAreaVariationsCompose.kt @@ -0,0 +1,158 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.textarea.Default +import com.sdds.serv.styles.textarea.Error +import com.sdds.serv.styles.textarea.InnerLabel +import com.sdds.serv.styles.textarea.L +import com.sdds.serv.styles.textarea.M +import com.sdds.serv.styles.textarea.OuterLabel +import com.sdds.serv.styles.textarea.RequiredEnd +import com.sdds.serv.styles.textarea.RequiredStart +import com.sdds.serv.styles.textarea.S +import com.sdds.serv.styles.textarea.TextArea +import com.sdds.serv.styles.textarea.Warning +import com.sdds.serv.styles.textarea.Xl +import com.sdds.serv.styles.textarea.Xs + +internal object SddsServTextAreaVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextArea.Xs.Default.style() }, + "Xs.Warning" to ComposeStyleReference { TextArea.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextArea.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Default.style() }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Warning.style() }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextArea.S.Default.style() }, + "S.Warning" to ComposeStyleReference { TextArea.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextArea.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextArea.S.RequiredStart.Default.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextArea.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextArea.S.OuterLabel.Default.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextArea.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextArea.S.InnerLabel.Default.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextArea.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextArea.M.Default.style() }, + "M.Warning" to ComposeStyleReference { TextArea.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextArea.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextArea.M.RequiredStart.Default.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextArea.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextArea.M.OuterLabel.Default.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextArea.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextArea.M.InnerLabel.Default.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextArea.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextArea.L.Default.style() }, + "L.Warning" to ComposeStyleReference { TextArea.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextArea.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextArea.L.RequiredStart.Default.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextArea.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextArea.L.OuterLabel.Default.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextArea.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextArea.L.InnerLabel.Default.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextArea.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextArea.Xl.Default.style() }, + "Xl.Warning" to ComposeStyleReference { TextArea.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextArea.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Default.style() }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Warning.style() }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Default.style() }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Warning.style() }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextArea.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldClearVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldClearVariationsCompose.kt new file mode 100644 index 0000000000..342491ddf0 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldClearVariationsCompose.kt @@ -0,0 +1,279 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.textfield.Default +import com.sdds.serv.styles.textfield.Error +import com.sdds.serv.styles.textfield.InnerLabel +import com.sdds.serv.styles.textfield.L +import com.sdds.serv.styles.textfield.M +import com.sdds.serv.styles.textfield.OuterLabel +import com.sdds.serv.styles.textfield.RequiredEnd +import com.sdds.serv.styles.textfield.RequiredStart +import com.sdds.serv.styles.textfield.S +import com.sdds.serv.styles.textfield.Success +import com.sdds.serv.styles.textfield.TextFieldClear +import com.sdds.serv.styles.textfield.Warning +import com.sdds.serv.styles.textfield.Xl +import com.sdds.serv.styles.textfield.Xs + +internal object SddsServTextFieldClearVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextFieldClear.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextFieldClear.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextFieldClear.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextFieldClear.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredStart.Error.style() + }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Default.style() + }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style() + }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning.style() + }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextFieldClear.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextFieldClear.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextFieldClear.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextFieldClear.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Default.style() + }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Success.style() + }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.OuterLabel.RequiredStart.Warning.style() + }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Default.style() + }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Success.style() + }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.S.InnerLabel.RequiredStart.Warning.style() + }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextFieldClear.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextFieldClear.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextFieldClear.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextFieldClear.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Default.style() + }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Success.style() + }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.OuterLabel.RequiredStart.Warning.style() + }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Default.style() + }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Success.style() + }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.M.InnerLabel.RequiredStart.Warning.style() + }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextFieldClear.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextFieldClear.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextFieldClear.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextFieldClear.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Default.style() + }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Success.style() + }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.OuterLabel.RequiredStart.Warning.style() + }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Default.style() + }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Success.style() + }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.L.InnerLabel.RequiredStart.Warning.style() + }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextFieldClear.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextFieldClear.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextFieldClear.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextFieldClear.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredStart.Error.style() + }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Default.style() + }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Success.style() + }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.OuterLabel.RequiredEnd.Warning.style() + }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredStart.Error.style() + }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Default.style() + }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Success.style() + }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { + TextFieldClear.Xl.InnerLabel.RequiredEnd.Warning.style() + }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextFieldClear.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldVariationsCompose.kt new file mode 100644 index 0000000000..56574c318f --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextFieldVariationsCompose.kt @@ -0,0 +1,219 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextFieldStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.textfield.Default +import com.sdds.serv.styles.textfield.Error +import com.sdds.serv.styles.textfield.InnerLabel +import com.sdds.serv.styles.textfield.L +import com.sdds.serv.styles.textfield.M +import com.sdds.serv.styles.textfield.OuterLabel +import com.sdds.serv.styles.textfield.RequiredEnd +import com.sdds.serv.styles.textfield.RequiredStart +import com.sdds.serv.styles.textfield.S +import com.sdds.serv.styles.textfield.Success +import com.sdds.serv.styles.textfield.TextField +import com.sdds.serv.styles.textfield.Warning +import com.sdds.serv.styles.textfield.Xl +import com.sdds.serv.styles.textfield.Xs + +internal object SddsServTextFieldVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Xs.Default" to ComposeStyleReference { TextField.Xs.Default.style() }, + "Xs.Success" to ComposeStyleReference { TextField.Xs.Success.style() }, + "Xs.Warning" to ComposeStyleReference { TextField.Xs.Warning.style() }, + "Xs.Error" to ComposeStyleReference { TextField.Xs.Error.style() }, + "Xs.RequiredStart.Default" to ComposeStyleReference { TextField.Xs.RequiredStart.Default.style() }, + "Xs.RequiredStart.Success" to ComposeStyleReference { TextField.Xs.RequiredStart.Success.style() }, + "Xs.RequiredStart.Warning" to ComposeStyleReference { TextField.Xs.RequiredStart.Warning.style() }, + "Xs.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.RequiredStart.Error.style() }, + "Xs.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.RequiredEnd.Default.style() }, + "Xs.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.RequiredEnd.Success.style() }, + "Xs.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.RequiredEnd.Warning.style() }, + "Xs.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.RequiredEnd.Error.style() }, + "Xs.OuterLabel.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.Default.style() }, + "Xs.OuterLabel.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.Success.style() }, + "Xs.OuterLabel.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.Warning.style() }, + "Xs.OuterLabel.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.Error.style() }, + "Xs.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Default.style() + }, + "Xs.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Success.style() + }, + "Xs.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xs.OuterLabel.RequiredStart.Warning.style() + }, + "Xs.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredStart.Error.style() }, + "Xs.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Default.style() }, + "Xs.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Success.style() }, + "Xs.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Warning.style() }, + "Xs.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xs.OuterLabel.RequiredEnd.Error.style() }, + "S.Default" to ComposeStyleReference { TextField.S.Default.style() }, + "S.Success" to ComposeStyleReference { TextField.S.Success.style() }, + "S.Warning" to ComposeStyleReference { TextField.S.Warning.style() }, + "S.Error" to ComposeStyleReference { TextField.S.Error.style() }, + "S.RequiredStart.Default" to ComposeStyleReference { TextField.S.RequiredStart.Default.style() }, + "S.RequiredStart.Success" to ComposeStyleReference { TextField.S.RequiredStart.Success.style() }, + "S.RequiredStart.Warning" to ComposeStyleReference { TextField.S.RequiredStart.Warning.style() }, + "S.RequiredStart.Error" to ComposeStyleReference { TextField.S.RequiredStart.Error.style() }, + "S.RequiredEnd.Default" to ComposeStyleReference { TextField.S.RequiredEnd.Default.style() }, + "S.RequiredEnd.Success" to ComposeStyleReference { TextField.S.RequiredEnd.Success.style() }, + "S.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.RequiredEnd.Warning.style() }, + "S.RequiredEnd.Error" to ComposeStyleReference { TextField.S.RequiredEnd.Error.style() }, + "S.OuterLabel.Default" to ComposeStyleReference { TextField.S.OuterLabel.Default.style() }, + "S.OuterLabel.Success" to ComposeStyleReference { TextField.S.OuterLabel.Success.style() }, + "S.OuterLabel.Warning" to ComposeStyleReference { TextField.S.OuterLabel.Warning.style() }, + "S.OuterLabel.Error" to ComposeStyleReference { TextField.S.OuterLabel.Error.style() }, + "S.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Default.style() }, + "S.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Success.style() }, + "S.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Warning.style() }, + "S.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredStart.Error.style() }, + "S.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Default.style() }, + "S.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Success.style() }, + "S.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Warning.style() }, + "S.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.OuterLabel.RequiredEnd.Error.style() }, + "S.InnerLabel.Default" to ComposeStyleReference { TextField.S.InnerLabel.Default.style() }, + "S.InnerLabel.Success" to ComposeStyleReference { TextField.S.InnerLabel.Success.style() }, + "S.InnerLabel.Warning" to ComposeStyleReference { TextField.S.InnerLabel.Warning.style() }, + "S.InnerLabel.Error" to ComposeStyleReference { TextField.S.InnerLabel.Error.style() }, + "S.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Default.style() }, + "S.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Success.style() }, + "S.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Warning.style() }, + "S.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredStart.Error.style() }, + "S.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Default.style() }, + "S.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Success.style() }, + "S.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Warning.style() }, + "S.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.S.InnerLabel.RequiredEnd.Error.style() }, + "M.Default" to ComposeStyleReference { TextField.M.Default.style() }, + "M.Success" to ComposeStyleReference { TextField.M.Success.style() }, + "M.Warning" to ComposeStyleReference { TextField.M.Warning.style() }, + "M.Error" to ComposeStyleReference { TextField.M.Error.style() }, + "M.RequiredStart.Default" to ComposeStyleReference { TextField.M.RequiredStart.Default.style() }, + "M.RequiredStart.Success" to ComposeStyleReference { TextField.M.RequiredStart.Success.style() }, + "M.RequiredStart.Warning" to ComposeStyleReference { TextField.M.RequiredStart.Warning.style() }, + "M.RequiredStart.Error" to ComposeStyleReference { TextField.M.RequiredStart.Error.style() }, + "M.RequiredEnd.Default" to ComposeStyleReference { TextField.M.RequiredEnd.Default.style() }, + "M.RequiredEnd.Success" to ComposeStyleReference { TextField.M.RequiredEnd.Success.style() }, + "M.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.RequiredEnd.Warning.style() }, + "M.RequiredEnd.Error" to ComposeStyleReference { TextField.M.RequiredEnd.Error.style() }, + "M.OuterLabel.Default" to ComposeStyleReference { TextField.M.OuterLabel.Default.style() }, + "M.OuterLabel.Success" to ComposeStyleReference { TextField.M.OuterLabel.Success.style() }, + "M.OuterLabel.Warning" to ComposeStyleReference { TextField.M.OuterLabel.Warning.style() }, + "M.OuterLabel.Error" to ComposeStyleReference { TextField.M.OuterLabel.Error.style() }, + "M.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Default.style() }, + "M.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Success.style() }, + "M.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Warning.style() }, + "M.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredStart.Error.style() }, + "M.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Default.style() }, + "M.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Success.style() }, + "M.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Warning.style() }, + "M.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.OuterLabel.RequiredEnd.Error.style() }, + "M.InnerLabel.Default" to ComposeStyleReference { TextField.M.InnerLabel.Default.style() }, + "M.InnerLabel.Success" to ComposeStyleReference { TextField.M.InnerLabel.Success.style() }, + "M.InnerLabel.Warning" to ComposeStyleReference { TextField.M.InnerLabel.Warning.style() }, + "M.InnerLabel.Error" to ComposeStyleReference { TextField.M.InnerLabel.Error.style() }, + "M.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Default.style() }, + "M.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Success.style() }, + "M.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Warning.style() }, + "M.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredStart.Error.style() }, + "M.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Default.style() }, + "M.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Success.style() }, + "M.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Warning.style() }, + "M.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.M.InnerLabel.RequiredEnd.Error.style() }, + "L.Default" to ComposeStyleReference { TextField.L.Default.style() }, + "L.Success" to ComposeStyleReference { TextField.L.Success.style() }, + "L.Warning" to ComposeStyleReference { TextField.L.Warning.style() }, + "L.Error" to ComposeStyleReference { TextField.L.Error.style() }, + "L.RequiredStart.Default" to ComposeStyleReference { TextField.L.RequiredStart.Default.style() }, + "L.RequiredStart.Success" to ComposeStyleReference { TextField.L.RequiredStart.Success.style() }, + "L.RequiredStart.Warning" to ComposeStyleReference { TextField.L.RequiredStart.Warning.style() }, + "L.RequiredStart.Error" to ComposeStyleReference { TextField.L.RequiredStart.Error.style() }, + "L.RequiredEnd.Default" to ComposeStyleReference { TextField.L.RequiredEnd.Default.style() }, + "L.RequiredEnd.Success" to ComposeStyleReference { TextField.L.RequiredEnd.Success.style() }, + "L.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.RequiredEnd.Warning.style() }, + "L.RequiredEnd.Error" to ComposeStyleReference { TextField.L.RequiredEnd.Error.style() }, + "L.OuterLabel.Default" to ComposeStyleReference { TextField.L.OuterLabel.Default.style() }, + "L.OuterLabel.Success" to ComposeStyleReference { TextField.L.OuterLabel.Success.style() }, + "L.OuterLabel.Warning" to ComposeStyleReference { TextField.L.OuterLabel.Warning.style() }, + "L.OuterLabel.Error" to ComposeStyleReference { TextField.L.OuterLabel.Error.style() }, + "L.OuterLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Default.style() }, + "L.OuterLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Success.style() }, + "L.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Warning.style() }, + "L.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredStart.Error.style() }, + "L.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Default.style() }, + "L.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Success.style() }, + "L.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Warning.style() }, + "L.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.OuterLabel.RequiredEnd.Error.style() }, + "L.InnerLabel.Default" to ComposeStyleReference { TextField.L.InnerLabel.Default.style() }, + "L.InnerLabel.Success" to ComposeStyleReference { TextField.L.InnerLabel.Success.style() }, + "L.InnerLabel.Warning" to ComposeStyleReference { TextField.L.InnerLabel.Warning.style() }, + "L.InnerLabel.Error" to ComposeStyleReference { TextField.L.InnerLabel.Error.style() }, + "L.InnerLabel.RequiredStart.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Default.style() }, + "L.InnerLabel.RequiredStart.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Success.style() }, + "L.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Warning.style() }, + "L.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredStart.Error.style() }, + "L.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Default.style() }, + "L.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Success.style() }, + "L.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Warning.style() }, + "L.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.L.InnerLabel.RequiredEnd.Error.style() }, + "Xl.Default" to ComposeStyleReference { TextField.Xl.Default.style() }, + "Xl.Success" to ComposeStyleReference { TextField.Xl.Success.style() }, + "Xl.Warning" to ComposeStyleReference { TextField.Xl.Warning.style() }, + "Xl.Error" to ComposeStyleReference { TextField.Xl.Error.style() }, + "Xl.RequiredStart.Default" to ComposeStyleReference { TextField.Xl.RequiredStart.Default.style() }, + "Xl.RequiredStart.Success" to ComposeStyleReference { TextField.Xl.RequiredStart.Success.style() }, + "Xl.RequiredStart.Warning" to ComposeStyleReference { TextField.Xl.RequiredStart.Warning.style() }, + "Xl.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.RequiredStart.Error.style() }, + "Xl.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.RequiredEnd.Default.style() }, + "Xl.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.RequiredEnd.Success.style() }, + "Xl.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.RequiredEnd.Warning.style() }, + "Xl.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.RequiredEnd.Error.style() }, + "Xl.OuterLabel.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.Default.style() }, + "Xl.OuterLabel.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.Success.style() }, + "Xl.OuterLabel.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.Warning.style() }, + "Xl.OuterLabel.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.Error.style() }, + "Xl.OuterLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Default.style() + }, + "Xl.OuterLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Success.style() + }, + "Xl.OuterLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.OuterLabel.RequiredStart.Warning.style() + }, + "Xl.OuterLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredStart.Error.style() }, + "Xl.OuterLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Default.style() }, + "Xl.OuterLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Success.style() }, + "Xl.OuterLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Warning.style() }, + "Xl.OuterLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.OuterLabel.RequiredEnd.Error.style() }, + "Xl.InnerLabel.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.Default.style() }, + "Xl.InnerLabel.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.Success.style() }, + "Xl.InnerLabel.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.Warning.style() }, + "Xl.InnerLabel.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.Error.style() }, + "Xl.InnerLabel.RequiredStart.Default" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Default.style() + }, + "Xl.InnerLabel.RequiredStart.Success" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Success.style() + }, + "Xl.InnerLabel.RequiredStart.Warning" to ComposeStyleReference { + TextField.Xl.InnerLabel.RequiredStart.Warning.style() + }, + "Xl.InnerLabel.RequiredStart.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredStart.Error.style() }, + "Xl.InnerLabel.RequiredEnd.Default" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Default.style() }, + "Xl.InnerLabel.RequiredEnd.Success" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Success.style() }, + "Xl.InnerLabel.RequiredEnd.Warning" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Warning.style() }, + "Xl.InnerLabel.RequiredEnd.Error" to ComposeStyleReference { TextField.Xl.InnerLabel.RequiredEnd.Error.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextSkeletonVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextSkeletonVariationsCompose.kt new file mode 100644 index 0000000000..a692e9e1db --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTextSkeletonVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TextSkeletonStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.textskeleton.Default +import com.sdds.serv.styles.textskeleton.Lighter +import com.sdds.serv.styles.textskeleton.TextSkeleton + +internal object SddsServTextSkeletonVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Default" to ComposeStyleReference { TextSkeleton.Default.style() }, + "Lighter" to ComposeStyleReference { TextSkeleton.Lighter.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToastVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToastVariationsCompose.kt new file mode 100644 index 0000000000..e9bf11b074 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToastVariationsCompose.kt @@ -0,0 +1,31 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToastStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.toast.Default +import com.sdds.serv.styles.toast.Negative +import com.sdds.serv.styles.toast.Pilled +import com.sdds.serv.styles.toast.Positive +import com.sdds.serv.styles.toast.Rounded +import com.sdds.serv.styles.toast.Toast + +internal object SddsServToastVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "Rounded.Default" to ComposeStyleReference { Toast.Rounded.Default.style() }, + "Rounded.Positive" to ComposeStyleReference { Toast.Rounded.Positive.style() }, + "Rounded.Negative" to ComposeStyleReference { Toast.Rounded.Negative.style() }, + "Pilled.Default" to ComposeStyleReference { Toast.Pilled.Default.style() }, + "Pilled.Positive" to ComposeStyleReference { Toast.Pilled.Positive.style() }, + "Pilled.Negative" to ComposeStyleReference { Toast.Pilled.Negative.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarHorizontalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarHorizontalVariationsCompose.kt new file mode 100644 index 0000000000..0d85b1de4d --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarHorizontalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.toolbar.HasShadow +import com.sdds.serv.styles.toolbar.L +import com.sdds.serv.styles.toolbar.M +import com.sdds.serv.styles.toolbar.S +import com.sdds.serv.styles.toolbar.ToolBarHorizontal +import com.sdds.serv.styles.toolbar.Xs + +internal object SddsServToolBarHorizontalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarHorizontal.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarHorizontal.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarHorizontal.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarHorizontal.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarHorizontal.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarHorizontal.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarHorizontal.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarHorizontal.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarVerticalVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarVerticalVariationsCompose.kt new file mode 100644 index 0000000000..d1066752f0 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServToolBarVerticalVariationsCompose.kt @@ -0,0 +1,33 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.ToolBarStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.toolbar.HasShadow +import com.sdds.serv.styles.toolbar.L +import com.sdds.serv.styles.toolbar.M +import com.sdds.serv.styles.toolbar.S +import com.sdds.serv.styles.toolbar.ToolBarVertical +import com.sdds.serv.styles.toolbar.Xs + +internal object SddsServToolBarVerticalVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "L" to ComposeStyleReference { ToolBarVertical.L.style() }, + "L.HasShadow" to ComposeStyleReference { ToolBarVertical.L.HasShadow.style() }, + "M" to ComposeStyleReference { ToolBarVertical.M.style() }, + "M.HasShadow" to ComposeStyleReference { ToolBarVertical.M.HasShadow.style() }, + "S" to ComposeStyleReference { ToolBarVertical.S.style() }, + "S.HasShadow" to ComposeStyleReference { ToolBarVertical.S.HasShadow.style() }, + "Xs" to ComposeStyleReference { ToolBarVertical.Xs.style() }, + "Xs.HasShadow" to ComposeStyleReference { ToolBarVertical.Xs.HasShadow.style() }, + ) +} diff --git a/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTooltipVariationsCompose.kt b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTooltipVariationsCompose.kt new file mode 100644 index 0000000000..b0413fea22 --- /dev/null +++ b/tokens/sdds.serv.compose/integration/src/main/kotlin/com/sdds/serv/integration/SddsServTooltipVariationsCompose.kt @@ -0,0 +1,24 @@ +// AUTO-GENERATED. DO NOT MODIFY this file. +@file:Suppress( + "UndocumentedPublicClass", + "UndocumentedPublicProperty", + "ktlint:standard:max-line-length", +) + +package com.sdds.serv.integration + +import com.sdds.compose.sandbox.ComposeStyleProvider +import com.sdds.compose.sandbox.ComposeStyleReference +import com.sdds.compose.uikit.TooltipStyle +import com.sdds.compose.uikit.style.style +import com.sdds.serv.styles.tooltip.M +import com.sdds.serv.styles.tooltip.S +import com.sdds.serv.styles.tooltip.Tooltip + +internal object SddsServTooltipVariationsCompose : ComposeStyleProvider() { + override val variations: Map> = + mapOf( + "M" to ComposeStyleReference { Tooltip.M.style() }, + "S" to ComposeStyleReference { Tooltip.S.style() }, + ) +} diff --git a/tokens/sdds.serv.view/app/build.gradle.kts b/tokens/sdds.serv.view/app/build.gradle.kts index 930c0aaf2a..49b4b23312 100644 --- a/tokens/sdds.serv.view/app/build.gradle.kts +++ b/tokens/sdds.serv.view/app/build.gradle.kts @@ -13,6 +13,6 @@ dependencies { implementation("integration-core:sandbox-core") implementation("integration-core:sandbox-compose") implementation("integration-core:sandbox-view") - implementation("sdds-core:uikit-fixtures") + implementation("integration-core:uikit-fixtures") implementation(libs.sdds.uikit.compose) } diff --git a/tokens/sdds.serv.view/build.gradle.kts b/tokens/sdds.serv.view/build.gradle.kts index 6953671da3..0b4644b4af 100644 --- a/tokens/sdds.serv.view/build.gradle.kts +++ b/tokens/sdds.serv.view/build.gradle.kts @@ -40,7 +40,7 @@ themeBuilder { } dependencies { - testImplementation("sdds-core:uikit-fixtures") + testImplementation("integration-core:uikit-fixtures") implementation(icons.sdds.icons) implementation(libs.sdds.uikit) implementation(libs.base.androidX.core) diff --git a/tokens/settings.gradle.kts b/tokens/settings.gradle.kts index 9a64b774be..30fd075efd 100644 --- a/tokens/settings.gradle.kts +++ b/tokens/settings.gradle.kts @@ -25,32 +25,38 @@ includeBuild("../integration-core") include( ":plasma.giga.compose", ":plasma.giga.compose:docs", - ":plasma.giga.app.compose", - ":plasma.giga.app.compose:docs", + ":plasma.giga.compose:app", + ":plasma.giga.compose:integration", ":plasma.sd.service.compose", + ":plasma.sd.service.compose:app", + ":plasma.sd.service.compose:integration", ":plasma.sd.service.compose:docs", ":plasma.homeds.compose", ":plasma.homeds.compose:docs", ":plasma.homeds.compose:integration", ":plasma.homeds.compose:app", ":plasma.sd.service.view", + ":plasma.sd.service.view:app", ":plasma.sd.service.view:docs", + ":plasma.sd.service.view:integration", ":sdds.serv.compose", + ":sdds.serv.compose:app", + ":sdds.serv.compose:integration", ":sdds.serv.compose:docs", ":sdds.serv.view", ":sdds.serv.view:docs", ":sdds.serv.view:integration", ":sdds.serv.view:app", - ":stylessalute.compose", - ":stylessalute.compose:docs", - ":stylessalute.view", - ":stylessalute.view:docs", ":plasma-stards-view", ":plasma-stards-view:docs", ":plasma-stards-view:app", ":plasma-stards-view:integration", ":plasma-stards-compose", + ":plasma-stards-compose:app", + ":plasma-stards-compose:integration", ":plasma-stards-compose:docs", ":sdds-sbcom-compose", + ":sdds-sbcom-compose:app", + ":sdds-sbcom-compose:integration", ":sdds-sbcom-compose:docs", ) diff --git a/tokens/stylessalute.compose/README.md b/tokens/stylessalute.compose/README.md deleted file mode 100644 index e28686d480..0000000000 --- a/tokens/stylessalute.compose/README.md +++ /dev/null @@ -1,102 +0,0 @@ -## Быстрый старт -1. Добавить в build.gradle файл следующие зависимости -```kotlin - implementation("io.github.salute-developers:stylessalute-compose:$saluteVersion") - implementation("io.github.salute-developers:sdds-uikit-compose:$uikitVersion") -``` - -Дополнительно, если Вам нужен набор иконок: -```kotlin - implementation("io.github.salute-developers:sdds-icons:$iconsVersion") -``` - -2. Добавить в тему вашего приложения тему `StylesSaluteTheme`, например: -```kotlin -private val DarkColors = darkStylesSaluteColors() -private val LightColors = lightStylesSaluteColors() -private val DarkGradients = darkStylesSaluteGradients() -private val LightGradients = lightStylesSaluteGradients() - -/** - * Тема приложения - */ -@Composable -fun YourAppTheme( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - StylesSaluteTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - content = content, - ) -} -``` - -3. Done - -## Как использовать токены цвета и градиента -Токены цвета делятся на несколько логических групп, согласно назначению элемента: `text`, `surface`, `background` и `outline`. - -Эти группы в свою очередь делятся на подтемы: -- `Default` - По умолчанию, значения токенов меняются в зависимости от темы -- `OnDark` - Статические значения токенов из тёмной темы, не меняются при переключении темы, -- `OnLight` - Статические значения токенов из светлой темы, не меняются при переключении темы, -- `Inverse` Инвертированные значения токенов подтемы `Default`. - -Токены цвета представляют из себя экземпляры класса `androidx.compose.ui.graphics.Color`, токены градиента - экземпляры класса `List`, т.к. градиенты могут быть многослойными. -Чтобы применить многослойный бэкграунд можно использовать модификатор `Modifier.compositeGradient()`. -Для применения градиента к тексту используется первый слой токена градиента, например, `StylesSaluteTheme.gradients.textDefaultAccentGradient.first()`. - -### Структура именования токена цвета -``` -область применения + подтема + название состояния -``` - -Например, -- Figma токену с названием `🌕 Surfaces Default/Accent/surfaceAccent` в коде будет соответствовать аттрибут `StylesSaluteTheme.colors.surfaceDefaultAccent`. -- Figma токену c названием `🌕 Surfaces Default/Transparent/surfaceTransparentSecondary` в коде будет соответствовать аттрибут `StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary` - ->Использовать токены цвета и градиентов необходимо через объект `com.sdds.serv.theme.StylesSaluteTheme`. - -## Как использовать токены скруглений -Токены скруглений представляют из себя экземпляры класса `androidx.compose.foundation.shape.CornerBasedShape`. А значит их можно использовать везде, где ожидается экземпляр класса `androidx.compose.ui.graphics.Shape` - например, `Modifier.shape()`, `Modifier.background()`, `Modifier.clip()` и т.д. - Большинство компонентов из `sdds-uikit-compose` также поддерживают установку аттрибута `shape` в стилях. - -Использовать токены скруглений необходимо через объект `com.sdds.serv.theme.StylesSaluteTheme`. - -Токены скруглений разделяются на группы согласно размеру скругления: Xxs, Xs, S, M, L, Xl, Xxl и Rounded. Токен скругления в фигма имеет следующую структуру названия: -``` -CornerRadius/cR<название размера> -``` - -Допускаются также вычисляемые значения: -``` -CornerRadius/calc:[cR<название размера> - 2] -``` - -Т.е. Figma токену `CornerRadius/cRm` будет соответствовать в коде аттрибут `StylesSaluteTheme.shapes.shapeRoundM`. - -А Figma токену `CornerRadius/calc:[cRl - 2]` будет соответствовать в коде аттрибут с дополнительным вызововов функции `StylesSaluteTheme.shapes.shapeRoundL.adjustBy((-2).dp)`. - - -## Как использовать токены начертаний: -В Figma токены типографики делятся на группы: `Display`, `Body`, `Header`, `Text`. -И на подгруппы: `Large Screens`, `Medium Screens`, `Small Screens`. - -## Структура названия токена начертания -``` -Группа + Подгруппа + Уникальное название токена -``` - -Figma токену с названием `Body/BodyL B` будет соответствовать в коде аттрибут `StylesSaluteTheme.typography.bodyLBold`. - ->Важно отметить, что выбор подгруппы `Large Screens`, `Medium Screens`, `Small Screens` происходит автоматически. - - -## Как использовать стилизованные компоненты -TBD diff --git a/tokens/stylessalute.compose/build.gradle.kts b/tokens/stylessalute.compose/build.gradle.kts deleted file mode 100644 index 3e95a1a85b..0000000000 --- a/tokens/stylessalute.compose/build.gradle.kts +++ /dev/null @@ -1,41 +0,0 @@ -import com.sdds.plugin.themebuilder.OutputLocation.SRC -import com.sdds.plugin.themebuilder.ThemeBuilderMode.THEME -import utils.componentsName -import utils.componentsVersion -import utils.themeName -import utils.themeResPrefix -import utils.themeVersion - -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id("convention.compose") - id("convention.maven-publish") - id("convention.auto-bump") - id("convention.testing-compose") - id(libs.plugins.themebuilder.get().pluginId) - alias(libs.plugins.roborazzi) - id("convention.docusaurus") -} - -android { - namespace = "com.sdds.stylessalute.compose" - resourcePrefix = themeResPrefix -} - -themeBuilder { - themeSource(name = themeName, version = themeVersion) - componentSource(name = componentsName, version = componentsVersion) - compose() - autoGenerate(false) - ktPackage(ktPackage = "com.sdds.stylessalute") - mode(THEME) - outputLocation(SRC) -} - -dependencies { - testImplementation("sdds-core:uikit-compose-fixtures") - implementation(libs.sdds.uikit.compose) - implementation(icons.sdds.icons) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/tokens/stylessalute.compose/config-info-compose.json b/tokens/stylessalute.compose/config-info-compose.json deleted file mode 100644 index 02e04dc887..0000000000 --- a/tokens/stylessalute.compose/config-info-compose.json +++ /dev/null @@ -1,6245 +0,0 @@ -{ - "name": "stylesSalute", - "packageName": "com.sdds.stylessalute", - "components": [ - { - "key": "avatar", - "coreName": "Avatar", - "styleName": "Avatar", - "variations": [ - { - "name": "xxl", - "composeReference": "Avatar.Xxl" - }, - { - "name": "l", - "composeReference": "Avatar.L" - }, - { - "name": "m", - "composeReference": "Avatar.M" - }, - { - "name": "s", - "composeReference": "Avatar.S" - } - ] - }, - { - "key": "avatar-group", - "coreName": "AvatarGroup", - "styleName": "AvatarGroup", - "variations": [ - { - "name": "s", - "composeReference": "AvatarGroup.S" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeClear", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeClear.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeClear.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeClear.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeClear.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeClear.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeClear.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeClear.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeClear.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeClear.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeClear.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeClear.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeClear.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeClear.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeClear.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeClear.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeClear.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeClear.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeClear.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeClear.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeClear.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeClear.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeClear.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeClear.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeClear.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeClear.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeClear.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeClear.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeClear.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeClear.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeClear.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeClear.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeClear.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeClear.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeClear.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeClear.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeClear.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeClear.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeClear.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeClear.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeClear.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeClear.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeClear.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeClear.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeClear.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeClear.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeClear.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeClear.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeClear.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeClear.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeClear.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeClear.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeClear.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeClear.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeClear.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeClear.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeClear.Xs.Pilled.Light" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeSolid", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeSolid.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeSolid.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeSolid.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeSolid.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeSolid.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeSolid.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeSolid.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeSolid.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeSolid.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeSolid.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeSolid.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeSolid.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeSolid.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeSolid.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeSolid.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeSolid.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeSolid.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeSolid.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeSolid.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeSolid.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeSolid.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeSolid.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeSolid.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeSolid.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeSolid.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeSolid.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeSolid.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeSolid.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeSolid.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeSolid.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeSolid.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeSolid.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeSolid.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeSolid.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeSolid.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeSolid.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeSolid.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeSolid.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeSolid.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeSolid.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeSolid.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeSolid.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeSolid.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeSolid.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeSolid.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeSolid.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeSolid.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeSolid.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeSolid.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeSolid.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeSolid.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeSolid.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeSolid.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeSolid.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeSolid.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeSolid.Xs.Pilled.Light" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeTransparent", - "variations": [ - { - "name": "l.default", - "composeReference": "BadgeTransparent.L.Default" - }, - { - "name": "l.accent", - "composeReference": "BadgeTransparent.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "BadgeTransparent.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "BadgeTransparent.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "BadgeTransparent.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "BadgeTransparent.L.Dark" - }, - { - "name": "l.light", - "composeReference": "BadgeTransparent.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "BadgeTransparent.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "BadgeTransparent.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "BadgeTransparent.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "BadgeTransparent.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "BadgeTransparent.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "BadgeTransparent.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "BadgeTransparent.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "BadgeTransparent.M.Default" - }, - { - "name": "m.accent", - "composeReference": "BadgeTransparent.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "BadgeTransparent.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "BadgeTransparent.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "BadgeTransparent.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "BadgeTransparent.M.Dark" - }, - { - "name": "m.light", - "composeReference": "BadgeTransparent.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "BadgeTransparent.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "BadgeTransparent.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "BadgeTransparent.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "BadgeTransparent.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "BadgeTransparent.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "BadgeTransparent.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "BadgeTransparent.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "BadgeTransparent.S.Default" - }, - { - "name": "s.accent", - "composeReference": "BadgeTransparent.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "BadgeTransparent.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "BadgeTransparent.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "BadgeTransparent.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "BadgeTransparent.S.Dark" - }, - { - "name": "s.light", - "composeReference": "BadgeTransparent.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "BadgeTransparent.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "BadgeTransparent.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "BadgeTransparent.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "BadgeTransparent.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "BadgeTransparent.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "BadgeTransparent.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "BadgeTransparent.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "BadgeTransparent.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "BadgeTransparent.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "BadgeTransparent.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "BadgeTransparent.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "BadgeTransparent.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "BadgeTransparent.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "BadgeTransparent.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "BadgeTransparent.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "BadgeTransparent.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "BadgeTransparent.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "BadgeTransparent.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "BadgeTransparent.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "BadgeTransparent.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "BadgeTransparent.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeClear", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeClear.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeClear.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeClear.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeClear.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeClear.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeClear.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeClear.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeClear.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeClear.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeClear.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeClear.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeClear.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeClear.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeClear.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeClear.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeClear.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeClear.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeClear.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeClear.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeClear.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeClear.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeClear.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeClear.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeClear.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeClear.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeClear.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeClear.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeClear.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeClear.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeClear.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeClear.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeClear.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeClear.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeClear.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeClear.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeClear.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeClear.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeClear.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeClear.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeClear.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeClear.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeClear.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeClear.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeClear.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeClear.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeClear.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeClear.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeClear.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeClear.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeClear.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeClear.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeClear.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeClear.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeClear.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeClear.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeClear.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeSolid", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeSolid.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeSolid.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeSolid.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeSolid.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeSolid.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeSolid.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeSolid.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeSolid.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeSolid.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeSolid.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeSolid.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeSolid.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeSolid.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeSolid.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeSolid.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeSolid.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeSolid.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeSolid.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeSolid.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeSolid.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeSolid.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeSolid.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeSolid.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeSolid.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeSolid.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeSolid.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeSolid.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeSolid.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeSolid.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeSolid.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeSolid.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeSolid.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeSolid.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeSolid.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeSolid.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeSolid.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeSolid.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeSolid.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeSolid.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeSolid.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeSolid.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeSolid.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeSolid.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeSolid.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeSolid.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeSolid.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeSolid.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeSolid.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeSolid.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeSolid.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeSolid.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeSolid.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeSolid.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeSolid.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeSolid.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeSolid.Xs.Pilled.Light" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeTransparent", - "variations": [ - { - "name": "l.default", - "composeReference": "IconBadgeTransparent.L.Default" - }, - { - "name": "l.accent", - "composeReference": "IconBadgeTransparent.L.Accent" - }, - { - "name": "l.negative", - "composeReference": "IconBadgeTransparent.L.Negative" - }, - { - "name": "l.positive", - "composeReference": "IconBadgeTransparent.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "IconBadgeTransparent.L.Warning" - }, - { - "name": "l.dark", - "composeReference": "IconBadgeTransparent.L.Dark" - }, - { - "name": "l.light", - "composeReference": "IconBadgeTransparent.L.Light" - }, - { - "name": "l.pilled.default", - "composeReference": "IconBadgeTransparent.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconBadgeTransparent.L.Pilled.Accent" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconBadgeTransparent.L.Pilled.Negative" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconBadgeTransparent.L.Pilled.Positive" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconBadgeTransparent.L.Pilled.Warning" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconBadgeTransparent.L.Pilled.Dark" - }, - { - "name": "l.pilled.light", - "composeReference": "IconBadgeTransparent.L.Pilled.Light" - }, - { - "name": "m.default", - "composeReference": "IconBadgeTransparent.M.Default" - }, - { - "name": "m.accent", - "composeReference": "IconBadgeTransparent.M.Accent" - }, - { - "name": "m.negative", - "composeReference": "IconBadgeTransparent.M.Negative" - }, - { - "name": "m.positive", - "composeReference": "IconBadgeTransparent.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "IconBadgeTransparent.M.Warning" - }, - { - "name": "m.dark", - "composeReference": "IconBadgeTransparent.M.Dark" - }, - { - "name": "m.light", - "composeReference": "IconBadgeTransparent.M.Light" - }, - { - "name": "m.pilled.default", - "composeReference": "IconBadgeTransparent.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconBadgeTransparent.M.Pilled.Accent" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconBadgeTransparent.M.Pilled.Negative" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconBadgeTransparent.M.Pilled.Positive" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconBadgeTransparent.M.Pilled.Warning" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconBadgeTransparent.M.Pilled.Dark" - }, - { - "name": "m.pilled.light", - "composeReference": "IconBadgeTransparent.M.Pilled.Light" - }, - { - "name": "s.default", - "composeReference": "IconBadgeTransparent.S.Default" - }, - { - "name": "s.accent", - "composeReference": "IconBadgeTransparent.S.Accent" - }, - { - "name": "s.negative", - "composeReference": "IconBadgeTransparent.S.Negative" - }, - { - "name": "s.positive", - "composeReference": "IconBadgeTransparent.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "IconBadgeTransparent.S.Warning" - }, - { - "name": "s.dark", - "composeReference": "IconBadgeTransparent.S.Dark" - }, - { - "name": "s.light", - "composeReference": "IconBadgeTransparent.S.Light" - }, - { - "name": "s.pilled.default", - "composeReference": "IconBadgeTransparent.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconBadgeTransparent.S.Pilled.Accent" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconBadgeTransparent.S.Pilled.Negative" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconBadgeTransparent.S.Pilled.Positive" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconBadgeTransparent.S.Pilled.Warning" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconBadgeTransparent.S.Pilled.Dark" - }, - { - "name": "s.pilled.light", - "composeReference": "IconBadgeTransparent.S.Pilled.Light" - }, - { - "name": "xs.default", - "composeReference": "IconBadgeTransparent.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "IconBadgeTransparent.Xs.Accent" - }, - { - "name": "xs.negative", - "composeReference": "IconBadgeTransparent.Xs.Negative" - }, - { - "name": "xs.positive", - "composeReference": "IconBadgeTransparent.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "IconBadgeTransparent.Xs.Warning" - }, - { - "name": "xs.dark", - "composeReference": "IconBadgeTransparent.Xs.Dark" - }, - { - "name": "xs.light", - "composeReference": "IconBadgeTransparent.Xs.Light" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.light", - "composeReference": "IconBadgeTransparent.Xs.Pilled.Light" - } - ] - }, - { - "key": "basic-button", - "coreName": "BasicButton", - "styleName": "BasicButton", - "variations": [ - { - "name": "l.default", - "composeReference": "BasicButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "BasicButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "BasicButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "BasicButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "BasicButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "BasicButton.L.Warning" - }, - { - "name": "l.clear", - "composeReference": "BasicButton.L.Clear" - }, - { - "name": "l.dark", - "composeReference": "BasicButton.L.Dark" - }, - { - "name": "l.black", - "composeReference": "BasicButton.L.Black" - }, - { - "name": "l.white", - "composeReference": "BasicButton.L.White" - }, - { - "name": "m.default", - "composeReference": "BasicButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "BasicButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "BasicButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "BasicButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "BasicButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "BasicButton.M.Warning" - }, - { - "name": "m.clear", - "composeReference": "BasicButton.M.Clear" - }, - { - "name": "m.dark", - "composeReference": "BasicButton.M.Dark" - }, - { - "name": "m.black", - "composeReference": "BasicButton.M.Black" - }, - { - "name": "m.white", - "composeReference": "BasicButton.M.White" - }, - { - "name": "s.default", - "composeReference": "BasicButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "BasicButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "BasicButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "BasicButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "BasicButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "BasicButton.S.Warning" - }, - { - "name": "s.clear", - "composeReference": "BasicButton.S.Clear" - }, - { - "name": "s.dark", - "composeReference": "BasicButton.S.Dark" - }, - { - "name": "s.black", - "composeReference": "BasicButton.S.Black" - }, - { - "name": "s.white", - "composeReference": "BasicButton.S.White" - }, - { - "name": "xs.default", - "composeReference": "BasicButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "BasicButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "BasicButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "BasicButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "BasicButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "BasicButton.Xs.Warning" - }, - { - "name": "xs.clear", - "composeReference": "BasicButton.Xs.Clear" - }, - { - "name": "xs.dark", - "composeReference": "BasicButton.Xs.Dark" - }, - { - "name": "xs.black", - "composeReference": "BasicButton.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "BasicButton.Xs.White" - } - ] - }, - { - "key": "icon-button", - "coreName": "IconButton", - "styleName": "IconButton", - "variations": [ - { - "name": "l.default", - "composeReference": "IconButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "IconButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "IconButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "IconButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "IconButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "IconButton.L.Warning" - }, - { - "name": "l.clear", - "composeReference": "IconButton.L.Clear" - }, - { - "name": "l.dark", - "composeReference": "IconButton.L.Dark" - }, - { - "name": "l.black", - "composeReference": "IconButton.L.Black" - }, - { - "name": "l.white", - "composeReference": "IconButton.L.White" - }, - { - "name": "l.pilled.default", - "composeReference": "IconButton.L.Pilled.Default" - }, - { - "name": "l.pilled.secondary", - "composeReference": "IconButton.L.Pilled.Secondary" - }, - { - "name": "l.pilled.accent", - "composeReference": "IconButton.L.Pilled.Accent" - }, - { - "name": "l.pilled.positive", - "composeReference": "IconButton.L.Pilled.Positive" - }, - { - "name": "l.pilled.negative", - "composeReference": "IconButton.L.Pilled.Negative" - }, - { - "name": "l.pilled.warning", - "composeReference": "IconButton.L.Pilled.Warning" - }, - { - "name": "l.pilled.clear", - "composeReference": "IconButton.L.Pilled.Clear" - }, - { - "name": "l.pilled.dark", - "composeReference": "IconButton.L.Pilled.Dark" - }, - { - "name": "l.pilled.black", - "composeReference": "IconButton.L.Pilled.Black" - }, - { - "name": "l.pilled.white", - "composeReference": "IconButton.L.Pilled.White" - }, - { - "name": "m.default", - "composeReference": "IconButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "IconButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "IconButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "IconButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "IconButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "IconButton.M.Warning" - }, - { - "name": "m.clear", - "composeReference": "IconButton.M.Clear" - }, - { - "name": "m.dark", - "composeReference": "IconButton.M.Dark" - }, - { - "name": "m.black", - "composeReference": "IconButton.M.Black" - }, - { - "name": "m.white", - "composeReference": "IconButton.M.White" - }, - { - "name": "m.pilled.default", - "composeReference": "IconButton.M.Pilled.Default" - }, - { - "name": "m.pilled.secondary", - "composeReference": "IconButton.M.Pilled.Secondary" - }, - { - "name": "m.pilled.accent", - "composeReference": "IconButton.M.Pilled.Accent" - }, - { - "name": "m.pilled.positive", - "composeReference": "IconButton.M.Pilled.Positive" - }, - { - "name": "m.pilled.negative", - "composeReference": "IconButton.M.Pilled.Negative" - }, - { - "name": "m.pilled.warning", - "composeReference": "IconButton.M.Pilled.Warning" - }, - { - "name": "m.pilled.clear", - "composeReference": "IconButton.M.Pilled.Clear" - }, - { - "name": "m.pilled.dark", - "composeReference": "IconButton.M.Pilled.Dark" - }, - { - "name": "m.pilled.black", - "composeReference": "IconButton.M.Pilled.Black" - }, - { - "name": "m.pilled.white", - "composeReference": "IconButton.M.Pilled.White" - }, - { - "name": "s.default", - "composeReference": "IconButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "IconButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "IconButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "IconButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "IconButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "IconButton.S.Warning" - }, - { - "name": "s.clear", - "composeReference": "IconButton.S.Clear" - }, - { - "name": "s.dark", - "composeReference": "IconButton.S.Dark" - }, - { - "name": "s.black", - "composeReference": "IconButton.S.Black" - }, - { - "name": "s.white", - "composeReference": "IconButton.S.White" - }, - { - "name": "s.pilled.default", - "composeReference": "IconButton.S.Pilled.Default" - }, - { - "name": "s.pilled.secondary", - "composeReference": "IconButton.S.Pilled.Secondary" - }, - { - "name": "s.pilled.accent", - "composeReference": "IconButton.S.Pilled.Accent" - }, - { - "name": "s.pilled.positive", - "composeReference": "IconButton.S.Pilled.Positive" - }, - { - "name": "s.pilled.negative", - "composeReference": "IconButton.S.Pilled.Negative" - }, - { - "name": "s.pilled.warning", - "composeReference": "IconButton.S.Pilled.Warning" - }, - { - "name": "s.pilled.clear", - "composeReference": "IconButton.S.Pilled.Clear" - }, - { - "name": "s.pilled.dark", - "composeReference": "IconButton.S.Pilled.Dark" - }, - { - "name": "s.pilled.black", - "composeReference": "IconButton.S.Pilled.Black" - }, - { - "name": "s.pilled.white", - "composeReference": "IconButton.S.Pilled.White" - }, - { - "name": "xs.default", - "composeReference": "IconButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "IconButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "IconButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "IconButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "IconButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "IconButton.Xs.Warning" - }, - { - "name": "xs.clear", - "composeReference": "IconButton.Xs.Clear" - }, - { - "name": "xs.dark", - "composeReference": "IconButton.Xs.Dark" - }, - { - "name": "xs.black", - "composeReference": "IconButton.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "IconButton.Xs.White" - }, - { - "name": "xs.pilled.default", - "composeReference": "IconButton.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "IconButton.Xs.Pilled.Secondary" - }, - { - "name": "xs.pilled.accent", - "composeReference": "IconButton.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.positive", - "composeReference": "IconButton.Xs.Pilled.Positive" - }, - { - "name": "xs.pilled.negative", - "composeReference": "IconButton.Xs.Pilled.Negative" - }, - { - "name": "xs.pilled.warning", - "composeReference": "IconButton.Xs.Pilled.Warning" - }, - { - "name": "xs.pilled.clear", - "composeReference": "IconButton.Xs.Pilled.Clear" - }, - { - "name": "xs.pilled.dark", - "composeReference": "IconButton.Xs.Pilled.Dark" - }, - { - "name": "xs.pilled.black", - "composeReference": "IconButton.Xs.Pilled.Black" - }, - { - "name": "xs.pilled.white", - "composeReference": "IconButton.Xs.Pilled.White" - } - ] - }, - { - "key": "link-button", - "coreName": "LinkButton", - "styleName": "LinkButton", - "variations": [ - { - "name": "l.default", - "composeReference": "LinkButton.L.Default" - }, - { - "name": "l.secondary", - "composeReference": "LinkButton.L.Secondary" - }, - { - "name": "l.accent", - "composeReference": "LinkButton.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "LinkButton.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "LinkButton.L.Negative" - }, - { - "name": "l.warning", - "composeReference": "LinkButton.L.Warning" - }, - { - "name": "m.default", - "composeReference": "LinkButton.M.Default" - }, - { - "name": "m.secondary", - "composeReference": "LinkButton.M.Secondary" - }, - { - "name": "m.accent", - "composeReference": "LinkButton.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "LinkButton.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "LinkButton.M.Negative" - }, - { - "name": "m.warning", - "composeReference": "LinkButton.M.Warning" - }, - { - "name": "s.default", - "composeReference": "LinkButton.S.Default" - }, - { - "name": "s.secondary", - "composeReference": "LinkButton.S.Secondary" - }, - { - "name": "s.accent", - "composeReference": "LinkButton.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "LinkButton.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "LinkButton.S.Negative" - }, - { - "name": "s.warning", - "composeReference": "LinkButton.S.Warning" - }, - { - "name": "xs.default", - "composeReference": "LinkButton.Xs.Default" - }, - { - "name": "xs.secondary", - "composeReference": "LinkButton.Xs.Secondary" - }, - { - "name": "xs.accent", - "composeReference": "LinkButton.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "LinkButton.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "LinkButton.Xs.Negative" - }, - { - "name": "xs.warning", - "composeReference": "LinkButton.Xs.Warning" - } - ] - }, - { - "key": "bottom-sheet", - "coreName": "BottomSheet", - "styleName": "ModalBottomSheet", - "variations": [ - { - "name": "Default", - "composeReference": "ModalBottomSheet.Default" - } - ] - }, - { - "key": "cell", - "coreName": "Cell", - "styleName": "Cell", - "variations": [ - { - "name": "l", - "composeReference": "Cell.L" - }, - { - "name": "m", - "composeReference": "Cell.M" - }, - { - "name": "s", - "composeReference": "Cell.S" - }, - { - "name": "xs", - "composeReference": "Cell.Xs" - } - ] - }, - { - "key": "check-box", - "coreName": "CheckBox", - "styleName": "CheckBox", - "variations": [ - { - "name": "m.default", - "composeReference": "CheckBox.M.Default" - }, - { - "name": "s.default", - "composeReference": "CheckBox.S.Default" - } - ] - }, - { - "key": "check-box-group", - "coreName": "CheckBoxGroup", - "styleName": "CheckBoxGroup", - "variations": [ - { - "name": "m", - "composeReference": "CheckBoxGroup.M" - }, - { - "name": "s", - "composeReference": "CheckBoxGroup.S" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "Chip", - "variations": [ - { - "name": "l.default", - "composeReference": "Chip.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Chip.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "Chip.L.Secondary" - }, - { - "name": "l.pilled.default", - "composeReference": "Chip.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "Chip.L.Pilled.Accent" - }, - { - "name": "l.pilled.secondary", - "composeReference": "Chip.L.Pilled.Secondary" - }, - { - "name": "m.default", - "composeReference": "Chip.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Chip.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "Chip.M.Secondary" - }, - { - "name": "m.pilled.default", - "composeReference": "Chip.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "Chip.M.Pilled.Accent" - }, - { - "name": "m.pilled.secondary", - "composeReference": "Chip.M.Pilled.Secondary" - }, - { - "name": "s.default", - "composeReference": "Chip.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Chip.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "Chip.S.Secondary" - }, - { - "name": "s.pilled.default", - "composeReference": "Chip.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "Chip.S.Pilled.Accent" - }, - { - "name": "s.pilled.secondary", - "composeReference": "Chip.S.Pilled.Secondary" - }, - { - "name": "xs.default", - "composeReference": "Chip.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "Chip.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "Chip.Xs.Secondary" - }, - { - "name": "xs.pilled.default", - "composeReference": "Chip.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "Chip.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "Chip.Xs.Pilled.Secondary" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "EmbeddedChip", - "variations": [ - { - "name": "l.default", - "composeReference": "EmbeddedChip.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChip.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChip.L.Secondary" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChip.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChip.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChip.M.Secondary" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChip.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChip.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChip.S.Secondary" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChip.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChip.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChip.Xs.Secondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupDense", - "variations": [ - { - "name": "l.default", - "composeReference": "ChipGroupDense.L.Default" - }, - { - "name": "l.accent", - "composeReference": "ChipGroupDense.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "ChipGroupDense.L.Secondary" - }, - { - "name": "l.pilled.default", - "composeReference": "ChipGroupDense.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "ChipGroupDense.L.Pilled.Accent" - }, - { - "name": "l.pilled.secondary", - "composeReference": "ChipGroupDense.L.Pilled.Secondary" - }, - { - "name": "m.default", - "composeReference": "ChipGroupDense.M.Default" - }, - { - "name": "m.accent", - "composeReference": "ChipGroupDense.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "ChipGroupDense.M.Secondary" - }, - { - "name": "m.pilled.default", - "composeReference": "ChipGroupDense.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "ChipGroupDense.M.Pilled.Accent" - }, - { - "name": "m.pilled.secondary", - "composeReference": "ChipGroupDense.M.Pilled.Secondary" - }, - { - "name": "s.default", - "composeReference": "ChipGroupDense.S.Default" - }, - { - "name": "s.accent", - "composeReference": "ChipGroupDense.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "ChipGroupDense.S.Secondary" - }, - { - "name": "s.pilled.default", - "composeReference": "ChipGroupDense.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "ChipGroupDense.S.Pilled.Accent" - }, - { - "name": "s.pilled.secondary", - "composeReference": "ChipGroupDense.S.Pilled.Secondary" - }, - { - "name": "xs.default", - "composeReference": "ChipGroupDense.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "ChipGroupDense.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "ChipGroupDense.Xs.Secondary" - }, - { - "name": "xs.pilled.default", - "composeReference": "ChipGroupDense.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "ChipGroupDense.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "ChipGroupDense.Xs.Pilled.Secondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupWide", - "variations": [ - { - "name": "l.default", - "composeReference": "ChipGroupWide.L.Default" - }, - { - "name": "l.accent", - "composeReference": "ChipGroupWide.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "ChipGroupWide.L.Secondary" - }, - { - "name": "l.pilled.default", - "composeReference": "ChipGroupWide.L.Pilled.Default" - }, - { - "name": "l.pilled.accent", - "composeReference": "ChipGroupWide.L.Pilled.Accent" - }, - { - "name": "l.pilled.secondary", - "composeReference": "ChipGroupWide.L.Pilled.Secondary" - }, - { - "name": "m.default", - "composeReference": "ChipGroupWide.M.Default" - }, - { - "name": "m.accent", - "composeReference": "ChipGroupWide.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "ChipGroupWide.M.Secondary" - }, - { - "name": "m.pilled.default", - "composeReference": "ChipGroupWide.M.Pilled.Default" - }, - { - "name": "m.pilled.accent", - "composeReference": "ChipGroupWide.M.Pilled.Accent" - }, - { - "name": "m.pilled.secondary", - "composeReference": "ChipGroupWide.M.Pilled.Secondary" - }, - { - "name": "s.default", - "composeReference": "ChipGroupWide.S.Default" - }, - { - "name": "s.accent", - "composeReference": "ChipGroupWide.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "ChipGroupWide.S.Secondary" - }, - { - "name": "s.pilled.default", - "composeReference": "ChipGroupWide.S.Pilled.Default" - }, - { - "name": "s.pilled.accent", - "composeReference": "ChipGroupWide.S.Pilled.Accent" - }, - { - "name": "s.pilled.secondary", - "composeReference": "ChipGroupWide.S.Pilled.Secondary" - }, - { - "name": "xs.default", - "composeReference": "ChipGroupWide.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "ChipGroupWide.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "ChipGroupWide.Xs.Secondary" - }, - { - "name": "xs.pilled.default", - "composeReference": "ChipGroupWide.Xs.Pilled.Default" - }, - { - "name": "xs.pilled.accent", - "composeReference": "ChipGroupWide.Xs.Pilled.Accent" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "ChipGroupWide.Xs.Pilled.Secondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupDense", - "variations": [ - { - "name": "l.default", - "composeReference": "EmbeddedChipGroupDense.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChipGroupDense.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChipGroupDense.L.Secondary" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChipGroupDense.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChipGroupDense.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChipGroupDense.M.Secondary" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChipGroupDense.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChipGroupDense.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChipGroupDense.S.Secondary" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChipGroupDense.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChipGroupDense.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChipGroupDense.Xs.Secondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupWide", - "variations": [ - { - "name": "l.default", - "composeReference": "EmbeddedChipGroupWide.L.Default" - }, - { - "name": "l.accent", - "composeReference": "EmbeddedChipGroupWide.L.Accent" - }, - { - "name": "l.secondary", - "composeReference": "EmbeddedChipGroupWide.L.Secondary" - }, - { - "name": "m.default", - "composeReference": "EmbeddedChipGroupWide.M.Default" - }, - { - "name": "m.accent", - "composeReference": "EmbeddedChipGroupWide.M.Accent" - }, - { - "name": "m.secondary", - "composeReference": "EmbeddedChipGroupWide.M.Secondary" - }, - { - "name": "s.default", - "composeReference": "EmbeddedChipGroupWide.S.Default" - }, - { - "name": "s.accent", - "composeReference": "EmbeddedChipGroupWide.S.Accent" - }, - { - "name": "s.secondary", - "composeReference": "EmbeddedChipGroupWide.S.Secondary" - }, - { - "name": "xs.default", - "composeReference": "EmbeddedChipGroupWide.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "EmbeddedChipGroupWide.Xs.Accent" - }, - { - "name": "xs.secondary", - "composeReference": "EmbeddedChipGroupWide.Xs.Secondary" - } - ] - }, - { - "key": "counter", - "coreName": "Counter", - "styleName": "Counter", - "variations": [ - { - "name": "l.default", - "composeReference": "Counter.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Counter.L.Accent" - }, - { - "name": "l.positive", - "composeReference": "Counter.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "Counter.L.Warning" - }, - { - "name": "l.negative", - "composeReference": "Counter.L.Negative" - }, - { - "name": "l.black", - "composeReference": "Counter.L.Black" - }, - { - "name": "l.white", - "composeReference": "Counter.L.White" - }, - { - "name": "m.default", - "composeReference": "Counter.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Counter.M.Accent" - }, - { - "name": "m.positive", - "composeReference": "Counter.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "Counter.M.Warning" - }, - { - "name": "m.negative", - "composeReference": "Counter.M.Negative" - }, - { - "name": "m.black", - "composeReference": "Counter.M.Black" - }, - { - "name": "m.white", - "composeReference": "Counter.M.White" - }, - { - "name": "s.default", - "composeReference": "Counter.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Counter.S.Accent" - }, - { - "name": "s.positive", - "composeReference": "Counter.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "Counter.S.Warning" - }, - { - "name": "s.negative", - "composeReference": "Counter.S.Negative" - }, - { - "name": "s.black", - "composeReference": "Counter.S.Black" - }, - { - "name": "s.white", - "composeReference": "Counter.S.White" - }, - { - "name": "xs.default", - "composeReference": "Counter.Xs.Default" - }, - { - "name": "xs.accent", - "composeReference": "Counter.Xs.Accent" - }, - { - "name": "xs.positive", - "composeReference": "Counter.Xs.Positive" - }, - { - "name": "xs.warning", - "composeReference": "Counter.Xs.Warning" - }, - { - "name": "xs.negative", - "composeReference": "Counter.Xs.Negative" - }, - { - "name": "xs.black", - "composeReference": "Counter.Xs.Black" - }, - { - "name": "xs.white", - "composeReference": "Counter.Xs.White" - }, - { - "name": "xxs.default", - "composeReference": "Counter.Xxs.Default" - }, - { - "name": "xxs.accent", - "composeReference": "Counter.Xxs.Accent" - }, - { - "name": "xxs.positive", - "composeReference": "Counter.Xxs.Positive" - }, - { - "name": "xxs.warning", - "composeReference": "Counter.Xxs.Warning" - }, - { - "name": "xxs.negative", - "composeReference": "Counter.Xxs.Negative" - }, - { - "name": "xxs.black", - "composeReference": "Counter.Xxs.Black" - }, - { - "name": "xxs.white", - "composeReference": "Counter.Xxs.White" - } - ] - }, - { - "key": "divider", - "coreName": "Divider", - "styleName": "Divider", - "variations": [ - { - "name": "Default", - "composeReference": "Divider.Default" - } - ] - }, - { - "key": "indicator", - "coreName": "Indicator", - "styleName": "Indicator", - "variations": [ - { - "name": "l.default", - "composeReference": "Indicator.L.Default" - }, - { - "name": "l.accent", - "composeReference": "Indicator.L.Accent" - }, - { - "name": "l.inactive", - "composeReference": "Indicator.L.Inactive" - }, - { - "name": "l.positive", - "composeReference": "Indicator.L.Positive" - }, - { - "name": "l.warning", - "composeReference": "Indicator.L.Warning" - }, - { - "name": "l.negative", - "composeReference": "Indicator.L.Negative" - }, - { - "name": "l.dark", - "composeReference": "Indicator.L.Dark" - }, - { - "name": "l.black", - "composeReference": "Indicator.L.Black" - }, - { - "name": "l.white", - "composeReference": "Indicator.L.White" - }, - { - "name": "m.default", - "composeReference": "Indicator.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Indicator.M.Accent" - }, - { - "name": "m.inactive", - "composeReference": "Indicator.M.Inactive" - }, - { - "name": "m.positive", - "composeReference": "Indicator.M.Positive" - }, - { - "name": "m.warning", - "composeReference": "Indicator.M.Warning" - }, - { - "name": "m.negative", - "composeReference": "Indicator.M.Negative" - }, - { - "name": "m.dark", - "composeReference": "Indicator.M.Dark" - }, - { - "name": "m.black", - "composeReference": "Indicator.M.Black" - }, - { - "name": "m.white", - "composeReference": "Indicator.M.White" - }, - { - "name": "s.default", - "composeReference": "Indicator.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Indicator.S.Accent" - }, - { - "name": "s.inactive", - "composeReference": "Indicator.S.Inactive" - }, - { - "name": "s.positive", - "composeReference": "Indicator.S.Positive" - }, - { - "name": "s.warning", - "composeReference": "Indicator.S.Warning" - }, - { - "name": "s.negative", - "composeReference": "Indicator.S.Negative" - }, - { - "name": "s.dark", - "composeReference": "Indicator.S.Dark" - }, - { - "name": "s.black", - "composeReference": "Indicator.S.Black" - }, - { - "name": "s.white", - "composeReference": "Indicator.S.White" - } - ] - }, - { - "key": "progress-bar", - "coreName": "ProgressBar", - "styleName": "ProgressBar", - "variations": [ - { - "name": "default", - "composeReference": "ProgressBar.Default" - }, - { - "name": "secondary", - "composeReference": "ProgressBar.Secondary" - }, - { - "name": "accent", - "composeReference": "ProgressBar.Accent" - }, - { - "name": "gradient", - "composeReference": "ProgressBar.Gradient" - }, - { - "name": "negative", - "composeReference": "ProgressBar.Negative" - }, - { - "name": "positive", - "composeReference": "ProgressBar.Positive" - }, - { - "name": "warning", - "composeReference": "ProgressBar.Warning" - } - ] - }, - { - "key": "popover", - "coreName": "Popover", - "styleName": "Popover", - "variations": [ - { - "name": "m.default", - "composeReference": "Popover.M.Default" - }, - { - "name": "m.accent", - "composeReference": "Popover.M.Accent" - }, - { - "name": "s.default", - "composeReference": "Popover.S.Default" - }, - { - "name": "s.accent", - "composeReference": "Popover.S.Accent" - } - ] - }, - { - "key": "radio-box", - "coreName": "RadioBox", - "styleName": "RadioBox", - "variations": [ - { - "name": "m", - "composeReference": "RadioBox.M" - }, - { - "name": "s", - "composeReference": "RadioBox.S" - } - ] - }, - { - "key": "radio-box-group", - "coreName": "RadioBoxGroup", - "styleName": "RadioBoxGroup", - "variations": [ - { - "name": "m", - "composeReference": "RadioBoxGroup.M" - }, - { - "name": "s", - "composeReference": "RadioBoxGroup.S" - } - ] - }, - { - "key": "segment", - "coreName": "Segment", - "styleName": "Segment", - "variations": [ - { - "name": "l.primary", - "composeReference": "Segment.L.Primary" - }, - { - "name": "l.secondary", - "composeReference": "Segment.L.Secondary" - }, - { - "name": "l.pilled.primary", - "composeReference": "Segment.L.Pilled.Primary" - }, - { - "name": "l.pilled.secondary", - "composeReference": "Segment.L.Pilled.Secondary" - }, - { - "name": "m.primary", - "composeReference": "Segment.M.Primary" - }, - { - "name": "m.secondary", - "composeReference": "Segment.M.Secondary" - }, - { - "name": "m.pilled.primary", - "composeReference": "Segment.M.Pilled.Primary" - }, - { - "name": "m.pilled.secondary", - "composeReference": "Segment.M.Pilled.Secondary" - }, - { - "name": "s.primary", - "composeReference": "Segment.S.Primary" - }, - { - "name": "s.secondary", - "composeReference": "Segment.S.Secondary" - }, - { - "name": "s.pilled.primary", - "composeReference": "Segment.S.Pilled.Primary" - }, - { - "name": "s.pilled.secondary", - "composeReference": "Segment.S.Pilled.Secondary" - }, - { - "name": "xs.primary", - "composeReference": "Segment.Xs.Primary" - }, - { - "name": "xs.secondary", - "composeReference": "Segment.Xs.Secondary" - }, - { - "name": "xs.pilled.primary", - "composeReference": "Segment.Xs.Pilled.Primary" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "Segment.Xs.Pilled.Secondary" - } - ] - }, - { - "key": "segment-item", - "coreName": "SegmentItem", - "styleName": "SegmentItem", - "variations": [ - { - "name": "l.primary", - "composeReference": "SegmentItem.L.Primary" - }, - { - "name": "l.secondary", - "composeReference": "SegmentItem.L.Secondary" - }, - { - "name": "l.pilled.primary", - "composeReference": "SegmentItem.L.Pilled.Primary" - }, - { - "name": "l.pilled.secondary", - "composeReference": "SegmentItem.L.Pilled.Secondary" - }, - { - "name": "m.primary", - "composeReference": "SegmentItem.M.Primary" - }, - { - "name": "m.secondary", - "composeReference": "SegmentItem.M.Secondary" - }, - { - "name": "m.pilled.primary", - "composeReference": "SegmentItem.M.Pilled.Primary" - }, - { - "name": "m.pilled.secondary", - "composeReference": "SegmentItem.M.Pilled.Secondary" - }, - { - "name": "s.primary", - "composeReference": "SegmentItem.S.Primary" - }, - { - "name": "s.secondary", - "composeReference": "SegmentItem.S.Secondary" - }, - { - "name": "s.pilled.primary", - "composeReference": "SegmentItem.S.Pilled.Primary" - }, - { - "name": "s.pilled.secondary", - "composeReference": "SegmentItem.S.Pilled.Secondary" - }, - { - "name": "xs.primary", - "composeReference": "SegmentItem.Xs.Primary" - }, - { - "name": "xs.secondary", - "composeReference": "SegmentItem.Xs.Secondary" - }, - { - "name": "xs.pilled.primary", - "composeReference": "SegmentItem.Xs.Pilled.Primary" - }, - { - "name": "xs.pilled.secondary", - "composeReference": "SegmentItem.Xs.Pilled.Secondary" - } - ] - }, - { - "key": "switch", - "coreName": "Switch", - "styleName": "Switch", - "variations": [ - { - "name": "l", - "composeReference": "Switch.L" - }, - { - "name": "l.toggle-s", - "composeReference": "Switch.L.ToggleS" - }, - { - "name": "m", - "composeReference": "Switch.M" - }, - { - "name": "m.toggle-s", - "composeReference": "Switch.M.ToggleS" - }, - { - "name": "s", - "composeReference": "Switch.S" - }, - { - "name": "s.toggle-s", - "composeReference": "Switch.S.ToggleS" - } - ] - }, - { - "key": "text-field", - "coreName": "TextField", - "styleName": "TextField", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextField.Xs.Default" - }, - { - "name": "xs.success", - "composeReference": "TextField.Xs.Success" - }, - { - "name": "xs.warning", - "composeReference": "TextField.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextField.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextField.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.success", - "composeReference": "TextField.Xs.RequiredStart.Success" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextField.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextField.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextField.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.success", - "composeReference": "TextField.Xs.RequiredEnd.Success" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextField.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextField.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextField.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.success", - "composeReference": "TextField.Xs.OuterLabel.Success" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextField.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextField.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.success", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Success" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextField.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.success", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextField.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextField.S.Default" - }, - { - "name": "s.success", - "composeReference": "TextField.S.Success" - }, - { - "name": "s.warning", - "composeReference": "TextField.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextField.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextField.S.RequiredStart.Default" - }, - { - "name": "s.required-start.success", - "composeReference": "TextField.S.RequiredStart.Success" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextField.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextField.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextField.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.success", - "composeReference": "TextField.S.RequiredEnd.Success" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextField.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextField.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextField.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.success", - "composeReference": "TextField.S.OuterLabel.Success" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextField.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextField.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.success", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Success" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextField.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.success", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Success" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextField.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextField.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.success", - "composeReference": "TextField.S.InnerLabel.Success" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextField.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextField.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.success", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Success" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextField.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.success", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Success" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextField.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextField.M.Default" - }, - { - "name": "m.success", - "composeReference": "TextField.M.Success" - }, - { - "name": "m.warning", - "composeReference": "TextField.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextField.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextField.M.RequiredStart.Default" - }, - { - "name": "m.required-start.success", - "composeReference": "TextField.M.RequiredStart.Success" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextField.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextField.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextField.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.success", - "composeReference": "TextField.M.RequiredEnd.Success" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextField.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextField.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextField.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.success", - "composeReference": "TextField.M.OuterLabel.Success" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextField.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextField.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.success", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Success" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextField.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.success", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Success" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextField.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextField.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.success", - "composeReference": "TextField.M.InnerLabel.Success" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextField.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextField.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.success", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Success" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextField.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.success", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Success" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextField.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextField.L.Default" - }, - { - "name": "l.success", - "composeReference": "TextField.L.Success" - }, - { - "name": "l.warning", - "composeReference": "TextField.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextField.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextField.L.RequiredStart.Default" - }, - { - "name": "l.required-start.success", - "composeReference": "TextField.L.RequiredStart.Success" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextField.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextField.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextField.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.success", - "composeReference": "TextField.L.RequiredEnd.Success" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextField.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextField.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextField.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.success", - "composeReference": "TextField.L.OuterLabel.Success" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextField.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextField.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.success", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Success" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextField.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.success", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Success" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextField.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextField.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.success", - "composeReference": "TextField.L.InnerLabel.Success" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextField.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextField.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.success", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Success" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextField.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.success", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Success" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextField.L.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-field", - "coreName": "TextField", - "styleName": "TextFieldClear", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextFieldClear.Xs.Default" - }, - { - "name": "xs.success", - "composeReference": "TextFieldClear.Xs.Success" - }, - { - "name": "xs.warning", - "composeReference": "TextFieldClear.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextFieldClear.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextFieldClear.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.success", - "composeReference": "TextFieldClear.Xs.RequiredStart.Success" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextFieldClear.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextFieldClear.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.success", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Success" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextFieldClear.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.Success" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Success" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.success", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Success" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextFieldClear.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextFieldClear.S.Default" - }, - { - "name": "s.success", - "composeReference": "TextFieldClear.S.Success" - }, - { - "name": "s.warning", - "composeReference": "TextFieldClear.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextFieldClear.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextFieldClear.S.RequiredStart.Default" - }, - { - "name": "s.required-start.success", - "composeReference": "TextFieldClear.S.RequiredStart.Success" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextFieldClear.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextFieldClear.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextFieldClear.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.success", - "composeReference": "TextFieldClear.S.RequiredEnd.Success" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextFieldClear.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextFieldClear.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextFieldClear.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.success", - "composeReference": "TextFieldClear.S.OuterLabel.Success" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextFieldClear.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextFieldClear.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.success", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Success" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.success", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Success" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextFieldClear.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextFieldClear.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.success", - "composeReference": "TextFieldClear.S.InnerLabel.Success" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextFieldClear.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextFieldClear.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.success", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Success" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.success", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Success" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextFieldClear.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextFieldClear.M.Default" - }, - { - "name": "m.success", - "composeReference": "TextFieldClear.M.Success" - }, - { - "name": "m.warning", - "composeReference": "TextFieldClear.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextFieldClear.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextFieldClear.M.RequiredStart.Default" - }, - { - "name": "m.required-start.success", - "composeReference": "TextFieldClear.M.RequiredStart.Success" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextFieldClear.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextFieldClear.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextFieldClear.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.success", - "composeReference": "TextFieldClear.M.RequiredEnd.Success" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextFieldClear.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextFieldClear.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextFieldClear.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.success", - "composeReference": "TextFieldClear.M.OuterLabel.Success" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextFieldClear.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextFieldClear.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.success", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Success" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.success", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Success" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextFieldClear.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextFieldClear.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.success", - "composeReference": "TextFieldClear.M.InnerLabel.Success" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextFieldClear.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextFieldClear.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.success", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Success" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.success", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Success" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextFieldClear.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextFieldClear.L.Default" - }, - { - "name": "l.success", - "composeReference": "TextFieldClear.L.Success" - }, - { - "name": "l.warning", - "composeReference": "TextFieldClear.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextFieldClear.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextFieldClear.L.RequiredStart.Default" - }, - { - "name": "l.required-start.success", - "composeReference": "TextFieldClear.L.RequiredStart.Success" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextFieldClear.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextFieldClear.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextFieldClear.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.success", - "composeReference": "TextFieldClear.L.RequiredEnd.Success" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextFieldClear.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextFieldClear.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextFieldClear.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.success", - "composeReference": "TextFieldClear.L.OuterLabel.Success" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextFieldClear.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextFieldClear.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.success", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Success" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.success", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Success" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextFieldClear.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextFieldClear.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.success", - "composeReference": "TextFieldClear.L.InnerLabel.Success" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextFieldClear.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextFieldClear.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.success", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Success" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.success", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Success" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextFieldClear.L.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-area", - "coreName": "TextArea", - "styleName": "TextArea", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextArea.Xs.Default" - }, - { - "name": "xs.warning", - "composeReference": "TextArea.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextArea.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextArea.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextArea.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextArea.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextArea.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextArea.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextArea.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextArea.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextArea.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextArea.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextArea.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextArea.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextArea.S.Default" - }, - { - "name": "s.warning", - "composeReference": "TextArea.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextArea.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextArea.S.RequiredStart.Default" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextArea.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextArea.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextArea.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextArea.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextArea.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextArea.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextArea.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextArea.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextArea.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextArea.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextArea.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextArea.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextArea.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextArea.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextArea.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextArea.M.Default" - }, - { - "name": "m.warning", - "composeReference": "TextArea.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextArea.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextArea.M.RequiredStart.Default" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextArea.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextArea.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextArea.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextArea.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextArea.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextArea.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextArea.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextArea.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextArea.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextArea.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextArea.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextArea.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextArea.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextArea.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextArea.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextArea.L.Default" - }, - { - "name": "l.warning", - "composeReference": "TextArea.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextArea.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextArea.L.RequiredStart.Default" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextArea.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextArea.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextArea.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextArea.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextArea.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextArea.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextArea.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextArea.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextArea.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextArea.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextArea.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextArea.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextArea.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextArea.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextArea.L.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "text-area", - "coreName": "TextArea", - "styleName": "TextAreaClear", - "variations": [ - { - "name": "xs.default", - "composeReference": "TextAreaClear.Xs.Default" - }, - { - "name": "xs.warning", - "composeReference": "TextAreaClear.Xs.Warning" - }, - { - "name": "xs.error", - "composeReference": "TextAreaClear.Xs.Error" - }, - { - "name": "xs.required-start.default", - "composeReference": "TextAreaClear.Xs.RequiredStart.Default" - }, - { - "name": "xs.required-start.warning", - "composeReference": "TextAreaClear.Xs.RequiredStart.Warning" - }, - { - "name": "xs.required-start.error", - "composeReference": "TextAreaClear.Xs.RequiredStart.Error" - }, - { - "name": "xs.required-end.default", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Default" - }, - { - "name": "xs.required-end.warning", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Warning" - }, - { - "name": "xs.required-end.error", - "composeReference": "TextAreaClear.Xs.RequiredEnd.Error" - }, - { - "name": "xs.outer-label.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.Default" - }, - { - "name": "xs.outer-label.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.Warning" - }, - { - "name": "xs.outer-label.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.Error" - }, - { - "name": "xs.outer-label.required-start.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Default" - }, - { - "name": "xs.outer-label.required-start.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Warning" - }, - { - "name": "xs.outer-label.required-start.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredStart.Error" - }, - { - "name": "xs.outer-label.required-end.default", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Default" - }, - { - "name": "xs.outer-label.required-end.warning", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "xs.outer-label.required-end.error", - "composeReference": "TextAreaClear.Xs.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.default", - "composeReference": "TextAreaClear.S.Default" - }, - { - "name": "s.warning", - "composeReference": "TextAreaClear.S.Warning" - }, - { - "name": "s.error", - "composeReference": "TextAreaClear.S.Error" - }, - { - "name": "s.required-start.default", - "composeReference": "TextAreaClear.S.RequiredStart.Default" - }, - { - "name": "s.required-start.warning", - "composeReference": "TextAreaClear.S.RequiredStart.Warning" - }, - { - "name": "s.required-start.error", - "composeReference": "TextAreaClear.S.RequiredStart.Error" - }, - { - "name": "s.required-end.default", - "composeReference": "TextAreaClear.S.RequiredEnd.Default" - }, - { - "name": "s.required-end.warning", - "composeReference": "TextAreaClear.S.RequiredEnd.Warning" - }, - { - "name": "s.required-end.error", - "composeReference": "TextAreaClear.S.RequiredEnd.Error" - }, - { - "name": "s.outer-label.default", - "composeReference": "TextAreaClear.S.OuterLabel.Default" - }, - { - "name": "s.outer-label.warning", - "composeReference": "TextAreaClear.S.OuterLabel.Warning" - }, - { - "name": "s.outer-label.error", - "composeReference": "TextAreaClear.S.OuterLabel.Error" - }, - { - "name": "s.outer-label.required-start.default", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Default" - }, - { - "name": "s.outer-label.required-start.warning", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Warning" - }, - { - "name": "s.outer-label.required-start.error", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredStart.Error" - }, - { - "name": "s.outer-label.required-end.default", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Default" - }, - { - "name": "s.outer-label.required-end.warning", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "s.outer-label.required-end.error", - "composeReference": "TextAreaClear.S.OuterLabel.RequiredEnd.Error" - }, - { - "name": "s.inner-label.default", - "composeReference": "TextAreaClear.S.InnerLabel.Default" - }, - { - "name": "s.inner-label.warning", - "composeReference": "TextAreaClear.S.InnerLabel.Warning" - }, - { - "name": "s.inner-label.error", - "composeReference": "TextAreaClear.S.InnerLabel.Error" - }, - { - "name": "s.inner-label.required-start.default", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Default" - }, - { - "name": "s.inner-label.required-start.warning", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Warning" - }, - { - "name": "s.inner-label.required-start.error", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredStart.Error" - }, - { - "name": "s.inner-label.required-end.default", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Default" - }, - { - "name": "s.inner-label.required-end.warning", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "s.inner-label.required-end.error", - "composeReference": "TextAreaClear.S.InnerLabel.RequiredEnd.Error" - }, - { - "name": "m.default", - "composeReference": "TextAreaClear.M.Default" - }, - { - "name": "m.warning", - "composeReference": "TextAreaClear.M.Warning" - }, - { - "name": "m.error", - "composeReference": "TextAreaClear.M.Error" - }, - { - "name": "m.required-start.default", - "composeReference": "TextAreaClear.M.RequiredStart.Default" - }, - { - "name": "m.required-start.warning", - "composeReference": "TextAreaClear.M.RequiredStart.Warning" - }, - { - "name": "m.required-start.error", - "composeReference": "TextAreaClear.M.RequiredStart.Error" - }, - { - "name": "m.required-end.default", - "composeReference": "TextAreaClear.M.RequiredEnd.Default" - }, - { - "name": "m.required-end.warning", - "composeReference": "TextAreaClear.M.RequiredEnd.Warning" - }, - { - "name": "m.required-end.error", - "composeReference": "TextAreaClear.M.RequiredEnd.Error" - }, - { - "name": "m.outer-label.default", - "composeReference": "TextAreaClear.M.OuterLabel.Default" - }, - { - "name": "m.outer-label.warning", - "composeReference": "TextAreaClear.M.OuterLabel.Warning" - }, - { - "name": "m.outer-label.error", - "composeReference": "TextAreaClear.M.OuterLabel.Error" - }, - { - "name": "m.outer-label.required-start.default", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Default" - }, - { - "name": "m.outer-label.required-start.warning", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Warning" - }, - { - "name": "m.outer-label.required-start.error", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredStart.Error" - }, - { - "name": "m.outer-label.required-end.default", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Default" - }, - { - "name": "m.outer-label.required-end.warning", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "m.outer-label.required-end.error", - "composeReference": "TextAreaClear.M.OuterLabel.RequiredEnd.Error" - }, - { - "name": "m.inner-label.default", - "composeReference": "TextAreaClear.M.InnerLabel.Default" - }, - { - "name": "m.inner-label.warning", - "composeReference": "TextAreaClear.M.InnerLabel.Warning" - }, - { - "name": "m.inner-label.error", - "composeReference": "TextAreaClear.M.InnerLabel.Error" - }, - { - "name": "m.inner-label.required-start.default", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Default" - }, - { - "name": "m.inner-label.required-start.warning", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Warning" - }, - { - "name": "m.inner-label.required-start.error", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredStart.Error" - }, - { - "name": "m.inner-label.required-end.default", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Default" - }, - { - "name": "m.inner-label.required-end.warning", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "m.inner-label.required-end.error", - "composeReference": "TextAreaClear.M.InnerLabel.RequiredEnd.Error" - }, - { - "name": "l.default", - "composeReference": "TextAreaClear.L.Default" - }, - { - "name": "l.warning", - "composeReference": "TextAreaClear.L.Warning" - }, - { - "name": "l.error", - "composeReference": "TextAreaClear.L.Error" - }, - { - "name": "l.required-start.default", - "composeReference": "TextAreaClear.L.RequiredStart.Default" - }, - { - "name": "l.required-start.warning", - "composeReference": "TextAreaClear.L.RequiredStart.Warning" - }, - { - "name": "l.required-start.error", - "composeReference": "TextAreaClear.L.RequiredStart.Error" - }, - { - "name": "l.required-end.default", - "composeReference": "TextAreaClear.L.RequiredEnd.Default" - }, - { - "name": "l.required-end.warning", - "composeReference": "TextAreaClear.L.RequiredEnd.Warning" - }, - { - "name": "l.required-end.error", - "composeReference": "TextAreaClear.L.RequiredEnd.Error" - }, - { - "name": "l.outer-label.default", - "composeReference": "TextAreaClear.L.OuterLabel.Default" - }, - { - "name": "l.outer-label.warning", - "composeReference": "TextAreaClear.L.OuterLabel.Warning" - }, - { - "name": "l.outer-label.error", - "composeReference": "TextAreaClear.L.OuterLabel.Error" - }, - { - "name": "l.outer-label.required-start.default", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Default" - }, - { - "name": "l.outer-label.required-start.warning", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Warning" - }, - { - "name": "l.outer-label.required-start.error", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredStart.Error" - }, - { - "name": "l.outer-label.required-end.default", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Default" - }, - { - "name": "l.outer-label.required-end.warning", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Warning" - }, - { - "name": "l.outer-label.required-end.error", - "composeReference": "TextAreaClear.L.OuterLabel.RequiredEnd.Error" - }, - { - "name": "l.inner-label.default", - "composeReference": "TextAreaClear.L.InnerLabel.Default" - }, - { - "name": "l.inner-label.warning", - "composeReference": "TextAreaClear.L.InnerLabel.Warning" - }, - { - "name": "l.inner-label.error", - "composeReference": "TextAreaClear.L.InnerLabel.Error" - }, - { - "name": "l.inner-label.required-start.default", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Default" - }, - { - "name": "l.inner-label.required-start.warning", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Warning" - }, - { - "name": "l.inner-label.required-start.error", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredStart.Error" - }, - { - "name": "l.inner-label.required-end.default", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Default" - }, - { - "name": "l.inner-label.required-end.warning", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Warning" - }, - { - "name": "l.inner-label.required-end.error", - "composeReference": "TextAreaClear.L.InnerLabel.RequiredEnd.Error" - } - ] - }, - { - "key": "tooltip", - "coreName": "Tooltip", - "styleName": "Tooltip", - "variations": [ - { - "name": "m", - "composeReference": "Tooltip.M" - }, - { - "name": "s", - "composeReference": "Tooltip.S" - } - ] - }, - { - "key": "toast", - "coreName": "Toast", - "styleName": "Toast", - "variations": [ - { - "name": "rounded", - "composeReference": "Toast.Rounded" - }, - { - "name": "pilled", - "composeReference": "Toast.Pilled" - } - ] - }, - { - "key": "modal", - "coreName": "Modal", - "styleName": "Modal", - "variations": [ - { - "name": "Default", - "composeReference": "Modal.Default" - } - ] - }, - { - "key": "rect-skeleton", - "coreName": "RectSkeleton", - "styleName": "RectSkeleton", - "variations": [ - { - "name": "default", - "composeReference": "RectSkeleton.Default" - }, - { - "name": "lighter", - "composeReference": "RectSkeleton.Lighter" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationCompact", - "variations": [ - { - "name": "l", - "composeReference": "NotificationCompact.L" - }, - { - "name": "m", - "composeReference": "NotificationCompact.M" - }, - { - "name": "s", - "composeReference": "NotificationCompact.S" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationLoose", - "variations": [ - { - "name": "l", - "composeReference": "NotificationLoose.L" - }, - { - "name": "m", - "composeReference": "NotificationLoose.M" - }, - { - "name": "s", - "composeReference": "NotificationLoose.S" - } - ] - }, - { - "key": "notification-content", - "coreName": "NotificationContent", - "styleName": "NotificationContent", - "variations": [ - { - "name": "button-stretch.default", - "composeReference": "NotificationContent.ButtonStretch.Default" - }, - { - "name": "button-stretch.positive", - "composeReference": "NotificationContent.ButtonStretch.Positive" - }, - { - "name": "button-stretch.negative", - "composeReference": "NotificationContent.ButtonStretch.Negative" - }, - { - "name": "button-stretch.warning", - "composeReference": "NotificationContent.ButtonStretch.Warning" - }, - { - "name": "button-stretch.info", - "composeReference": "NotificationContent.ButtonStretch.Info" - }, - { - "name": "button-stretch.icon-top.default", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Default" - }, - { - "name": "button-stretch.icon-top.positive", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Positive" - }, - { - "name": "button-stretch.icon-top.negative", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Negative" - }, - { - "name": "button-stretch.icon-top.warning", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Warning" - }, - { - "name": "button-stretch.icon-top.info", - "composeReference": "NotificationContent.ButtonStretch.IconTop.Info" - }, - { - "name": "button-stretch.icon-start.default", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Default" - }, - { - "name": "button-stretch.icon-start.positive", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Positive" - }, - { - "name": "button-stretch.icon-start.negative", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Negative" - }, - { - "name": "button-stretch.icon-start.warning", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Warning" - }, - { - "name": "button-stretch.icon-start.info", - "composeReference": "NotificationContent.ButtonStretch.IconStart.Info" - }, - { - "name": "no-button-stretch.default", - "composeReference": "NotificationContent.NoButtonStretch.Default" - }, - { - "name": "no-button-stretch.positive", - "composeReference": "NotificationContent.NoButtonStretch.Positive" - }, - { - "name": "no-button-stretch.negative", - "composeReference": "NotificationContent.NoButtonStretch.Negative" - }, - { - "name": "no-button-stretch.warning", - "composeReference": "NotificationContent.NoButtonStretch.Warning" - }, - { - "name": "no-button-stretch.info", - "composeReference": "NotificationContent.NoButtonStretch.Info" - }, - { - "name": "no-button-stretch.icon-top.default", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Default" - }, - { - "name": "no-button-stretch.icon-top.positive", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Positive" - }, - { - "name": "no-button-stretch.icon-top.negative", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Negative" - }, - { - "name": "no-button-stretch.icon-top.warning", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Warning" - }, - { - "name": "no-button-stretch.icon-top.info", - "composeReference": "NotificationContent.NoButtonStretch.IconTop.Info" - }, - { - "name": "no-button-stretch.icon-start.default", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Default" - }, - { - "name": "no-button-stretch.icon-start.positive", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Positive" - }, - { - "name": "no-button-stretch.icon-start.negative", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Negative" - }, - { - "name": "no-button-stretch.icon-start.warning", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Warning" - }, - { - "name": "no-button-stretch.icon-start.info", - "composeReference": "NotificationContent.NoButtonStretch.IconStart.Info" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "ListNormal", - "variations": [ - { - "name": "xl", - "composeReference": "ListNormal.Xl" - }, - { - "name": "l", - "composeReference": "ListNormal.L" - }, - { - "name": "m", - "composeReference": "ListNormal.M" - }, - { - "name": "s", - "composeReference": "ListNormal.S" - }, - { - "name": "xs", - "composeReference": "ListNormal.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "ListItemNormal", - "variations": [ - { - "name": "xl", - "composeReference": "ListItemNormal.Xl" - }, - { - "name": "l", - "composeReference": "ListItemNormal.L" - }, - { - "name": "m", - "composeReference": "ListItemNormal.M" - }, - { - "name": "s", - "composeReference": "ListItemNormal.S" - }, - { - "name": "xs", - "composeReference": "ListItemNormal.Xs" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "ListTight", - "variations": [ - { - "name": "xl", - "composeReference": "ListTight.Xl" - }, - { - "name": "l", - "composeReference": "ListTight.L" - }, - { - "name": "m", - "composeReference": "ListTight.M" - }, - { - "name": "s", - "composeReference": "ListTight.S" - }, - { - "name": "xs", - "composeReference": "ListTight.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "ListItemTight", - "variations": [ - { - "name": "xl", - "composeReference": "ListItemTight.Xl" - }, - { - "name": "l", - "composeReference": "ListItemTight.L" - }, - { - "name": "m", - "composeReference": "ListItemTight.M" - }, - { - "name": "s", - "composeReference": "ListItemTight.S" - }, - { - "name": "xs", - "composeReference": "ListItemTight.Xs" - } - ] - }, - { - "key": "text-skeleton", - "coreName": "TextSkeleton", - "styleName": "TextSkeleton", - "variations": [ - { - "name": "default", - "composeReference": "TextSkeleton.Default" - }, - { - "name": "lighter", - "composeReference": "TextSkeleton.Lighter" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "DropdownMenuListNormal", - "variations": [ - { - "name": "l", - "composeReference": "DropdownMenuListNormal.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuListNormal.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuListNormal.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuListNormal.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "DropdownMenuItemNormal", - "variations": [ - { - "name": "l.default", - "composeReference": "DropdownMenuItemNormal.L.Default" - }, - { - "name": "l.positive", - "composeReference": "DropdownMenuItemNormal.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "DropdownMenuItemNormal.L.Negative" - }, - { - "name": "m.default", - "composeReference": "DropdownMenuItemNormal.M.Default" - }, - { - "name": "m.positive", - "composeReference": "DropdownMenuItemNormal.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "DropdownMenuItemNormal.M.Negative" - }, - { - "name": "s.default", - "composeReference": "DropdownMenuItemNormal.S.Default" - }, - { - "name": "s.positive", - "composeReference": "DropdownMenuItemNormal.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "DropdownMenuItemNormal.S.Negative" - }, - { - "name": "xs.default", - "composeReference": "DropdownMenuItemNormal.Xs.Default" - }, - { - "name": "xs.positive", - "composeReference": "DropdownMenuItemNormal.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "DropdownMenuItemNormal.Xs.Negative" - } - ] - }, - { - "key": "list", - "coreName": "List", - "styleName": "DropdownMenuListTight", - "variations": [ - { - "name": "l", - "composeReference": "DropdownMenuListTight.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuListTight.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuListTight.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuListTight.Xs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItem", - "styleName": "DropdownMenuItemTight", - "variations": [ - { - "name": "l.default", - "composeReference": "DropdownMenuItemTight.L.Default" - }, - { - "name": "l.positive", - "composeReference": "DropdownMenuItemTight.L.Positive" - }, - { - "name": "l.negative", - "composeReference": "DropdownMenuItemTight.L.Negative" - }, - { - "name": "m.default", - "composeReference": "DropdownMenuItemTight.M.Default" - }, - { - "name": "m.positive", - "composeReference": "DropdownMenuItemTight.M.Positive" - }, - { - "name": "m.negative", - "composeReference": "DropdownMenuItemTight.M.Negative" - }, - { - "name": "s.default", - "composeReference": "DropdownMenuItemTight.S.Default" - }, - { - "name": "s.positive", - "composeReference": "DropdownMenuItemTight.S.Positive" - }, - { - "name": "s.negative", - "composeReference": "DropdownMenuItemTight.S.Negative" - }, - { - "name": "xs.default", - "composeReference": "DropdownMenuItemTight.Xs.Default" - }, - { - "name": "xs.positive", - "composeReference": "DropdownMenuItemTight.Xs.Positive" - }, - { - "name": "xs.negative", - "composeReference": "DropdownMenuItemTight.Xs.Negative" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuTight", - "variations": [ - { - "name": "l", - "composeReference": "DropdownMenuTight.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuTight.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuTight.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuTight.Xs" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuNormal", - "variations": [ - { - "name": "l", - "composeReference": "DropdownMenuNormal.L" - }, - { - "name": "m", - "composeReference": "DropdownMenuNormal.M" - }, - { - "name": "s", - "composeReference": "DropdownMenuNormal.S" - }, - { - "name": "xs", - "composeReference": "DropdownMenuNormal.Xs" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemSolidActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemSolidActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemSolidActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionItemSolidActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionItemSolidActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemSolidActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemSolidActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemSolidActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemSolidActionStart.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemSolidActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemSolidActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemSolidActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionItemSolidActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionItemSolidActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemSolidActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemSolidActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemSolidActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemSolidActionEnd.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemClearActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemClearActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemClearActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionItemClearActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionItemClearActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemClearActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemClearActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemClearActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemClearActionStart.H5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItem", - "styleName": "AccordionItemClearActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionItemClearActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionItemClearActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionItemClearActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionItemClearActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionItemClearActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionItemClearActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionItemClearActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionItemClearActionEnd.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionSolidActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionSolidActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionSolidActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionSolidActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionSolidActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionSolidActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionSolidActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionSolidActionStart.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionSolidActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionSolidActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionSolidActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionSolidActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionSolidActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionSolidActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionSolidActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionSolidActionEnd.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionStart", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionClearActionStart.Xs" - }, - { - "name": "s", - "composeReference": "AccordionClearActionStart.S" - }, - { - "name": "m", - "composeReference": "AccordionClearActionStart.M" - }, - { - "name": "l", - "composeReference": "AccordionClearActionStart.L" - }, - { - "name": "h2", - "composeReference": "AccordionClearActionStart.H2" - }, - { - "name": "h3", - "composeReference": "AccordionClearActionStart.H3" - }, - { - "name": "h4", - "composeReference": "AccordionClearActionStart.H4" - }, - { - "name": "h5", - "composeReference": "AccordionClearActionStart.H5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionEnd", - "variations": [ - { - "name": "xs", - "composeReference": "AccordionClearActionEnd.Xs" - }, - { - "name": "s", - "composeReference": "AccordionClearActionEnd.S" - }, - { - "name": "m", - "composeReference": "AccordionClearActionEnd.M" - }, - { - "name": "l", - "composeReference": "AccordionClearActionEnd.L" - }, - { - "name": "h2", - "composeReference": "AccordionClearActionEnd.H2" - }, - { - "name": "h3", - "composeReference": "AccordionClearActionEnd.H3" - }, - { - "name": "h4", - "composeReference": "AccordionClearActionEnd.H4" - }, - { - "name": "h5", - "composeReference": "AccordionClearActionEnd.H5" - } - ] - }, - { - "key": "scroll-bar", - "coreName": "ScrollBar", - "styleName": "ScrollBar", - "variations": [ - { - "name": "s", - "composeReference": "ScrollBar.S" - }, - { - "name": "m", - "composeReference": "ScrollBar.M" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "BasicButtonGroup", - "variations": [ - { - "name": "xs", - "composeReference": "BasicButtonGroup.Xs" - }, - { - "name": "xs.wide", - "composeReference": "BasicButtonGroup.Xs.Wide" - }, - { - "name": "xs.wide.default", - "composeReference": "BasicButtonGroup.Xs.Wide.Default" - }, - { - "name": "xs.wide.segmented", - "composeReference": "BasicButtonGroup.Xs.Wide.Segmented" - }, - { - "name": "xs.dense", - "composeReference": "BasicButtonGroup.Xs.Dense" - }, - { - "name": "xs.dense.default", - "composeReference": "BasicButtonGroup.Xs.Dense.Default" - }, - { - "name": "xs.dense.segmented", - "composeReference": "BasicButtonGroup.Xs.Dense.Segmented" - }, - { - "name": "xs.no-gap", - "composeReference": "BasicButtonGroup.Xs.NoGap" - }, - { - "name": "xs.no-gap.default", - "composeReference": "BasicButtonGroup.Xs.NoGap.Default" - }, - { - "name": "xs.no-gap.segmented", - "composeReference": "BasicButtonGroup.Xs.NoGap.Segmented" - }, - { - "name": "s", - "composeReference": "BasicButtonGroup.S" - }, - { - "name": "s.wide", - "composeReference": "BasicButtonGroup.S.Wide" - }, - { - "name": "s.wide.default", - "composeReference": "BasicButtonGroup.S.Wide.Default" - }, - { - "name": "s.wide.segmented", - "composeReference": "BasicButtonGroup.S.Wide.Segmented" - }, - { - "name": "s.dense", - "composeReference": "BasicButtonGroup.S.Dense" - }, - { - "name": "s.dense.default", - "composeReference": "BasicButtonGroup.S.Dense.Default" - }, - { - "name": "s.dense.segmented", - "composeReference": "BasicButtonGroup.S.Dense.Segmented" - }, - { - "name": "s.no-gap", - "composeReference": "BasicButtonGroup.S.NoGap" - }, - { - "name": "s.no-gap.default", - "composeReference": "BasicButtonGroup.S.NoGap.Default" - }, - { - "name": "s.no-gap.segmented", - "composeReference": "BasicButtonGroup.S.NoGap.Segmented" - }, - { - "name": "m", - "composeReference": "BasicButtonGroup.M" - }, - { - "name": "m.wide", - "composeReference": "BasicButtonGroup.M.Wide" - }, - { - "name": "m.wide.default", - "composeReference": "BasicButtonGroup.M.Wide.Default" - }, - { - "name": "m.wide.segmented", - "composeReference": "BasicButtonGroup.M.Wide.Segmented" - }, - { - "name": "m.dense", - "composeReference": "BasicButtonGroup.M.Dense" - }, - { - "name": "m.dense.default", - "composeReference": "BasicButtonGroup.M.Dense.Default" - }, - { - "name": "m.dense.segmented", - "composeReference": "BasicButtonGroup.M.Dense.Segmented" - }, - { - "name": "m.no-gap", - "composeReference": "BasicButtonGroup.M.NoGap" - }, - { - "name": "m.no-gap.default", - "composeReference": "BasicButtonGroup.M.NoGap.Default" - }, - { - "name": "m.no-gap.segmented", - "composeReference": "BasicButtonGroup.M.NoGap.Segmented" - }, - { - "name": "l", - "composeReference": "BasicButtonGroup.L" - }, - { - "name": "l.wide", - "composeReference": "BasicButtonGroup.L.Wide" - }, - { - "name": "l.wide.default", - "composeReference": "BasicButtonGroup.L.Wide.Default" - }, - { - "name": "l.wide.segmented", - "composeReference": "BasicButtonGroup.L.Wide.Segmented" - }, - { - "name": "l.dense", - "composeReference": "BasicButtonGroup.L.Dense" - }, - { - "name": "l.dense.default", - "composeReference": "BasicButtonGroup.L.Dense.Default" - }, - { - "name": "l.dense.segmented", - "composeReference": "BasicButtonGroup.L.Dense.Segmented" - }, - { - "name": "l.no-gap", - "composeReference": "BasicButtonGroup.L.NoGap" - }, - { - "name": "l.no-gap.default", - "composeReference": "BasicButtonGroup.L.NoGap.Default" - }, - { - "name": "l.no-gap.segmented", - "composeReference": "BasicButtonGroup.L.NoGap.Segmented" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "IconButtonGroup", - "variations": [ - { - "name": "xs", - "composeReference": "IconButtonGroup.Xs" - }, - { - "name": "xs.wide", - "composeReference": "IconButtonGroup.Xs.Wide" - }, - { - "name": "xs.wide.default", - "composeReference": "IconButtonGroup.Xs.Wide.Default" - }, - { - "name": "xs.wide.pilled", - "composeReference": "IconButtonGroup.Xs.Wide.Pilled" - }, - { - "name": "xs.wide.segmented", - "composeReference": "IconButtonGroup.Xs.Wide.Segmented" - }, - { - "name": "xs.dense", - "composeReference": "IconButtonGroup.Xs.Dense" - }, - { - "name": "xs.dense.default", - "composeReference": "IconButtonGroup.Xs.Dense.Default" - }, - { - "name": "xs.dense.pilled", - "composeReference": "IconButtonGroup.Xs.Dense.Pilled" - }, - { - "name": "xs.dense.segmented", - "composeReference": "IconButtonGroup.Xs.Dense.Segmented" - }, - { - "name": "xs.no-gap", - "composeReference": "IconButtonGroup.Xs.NoGap" - }, - { - "name": "xs.no-gap.default", - "composeReference": "IconButtonGroup.Xs.NoGap.Default" - }, - { - "name": "xs.no-gap.pilled", - "composeReference": "IconButtonGroup.Xs.NoGap.Pilled" - }, - { - "name": "xs.no-gap.segmented", - "composeReference": "IconButtonGroup.Xs.NoGap.Segmented" - }, - { - "name": "s", - "composeReference": "IconButtonGroup.S" - }, - { - "name": "s.wide", - "composeReference": "IconButtonGroup.S.Wide" - }, - { - "name": "s.wide.default", - "composeReference": "IconButtonGroup.S.Wide.Default" - }, - { - "name": "s.wide.pilled", - "composeReference": "IconButtonGroup.S.Wide.Pilled" - }, - { - "name": "s.wide.segmented", - "composeReference": "IconButtonGroup.S.Wide.Segmented" - }, - { - "name": "s.dense", - "composeReference": "IconButtonGroup.S.Dense" - }, - { - "name": "s.dense.default", - "composeReference": "IconButtonGroup.S.Dense.Default" - }, - { - "name": "s.dense.pilled", - "composeReference": "IconButtonGroup.S.Dense.Pilled" - }, - { - "name": "s.dense.segmented", - "composeReference": "IconButtonGroup.S.Dense.Segmented" - }, - { - "name": "s.no-gap", - "composeReference": "IconButtonGroup.S.NoGap" - }, - { - "name": "s.no-gap.default", - "composeReference": "IconButtonGroup.S.NoGap.Default" - }, - { - "name": "s.no-gap.pilled", - "composeReference": "IconButtonGroup.S.NoGap.Pilled" - }, - { - "name": "s.no-gap.segmented", - "composeReference": "IconButtonGroup.S.NoGap.Segmented" - }, - { - "name": "m", - "composeReference": "IconButtonGroup.M" - }, - { - "name": "m.wide", - "composeReference": "IconButtonGroup.M.Wide" - }, - { - "name": "m.wide.default", - "composeReference": "IconButtonGroup.M.Wide.Default" - }, - { - "name": "m.wide.pilled", - "composeReference": "IconButtonGroup.M.Wide.Pilled" - }, - { - "name": "m.wide.segmented", - "composeReference": "IconButtonGroup.M.Wide.Segmented" - }, - { - "name": "m.dense", - "composeReference": "IconButtonGroup.M.Dense" - }, - { - "name": "m.dense.default", - "composeReference": "IconButtonGroup.M.Dense.Default" - }, - { - "name": "m.dense.pilled", - "composeReference": "IconButtonGroup.M.Dense.Pilled" - }, - { - "name": "m.dense.segmented", - "composeReference": "IconButtonGroup.M.Dense.Segmented" - }, - { - "name": "m.no-gap", - "composeReference": "IconButtonGroup.M.NoGap" - }, - { - "name": "m.no-gap.default", - "composeReference": "IconButtonGroup.M.NoGap.Default" - }, - { - "name": "m.no-gap.pilled", - "composeReference": "IconButtonGroup.M.NoGap.Pilled" - }, - { - "name": "m.no-gap.segmented", - "composeReference": "IconButtonGroup.M.NoGap.Segmented" - }, - { - "name": "l", - "composeReference": "IconButtonGroup.L" - }, - { - "name": "l.wide", - "composeReference": "IconButtonGroup.L.Wide" - }, - { - "name": "l.wide.default", - "composeReference": "IconButtonGroup.L.Wide.Default" - }, - { - "name": "l.wide.pilled", - "composeReference": "IconButtonGroup.L.Wide.Pilled" - }, - { - "name": "l.wide.segmented", - "composeReference": "IconButtonGroup.L.Wide.Segmented" - }, - { - "name": "l.dense", - "composeReference": "IconButtonGroup.L.Dense" - }, - { - "name": "l.dense.default", - "composeReference": "IconButtonGroup.L.Dense.Default" - }, - { - "name": "l.dense.pilled", - "composeReference": "IconButtonGroup.L.Dense.Pilled" - }, - { - "name": "l.dense.segmented", - "composeReference": "IconButtonGroup.L.Dense.Segmented" - }, - { - "name": "l.no-gap", - "composeReference": "IconButtonGroup.L.NoGap" - }, - { - "name": "l.no-gap.default", - "composeReference": "IconButtonGroup.L.NoGap.Default" - }, - { - "name": "l.no-gap.pilled", - "composeReference": "IconButtonGroup.L.NoGap.Pilled" - }, - { - "name": "l.no-gap.segmented", - "composeReference": "IconButtonGroup.L.NoGap.Segmented" - } - ] - }, - { - "key": "code-input", - "coreName": "CodeInput", - "styleName": "CodeInput", - "variations": [ - { - "name": "s", - "composeReference": "CodeInput.S" - }, - { - "name": "m", - "composeReference": "CodeInput.M" - }, - { - "name": "l", - "composeReference": "CodeInput.L" - } - ] - } - ] -} \ No newline at end of file diff --git a/tokens/stylessalute.compose/docs/build.gradle.kts b/tokens/stylessalute.compose/docs/build.gradle.kts deleted file mode 100644 index e51fa77548..0000000000 --- a/tokens/stylessalute.compose/docs/build.gradle.kts +++ /dev/null @@ -1,16 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.documentation-compose") - id("convention.testing-compose") - alias(libs.plugins.roborazzi) -} - -android { - namespace = "com.sdds.stylessalute.compose.docs" -} - -dependencies { - implementation(project(":stylessalute.compose")) - implementation(libs.sdds.uikit.compose) - implementation(libs.base.androidX.compose.foundation) -} diff --git a/tokens/stylessalute.compose/docs/gradle.properties b/tokens/stylessalute.compose/docs/gradle.properties deleted file mode 100644 index 4772f85dab..0000000000 --- a/tokens/stylessalute.compose/docs/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -docs-theme-name=Plasma Salute Service -docs-theme-codeReference=StylesSaluteTheme -docs-theme-prefix=StylesSalute \ No newline at end of file diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_accordion_Accordion_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_accordion_Accordion_Simple.png deleted file mode 100644 index 34a34f032e..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_accordion_Accordion_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_autocomplete_Autocomplete_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_autocomplete_Autocomplete_Simple.png deleted file mode 100644 index c71d594b49..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_autocomplete_Autocomplete_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_ActionDisabled.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_ActionDisabled.png deleted file mode 100644 index 693a5e24e9..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_ActionDisabled.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Extra.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Extra.png deleted file mode 100644 index 34308ae790..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Extra.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Simple.png deleted file mode 100644 index 693a5e24e9..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_Avatar_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_group_AvatarGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_group_AvatarGroup_Simple.png deleted file mode 100644 index 98b19d4757..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_avatar_group_AvatarGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_Simple.png deleted file mode 100644 index 15704213a3..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_WithoutLabel.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_WithoutLabel.png deleted file mode 100644 index 6ca6192f8f..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_Badge_WithoutLabel.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_IconBadge_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_IconBadge_Simple.png deleted file mode 100644 index 06a6506b86..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_badge_IconBadge_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Insets.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Insets.png deleted file mode 100644 index cf21307b68..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Insets.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Simple.png deleted file mode 100644 index 0b6cc49b76..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_bottomsheet_ModalBottomSheet_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_Packed.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_Packed.png deleted file mode 100644 index 38525ac6fc..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_Packed.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_SpaceBetween.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_SpaceBetween.png deleted file mode 100644 index 8c01437704..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_LabelValue_SpaceBetween.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_Simple.png deleted file mode 100644 index 5254e5ff70..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_isLoading.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_isLoading.png deleted file mode 100644 index fad2af09f2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_button_BasicButton_isLoading.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_ButtonGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_ButtonGroup_Simple.png deleted file mode 100644 index e5d99b17a6..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_ButtonGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_IconButtonGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_IconButtonGroup_Simple.png deleted file mode 100644 index dfa4c99a3f..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_buttongroup_IconButtonGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Extra.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Extra.png deleted file mode 100644 index ebcdcf6833..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Extra.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Simple.png deleted file mode 100644 index c3f0114a9e..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_card_Card_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_AvatarSwitch.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_AvatarSwitch.png deleted file mode 100644 index 87ce04211f..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_AvatarSwitch.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_Simple.png deleted file mode 100644 index b222285afc..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_cell_Cell_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_CheckBox_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_CheckBox_Simple.png deleted file mode 100644 index 740891997d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_CheckBox_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_group_CheckBoxGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_group_CheckBoxGroup_Simple.png deleted file mode 100644 index 39b85737c1..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_checkbox_group_CheckBoxGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_Chip_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_Chip_Simple.png deleted file mode 100644 index 268899b7f6..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_Chip_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_group_ChipGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_group_ChipGroup_Simple.png deleted file mode 100644 index baba49c0da..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_chip_group_ChipGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codefield_CodeField_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codefield_CodeField_Simple.png deleted file mode 100644 index b57725aaf4..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codefield_CodeField_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codeinput_CodeInput_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codeinput_CodeInput_Simple.png deleted file mode 100644 index 5fa7f99376..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_codeinput_CodeInput_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_collapsingnavigationbar_CollapsingNavigationBar_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_collapsingnavigationbar_CollapsingNavigationBar_Simple.png deleted file mode 100644 index 07233f23ea..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_collapsingnavigationbar_CollapsingNavigationBar_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_counter_Counter_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_counter_Counter_Simple.png deleted file mode 100644 index 2b1334c27a..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_counter_Counter_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_drawer_Drawer_WithHeaderFooter.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_drawer_Drawer_WithHeaderFooter.png deleted file mode 100644 index 8cc58ac266..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_drawer_Drawer_WithHeaderFooter.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_dropdownmenu_DropdownMenu_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_dropdownmenu_DropdownMenu_Simple.png deleted file mode 100644 index dd2f510e8c..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_dropdownmenu_DropdownMenu_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_editable_Editable_RelativeIcon.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_editable_Editable_RelativeIcon.png deleted file mode 100644 index 7525cd584d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_editable_Editable_RelativeIcon.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileCircular_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileCircular_Simple.png deleted file mode 100644 index aa3db17209..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileCircular_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileLinear_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileLinear_Simple.png deleted file mode 100644 index 96a79a01f0..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_file_FileLinear_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocalSize_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocalSize_Simple.png deleted file mode 100644 index d3478aff0c..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocalSize_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocal_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocal_Simple.png deleted file mode 100644 index a23b7ec6c4..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconCompositionLocal_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconTint_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconTint_Simple.png deleted file mode 100644 index 0086368a2d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_IconTint_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Image.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Image.png deleted file mode 100644 index a23b7ec6c4..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Image.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Simple.png deleted file mode 100644 index aa7af0ff18..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_icon_Icon_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_image_Image_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_image_Image_Simple.png deleted file mode 100644 index 633fde6bc1..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_image_Image_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_AvatarIndicator_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_AvatarIndicator_Simple.png deleted file mode 100644 index 07668f43cf..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_AvatarIndicator_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_Indicator_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_Indicator_Simple.png deleted file mode 100644 index 50aa238fe2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_indicator_Indicator_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_list_List_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_list_List_Simple.png deleted file mode 100644 index 1c5cf27e52..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_list_List_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_LoaderSpinner_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_LoaderSpinner_Simple.png deleted file mode 100644 index 314bb450a1..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_LoaderSpinner_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_Loader_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_Loader_Simple.png deleted file mode 100644 index 901996b564..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_loader_Loader_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Custom.png deleted file mode 100644 index 0d2318bf27..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Simple.png deleted file mode 100644 index 0d2318bf27..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskDate_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Custom.png deleted file mode 100644 index 0688d4e0ea..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Simple.png deleted file mode 100644 index 0688d4e0ea..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskNumber_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskPhone_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskPhone_Custom.png deleted file mode 100644 index fe77b49447..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskPhone_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Custom.png deleted file mode 100644 index 3ae88d0bbf..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Simple.png deleted file mode 100644 index 0d2318bf27..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_MaskTime_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_Mask_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_Mask_Simple.png deleted file mode 100644 index bc9f709f4d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_mask_Mask_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_modal_Modal_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_modal_Modal_Simple.png deleted file mode 100644 index 05b7bbccb2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_modal_Modal_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notification_Notification_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notification_Notification_Simple.png deleted file mode 100644 index 9cef681ee6..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notification_Notification_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notificationcontent_NotificationContent_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notificationcontent_NotificationContent_Simple.png deleted file mode 100644 index 8099c812b8..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_notificationcontent_NotificationContent_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_overlay_Overlay_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_overlay_Overlay_Simple.png deleted file mode 100644 index d50d4b3e2e..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_overlay_Overlay_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_paginationdots_PaginationDots_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_paginationdots_PaginationDots_Simple.png deleted file mode 100644 index 5efb44e091..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_paginationdots_PaginationDots_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_popover_Popover_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_popover_Popover_Simple.png deleted file mode 100644 index 5f50440f8b..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_popover_Popover_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgressSuffix_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgressSuffix_Simple.png deleted file mode 100644 index a7b2eed71a..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgressSuffix_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgress_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgress_Simple.png deleted file mode 100644 index a7b2eed71a..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_CircularProgress_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_Progress_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_Progress_Simple.png deleted file mode 100644 index fc30a83f55..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_progress_Progress_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_RadioBox_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_RadioBox_Simple.png deleted file mode 100644 index 5b0fe8d7f2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_RadioBox_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_group_RadioBoxGroup_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_group_RadioBoxGroup_Simple.png deleted file mode 100644 index 59ce2b51a6..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_radiobox_group_RadioBoxGroup_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Custom.png deleted file mode 100644 index 26dd3312f2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Simple.png deleted file mode 100644 index 97fe574111..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_rectskeleton_RectSkeleton_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png deleted file mode 100644 index a557c596d2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_SegmentItem_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png deleted file mode 100644 index 67058ff472..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Dividers.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png deleted file mode 100644 index 10aba5d825..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_segment_Segment_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_slider_Slider_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_slider_Slider_Simple.png deleted file mode 100644 index 45e5b5b064..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_slider_Slider_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_spinner_Spinner_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_spinner_Spinner_Simple.png deleted file mode 100644 index f70a93e3cd..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_spinner_Spinner_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_switcher_Switch_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_switcher_Switch_Simple.png deleted file mode 100644 index 473c0588a8..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_switcher_Switch_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tabs_Tabs_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tabs_Tabs_Simple.png deleted file mode 100644 index e5327045c3..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tabs_Tabs_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextFormat_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextFormat_Simple.png deleted file mode 100644 index f2579261b2..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextFormat_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextInlineContent_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextInlineContent_Simple.png deleted file mode 100644 index 6a733d0461..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextInlineContent_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextStyle_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextStyle_Simple.png deleted file mode 100644 index 4836efeea1..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_TextStyle_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Custom.png deleted file mode 100644 index bc8ea31033..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Simple.png deleted file mode 100644 index 1f045ca6a7..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Style.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Style.png deleted file mode 100644 index 664a038d3d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_text_Text_Style.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textfield_TextField_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textfield_TextField_Simple.png deleted file mode 100644 index 1adfe29b68..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textfield_TextField_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Custom.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Custom.png deleted file mode 100644 index 93fdfaba1f..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Custom.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Simple.png deleted file mode 100644 index e2509ab729..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_textskeleton_TextSkeleton_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_Simple.png deleted file mode 100644 index 1e59bb2ab7..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_TextMultiline.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_TextMultiline.png deleted file mode 100644 index 17206c620d..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toast_Toast_TextMultiline.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toolbar_ToolBar_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toolbar_ToolBar_Simple.png deleted file mode 100644 index 89c6a9345b..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_toolbar_ToolBar_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tooltip_Tooltip_Simple.png b/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tooltip_Tooltip_Simple.png deleted file mode 100644 index 0d799d0c55..0000000000 Binary files a/tokens/stylessalute.compose/docs/override-docs/static/screenshots-docusaurus/com_sdds_compose_uikit_fixtures_samples_tooltip_Tooltip_Simple.png and /dev/null differ diff --git a/tokens/stylessalute.compose/docs/override-docs/versionsArchived.json b/tokens/stylessalute.compose/docs/override-docs/versionsArchived.json deleted file mode 100644 index acff838710..0000000000 --- a/tokens/stylessalute.compose/docs/override-docs/versionsArchived.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "0.10.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.10.0/", - "0.11.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.11.0/", - "0.12.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.12.0/", - "0.13.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.13.0/", - "0.14.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.14.0/", - "0.15.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.15.0/", - "0.16.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.16.0/", - "0.17.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.17.0/", - "0.18.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.18.0/", - "0.19.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.19.0/", - "0.20.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.20.0/", - "0.21.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.21.0/", - "0.22.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.22.0/", - "0.23.0": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.23.0/", - "0.23.1": "https://plasma.sberdevices.ru/compose/stylessalute-compose/0.23.1/" -} \ No newline at end of file diff --git a/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ComposeDocScreenshotTest.kt b/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ComposeDocScreenshotTest.kt deleted file mode 100644 index 1dcb09d360..0000000000 --- a/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ComposeDocScreenshotTest.kt +++ /dev/null @@ -1,34 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onRoot -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureRoboImage -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.samples.RoborazziConfigDocs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeDocScreenshotTest(composableSample: ComposableSampleInfo) : RoborazziConfigDocs(composableSample) { - - @Test - fun docs_screenshot_test() { - try { - composeTestRule.content { - composableSample.sample.reference.invoke() - } - composeTestRule.waitForIdle() - composeTestRule.onRoot().captureRoboImage() - } catch (e: Throwable) { - throw AssertionError( - "Screenshot test failed: \n${composableSample.id}", - e, - ) - } - } -} diff --git a/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt b/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt deleted file mode 100644 index 7fe2d864a2..0000000000 --- a/tokens/stylessalute.compose/docs/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt +++ /dev/null @@ -1,236 +0,0 @@ -package com.sdds.stylessalute - -import android.app.Activity -import androidx.activity.ComponentActivity -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.SideEffect -import androidx.compose.ui.graphics.toArgb -import androidx.compose.ui.platform.LocalView -import androidx.compose.ui.test.junit4.AndroidComposeTestRule -import androidx.core.view.WindowCompat -import androidx.test.ext.junit.rules.ActivityScenarioRule -import com.sdds.compose.uikit.LocalAccordionStyle -import com.sdds.compose.uikit.LocalAvatarGroupStyle -import com.sdds.compose.uikit.LocalAvatarStyle -import com.sdds.compose.uikit.LocalBadgeStyle -import com.sdds.compose.uikit.LocalButtonGroupStyle -import com.sdds.compose.uikit.LocalButtonStyle -import com.sdds.compose.uikit.LocalCardStyle -import com.sdds.compose.uikit.LocalCellStyle -import com.sdds.compose.uikit.LocalCheckBoxGroupStyle -import com.sdds.compose.uikit.LocalCheckBoxStyle -import com.sdds.compose.uikit.LocalChipGroupStyle -import com.sdds.compose.uikit.LocalChipStyle -import com.sdds.compose.uikit.LocalCodeInputStyle -import com.sdds.compose.uikit.LocalCounterStyle -import com.sdds.compose.uikit.LocalDividerStyle -import com.sdds.compose.uikit.LocalDropdownMenuStyle -import com.sdds.compose.uikit.LocalIconBadgeStyle -import com.sdds.compose.uikit.LocalIndicatorStyle -import com.sdds.compose.uikit.LocalListStyle -import com.sdds.compose.uikit.LocalModalBottomSheetStyle -import com.sdds.compose.uikit.LocalModalStyle -import com.sdds.compose.uikit.LocalNotificationContentStyle -import com.sdds.compose.uikit.LocalNotificationStyle -import com.sdds.compose.uikit.LocalPopoverStyle -import com.sdds.compose.uikit.LocalProgressBarStyle -import com.sdds.compose.uikit.LocalRadioBoxGroupStyle -import com.sdds.compose.uikit.LocalRadioBoxStyle -import com.sdds.compose.uikit.LocalRectSkeletonStyle -import com.sdds.compose.uikit.LocalScrollBarStyle -import com.sdds.compose.uikit.LocalSegmentItemStyle -import com.sdds.compose.uikit.LocalSegmentStyle -import com.sdds.compose.uikit.LocalSwitchStyle -import com.sdds.compose.uikit.LocalTextFieldStyle -import com.sdds.compose.uikit.LocalTextSkeletonStyle -import com.sdds.compose.uikit.LocalToastStyle -import com.sdds.compose.uikit.LocalTooltipStyle -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.accordion.AccordionSolidActionStart -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.avatar.Avatar -import com.sdds.stylessalute.styles.avatar.M -import com.sdds.stylessalute.styles.avatargroup.AvatarGroup -import com.sdds.stylessalute.styles.avatargroup.S -import com.sdds.stylessalute.styles.badge.BadgeSolid -import com.sdds.stylessalute.styles.badge.Default -import com.sdds.stylessalute.styles.badge.M -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.bottomsheet.Default -import com.sdds.stylessalute.styles.bottomsheet.ModalBottomSheet -import com.sdds.stylessalute.styles.buttongroup.BasicButtonGroup -import com.sdds.stylessalute.styles.buttongroup.Default -import com.sdds.stylessalute.styles.buttongroup.Dense -import com.sdds.stylessalute.styles.buttongroup.M -import com.sdds.stylessalute.styles.card.CardSolid -import com.sdds.stylessalute.styles.card.Default -import com.sdds.stylessalute.styles.cell.Cell -import com.sdds.stylessalute.styles.cell.M -import com.sdds.stylessalute.styles.checkbox.CheckBox -import com.sdds.stylessalute.styles.checkbox.Default -import com.sdds.stylessalute.styles.checkbox.M -import com.sdds.stylessalute.styles.checkboxgroup.CheckBoxGroup -import com.sdds.stylessalute.styles.checkboxgroup.M -import com.sdds.stylessalute.styles.chip.Chip -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chipgroup.ChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.codeinput.CodeInput -import com.sdds.stylessalute.styles.codeinput.M -import com.sdds.stylessalute.styles.counter.Counter -import com.sdds.stylessalute.styles.counter.Default -import com.sdds.stylessalute.styles.counter.M -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import com.sdds.stylessalute.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.stylessalute.styles.dropdownmenu.M -import com.sdds.stylessalute.styles.iconbadge.Default -import com.sdds.stylessalute.styles.iconbadge.IconBadgeSolid -import com.sdds.stylessalute.styles.iconbadge.M -import com.sdds.stylessalute.styles.indicator.Default -import com.sdds.stylessalute.styles.indicator.Indicator -import com.sdds.stylessalute.styles.indicator.M -import com.sdds.stylessalute.styles.list.ListNormal -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.modal.Default -import com.sdds.stylessalute.styles.modal.Modal -import com.sdds.stylessalute.styles.notification.M -import com.sdds.stylessalute.styles.notification.NotificationLoose -import com.sdds.stylessalute.styles.notificationcontent.ButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.Default -import com.sdds.stylessalute.styles.notificationcontent.NotificationContent -import com.sdds.stylessalute.styles.popover.Default -import com.sdds.stylessalute.styles.popover.M -import com.sdds.stylessalute.styles.popover.Popover -import com.sdds.stylessalute.styles.progressbar.Default -import com.sdds.stylessalute.styles.progressbar.ProgressBar -import com.sdds.stylessalute.styles.radiobox.M -import com.sdds.stylessalute.styles.radiobox.RadioBox -import com.sdds.stylessalute.styles.radioboxgroup.M -import com.sdds.stylessalute.styles.radioboxgroup.RadioBoxGroup -import com.sdds.stylessalute.styles.rectskeleton.Default -import com.sdds.stylessalute.styles.rectskeleton.RectSkeleton -import com.sdds.stylessalute.styles.scrollbar.M -import com.sdds.stylessalute.styles.scrollbar.ScrollBar -import com.sdds.stylessalute.styles.segment.M -import com.sdds.stylessalute.styles.segment.Primary -import com.sdds.stylessalute.styles.segment.Segment -import com.sdds.stylessalute.styles.segmentitem.M -import com.sdds.stylessalute.styles.segmentitem.Primary -import com.sdds.stylessalute.styles.segmentitem.SegmentItem -import com.sdds.stylessalute.styles.switcher.M -import com.sdds.stylessalute.styles.switcher.Switch -import com.sdds.stylessalute.styles.textfield.Default -import com.sdds.stylessalute.styles.textfield.M -import com.sdds.stylessalute.styles.textfield.OuterLabel -import com.sdds.stylessalute.styles.textfield.TextField -import com.sdds.stylessalute.styles.textskeleton.Default -import com.sdds.stylessalute.styles.textskeleton.TextSkeleton -import com.sdds.stylessalute.styles.toast.Rounded -import com.sdds.stylessalute.styles.toast.Toast -import com.sdds.stylessalute.styles.tooltip.M -import com.sdds.stylessalute.styles.tooltip.Tooltip -import com.sdds.stylessalute.theme.StylesSaluteTheme -import com.sdds.stylessalute.theme.darkStylesSaluteColors -import com.sdds.stylessalute.theme.darkStylesSaluteGradients -import com.sdds.stylessalute.theme.lightStylesSaluteColors -import com.sdds.stylessalute.theme.lightStylesSaluteGradients - -private val DarkColors = darkStylesSaluteColors() -private val LightColors = lightStylesSaluteColors() -private val DarkGradients = darkStylesSaluteGradients() -private val LightGradients = lightStylesSaluteGradients() - -/** - * Тема для тестов - */ -@Composable -fun ThemeSetup( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - val view = LocalView.current - if (!view.isInEditMode) { - SideEffect { - val window = (view.context as Activity).window - - WindowCompat.setDecorFitsSystemWindows(window, false) - - window.statusBarColor = colorScheme.backgroundDefaultPrimary.toArgb() - window.navigationBarColor = colorScheme.backgroundDefaultPrimary.toArgb() - window.decorView.setBackgroundColor(colorScheme.backgroundDefaultPrimary.toArgb()) - WindowCompat.getInsetsController(window, view).apply { - isAppearanceLightStatusBars = !darkTheme - isAppearanceLightNavigationBars = !darkTheme - } - } - } - - StylesSaluteTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - ) { - CompositionLocalProvider( - LocalAccordionStyle provides AccordionSolidActionStart.H3.style(), - LocalAvatarGroupStyle provides AvatarGroup.S.style(), - LocalAvatarStyle provides Avatar.M.style(), - LocalBadgeStyle provides BadgeSolid.M.Default.style(), - LocalIconBadgeStyle provides IconBadgeSolid.M.Default.style(), - LocalButtonGroupStyle provides BasicButtonGroup.M.Dense.Default.style(), - LocalButtonStyle provides BasicButton.M.Default.style(), - LocalCardStyle provides CardSolid.Default.style(), - LocalCellStyle provides Cell.M.style(), - LocalCheckBoxGroupStyle provides CheckBoxGroup.M.style(), - LocalCheckBoxStyle provides CheckBox.M.Default.style(), - LocalChipGroupStyle provides ChipGroupDense.M.Default.style(), - LocalChipStyle provides Chip.M.Default.style(), - LocalCodeInputStyle provides CodeInput.M.style(), - LocalCounterStyle provides Counter.M.Default.style(), - LocalDividerStyle provides Divider.Default.style(), - LocalDropdownMenuStyle provides DropdownMenuNormal.M.style(), - LocalIndicatorStyle provides Indicator.M.Default.style(), - LocalListStyle provides ListNormal.M.style(), - LocalModalBottomSheetStyle provides ModalBottomSheet.Default.style(), - LocalModalStyle provides Modal.Default.style(), - LocalNotificationContentStyle provides NotificationContent.ButtonStretch.Default.style(), - LocalNotificationStyle provides NotificationLoose.M.style(), - LocalPopoverStyle provides Popover.M.Default.style(), - LocalProgressBarStyle provides ProgressBar.Default.style(), - LocalRadioBoxGroupStyle provides RadioBoxGroup.M.style(), - LocalRadioBoxStyle provides RadioBox.M.style(), - LocalRectSkeletonStyle provides RectSkeleton.Default.style(), - LocalScrollBarStyle provides ScrollBar.M.style(), - LocalSegmentItemStyle provides SegmentItem.M.Primary.style(), - LocalSegmentStyle provides Segment.M.Primary.style(), - LocalSwitchStyle provides Switch.M.style(), - LocalTextFieldStyle provides TextField.M.OuterLabel.Default.style(), - LocalTextSkeletonStyle provides TextSkeleton.Default.style(), - LocalToastStyle provides Toast.Rounded.style(), - LocalTooltipStyle provides Tooltip.M.style(), - ) { - content() - } - } -} - -fun AndroidComposeTestRule, ComponentActivity>.content( - content: @Composable () -> Unit, -) { - val actionBar = activity.actionBar - actionBar?.hide() - setContent { - ThemeSetup { - content() - } - } -} diff --git a/tokens/stylessalute.compose/gradle.properties b/tokens/stylessalute.compose/gradle.properties deleted file mode 100644 index d071287270..0000000000 --- a/tokens/stylessalute.compose/gradle.properties +++ /dev/null @@ -1,15 +0,0 @@ -nexus.artifactId=stylessalute-compose -nexus.snapshot=false -nexus.description=stylessalute token library for compose framework -versionMajor=0 -versionMinor=23 -versionPatch=1 - -theme-version=0.7.0-alpha -components-version=0.10.0 - -summary.key=plasmaStylesSalute - -components-name=stylesSalute -theme-name=stylesSalute -theme-resPrefix=salute_cmp \ No newline at end of file diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png deleted file mode 100644 index efad3b86ef..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png deleted file mode 100644 index d35bb0ce30..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeH4_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png deleted file mode 100644 index 5e7bc15fb3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png deleted file mode 100644 index cb3efddd41..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionEndSizeSDivider_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png deleted file mode 100644 index fcd2ae6e18..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png deleted file mode 100644 index 790332a32f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH2AmountTen_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png deleted file mode 100644 index 734f534170..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png deleted file mode 100644 index ed7879bd9c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeH5_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png deleted file mode 100644 index 645ad2be80..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png deleted file mode 100644 index 33f21a9074..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionClearActionStartSizeXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png deleted file mode 100644 index e9a6f975e1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png deleted file mode 100644 index 7778c0adca..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeH2_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png deleted file mode 100644 index cb7704c47f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png deleted file mode 100644 index 369d903ac9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png deleted file mode 100644 index 2465c51f19..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png deleted file mode 100644 index 5bd72d972c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLNoTextNoContent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png deleted file mode 100644 index 8d99ab5d70..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png deleted file mode 100644 index 8e260eddc0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeLOpenAll_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png deleted file mode 100644 index a3d89edc8e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png deleted file mode 100644 index 58c3fb82c7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionEndSizeL_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png deleted file mode 100644 index 5559f9a9f2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png deleted file mode 100644 index 6318566091..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartAmountTenSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png deleted file mode 100644 index 1661e6e749..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png b/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png deleted file mode 100644 index 70f670c3aa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAccordionSolidActionStartSizeH3_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_dark.png deleted file mode 100644 index 0c39053913..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_light.png deleted file mode 100644 index 16d7eb005d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png deleted file mode 100644 index ed43f34d59..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png deleted file mode 100644 index 7920553401..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLBadgeTopEndContentStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png deleted file mode 100644 index 33452a6b1e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png deleted file mode 100644 index ba573cc205..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeLCounterTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png deleted file mode 100644 index dec7d87b1c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png deleted file mode 100644 index 473cfff859..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMBadgeBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png deleted file mode 100644 index 526866d462..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png deleted file mode 100644 index 19dff8c71b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeMCounterBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_dark.png deleted file mode 100644 index 1bcd8c1546..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_light.png deleted file mode 100644 index b2577ef0b5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png deleted file mode 100644 index dc575a2d73..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png deleted file mode 100644 index bc5afc20d7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeSCounterBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png deleted file mode 100644 index 2cc46d7b83..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png deleted file mode 100644 index fd60210aa6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeBottomEndContentEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png deleted file mode 100644 index 1a461b4b80..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png deleted file mode 100644 index 9b983e677f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlBadgeTopStartContentStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png deleted file mode 100644 index 4984477767..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png deleted file mode 100644 index ebf4cc92b4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxlCounterTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_dark.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_dark.png deleted file mode 100644 index 48d40899fd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_light.png b/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_light.png deleted file mode 100644 index 0622ca6688..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testAvatarSizeXxl_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png deleted file mode 100644 index 84fc3fc117..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png deleted file mode 100644 index 1091793168..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png deleted file mode 100644 index 4eb989af88..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png deleted file mode 100644 index afd3b6dd32..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultContentLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png deleted file mode 100644 index 8597995b8e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png deleted file mode 100644 index 842110724b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLDefaultTransparent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_dark.png deleted file mode 100644 index fb48769668..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_light.png deleted file mode 100644 index 8e5d77b475..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png deleted file mode 100644 index 9bdd0e0cc8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png deleted file mode 100644 index c9854c9476..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMAccentContentRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_dark.png deleted file mode 100644 index a4c9563f1c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_light.png deleted file mode 100644 index 3f3644d5b8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMDark_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png deleted file mode 100644 index 60b5da174e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png deleted file mode 100644 index 0080278678..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeMNegativeClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_dark.png deleted file mode 100644 index 81d368aa3a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_light.png deleted file mode 100644 index acde4ff3e1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSLight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png deleted file mode 100644 index 8981281ca1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png deleted file mode 100644 index 06eb10e290..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSPositivePilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png deleted file mode 100644 index a65ade609b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png deleted file mode 100644 index 227b6c54b6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeSWarningTransparentPilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png deleted file mode 100644 index f376009adb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_light.png deleted file mode 100644 index 5eea49d502..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBadgeSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png deleted file mode 100644 index cfa5c4516c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_light.png deleted file mode 100644 index 85af8baee9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetFooterAuto_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png deleted file mode 100644 index 993345889b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png deleted file mode 100644 index 2faff74db9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderAuto_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png deleted file mode 100644 index 3267cdffc7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png deleted file mode 100644 index b288c71dec..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFixedHandleOuter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png deleted file mode 100644 index 1d281c9fdc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png deleted file mode 100644 index 64ba2bbe29..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleInner_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png deleted file mode 100644 index 46a20b1ace..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png deleted file mode 100644 index 6d60f79755..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetHeaderFooterFixedHandleNone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png deleted file mode 100644 index 0cfa84307e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png b/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png deleted file mode 100644 index 136702e992..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testBottomSheetNoHeaderFooterAuto_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png deleted file mode 100644 index 97ea8f16e6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png deleted file mode 100644 index f99f8df9bb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupLNoGapDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png deleted file mode 100644 index 75e242f7b8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png deleted file mode 100644 index ea9e5eb6b2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupMDenseDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png deleted file mode 100644 index b3c536aadb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png deleted file mode 100644 index 49fd188002..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupSWideSegmented_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_dark.png deleted file mode 100644 index 3d14b4b0e1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_light.png deleted file mode 100644 index a567c29c4a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsNoGapSegmentedMaxAmount_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png deleted file mode 100644 index af51450612..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png deleted file mode 100644 index 6b06cd022b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonGroupXsVerticalNoGapDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_dark.png deleted file mode 100644 index 1af17c14ff..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_light.png deleted file mode 100644 index 4acc11aa26..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_dark.png deleted file mode 100644 index 59c609a91b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_light.png deleted file mode 100644 index 1404e1a59d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png deleted file mode 100644 index d8ec07c2f1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_light.png deleted file mode 100644 index f6cad145c8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_dark.png deleted file mode 100644 index 93e9f391f1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_light.png deleted file mode 100644 index ac2646873a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_dark.png deleted file mode 100644 index 7e0a83ca8c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_light.png deleted file mode 100644 index 48d4280ac4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_dark.png deleted file mode 100644 index c20da68171..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_light.png deleted file mode 100644 index 66ef6948d5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png deleted file mode 100644 index 8698c9d37e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png deleted file mode 100644 index 477f0613fd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeMSpaceBetween_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_dark.png deleted file mode 100644 index 11baa6eb8f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_light.png deleted file mode 100644 index 1d4c79b6d2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_dark.png deleted file mode 100644 index 2b8e89e21b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_light.png deleted file mode 100644 index d9dd4085c5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_dark.png deleted file mode 100644 index 1a6ec73b86..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_light.png deleted file mode 100644 index a11c590721..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXSNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_dark.png deleted file mode 100644 index 90ebf54ef2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_light.png b/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_light.png deleted file mode 100644 index f5e3f65400..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testButtonSizeXS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png deleted file mode 100644 index 409e1832dc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png deleted file mode 100644 index 95e1afd69e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellLAvatarHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_dark.png deleted file mode 100644 index d5aeebd371..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_light.png deleted file mode 100644 index 1cd192b4c8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellMAvatarIcon_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png deleted file mode 100644 index 9aac2390d7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png deleted file mode 100644 index 40f8306fee..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png deleted file mode 100644 index d44c080169..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png deleted file mode 100644 index 1048b689e9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeLSwitchCheckBox_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png deleted file mode 100644 index b063c1fa52..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png deleted file mode 100644 index 0ed772c967..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMCheckBoxHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png deleted file mode 100644 index 78674473b3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png deleted file mode 100644 index ed0dc03596..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeMTitleAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png deleted file mode 100644 index 1cc2f19404..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png deleted file mode 100644 index 55ad8d90bb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSIconHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png deleted file mode 100644 index 24ae4bd46e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png deleted file mode 100644 index fb84a0a9ed..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeSSubtitleHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png deleted file mode 100644 index aca7d5d3ac..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png deleted file mode 100644 index 8ebf8ab7bc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsLabelAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png deleted file mode 100644 index 93d6647ee9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png b/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png deleted file mode 100644 index 5af6ee0073..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCellSizeXsRadioBoxAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png deleted file mode 100644 index 129e8f17a0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png deleted file mode 100644 index 8f61d55059..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeMDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png deleted file mode 100644 index 9f32f0b0ad..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png deleted file mode 100644 index 1e2df7888e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png deleted file mode 100644 index ece9cf1722..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png deleted file mode 100644 index b02b101aa1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png deleted file mode 100644 index 3070b27186..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png deleted file mode 100644 index ba55ff7391..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMIndeterminate_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_dark.png deleted file mode 100644 index c35adce3d8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_light.png deleted file mode 100644 index 28e8c1df3b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png deleted file mode 100644 index 6b33310948..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png deleted file mode 100644 index 9fc552e049..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeMediumNoLabelAndDesc_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png deleted file mode 100644 index 4aabb18c18..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png deleted file mode 100644 index 692f710287..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png deleted file mode 100644 index b36c390d81..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png b/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png deleted file mode 100644 index b6866f3b37..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCheckBoxSizeSUnchecked_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_dark.png deleted file mode 100644 index 37ef7a9035..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_light.png deleted file mode 100644 index dcbfed172c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_dark.png deleted file mode 100644 index 07377dae79..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_light.png deleted file mode 100644 index e0eb4d7300..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeLDense_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png deleted file mode 100644 index 172fc2ae3f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png deleted file mode 100644 index 3d9acb6e9b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeMSecondaryWideWrapped_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png deleted file mode 100644 index 2d34289901..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png deleted file mode 100644 index c0f9423ee8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeSAccentDense_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png deleted file mode 100644 index 4ce93c6954..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png deleted file mode 100644 index 83ecd6a473..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipGroupSizeXsDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_dark.png deleted file mode 100644 index 8d912389c5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_light.png deleted file mode 100644 index 279005aaf7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png deleted file mode 100644 index 1530073bd3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png deleted file mode 100644 index 9bb9407758..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeMSecondaryPilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_dark.png deleted file mode 100644 index de0efe6108..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_light.png deleted file mode 100644 index 8ca78b2fd3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeSAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png deleted file mode 100644 index a2978d9b81..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_light.png deleted file mode 100644 index 7fa5fe0d4e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testChipSizeXSContentLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png deleted file mode 100644 index 45525f4392..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_light.png deleted file mode 100644 index 94a83d13ee..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputCorrectNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png deleted file mode 100644 index 137a9a2164..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png deleted file mode 100644 index 7e7f5362c6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLCodeLengthFourCaptionStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png deleted file mode 100644 index 19de00ba02..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png deleted file mode 100644 index a4415cf174..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeLNoCaption_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png deleted file mode 100644 index 3d6bf6611a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png deleted file mode 100644 index e18678203a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMCodeLengthFiveCaptionCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png deleted file mode 100644 index 98b73808a4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_light.png deleted file mode 100644 index 6fbeaa6fd3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeMHidden_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png deleted file mode 100644 index 65ea96a573..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png deleted file mode 100644 index a712f27938..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputSizeSCodeLengthSix_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png deleted file mode 100644 index e50b465108..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png deleted file mode 100644 index 8ff77fb6a1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCodeCaption_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_dark.png deleted file mode 100644 index 33d858b2f4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_light.png b/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_light.png deleted file mode 100644 index c588668370..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCodeInputWrongCode_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_dark.png deleted file mode 100644 index ba68be5f28..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_light.png deleted file mode 100644 index e2a72a6ba8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_dark.png deleted file mode 100644 index f6cf0810db..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_light.png deleted file mode 100644 index 60b112fec5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_dark.png deleted file mode 100644 index 2f5536b0b6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_light.png deleted file mode 100644 index 116ea4bc8e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_dark.png deleted file mode 100644 index 74e0453650..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_light.png deleted file mode 100644 index c48801d622..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeSPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_dark.png deleted file mode 100644 index d3df5a7da9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_light.png deleted file mode 100644 index 5d0149a3e4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png deleted file mode 100644 index 5a172f6a17..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_light.png deleted file mode 100644 index c15c441e8c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testCounterSizeXxsNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_dark.png deleted file mode 100644 index 83bbfe286e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_light.png deleted file mode 100644 index 855cfe3f71..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenLooseBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_dark.png deleted file mode 100644 index db71c72c36..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_light.png deleted file mode 100644 index 419f7c05b6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLAmountTenStrictCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_dark.png deleted file mode 100644 index ea68bd3148..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_light.png deleted file mode 100644 index cb468f3ba0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLHasDisclosureTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_dark.png deleted file mode 100644 index 36706b6f55..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_light.png deleted file mode 100644 index 9471d38e3b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLLooseTopEndDivider_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png deleted file mode 100644 index 89948614b1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png deleted file mode 100644 index beb537c44b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuLStrictCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png deleted file mode 100644 index 70800aab34..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png deleted file mode 100644 index fdba85b955..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuMStrictBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png deleted file mode 100644 index 483c72d02e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png deleted file mode 100644 index 7d52b74fc4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuSStrictTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png deleted file mode 100644 index 4ecd82d170..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png deleted file mode 100644 index 1c6f99b4e3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuTightXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png deleted file mode 100644 index 1f2b152e90..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png deleted file mode 100644 index 1a594353c5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testDropDownMenuXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png deleted file mode 100644 index 71b4aa880e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png deleted file mode 100644 index b8c66d8c50..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png deleted file mode 100644 index 2811a59e85..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png deleted file mode 100644 index 1e6568b23a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png deleted file mode 100644 index b8e73d7a76..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png deleted file mode 100644 index a8b4e0cfac..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMAccentPilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png deleted file mode 100644 index e44edbfd8f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png deleted file mode 100644 index 8be8fbd71e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeMBlack_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png deleted file mode 100644 index 338823936d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png deleted file mode 100644 index 90d617e409..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeSPositiveClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png deleted file mode 100644 index 57bb73309a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png deleted file mode 100644 index 3f5fb454f5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconBadgeSizeXsWarningTransparent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png deleted file mode 100644 index 4a9cc78890..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png deleted file mode 100644 index 60e49494a1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png deleted file mode 100644 index a1de8a7cb5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png deleted file mode 100644 index 0881f916f9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupLNoGapSegmentedMaxAmount_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png deleted file mode 100644 index eefbff4bfb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png deleted file mode 100644 index 3786c68b61..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupMDensePilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png deleted file mode 100644 index 3129111c45..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png deleted file mode 100644 index d41d29e9e2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupSWideSegmented_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png deleted file mode 100644 index 5181a9faac..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png deleted file mode 100644 index 8e78d5cc72..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonGroupXsNoGapDefaultVertical_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_dark.png deleted file mode 100644 index 0c169e6395..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_light.png deleted file mode 100644 index 55ebe68a03..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_dark.png deleted file mode 100644 index 1c6316d2fd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_light.png deleted file mode 100644 index 48302e349d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_dark.png deleted file mode 100644 index 45a886aa47..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_light.png deleted file mode 100644 index 2fba6e0a9b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_dark.png deleted file mode 100644 index efe38f665a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_light.png deleted file mode 100644 index ebb169e0cd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_dark.png deleted file mode 100644 index 0c169e6395..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_light.png deleted file mode 100644 index ef1cdd11b2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_dark.png deleted file mode 100644 index 25f6ef2261..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_light.png deleted file mode 100644 index 69c424ce2f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_dark.png deleted file mode 100644 index 4e38027f8a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_light.png deleted file mode 100644 index c718f13e22..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonMClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_dark.png deleted file mode 100644 index 296c55cce6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_light.png deleted file mode 100644 index 5227eb4118..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_dark.png deleted file mode 100644 index cf6389070a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_light.png deleted file mode 100644 index 62e35a9bc3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_dark.png deleted file mode 100644 index e35dba17f1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_light.png deleted file mode 100644 index 7da033215a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXSNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_dark.png deleted file mode 100644 index 47d756beb4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_light.png b/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_light.png deleted file mode 100644 index 95dd83e13a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIconButtonXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png deleted file mode 100644 index f92d74dcf6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_light.png deleted file mode 100644 index 16ac6c4b91..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png deleted file mode 100644 index 8471dc3063..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_light.png deleted file mode 100644 index 0bfd4ff401..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png deleted file mode 100644 index 097cbefe6c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_light.png deleted file mode 100644 index ab46fbfcf1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png deleted file mode 100644 index 22e0a6c39f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_light.png deleted file mode 100644 index 634e6ec0ad..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeLWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png deleted file mode 100644 index 70e8f93e08..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_light.png deleted file mode 100644 index ddb0e04475..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png deleted file mode 100644 index 71879c63fa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_light.png b/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_light.png deleted file mode 100644 index 661e9d0206..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testIndicatorSizeSInactive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png deleted file mode 100644 index 605962ac8d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png deleted file mode 100644 index 9374e36243..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png deleted file mode 100644 index 60042feafc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png deleted file mode 100644 index b621c9c6ed..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png deleted file mode 100644 index 3bd3a66ac8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png deleted file mode 100644 index faded3b7ea..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png deleted file mode 100644 index 56dbd4b0f1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png deleted file mode 100644 index 2fda121172..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeLSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png deleted file mode 100644 index 2e5ce7e72e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png deleted file mode 100644 index 6cb0f58822..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png deleted file mode 100644 index 38ba2e58ae..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png deleted file mode 100644 index e993c117f5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png deleted file mode 100644 index bc77d6f6f0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png deleted file mode 100644 index 034c044693..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testLinkButtonSizeXSNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_dark.png deleted file mode 100644 index ac81ce7df3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_light.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_light.png deleted file mode 100644 index 0ba4b5a541..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalLAmountThree_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_dark.png deleted file mode 100644 index 31528ebb64..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_light.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_light.png deleted file mode 100644 index 2021b1a6c1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalMAmountThree_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_dark.png deleted file mode 100644 index e67f828cca..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_light.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_light.png deleted file mode 100644 index 73db6e837e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalSAmountThree_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png deleted file mode 100644 index 6ae8fb5a81..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png deleted file mode 100644 index 0c9d175b0f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalXlAmountThreeHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png deleted file mode 100644 index 38ca510cca..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png b/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png deleted file mode 100644 index f7c95e98c5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListNormalXsAmountTwenty_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png b/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png deleted file mode 100644 index adf30d02c5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png b/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png deleted file mode 100644 index e94faba392..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testListTightXsAmountThreeHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_dark.png deleted file mode 100644 index 3aa540cefa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_light.png deleted file mode 100644 index 1eac016f93..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskDeleteNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_dark.png deleted file mode 100644 index 0c5bafcd98..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_light.png deleted file mode 100644 index 2271f91854..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskDisabledIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_dark.png deleted file mode 100644 index 53ec90ac27..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_light.png deleted file mode 100644 index dbe7f2fb22..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskFullDateInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_dark.png deleted file mode 100644 index f6f129457d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_light.png deleted file mode 100644 index 0c8b43687d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_dark.png deleted file mode 100644 index f6f129457d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_light.png deleted file mode 100644 index 0c8b43687d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputFullyFilledNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_dark.png deleted file mode 100644 index de2af33cd4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_light.png deleted file mode 100644 index 1cfcd39533..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputLetterAndNumbersInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_dark.png deleted file mode 100644 index 1d4d002f57..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_light.png deleted file mode 100644 index e5e14cb658..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskInputPartiallyFilledNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_dark.png deleted file mode 100644 index ae03cbdc05..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_light.png deleted file mode 100644 index d805e378d3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_dark.png deleted file mode 100644 index 6584805703..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_light.png deleted file mode 100644 index e859fade8d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_dark.png deleted file mode 100644 index 1e5ba3753a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_light.png deleted file mode 100644 index da5dd22236..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_dark.png deleted file mode 100644 index 5077c827b1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_light.png deleted file mode 100644 index 300e667e1c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskMWarningRequiredRightOuterNumberAlwaysAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_dark.png deleted file mode 100644 index 9d8580502e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_light.png deleted file mode 100644 index 69b36906ad..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputMaxNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_dark.png deleted file mode 100644 index 92757135fd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_light.png deleted file mode 100644 index 6d104a7148..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputOneNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_dark.png deleted file mode 100644 index d3471a0dd1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_light.png deleted file mode 100644 index 3a0011b66e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInputSymbolsAndLetters_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_dark.png deleted file mode 100644 index 5387696330..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_light.png deleted file mode 100644 index 1c74644e27..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskNumberInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_dark.png deleted file mode 100644 index 9b6b9860ce..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_light.png deleted file mode 100644 index 8907ed56e8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskReadOnlyIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_dark.png deleted file mode 100644 index 7780a0f0e3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_light.png deleted file mode 100644 index b74228fed6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskSErrorTimeAlwaysTBTA_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_dark.png deleted file mode 100644 index 6c0f767633..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_light.png deleted file mode 100644 index ace8c99961..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_dark.png deleted file mode 100644 index 8442c186bd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_light.png deleted file mode 100644 index 76f580ecba..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInputNotFull_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_dark.png deleted file mode 100644 index a77746470a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_light.png deleted file mode 100644 index e38eb1c69e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskShortDateInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_dark.png deleted file mode 100644 index eb35fb8e71..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_light.png deleted file mode 100644 index d506be775c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputMaxNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_dark.png deleted file mode 100644 index ce5b3e4584..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_light.png deleted file mode 100644 index 2f5747097f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputStartWithZero_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_dark.png deleted file mode 100644 index 1817b695e4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_light.png deleted file mode 100644 index 14091e8752..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInputWithLetter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_dark.png deleted file mode 100644 index 1817b695e4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_light.png deleted file mode 100644 index 14091e8752..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTimeInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_dark.png deleted file mode 100644 index afb2c5fa3a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_light.png deleted file mode 100644 index 7f69f09cb9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeAnyOtherNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_dark.png deleted file mode 100644 index 0d50407146..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_light.png deleted file mode 100644 index 431e767405..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeLetterInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_dark.png deleted file mode 100644 index 6f66564206..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_light.png deleted file mode 100644 index 131d8849d8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskTypeNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_dark.png deleted file mode 100644 index e80158b90f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_light.png deleted file mode 100644 index 4ed7c6eb12..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXlDefaultShortDateAlwaysIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_dark.png deleted file mode 100644 index be164b1f56..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_light.png deleted file mode 100644 index 845d0bd878..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXsDefaultRequiredLeftPhoneOnInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_dark.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_dark.png deleted file mode 100644 index 25e447743d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_light.png b/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_light.png deleted file mode 100644 index 3c1047e0c4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_dark.png deleted file mode 100644 index 6248f84297..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_light.png deleted file mode 100644 index cb105dd167..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_dark.png deleted file mode 100644 index 2702ce50d1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_light.png deleted file mode 100644 index 81741afc5e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_dark.png deleted file mode 100644 index c4f3cd37f7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_light.png deleted file mode 100644 index 6082320a26..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_dark.png deleted file mode 100644 index ecf5f52cfa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_light.png deleted file mode 100644 index 07afb6cedc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_dark.png deleted file mode 100644 index 5490573fd3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_light.png deleted file mode 100644 index d99019e3c8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenter_dark.png deleted file mode 100644 index db08b639df..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalCenter_light.png deleted file mode 100644 index 4daa06a1d5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png deleted file mode 100644 index fd27d9c8b3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png deleted file mode 100644 index 69d224acc9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalNativeBlackoutHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_dark.png deleted file mode 100644 index 213a06cff6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_light.png deleted file mode 100644 index d5ae3ae8e0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_dark.png deleted file mode 100644 index c63fe12f56..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_light.png deleted file mode 100644 index 04ef566e78..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_dark.png deleted file mode 100644 index a1a2780cff..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_light.png deleted file mode 100644 index 19943d29f2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png b/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png deleted file mode 100644 index 682d8a851d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png b/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png deleted file mode 100644 index ed941b4293..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testModalWithoutNativeBlackout_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png deleted file mode 100644 index c49553ec44..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png deleted file mode 100644 index d4aa8c7397..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLCenterStartNoTextHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png deleted file mode 100644 index 171ec9c458..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png deleted file mode 100644 index a0fac24c4c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactLTopStartHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png deleted file mode 100644 index 38b1206d0d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png deleted file mode 100644 index 340475cdfd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactMTopCenterHasCloseActionButton_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png deleted file mode 100644 index 8243723240..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png deleted file mode 100644 index 217fd12447..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationCompactSTopEndText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png deleted file mode 100644 index ed9d8d23a6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png deleted file mode 100644 index b8b758ac16..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartInfo_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png deleted file mode 100644 index 69c1519999..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png deleted file mode 100644 index 4efaf4295e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconStartNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png deleted file mode 100644 index 168a23bb78..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png deleted file mode 100644 index a086788812..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopPositiveNoTitle_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png deleted file mode 100644 index 552b66b1a6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png deleted file mode 100644 index ef729ea5ee..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentIconTopWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png deleted file mode 100644 index 1566320dd1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png deleted file mode 100644 index ff53cc6c77..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentLooseIconStartDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png deleted file mode 100644 index 249f061a4b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png deleted file mode 100644 index f1e12efb1a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentNoIconDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_dark.png deleted file mode 100644 index 49f53c1cff..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_light.png deleted file mode 100644 index 211242f68c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_dark.png deleted file mode 100644 index e84661c179..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_light.png deleted file mode 100644 index 17ba109eb2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationContentWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png deleted file mode 100644 index e80ed16fea..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png deleted file mode 100644 index e2d46c65d1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomCenterTextHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png deleted file mode 100644 index abd3d1205f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png deleted file mode 100644 index d0c1d44c26..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLBottomEndTextHasCloseActionButton_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png deleted file mode 100644 index 48924e1bdf..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png deleted file mode 100644 index d42bd338f3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseLCenterTextHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png deleted file mode 100644 index d55050d81e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png deleted file mode 100644 index ba42e62256..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseMCenterEndTextHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png deleted file mode 100644 index d88f392982..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png b/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png deleted file mode 100644 index fce64c502f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testNotificationLooseSBottomStartText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png deleted file mode 100644 index ce371068d8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png deleted file mode 100644 index 9b17b81ba9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMAccentStrictTopCenterCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png deleted file mode 100644 index 498026eb2c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png deleted file mode 100644 index fc4dc02b30..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png deleted file mode 100644 index 132ab6e906..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png deleted file mode 100644 index 7ece95293f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png deleted file mode 100644 index 6dc74383dc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png deleted file mode 100644 index 33c2b4a785..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png deleted file mode 100644 index b1d448e6d6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png deleted file mode 100644 index 9ea896fad5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png deleted file mode 100644 index aea0e48d6d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png deleted file mode 100644 index d0b3532c3b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverMDefaultStrictBottomEndTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png deleted file mode 100644 index 408965e6cd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png deleted file mode 100644 index 34a22f9d31..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverSAccentStrictBottomStartTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png deleted file mode 100644 index efa2adb7d0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png deleted file mode 100644 index 24b28ca8da..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testPopoverSDefaultLooseEndBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_dark.png deleted file mode 100644 index c3ff81328b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_light.png deleted file mode 100644 index 961827eb39..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png deleted file mode 100644 index 0fb9420a38..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png deleted file mode 100644 index 9c4bee738f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefaultValueOne_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_dark.png deleted file mode 100644 index 5a577c8213..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_light.png deleted file mode 100644 index 1e9e17714d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_dark.png deleted file mode 100644 index 64485df456..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_light.png deleted file mode 100644 index 8a69198825..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarGradientAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_dark.png deleted file mode 100644 index a41f46d29d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_light.png deleted file mode 100644 index 4ef0c566c6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_dark.png deleted file mode 100644 index 26888ab068..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_light.png deleted file mode 100644 index 3da30f0ca4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_dark.png deleted file mode 100644 index 97834ac269..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_light.png deleted file mode 100644 index f7cd22c2e4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_dark.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_dark.png deleted file mode 100644 index 5f88eb961c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_light.png b/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_light.png deleted file mode 100644 index fa032ca253..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testProgressBarWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_dark.png deleted file mode 100644 index 0019a6d5a4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_light.png deleted file mode 100644 index cb3ae53d6e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png deleted file mode 100644 index a736289e46..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png deleted file mode 100644 index f3cfdb0e6c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeMDescription_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png deleted file mode 100644 index b97f5d7eef..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png deleted file mode 100644 index 38705f430c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png deleted file mode 100644 index 6d0dfd1ff7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png deleted file mode 100644 index d8b6189c9c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeSLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png deleted file mode 100644 index 7dacee2f53..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png deleted file mode 100644 index 1de8dec55a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png deleted file mode 100644 index 873b62390a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png deleted file mode 100644 index 80b86e5f8f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeMNoDescription_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_dark.png deleted file mode 100644 index 1d628ed15e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_light.png deleted file mode 100644 index e503278ab6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_dark.png deleted file mode 100644 index 7324ab661d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_light.png deleted file mode 100644 index a97b3ddfea..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRadioBoxSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_dark.png deleted file mode 100644 index 8cc55e62d7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_light.png b/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_light.png deleted file mode 100644 index ebe2cdad66..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRectSkeletonLighter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_dark.png b/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_dark.png deleted file mode 100644 index 8e039598c1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_light.png b/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_light.png deleted file mode 100644 index db24229355..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testRectSkeleton_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_dark.png deleted file mode 100644 index 342c50039d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_light.png b/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_light.png deleted file mode 100644 index 39fc604918..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testScrollBarM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_dark.png deleted file mode 100644 index db3721cfe7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_light.png b/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_light.png deleted file mode 100644 index c1ecb482a9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testScrollBarS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_dark.png deleted file mode 100644 index 829181241b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_light.png deleted file mode 100644 index e054bdde42..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_dark.png deleted file mode 100644 index 79a7b5078e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_light.png deleted file mode 100644 index 37d7bb222c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png deleted file mode 100644 index 8585f5d4d3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png deleted file mode 100644 index 03720a2275..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeLPrimary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png deleted file mode 100644 index 7e7aa139d8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png deleted file mode 100644 index 8ed9d8128e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeMSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_dark.png deleted file mode 100644 index ee559c9e50..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_light.png deleted file mode 100644 index 26acaf34f2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_dark.png deleted file mode 100644 index c4ac0a510b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_light.png deleted file mode 100644 index a9178a892a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentItemSizeXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_dark.png deleted file mode 100644 index 29337dae03..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_light.png deleted file mode 100644 index 8e1f5d1656..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentOrientationVertical_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_dark.png deleted file mode 100644 index fdf8ea7589..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_light.png deleted file mode 100644 index f6e356d0b1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeLCounter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_dark.png deleted file mode 100644 index f82c17b27b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_light.png deleted file mode 100644 index 16f01a83fc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeL_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_dark.png deleted file mode 100644 index 37cef691ea..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_light.png deleted file mode 100644 index 75189fb078..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_dark.png deleted file mode 100644 index dd7f13ca0c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_light.png deleted file mode 100644 index a34bf7aa7d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeSStretch_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_dark.png deleted file mode 100644 index 94a1ea4b3a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_light.png deleted file mode 100644 index d25244cfe2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_dark.png deleted file mode 100644 index dc70c92422..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_light.png b/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_light.png deleted file mode 100644 index 8ea6a582fb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSegmentSizeXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_dark.png deleted file mode 100644 index ac48c0d9b2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_light.png deleted file mode 100644 index 45fb188ac3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchLToggleS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_dark.png deleted file mode 100644 index 2bcfc180b3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_light.png deleted file mode 100644 index 10cbf7e823..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOffDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_dark.png deleted file mode 100644 index 0125a30cec..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_light.png deleted file mode 100644 index f5d41b6525..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOff_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_dark.png deleted file mode 100644 index f2e74ee2fa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_light.png deleted file mode 100644 index d4c0441bc6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOnDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_dark.png deleted file mode 100644 index 3fcadaef63..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_light.png deleted file mode 100644 index 04d9124fe3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchOn_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_dark.png deleted file mode 100644 index 87f3f40454..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_light.png deleted file mode 100644 index c58bd7b85f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchSToggleS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchS_dark.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchS_dark.png deleted file mode 100644 index 9f2a74d4ca..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testSwitchS_light.png b/tokens/stylessalute.compose/screenshots-compose/testSwitchS_light.png deleted file mode 100644 index b4de3ae61e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testSwitchS_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png deleted file mode 100644 index f9a34575ef..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png deleted file mode 100644 index 9d8273cfc9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLDefaultChipsInnerRequiredEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png deleted file mode 100644 index 97632899cb..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png deleted file mode 100644 index 8f05216824..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearLErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png deleted file mode 100644 index ea78872f23..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png deleted file mode 100644 index 209cec1f05..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMErrorInnerRequiredStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png deleted file mode 100644 index 28afe5501c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png deleted file mode 100644 index be1a5b7a91..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearMWarningRequiredStartInner_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png deleted file mode 100644 index 6ebec5dfff..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png deleted file mode 100644 index 0bbc389a7a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png deleted file mode 100644 index ee97975e33..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png deleted file mode 100644 index 2752491e42..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaClearXsDefaultOuterRequireEndFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_dark.png deleted file mode 100644 index 42b67623ad..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_light.png deleted file mode 100644 index 969f00b3cf..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png deleted file mode 100644 index d0f3eb0f12..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png deleted file mode 100644 index 7062cbf315..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultInnerLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png deleted file mode 100644 index 1fe410d200..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png deleted file mode 100644 index 6ea115234c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLDefaultTBTA_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_dark.png deleted file mode 100644 index 0d074246ac..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_light.png deleted file mode 100644 index 8e5b5c00e5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaLReadOnly_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png deleted file mode 100644 index a7b3e9bd20..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png deleted file mode 100644 index 70d4cd7420..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png deleted file mode 100644 index 2b748014fd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png deleted file mode 100644 index 3c25f6d4d2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMErrorOuterOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png deleted file mode 100644 index af64007850..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png deleted file mode 100644 index 5ad8251237..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMInnerOptionalChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png deleted file mode 100644 index 9eebd4a53c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png deleted file mode 100644 index 87d096cee8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaMWarningInnerOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png deleted file mode 100644 index 8bd9168e93..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png deleted file mode 100644 index 99eab7fc7e..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultInnerRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png deleted file mode 100644 index 9b71ad28b0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png deleted file mode 100644 index 908843dad5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSDefaultOuterRightChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_dark.png deleted file mode 100644 index 607c2e8d3f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_light.png deleted file mode 100644 index e3d094ab27..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png deleted file mode 100644 index 7517f11199..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png deleted file mode 100644 index c75d2385e5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRightFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png deleted file mode 100644 index 5299216efa..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png deleted file mode 100644 index d4044a3182..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaSWarningInnerRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png deleted file mode 100644 index 2066f1c150..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png deleted file mode 100644 index c563fb94bd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png deleted file mode 100644 index 247939d668..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png deleted file mode 100644 index b5aebc20c1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextAreaXsErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png deleted file mode 100644 index f4922e8d82..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png deleted file mode 100644 index 44cdc8b2d8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLDefaultInnerRequiredRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png deleted file mode 100644 index 9991c57712..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png deleted file mode 100644 index b61259c0d9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorInnerOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png deleted file mode 100644 index 96817dbef2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png deleted file mode 100644 index 259a4f96df..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearLErrorTBTA_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png deleted file mode 100644 index 83e7cf1ff3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png deleted file mode 100644 index f2de34a580..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMErrorInnerRequiredLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png deleted file mode 100644 index d8e2c5229a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png deleted file mode 100644 index 6742e434a8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearMWarningInnerRequiredLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png deleted file mode 100644 index 1bccd76e7c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png deleted file mode 100644 index fb66f5641c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearSDefaultOuterOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png deleted file mode 100644 index b82eb2d2dc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png deleted file mode 100644 index cb9c899f61..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldClearXSSuccessOuterRequiredRightFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_dark.png deleted file mode 100644 index ee29e0a6b0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_light.png deleted file mode 100644 index 046c6ca72f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png deleted file mode 100644 index 7808eb5ff0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png deleted file mode 100644 index 78012853c9..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDefaultInnerLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png deleted file mode 100644 index d21f0c9a39..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png deleted file mode 100644 index a2e593280d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabledOuterLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_dark.png deleted file mode 100644 index ab126c565d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_light.png deleted file mode 100644 index 015a6a3a8c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_dark.png deleted file mode 100644 index 1d7e387ba8..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_light.png deleted file mode 100644 index 19edf8d329..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLInputText_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png deleted file mode 100644 index 9a7f34fa71..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png deleted file mode 100644 index 2618c022b7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuccessRequiredLeftOuter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png deleted file mode 100644 index de36bf5dc2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png deleted file mode 100644 index d34bc874d2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefixCyrillic_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png deleted file mode 100644 index 77b7b43988..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png deleted file mode 100644 index 9ed07cdd08..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldLSuffixPrefix_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png deleted file mode 100644 index 80d78e0fc6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png deleted file mode 100644 index 49f526a7ed..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMErrorOuterLabelOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png deleted file mode 100644 index 95174f26a4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png deleted file mode 100644 index 79dbe6d2e1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessInnerLabelChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png deleted file mode 100644 index 7027ddb290..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png deleted file mode 100644 index ad27f89cb2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMSuccessOuterLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png deleted file mode 100644 index dcb52ccefd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png deleted file mode 100644 index d6475363c4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldMWarningInnerLabelOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_dark.png deleted file mode 100644 index a21924a02a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_light.png deleted file mode 100644 index ccda7d6128..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldReadOnly_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png deleted file mode 100644 index 4bf0842898..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png deleted file mode 100644 index 18a5cd2463..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSOuterLabelRightChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png deleted file mode 100644 index 9009305077..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png deleted file mode 100644 index 1906bc449b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldSWarningInnerRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png deleted file mode 100644 index 0a955b6439..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_light.png deleted file mode 100644 index 0437a1e964..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldTBTANoValue_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png deleted file mode 100644 index 787e799187..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_light.png deleted file mode 100644 index 91ce64a293..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSErrorInner_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png deleted file mode 100644 index 4c25deba39..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png deleted file mode 100644 index 4f30d7136b..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextFieldXSSuccessOuterLabelOptional_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png deleted file mode 100644 index b353255a87..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png deleted file mode 100644 index bf2a5e562d..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultFullWidth_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png deleted file mode 100644 index a331caa298..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png deleted file mode 100644 index 43638690f5..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonDefaultNoTextRandom_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png deleted file mode 100644 index f951913f10..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png b/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png deleted file mode 100644 index efe91af3b0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTextSkeletonLighterNoTextRandom_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png deleted file mode 100644 index 94afa679b6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png deleted file mode 100644 index 485cf9b89a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledDefaultCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png deleted file mode 100644 index 5b6ece62e0..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png deleted file mode 100644 index c0f5c1f5bc..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledNegativeCenterHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png deleted file mode 100644 index e03d1bd23a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png deleted file mode 100644 index b585b6d784..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastPilledPositiveCenterEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png deleted file mode 100644 index 162a1131f4..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png deleted file mode 100644 index 81075e3488..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomCenterHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png deleted file mode 100644 index 845bbafb62..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png deleted file mode 100644 index 1fc92d48a2..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png deleted file mode 100644 index 3d1f4757bd..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png deleted file mode 100644 index daa7202c1a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultBottomStartHasContentEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png deleted file mode 100644 index ec09aa2458..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png deleted file mode 100644 index 0fefab08ef..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedDefaultTopStartHasContentStartHasContentEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png deleted file mode 100644 index 1b5b8ea359..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png deleted file mode 100644 index 418c4d7c1a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedNegativeTopCenterHasContentStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png deleted file mode 100644 index 0f2c0a3a50..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png deleted file mode 100644 index b6205916a1..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testToastRoundedPositiveTopEndHasContentStartEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png deleted file mode 100644 index 6a427a4b69..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png deleted file mode 100644 index 9d4a39d2b6..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png deleted file mode 100644 index afe1ca921c..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png deleted file mode 100644 index 02dff40d28..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png deleted file mode 100644 index 2ac3b4a632..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png deleted file mode 100644 index 87a9570322..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png deleted file mode 100644 index b8824e6de3..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png deleted file mode 100644 index c500e7046f..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png deleted file mode 100644 index 1fb2e5be90..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png deleted file mode 100644 index 8fa04bc750..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEndNotVisible_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png deleted file mode 100644 index f837e02bbe..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png deleted file mode 100644 index f19f46bd20..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMLooseTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png deleted file mode 100644 index e82d5833ec..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png deleted file mode 100644 index aff042fe87..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictBottomEndTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png deleted file mode 100644 index ade87e7cf7..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png deleted file mode 100644 index 2e87a9d121..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipMStrictTopCenterCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png deleted file mode 100644 index a872f5fa6a..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png deleted file mode 100644 index 07ef909474..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipSLooseEndBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png deleted file mode 100644 index 8e163d7293..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png b/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png deleted file mode 100644 index ddfd1a1433..0000000000 Binary files a/tokens/stylessalute.compose/screenshots-compose/testTooltipSStrictBottomStartTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/AndroidManifest.xml b/tokens/stylessalute.compose/src/main/AndroidManifest.xml deleted file mode 100644 index 10728cc703..0000000000 --- a/tokens/stylessalute.compose/src/main/AndroidManifest.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEnd.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEnd.kt deleted file mode 100644 index 7a12c9add3..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionClearActionEnd - */ -public object AccordionClearActionEnd diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEndStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEndStyles.kt deleted file mode 100644 index d6cc27028d..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionEndStyles.kt +++ /dev/null @@ -1,193 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.accordionitem.AccordionItemClearActionEnd -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionClearActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionClearActionEndXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionClearActionEndS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionClearActionEndM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionClearActionEndL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionClearActionEndH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionEnd - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val AccordionClearActionEnd.Xs: WrapperAccordionClearActionEndXs - @Composable - @JvmName("WrapperAccordionClearActionEndXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.Xs.style()) - .dimensions { - itemSpacing(4.0.dp) - } - .wrap(::WrapperAccordionClearActionEndXs) - -public val AccordionClearActionEnd.S: WrapperAccordionClearActionEndS - @Composable - @JvmName("WrapperAccordionClearActionEndS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.S.style()) - .dimensions { - itemSpacing(6.0.dp) - } - .wrap(::WrapperAccordionClearActionEndS) - -public val AccordionClearActionEnd.M: WrapperAccordionClearActionEndM - @Composable - @JvmName("WrapperAccordionClearActionEndM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.M.style()) - .dimensions { - itemSpacing(8.0.dp) - } - .wrap(::WrapperAccordionClearActionEndM) - -public val AccordionClearActionEnd.L: WrapperAccordionClearActionEndL - @Composable - @JvmName("WrapperAccordionClearActionEndL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.L.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionEndL) - -public val AccordionClearActionEnd.H2: WrapperAccordionClearActionEndH2 - @Composable - @JvmName("WrapperAccordionClearActionEndH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H2.style()) - .dimensions { - itemSpacing(16.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH2) - -public val AccordionClearActionEnd.H3: WrapperAccordionClearActionEndH3 - @Composable - @JvmName("WrapperAccordionClearActionEndH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H3.style()) - .dimensions { - itemSpacing(14.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH3) - -public val AccordionClearActionEnd.H4: WrapperAccordionClearActionEndH4 - @Composable - @JvmName("WrapperAccordionClearActionEndH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H4.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH4) - -public val AccordionClearActionEnd.H5: WrapperAccordionClearActionEndH5 - @Composable - @JvmName("WrapperAccordionClearActionEndH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionEnd.H5.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionEndH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStart.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStart.kt deleted file mode 100644 index e8a8694da1..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionClearActionStart - */ -public object AccordionClearActionStart diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStartStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStartStyles.kt deleted file mode 100644 index 77f8a4004b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionClearActionStartStyles.kt +++ /dev/null @@ -1,193 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.accordionitem.AccordionItemClearActionStart -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionClearActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionClearActionStartXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionClearActionStartS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionClearActionStartM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionClearActionStartL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionClearActionStartH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionClearActionStart - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val AccordionClearActionStart.Xs: WrapperAccordionClearActionStartXs - @Composable - @JvmName("WrapperAccordionClearActionStartXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.Xs.style()) - .dimensions { - itemSpacing(4.0.dp) - } - .wrap(::WrapperAccordionClearActionStartXs) - -public val AccordionClearActionStart.S: WrapperAccordionClearActionStartS - @Composable - @JvmName("WrapperAccordionClearActionStartS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.S.style()) - .dimensions { - itemSpacing(6.0.dp) - } - .wrap(::WrapperAccordionClearActionStartS) - -public val AccordionClearActionStart.M: WrapperAccordionClearActionStartM - @Composable - @JvmName("WrapperAccordionClearActionStartM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.M.style()) - .dimensions { - itemSpacing(8.0.dp) - } - .wrap(::WrapperAccordionClearActionStartM) - -public val AccordionClearActionStart.L: WrapperAccordionClearActionStartL - @Composable - @JvmName("WrapperAccordionClearActionStartL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.L.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionStartL) - -public val AccordionClearActionStart.H2: WrapperAccordionClearActionStartH2 - @Composable - @JvmName("WrapperAccordionClearActionStartH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H2.style()) - .dimensions { - itemSpacing(16.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH2) - -public val AccordionClearActionStart.H3: WrapperAccordionClearActionStartH3 - @Composable - @JvmName("WrapperAccordionClearActionStartH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H3.style()) - .dimensions { - itemSpacing(14.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH3) - -public val AccordionClearActionStart.H4: WrapperAccordionClearActionStartH4 - @Composable - @JvmName("WrapperAccordionClearActionStartH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H4.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH4) - -public val AccordionClearActionStart.H5: WrapperAccordionClearActionStartH5 - @Composable - @JvmName("WrapperAccordionClearActionStartH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemClearActionStart.H5.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperAccordionClearActionStartH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEnd.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEnd.kt deleted file mode 100644 index 13c4bfe532..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionSolidActionEnd - */ -public object AccordionSolidActionEnd diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEndStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEndStyles.kt deleted file mode 100644 index 3e1d03c366..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionEndStyles.kt +++ /dev/null @@ -1,169 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.accordionitem.AccordionItemSolidActionEnd -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionSolidActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionSolidActionEndXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionSolidActionEndS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionSolidActionEndM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionSolidActionEndL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionSolidActionEndH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionEnd - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dimensions { - itemSpacing(2.0.dp) - } - -public val AccordionSolidActionEnd.Xs: WrapperAccordionSolidActionEndXs - @Composable - @JvmName("WrapperAccordionSolidActionEndXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.Xs.style()) - .wrap(::WrapperAccordionSolidActionEndXs) - -public val AccordionSolidActionEnd.S: WrapperAccordionSolidActionEndS - @Composable - @JvmName("WrapperAccordionSolidActionEndS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.S.style()) - .wrap(::WrapperAccordionSolidActionEndS) - -public val AccordionSolidActionEnd.M: WrapperAccordionSolidActionEndM - @Composable - @JvmName("WrapperAccordionSolidActionEndM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.M.style()) - .wrap(::WrapperAccordionSolidActionEndM) - -public val AccordionSolidActionEnd.L: WrapperAccordionSolidActionEndL - @Composable - @JvmName("WrapperAccordionSolidActionEndL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.L.style()) - .wrap(::WrapperAccordionSolidActionEndL) - -public val AccordionSolidActionEnd.H2: WrapperAccordionSolidActionEndH2 - @Composable - @JvmName("WrapperAccordionSolidActionEndH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H2.style()) - .wrap(::WrapperAccordionSolidActionEndH2) - -public val AccordionSolidActionEnd.H3: WrapperAccordionSolidActionEndH3 - @Composable - @JvmName("WrapperAccordionSolidActionEndH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H3.style()) - .wrap(::WrapperAccordionSolidActionEndH3) - -public val AccordionSolidActionEnd.H4: WrapperAccordionSolidActionEndH4 - @Composable - @JvmName("WrapperAccordionSolidActionEndH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H4.style()) - .wrap(::WrapperAccordionSolidActionEndH4) - -public val AccordionSolidActionEnd.H5: WrapperAccordionSolidActionEndH5 - @Composable - @JvmName("WrapperAccordionSolidActionEndH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionEnd.H5.style()) - .wrap(::WrapperAccordionSolidActionEndH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStart.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStart.kt deleted file mode 100644 index 6fa850c9f6..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordion - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionSolidActionStart - */ -public object AccordionSolidActionStart diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStartStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStartStyles.kt deleted file mode 100644 index 14c636f024..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordion/AccordionSolidActionStartStyles.kt +++ /dev/null @@ -1,169 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordion - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionStyle -import com.sdds.compose.uikit.AccordionStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.accordionitem.AccordionItemSolidActionStart -import com.sdds.stylessalute.styles.accordionitem.H2 -import com.sdds.stylessalute.styles.accordionitem.H3 -import com.sdds.stylessalute.styles.accordionitem.H4 -import com.sdds.stylessalute.styles.accordionitem.H5 -import com.sdds.stylessalute.styles.accordionitem.L -import com.sdds.stylessalute.styles.accordionitem.M -import com.sdds.stylessalute.styles.accordionitem.S -import com.sdds.stylessalute.styles.accordionitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionSolidActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionSolidActionStartXs( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionSolidActionStartS( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionSolidActionStartM( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionSolidActionStartL( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH2( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH3( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH4( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionSolidActionStartH5( - public override val builder: AccordionStyleBuilder, -) : WrapperAccordionSolidActionStart - -private val AccordionStyleBuilder.invariantProps: AccordionStyleBuilder - @Composable - get() = this - .dimensions { - itemSpacing(2.0.dp) - } - -public val AccordionSolidActionStart.Xs: WrapperAccordionSolidActionStartXs - @Composable - @JvmName("WrapperAccordionSolidActionStartXs") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.Xs.style()) - .wrap(::WrapperAccordionSolidActionStartXs) - -public val AccordionSolidActionStart.S: WrapperAccordionSolidActionStartS - @Composable - @JvmName("WrapperAccordionSolidActionStartS") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.S.style()) - .wrap(::WrapperAccordionSolidActionStartS) - -public val AccordionSolidActionStart.M: WrapperAccordionSolidActionStartM - @Composable - @JvmName("WrapperAccordionSolidActionStartM") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.M.style()) - .wrap(::WrapperAccordionSolidActionStartM) - -public val AccordionSolidActionStart.L: WrapperAccordionSolidActionStartL - @Composable - @JvmName("WrapperAccordionSolidActionStartL") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.L.style()) - .wrap(::WrapperAccordionSolidActionStartL) - -public val AccordionSolidActionStart.H2: WrapperAccordionSolidActionStartH2 - @Composable - @JvmName("WrapperAccordionSolidActionStartH2") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H2.style()) - .wrap(::WrapperAccordionSolidActionStartH2) - -public val AccordionSolidActionStart.H3: WrapperAccordionSolidActionStartH3 - @Composable - @JvmName("WrapperAccordionSolidActionStartH3") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H3.style()) - .wrap(::WrapperAccordionSolidActionStartH3) - -public val AccordionSolidActionStart.H4: WrapperAccordionSolidActionStartH4 - @Composable - @JvmName("WrapperAccordionSolidActionStartH4") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H4.style()) - .wrap(::WrapperAccordionSolidActionStartH4) - -public val AccordionSolidActionStart.H5: WrapperAccordionSolidActionStartH5 - @Composable - @JvmName("WrapperAccordionSolidActionStartH5") - get() = AccordionStyle.builder(this) - .invariantProps - .accordionItemStyle(AccordionItemSolidActionStart.H5.style()) - .wrap(::WrapperAccordionSolidActionStartH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEnd.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEnd.kt deleted file mode 100644 index dde64b61fa..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemClearActionEnd - */ -public object AccordionItemClearActionEnd diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEndStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEndStyles.kt deleted file mode 100644 index 986282f86e..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionEndStyles.kt +++ /dev/null @@ -1,244 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemClearActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemClearActionEndH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionEnd - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .iconPlacement(AccordionIconPlacement.End) - .iconRotation(90.0f) - -public val AccordionItemClearActionEnd.Xs: WrapperAccordionItemClearActionEndXs - @Composable - @JvmName("WrapperAccordionItemClearActionEndXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyXsBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndXs) - -public val AccordionItemClearActionEnd.S: WrapperAccordionItemClearActionEndS - @Composable - @JvmName("WrapperAccordionItemClearActionEndS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodySBold) - .contentTextStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndS) - -public val AccordionItemClearActionEnd.M: WrapperAccordionItemClearActionEndM - @Composable - @JvmName("WrapperAccordionItemClearActionEndM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyMBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndM) - -public val AccordionItemClearActionEnd.L: WrapperAccordionItemClearActionEndL - @Composable - @JvmName("WrapperAccordionItemClearActionEndL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyLBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(16.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndL) - -public val AccordionItemClearActionEnd.H2: WrapperAccordionItemClearActionEndH2 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH2Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemClearActionEndH2) - -public val AccordionItemClearActionEnd.H3: WrapperAccordionItemClearActionEndH3 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH3Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemClearActionEndH3) - -public val AccordionItemClearActionEnd.H4: WrapperAccordionItemClearActionEndH4 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH4Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndH4) - -public val AccordionItemClearActionEnd.H5: WrapperAccordionItemClearActionEndH5 - @Composable - @JvmName("WrapperAccordionItemClearActionEndH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH5Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemClearActionEndH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStart.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStart.kt deleted file mode 100644 index 9509c7f58f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemClearActionStart - */ -public object AccordionItemClearActionStart diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStartStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStartStyles.kt deleted file mode 100644 index bd23884baa..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemClearActionStartStyles.kt +++ /dev/null @@ -1,247 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemClearActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemClearActionStartH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemClearActionStart - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - iconPadding(4.0.dp) - } - .iconPlacement(AccordionIconPlacement.Start) - .iconRotation(180.0f) - -public val AccordionItemClearActionStart.Xs: WrapperAccordionItemClearActionStartXs - @Composable - @JvmName("WrapperAccordionItemClearActionStartXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyXsBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartXs) - -public val AccordionItemClearActionStart.S: WrapperAccordionItemClearActionStartS - @Composable - @JvmName("WrapperAccordionItemClearActionStartS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodySBold) - .contentTextStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartS) - -public val AccordionItemClearActionStart.M: WrapperAccordionItemClearActionStartM - @Composable - @JvmName("WrapperAccordionItemClearActionStartM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyMBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartM) - -public val AccordionItemClearActionStart.L: WrapperAccordionItemClearActionStartL - @Composable - @JvmName("WrapperAccordionItemClearActionStartL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.bodyLBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(16.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartL) - -public val AccordionItemClearActionStart.H2: WrapperAccordionItemClearActionStartH2 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH2Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(32.0.dp) - contentPaddingBottom(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemClearActionStartH2) - -public val AccordionItemClearActionStart.H3: WrapperAccordionItemClearActionStartH3 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH3Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(30.0.dp) - contentPaddingBottom(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemClearActionStartH3) - -public val AccordionItemClearActionStart.H4: WrapperAccordionItemClearActionStartH4 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH4Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(22.0.dp) - contentPaddingBottom(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartH4) - -public val AccordionItemClearActionStart.H5: WrapperAccordionItemClearActionStartH5 - @Composable - @JvmName("WrapperAccordionItemClearActionStartH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .titleStyle(StylesSaluteTheme.typography.headerH5Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingBottom(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemClearActionStartH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEnd.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEnd.kt deleted file mode 100644 index 4c3c07c7b7..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEnd.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemSolidActionEnd - */ -public object AccordionItemSolidActionEnd diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEndStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEndStyles.kt deleted file mode 100644 index c181b87f6e..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionEndStyles.kt +++ /dev/null @@ -1,288 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemSolidActionEnd : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionEndH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionEnd - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .iconPlacement(AccordionIconPlacement.End) - .iconRotation(90.0f) - -public val AccordionItemSolidActionEnd.Xs: WrapperAccordionItemSolidActionEndXs - @Composable - @JvmName("WrapperAccordionItemSolidActionEndXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(10.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndXs) - -public val AccordionItemSolidActionEnd.S: WrapperAccordionItemSolidActionEndS - @Composable - @JvmName("WrapperAccordionItemSolidActionEndS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySBold) - .contentTextStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(14.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndS) - -public val AccordionItemSolidActionEnd.M: WrapperAccordionItemSolidActionEndM - @Composable - @JvmName("WrapperAccordionItemSolidActionEndM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(18.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(16.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndM) - -public val AccordionItemSolidActionEnd.L: WrapperAccordionItemSolidActionEndL - @Composable - @JvmName("WrapperAccordionItemSolidActionEndL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndL) - -public val AccordionItemSolidActionEnd.H2: WrapperAccordionItemSolidActionEndH2 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.headerH2Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(20.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(20.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - iconPadding(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemSolidActionEndH2) - -public val AccordionItemSolidActionEnd.H3: WrapperAccordionItemSolidActionEndH3 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.headerH3Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(18.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - iconPadding(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_24) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_24) - .wrap(::WrapperAccordionItemSolidActionEndH3) - -public val AccordionItemSolidActionEnd.H4: WrapperAccordionItemSolidActionEndH4 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.headerH4Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(14.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(14.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - iconPadding(12.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndH4) - -public val AccordionItemSolidActionEnd.H5: WrapperAccordionItemSolidActionEndH5 - @Composable - @JvmName("WrapperAccordionItemSolidActionEndH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.headerH5Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - iconPadding(10.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_plus_16) - .iconOpened(com.sdds.icons.R.drawable.ic_minus_16) - .wrap(::WrapperAccordionItemSolidActionEndH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStart.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStart.kt deleted file mode 100644 index b384196de9..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStart.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.accordionitem - -/** - * Вспомогательный объект для описания API и стиля компонента AccordionItemSolidActionStart - */ -public object AccordionItemSolidActionStart diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStartStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStartStyles.kt deleted file mode 100644 index 513984f3c1..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/accordionitem/AccordionItemSolidActionStartStyles.kt +++ /dev/null @@ -1,283 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.accordionitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AccordionIconPlacement -import com.sdds.compose.uikit.AccordionItemStyle -import com.sdds.compose.uikit.AccordionItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAccordionItemSolidActionStart : - BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartXs( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartS( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartM( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartL( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H2 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH2( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H3 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH3( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H4 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH4( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -/** - * Обертка для вариации H5 - */ -@JvmInline -public value class WrapperAccordionItemSolidActionStartH5( - public override val builder: AccordionItemStyleBuilder, -) : WrapperAccordionItemSolidActionStart - -private val AccordionItemStyleBuilder.invariantProps: AccordionItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentTextColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .dimensions { - iconPadding(4.0.dp) - } - .iconPlacement(AccordionIconPlacement.Start) - .iconRotation(180.0f) - -public val AccordionItemSolidActionStart.Xs: WrapperAccordionItemSolidActionStartXs - @Composable - @JvmName("WrapperAccordionItemSolidActionStartXs") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - contentPaddingStart(32.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(10.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartXs) - -public val AccordionItemSolidActionStart.S: WrapperAccordionItemSolidActionStartS - @Composable - @JvmName("WrapperAccordionItemSolidActionStartS") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySBold) - .contentTextStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - contentPaddingStart(36.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartS) - -public val AccordionItemSolidActionStart.M: WrapperAccordionItemSolidActionStartM - @Composable - @JvmName("WrapperAccordionItemSolidActionStartM") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(40.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(16.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartM) - -public val AccordionItemSolidActionStart.L: WrapperAccordionItemSolidActionStartL - @Composable - @JvmName("WrapperAccordionItemSolidActionStartL") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLBold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(42.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - paddingTop(17.0.dp) - paddingBottom(17.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartL) - -public val AccordionItemSolidActionStart.H2: WrapperAccordionItemSolidActionStartH2 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH2") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.headerH2Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(52.0.dp) - contentPaddingEnd(20.0.dp) - contentPaddingBottom(20.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemSolidActionStartH2) - -public val AccordionItemSolidActionStart.H3: WrapperAccordionItemSolidActionStartH3 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH3") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.headerH3Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - contentPaddingStart(48.0.dp) - contentPaddingEnd(18.0.dp) - contentPaddingBottom(18.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_24) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_24) - .wrap(::WrapperAccordionItemSolidActionStartH3) - -public val AccordionItemSolidActionStart.H4: WrapperAccordionItemSolidActionStartH4 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH4") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.headerH4Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(36.0.dp) - contentPaddingEnd(14.0.dp) - contentPaddingBottom(14.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartH4) - -public val AccordionItemSolidActionStart.H5: WrapperAccordionItemSolidActionStartH5 - @Composable - @JvmName("WrapperAccordionItemSolidActionStartH5") - get() = AccordionItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.headerH5Bold) - .contentTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - contentPaddingStart(12.0.dp) - contentPaddingEnd(12.0.dp) - contentPaddingBottom(12.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .iconClosed(com.sdds.icons.R.drawable.ic_disclosure_down_fill_16) - .iconOpened(com.sdds.icons.R.drawable.ic_disclosure_up_fill_16) - .wrap(::WrapperAccordionItemSolidActionStartH5) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/Avatar.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/Avatar.kt deleted file mode 100644 index 3fd268a1a8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/Avatar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.avatar - -/** - * Вспомогательный объект для описания API и стиля компонента Avatar - */ -public object Avatar diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/AvatarStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/AvatarStyles.kt deleted file mode 100644 index 4a22c01a9a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatar/AvatarStyles.kt +++ /dev/null @@ -1,207 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.avatar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AvatarStatus -import com.sdds.compose.uikit.AvatarStyle -import com.sdds.compose.uikit.AvatarStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.modify -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.badge.Accent -import com.sdds.stylessalute.styles.badge.BadgeSolid -import com.sdds.stylessalute.styles.badge.L -import com.sdds.stylessalute.styles.badge.Pilled -import com.sdds.stylessalute.styles.badge.S -import com.sdds.stylessalute.styles.badge.Xs -import com.sdds.stylessalute.styles.counter.Counter -import com.sdds.stylessalute.styles.counter.L -import com.sdds.stylessalute.styles.counter.Negative -import com.sdds.stylessalute.styles.counter.S -import com.sdds.stylessalute.styles.counter.Xs -import com.sdds.stylessalute.styles.counter.Xxs -import com.sdds.stylessalute.styles.indicator.Indicator -import com.sdds.stylessalute.styles.indicator.L -import com.sdds.stylessalute.styles.indicator.M -import com.sdds.stylessalute.styles.indicator.S -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAvatar : BuilderWrapper - -/** - * Обертка для вариации Xxl - */ -@JvmInline -public value class WrapperAvatarXxl( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperAvatarL( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperAvatarM( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAvatarS( - public override val builder: AvatarStyleBuilder, -) : WrapperAvatar - -private val AvatarStyleBuilder.invariantProps: AvatarStyleBuilder - @Composable - get() = this - .shape(CircleShape) - .colors { - backgroundColor( - StylesSaluteTheme.gradients.surfaceDefaultGradientMain.asLayered(0.2f).asStatefulValue(), - ) - textColor( - StylesSaluteTheme.gradients.textDefaultGradientMain.asLayered().asStatefulValue(), - ) - } - -public val Avatar.Xxl: WrapperAvatarXxl - @Composable - @JvmName("WrapperAvatarXxl") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(88.0.dp) - height(88.0.dp) - statusOffsetX(1.0.dp) - statusOffsetY(7.0.dp) - } - .textStyle(StylesSaluteTheme.typography.headerH2Bold) - .badgeStyle(BadgeSolid.L.Pilled.Accent.style()) - .counterStyle(Counter.L.Negative.style()) - .statusStyle( - Indicator.L.modify { - color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to StylesSaluteTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarXxl) - -public val Avatar.L: WrapperAvatarL - @Composable - @JvmName("WrapperAvatarL") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(48.0.dp) - height(48.0.dp) - statusOffsetX(1.0.dp) - statusOffsetY(3.0.dp) - } - .textStyle(StylesSaluteTheme.typography.headerH4Bold) - .badgeStyle(BadgeSolid.S.Pilled.Accent.style()) - .counterStyle(Counter.S.Negative.style()) - .statusStyle( - Indicator.M.modify { - color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to StylesSaluteTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarL) - -public val Avatar.M: WrapperAvatarM - @Composable - @JvmName("WrapperAvatarM") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(36.0.dp) - height(36.0.dp) - statusOffsetX(0.0.dp) - statusOffsetY(2.0.dp) - } - .textStyle(StylesSaluteTheme.typography.bodySBold) - .badgeStyle(BadgeSolid.Xs.Pilled.Accent.style()) - .counterStyle(Counter.Xs.Negative.style()) - .statusStyle( - Indicator.M.modify { - color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to StylesSaluteTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarM) - -public val Avatar.S: WrapperAvatarS - @Composable - @JvmName("WrapperAvatarS") - get() = AvatarStyle.builder(this) - .invariantProps - .dimensions { - width(24.0.dp) - height(24.0.dp) - statusOffsetX(0.0.dp) - statusOffsetY(0.0.dp) - } - .textStyle(StylesSaluteTheme.typography.bodyXxsBold) - .counterStyle(Counter.Xxs.Negative.style()) - .statusStyle( - Indicator.S.modify { - color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidTertiary.asInteractive( - setOf(AvatarStatus.Active) - to StylesSaluteTheme.colors.surfaceDefaultPositive, - ), - ) - } - } - .style(), - ) - .wrap(::WrapperAvatarS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroup.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroup.kt deleted file mode 100644 index 807a018fc1..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.avatargroup - -/** - * Вспомогательный объект для описания API и стиля компонента AvatarGroup - */ -public object AvatarGroup diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroupStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroupStyles.kt deleted file mode 100644 index 6d24b28ecd..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/avatargroup/AvatarGroupStyles.kt +++ /dev/null @@ -1,50 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.avatargroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.AvatarGroupStyle -import com.sdds.compose.uikit.AvatarGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.avatar.Avatar -import com.sdds.stylessalute.styles.avatar.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperAvatarGroup : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperAvatarGroupS( - public override val builder: AvatarGroupStyleBuilder, -) : WrapperAvatarGroup - -private val AvatarGroupStyleBuilder.invariantProps: AvatarGroupStyleBuilder - @Composable - get() = this - -public val AvatarGroup.S: WrapperAvatarGroupS - @Composable - @JvmName("WrapperAvatarGroupS") - get() = AvatarGroupStyle.builder(this) - .invariantProps - .dimensions { - itemSpacing(2.0.dp) - itemOffset(16.0.dp) - } - .avatarStyle(Avatar.S.style()) - .wrap(::WrapperAvatarGroupS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClear.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClear.kt deleted file mode 100644 index c8207cdcea..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeClear - */ -public object BadgeClear diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClearStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClearStyles.kt deleted file mode 100644 index 5692818bb8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeClearStyles.kt +++ /dev/null @@ -1,328 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeClearView : WrapperBadgeClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeClearTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeClearL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeClearLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeClearM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeClearMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeClearS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeClearSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeClearXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeClearXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeClearView - -public val WrapperBadgeClearView.Default: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Accent: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Negative: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Positive: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Warning: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Dark: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -public val WrapperBadgeClearView.Light: WrapperBadgeClearTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeClearTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val BadgeClear.L: WrapperBadgeClearL - @Composable - @JvmName("WrapperBadgeClearL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeClearL) - -public val WrapperBadgeClearL.Pilled: WrapperBadgeClearLPilled - @Composable - @JvmName("WrapperBadgeClearLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearLPilled) - -public val BadgeClear.M: WrapperBadgeClearM - @Composable - @JvmName("WrapperBadgeClearM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeClearM) - -public val WrapperBadgeClearM.Pilled: WrapperBadgeClearMPilled - @Composable - @JvmName("WrapperBadgeClearMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearMPilled) - -public val BadgeClear.S: WrapperBadgeClearS - @Composable - @JvmName("WrapperBadgeClearS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeClearS) - -public val WrapperBadgeClearS.Pilled: WrapperBadgeClearSPilled - @Composable - @JvmName("WrapperBadgeClearSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearSPilled) - -public val BadgeClear.Xs: WrapperBadgeClearXs - @Composable - @JvmName("WrapperBadgeClearXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeClearXs) - -public val WrapperBadgeClearXs.Pilled: WrapperBadgeClearXsPilled - @Composable - @JvmName("WrapperBadgeClearXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeClearXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolid.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolid.kt deleted file mode 100644 index 86b1a88650..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeSolid - */ -public object BadgeSolid diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolidStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolidStyles.kt deleted file mode 100644 index d530fe63b0..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeSolidStyles.kt +++ /dev/null @@ -1,344 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeSolidView : WrapperBadgeSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeSolidTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeSolidL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeSolidLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeSolidM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeSolidMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeSolidS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeSolidSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeSolidXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeSolidXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeSolidView - -public val WrapperBadgeSolidView.Default: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Accent: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Negative: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Positive: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Warning: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Dark: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -public val WrapperBadgeSolidView.Light: WrapperBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeSolidTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - -public val BadgeSolid.L: WrapperBadgeSolidL - @Composable - @JvmName("WrapperBadgeSolidL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeSolidL) - -public val WrapperBadgeSolidL.Pilled: WrapperBadgeSolidLPilled - @Composable - @JvmName("WrapperBadgeSolidLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidLPilled) - -public val BadgeSolid.M: WrapperBadgeSolidM - @Composable - @JvmName("WrapperBadgeSolidM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeSolidM) - -public val WrapperBadgeSolidM.Pilled: WrapperBadgeSolidMPilled - @Composable - @JvmName("WrapperBadgeSolidMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidMPilled) - -public val BadgeSolid.S: WrapperBadgeSolidS - @Composable - @JvmName("WrapperBadgeSolidS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeSolidS) - -public val WrapperBadgeSolidS.Pilled: WrapperBadgeSolidSPilled - @Composable - @JvmName("WrapperBadgeSolidSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidSPilled) - -public val BadgeSolid.Xs: WrapperBadgeSolidXs - @Composable - @JvmName("WrapperBadgeSolidXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeSolidXs) - -public val WrapperBadgeSolidXs.Pilled: WrapperBadgeSolidXsPilled - @Composable - @JvmName("WrapperBadgeSolidXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeSolidXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparent.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparent.kt deleted file mode 100644 index bd1a9e1cd5..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.badge - -/** - * Вспомогательный объект для описания API и стиля компонента BadgeTransparent - */ -public object BadgeTransparent diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparentStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparentStyles.kt deleted file mode 100644 index 3701e4eae4..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/badge/BadgeTransparentStyles.kt +++ /dev/null @@ -1,344 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.badge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.BadgeStyleBuilder -import com.sdds.compose.uikit.badgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBadgeTransparent : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBadgeTransparentView : WrapperBadgeTransparent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBadgeTransparentTerminate( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparent - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBadgeTransparentL( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperBadgeTransparentLPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBadgeTransparentM( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperBadgeTransparentMPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBadgeTransparentS( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperBadgeTransparentSPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBadgeTransparentXs( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperBadgeTransparentXsPilled( - public override val builder: BadgeStyleBuilder, -) : WrapperBadgeTransparentView - -public val WrapperBadgeTransparentView.Default: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Accent: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentAccentMain.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Negative: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentNegative.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Positive: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPositive.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Warning: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentWarning.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Dark: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightTransparentDeep.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -public val WrapperBadgeTransparentView.Light: WrapperBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkTransparentSecondary.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperBadgeTransparentTerminate) - -private val BadgeStyleBuilder.invariantProps: BadgeStyleBuilder - @Composable - get() = this - -public val BadgeTransparent.L: WrapperBadgeTransparentL - @Composable - @JvmName("WrapperBadgeTransparentL") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - startContentMargin(4.0.dp) - endContentMargin(4.0.dp) - startPadding(11.0.dp) - endPadding(11.0.dp) - } - .wrap(::WrapperBadgeTransparentL) - -public val WrapperBadgeTransparentL.Pilled: WrapperBadgeTransparentLPilled - @Composable - @JvmName("WrapperBadgeTransparentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentLPilled) - -public val BadgeTransparent.M: WrapperBadgeTransparentM - @Composable - @JvmName("WrapperBadgeTransparentM") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(3.0.dp) - endContentMargin(3.0.dp) - startPadding(9.0.dp) - endPadding(9.0.dp) - } - .wrap(::WrapperBadgeTransparentM) - -public val WrapperBadgeTransparentM.Pilled: WrapperBadgeTransparentMPilled - @Composable - @JvmName("WrapperBadgeTransparentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentMPilled) - -public val BadgeTransparent.S: WrapperBadgeTransparentS - @Composable - @JvmName("WrapperBadgeTransparentS") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - endContentSize(12.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(7.0.dp) - endPadding(7.0.dp) - } - .wrap(::WrapperBadgeTransparentS) - -public val WrapperBadgeTransparentS.Pilled: WrapperBadgeTransparentSPilled - @Composable - @JvmName("WrapperBadgeTransparentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentSPilled) - -public val BadgeTransparent.Xs: WrapperBadgeTransparentXs - @Composable - @JvmName("WrapperBadgeTransparentXs") - get() = BadgeStyle.badgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .labelStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - endContentSize(10.0.dp) - startContentMargin(2.0.dp) - endContentMargin(2.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperBadgeTransparentXs) - -public val WrapperBadgeTransparentXs.Pilled: WrapperBadgeTransparentXsPilled - @Composable - @JvmName("WrapperBadgeTransparentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperBadgeTransparentXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButton.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButton.kt deleted file mode 100644 index d45be347dd..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.basicbutton - -/** - * Вспомогательный объект для описания API и стиля компонента BasicButton - */ -public object BasicButton diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButtonStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButtonStyles.kt deleted file mode 100644 index 703324744c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/basicbutton/BasicButtonStyles.kt +++ /dev/null @@ -1,645 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.basicbutton - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BasicButtonStyleBuilder -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.basicButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBasicButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperBasicButtonView : WrapperBasicButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperBasicButtonTerminate( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButton - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBasicButtonL( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBasicButtonM( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBasicButtonS( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBasicButtonXs( - public override val builder: BasicButtonStyleBuilder, -) : WrapperBasicButtonView - -public val WrapperBasicButtonView.Default: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Secondary: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Accent: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Positive: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultPositiveHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Negative: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultNegativeHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Warning: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultWarningHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Clear: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .loadingAlpha(0.06f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Dark: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightTransparentDeep.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnLightTransparentDeepActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnLightTransparentDeepHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.Black: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -public val WrapperBasicButtonView.White: WrapperBasicButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textOnLightSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - } - .loadingAlpha(0.0f) - .wrap(::WrapperBasicButtonTerminate) - -private val BasicButtonStyleBuilder.invariantProps: BasicButtonStyleBuilder - @Composable - get() = this - .disableAlpha(0.4f) - -public val BasicButton.L: WrapperBasicButtonL - @Composable - @JvmName("WrapperBasicButtonL") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyLBold) - .valueStyle(StylesSaluteTheme.typography.bodyLBold) - .dimensions { - height(56.0.dp) - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - minWidth(98.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonL) - -public val BasicButton.M: WrapperBasicButtonM - @Composable - @JvmName("WrapperBasicButtonM") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .labelStyle(StylesSaluteTheme.typography.bodyMBold) - .valueStyle(StylesSaluteTheme.typography.bodyMBold) - .dimensions { - height(48.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - minWidth(84.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(6.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonM) - -public val BasicButton.S: WrapperBasicButtonS - @Composable - @JvmName("WrapperBasicButtonS") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodySBold) - .valueStyle(StylesSaluteTheme.typography.bodySBold) - .dimensions { - height(40.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - minWidth(71.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(4.0.dp) - valueMargin(4.0.dp) - } - .wrap(::WrapperBasicButtonS) - -public val BasicButton.Xs: WrapperBasicButtonXs - @Composable - @JvmName("WrapperBasicButtonXs") - get() = ButtonStyle.basicButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .labelStyle(StylesSaluteTheme.typography.bodyXsBold) - .valueStyle(StylesSaluteTheme.typography.bodyXsBold) - .dimensions { - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - minWidth(57.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - valueMargin(2.0.dp) - } - .wrap(::WrapperBasicButtonXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheet.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheet.kt deleted file mode 100644 index 6027e1f206..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheet.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.bottomsheet - -/** - * Вспомогательный объект для описания API и стиля компонента ModalBottomSheet - */ -public object ModalBottomSheet diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheetStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheetStyles.kt deleted file mode 100644 index 5d1554079d..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/bottomsheet/ModalBottomSheetStyles.kt +++ /dev/null @@ -1,62 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.bottomsheet - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BottomSheetHandlePlacement -import com.sdds.compose.uikit.ModalBottomSheetStyle -import com.sdds.compose.uikit.ModalBottomSheetStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperModalBottomSheet : - BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperModalBottomSheetDefault( - public override val builder: ModalBottomSheetStyleBuilder, -) : WrapperModalBottomSheet - -public val ModalBottomSheet.Default: WrapperModalBottomSheetDefault - @Composable - @JvmName("WrapperModalBottomSheetDefault") - get() = ModalBottomSheetStyle.builder(this) - .shape(StylesSaluteTheme.shapes.roundXl) - .handleShape(CircleShape) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - handleHeight(4.0.dp) - handleWidth(48.0.dp) - handleOffset(6.0.dp) - } - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidCard.asInteractive(), - ) - handleColor( - StylesSaluteTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - } - .handlePlacement(BottomSheetHandlePlacement.Auto) - .wrap(::WrapperModalBottomSheetDefault) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroup.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroup.kt deleted file mode 100644 index 61c5d7575c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.buttongroup - -/** - * Вспомогательный объект для описания API и стиля компонента BasicButtonGroup - */ -public object BasicButtonGroup diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroupStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroupStyles.kt deleted file mode 100644 index aff42931fd..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/BasicButtonGroupStyles.kt +++ /dev/null @@ -1,684 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.buttongroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.ButtonGroupStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.L -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.basicbutton.S -import com.sdds.stylessalute.styles.basicbutton.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperBasicButtonGroup : BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperBasicButtonGroupXs( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWide - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDense - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации XsNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupXsNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperBasicButtonGroupS( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWide - */ -@JvmInline -public value class WrapperBasicButtonGroupSWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDense - */ -@JvmInline -public value class WrapperBasicButtonGroupSDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации SNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupSNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperBasicButtonGroupM( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWide - */ -@JvmInline -public value class WrapperBasicButtonGroupMWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDense - */ -@JvmInline -public value class WrapperBasicButtonGroupMDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации MNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupMNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperBasicButtonGroupL( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWide - */ -@JvmInline -public value class WrapperBasicButtonGroupLWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWideDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LWideSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDense - */ -@JvmInline -public value class WrapperBasicButtonGroupLDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDenseDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LDenseSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGap - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGapDefault - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -/** - * Обертка для вариации LNoGapSegmented - */ -@JvmInline -public value class WrapperBasicButtonGroupLNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperBasicButtonGroup - -private val ButtonGroupStyleBuilder.invariantProps: ButtonGroupStyleBuilder - @Composable - get() = this - -public val BasicButtonGroup.Xs: WrapperBasicButtonGroupXs - @Composable - @JvmName("WrapperBasicButtonGroupXs") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.Xs.Default.style()) - .wrap(::WrapperBasicButtonGroupXs) - -public val WrapperBasicButtonGroupXs.Wide: WrapperBasicButtonGroupXsWide - @Composable - @JvmName("WrapperBasicButtonGroupXsWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsWide) - -public val WrapperBasicButtonGroupXsWide.Default: WrapperBasicButtonGroupXsWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsWideDefault) - -public val WrapperBasicButtonGroupXsWide.Segmented: WrapperBasicButtonGroupXsWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsWideSegmented) - -public val WrapperBasicButtonGroupXs.Dense: WrapperBasicButtonGroupXsDense - @Composable - @JvmName("WrapperBasicButtonGroupXsDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsDense) - -public val WrapperBasicButtonGroupXsDense.Default: WrapperBasicButtonGroupXsDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsDenseDefault) - -public val WrapperBasicButtonGroupXsDense.Segmented: WrapperBasicButtonGroupXsDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsDenseSegmented) - -public val WrapperBasicButtonGroupXs.NoGap: WrapperBasicButtonGroupXsNoGap - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupXsNoGap) - -public val WrapperBasicButtonGroupXsNoGap.Default: WrapperBasicButtonGroupXsNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsNoGapDefault) - -public val WrapperBasicButtonGroupXsNoGap.Segmented: WrapperBasicButtonGroupXsNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupXsNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperBasicButtonGroupXsNoGapSegmented) - -public val BasicButtonGroup.S: WrapperBasicButtonGroupS - @Composable - @JvmName("WrapperBasicButtonGroupS") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.S.Default.style()) - .wrap(::WrapperBasicButtonGroupS) - -public val WrapperBasicButtonGroupS.Wide: WrapperBasicButtonGroupSWide - @Composable - @JvmName("WrapperBasicButtonGroupSWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupSWide) - -public val WrapperBasicButtonGroupSWide.Default: WrapperBasicButtonGroupSWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupSWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSWideDefault) - -public val WrapperBasicButtonGroupSWide.Segmented: WrapperBasicButtonGroupSWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSWideSegmented) - -public val WrapperBasicButtonGroupS.Dense: WrapperBasicButtonGroupSDense - @Composable - @JvmName("WrapperBasicButtonGroupSDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupSDense) - -public val WrapperBasicButtonGroupSDense.Default: WrapperBasicButtonGroupSDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupSDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSDenseDefault) - -public val WrapperBasicButtonGroupSDense.Segmented: WrapperBasicButtonGroupSDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSDenseSegmented) - -public val WrapperBasicButtonGroupS.NoGap: WrapperBasicButtonGroupSNoGap - @Composable - @JvmName("WrapperBasicButtonGroupSNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupSNoGap) - -public val WrapperBasicButtonGroupSNoGap.Default: WrapperBasicButtonGroupSNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupSNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSNoGapDefault) - -public val WrapperBasicButtonGroupSNoGap.Segmented: WrapperBasicButtonGroupSNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupSNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupSNoGapSegmented) - -public val BasicButtonGroup.M: WrapperBasicButtonGroupM - @Composable - @JvmName("WrapperBasicButtonGroupM") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.M.Default.style()) - .wrap(::WrapperBasicButtonGroupM) - -public val WrapperBasicButtonGroupM.Wide: WrapperBasicButtonGroupMWide - @Composable - @JvmName("WrapperBasicButtonGroupMWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupMWide) - -public val WrapperBasicButtonGroupMWide.Default: WrapperBasicButtonGroupMWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupMWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMWideDefault) - -public val WrapperBasicButtonGroupMWide.Segmented: WrapperBasicButtonGroupMWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMWideSegmented) - -public val WrapperBasicButtonGroupM.Dense: WrapperBasicButtonGroupMDense - @Composable - @JvmName("WrapperBasicButtonGroupMDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupMDense) - -public val WrapperBasicButtonGroupMDense.Default: WrapperBasicButtonGroupMDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupMDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMDenseDefault) - -public val WrapperBasicButtonGroupMDense.Segmented: WrapperBasicButtonGroupMDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMDenseSegmented) - -public val WrapperBasicButtonGroupM.NoGap: WrapperBasicButtonGroupMNoGap - @Composable - @JvmName("WrapperBasicButtonGroupMNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupMNoGap) - -public val WrapperBasicButtonGroupMNoGap.Default: WrapperBasicButtonGroupMNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupMNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMNoGapDefault) - -public val WrapperBasicButtonGroupMNoGap.Segmented: WrapperBasicButtonGroupMNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupMNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperBasicButtonGroupMNoGapSegmented) - -public val BasicButtonGroup.L: WrapperBasicButtonGroupL - @Composable - @JvmName("WrapperBasicButtonGroupL") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(BasicButton.L.Default.style()) - .wrap(::WrapperBasicButtonGroupL) - -public val WrapperBasicButtonGroupL.Wide: WrapperBasicButtonGroupLWide - @Composable - @JvmName("WrapperBasicButtonGroupLWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperBasicButtonGroupLWide) - -public val WrapperBasicButtonGroupLWide.Default: WrapperBasicButtonGroupLWideDefault - @Composable - @JvmName("WrapperBasicButtonGroupLWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLWideDefault) - -public val WrapperBasicButtonGroupLWide.Segmented: WrapperBasicButtonGroupLWideSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXs) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLWideSegmented) - -public val WrapperBasicButtonGroupL.Dense: WrapperBasicButtonGroupLDense - @Composable - @JvmName("WrapperBasicButtonGroupLDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperBasicButtonGroupLDense) - -public val WrapperBasicButtonGroupLDense.Default: WrapperBasicButtonGroupLDenseDefault - @Composable - @JvmName("WrapperBasicButtonGroupLDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLDenseDefault) - -public val WrapperBasicButtonGroupLDense.Segmented: WrapperBasicButtonGroupLDenseSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXs) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLDenseSegmented) - -public val WrapperBasicButtonGroupL.NoGap: WrapperBasicButtonGroupLNoGap - @Composable - @JvmName("WrapperBasicButtonGroupLNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperBasicButtonGroupLNoGap) - -public val WrapperBasicButtonGroupLNoGap.Default: WrapperBasicButtonGroupLNoGapDefault - @Composable - @JvmName("WrapperBasicButtonGroupLNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLNoGapDefault) - -public val WrapperBasicButtonGroupLNoGap.Segmented: WrapperBasicButtonGroupLNoGapSegmented - @Composable - @JvmName("WrapperBasicButtonGroupLNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperBasicButtonGroupLNoGapSegmented) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroup.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroup.kt deleted file mode 100644 index a04405bc23..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.buttongroup - -/** - * Вспомогательный объект для описания API и стиля компонента IconButtonGroup - */ -public object IconButtonGroup diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroupStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroupStyles.kt deleted file mode 100644 index f762ea90af..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/buttongroup/IconButtonGroupStyles.kt +++ /dev/null @@ -1,877 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.buttongroup - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonGroupStyle -import com.sdds.compose.uikit.ButtonGroupStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.iconbutton.Default -import com.sdds.stylessalute.styles.iconbutton.IconButton -import com.sdds.stylessalute.styles.iconbutton.L -import com.sdds.stylessalute.styles.iconbutton.M -import com.sdds.stylessalute.styles.iconbutton.S -import com.sdds.stylessalute.styles.iconbutton.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconButtonGroup : BuilderWrapper - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconButtonGroupXs( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWide - */ -@JvmInline -public value class WrapperIconButtonGroupXsWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDense - */ -@JvmInline -public value class WrapperIconButtonGroupXsDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации XsNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupXsNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconButtonGroupS( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWide - */ -@JvmInline -public value class WrapperIconButtonGroupSWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupSWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDense - */ -@JvmInline -public value class WrapperIconButtonGroupSDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupSDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации SNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupSNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconButtonGroupM( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWide - */ -@JvmInline -public value class WrapperIconButtonGroupMWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupMWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDense - */ -@JvmInline -public value class WrapperIconButtonGroupMDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupMDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации MNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupMNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconButtonGroupL( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWide - */ -@JvmInline -public value class WrapperIconButtonGroupLWide( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWideDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLWideDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWidePilled - */ -@JvmInline -public value class WrapperIconButtonGroupLWidePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LWideSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLWideSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDense - */ -@JvmInline -public value class WrapperIconButtonGroupLDense( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDenseDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLDenseDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDensePilled - */ -@JvmInline -public value class WrapperIconButtonGroupLDensePilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LDenseSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLDenseSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGap - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGap( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapDefault - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapDefault( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapPilled - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapPilled( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -/** - * Обертка для вариации LNoGapSegmented - */ -@JvmInline -public value class WrapperIconButtonGroupLNoGapSegmented( - public override val builder: ButtonGroupStyleBuilder, -) : WrapperIconButtonGroup - -private val ButtonGroupStyleBuilder.invariantProps: ButtonGroupStyleBuilder - @Composable - get() = this - -public val IconButtonGroup.Xs: WrapperIconButtonGroupXs - @Composable - @JvmName("WrapperIconButtonGroupXs") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.Xs.Default.style()) - .wrap(::WrapperIconButtonGroupXs) - -public val WrapperIconButtonGroupXs.Wide: WrapperIconButtonGroupXsWide - @Composable - @JvmName("WrapperIconButtonGroupXsWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupXsWide) - -public val WrapperIconButtonGroupXsWide.Default: WrapperIconButtonGroupXsWideDefault - @Composable - @JvmName("WrapperIconButtonGroupXsWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsWideDefault) - -public val WrapperIconButtonGroupXsWide.Pilled: WrapperIconButtonGroupXsWidePilled - @Composable - @JvmName("WrapperIconButtonGroupXsWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsWidePilled) - -public val WrapperIconButtonGroupXsWide.Segmented: WrapperIconButtonGroupXsWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsWideSegmented) - -public val WrapperIconButtonGroupXs.Dense: WrapperIconButtonGroupXsDense - @Composable - @JvmName("WrapperIconButtonGroupXsDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupXsDense) - -public val WrapperIconButtonGroupXsDense.Default: WrapperIconButtonGroupXsDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupXsDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsDenseDefault) - -public val WrapperIconButtonGroupXsDense.Pilled: WrapperIconButtonGroupXsDensePilled - @Composable - @JvmName("WrapperIconButtonGroupXsDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsDensePilled) - -public val WrapperIconButtonGroupXsDense.Segmented: WrapperIconButtonGroupXsDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsDenseSegmented) - -public val WrapperIconButtonGroupXs.NoGap: WrapperIconButtonGroupXsNoGap - @Composable - @JvmName("WrapperIconButtonGroupXsNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupXsNoGap) - -public val WrapperIconButtonGroupXsNoGap.Default: WrapperIconButtonGroupXsNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundS) - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsNoGapDefault) - -public val WrapperIconButtonGroupXsNoGap.Pilled: WrapperIconButtonGroupXsNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupXsNoGapPilled) - -public val WrapperIconButtonGroupXsNoGap.Segmented: WrapperIconButtonGroupXsNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupXsNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundS) - .wrap(::WrapperIconButtonGroupXsNoGapSegmented) - -public val IconButtonGroup.S: WrapperIconButtonGroupS - @Composable - @JvmName("WrapperIconButtonGroupS") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.S.Default.style()) - .wrap(::WrapperIconButtonGroupS) - -public val WrapperIconButtonGroupS.Wide: WrapperIconButtonGroupSWide - @Composable - @JvmName("WrapperIconButtonGroupSWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupSWide) - -public val WrapperIconButtonGroupSWide.Default: WrapperIconButtonGroupSWideDefault - @Composable - @JvmName("WrapperIconButtonGroupSWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSWideDefault) - -public val WrapperIconButtonGroupSWide.Pilled: WrapperIconButtonGroupSWidePilled - @Composable - @JvmName("WrapperIconButtonGroupSWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSWidePilled) - -public val WrapperIconButtonGroupSWide.Segmented: WrapperIconButtonGroupSWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupSWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSWideSegmented) - -public val WrapperIconButtonGroupS.Dense: WrapperIconButtonGroupSDense - @Composable - @JvmName("WrapperIconButtonGroupSDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupSDense) - -public val WrapperIconButtonGroupSDense.Default: WrapperIconButtonGroupSDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupSDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSDenseDefault) - -public val WrapperIconButtonGroupSDense.Pilled: WrapperIconButtonGroupSDensePilled - @Composable - @JvmName("WrapperIconButtonGroupSDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSDensePilled) - -public val WrapperIconButtonGroupSDense.Segmented: WrapperIconButtonGroupSDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupSDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSDenseSegmented) - -public val WrapperIconButtonGroupS.NoGap: WrapperIconButtonGroupSNoGap - @Composable - @JvmName("WrapperIconButtonGroupSNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupSNoGap) - -public val WrapperIconButtonGroupSNoGap.Default: WrapperIconButtonGroupSNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupSNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSNoGapDefault) - -public val WrapperIconButtonGroupSNoGap.Pilled: WrapperIconButtonGroupSNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupSNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupSNoGapPilled) - -public val WrapperIconButtonGroupSNoGap.Segmented: WrapperIconButtonGroupSNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupSNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupSNoGapSegmented) - -public val IconButtonGroup.M: WrapperIconButtonGroupM - @Composable - @JvmName("WrapperIconButtonGroupM") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.M.Default.style()) - .wrap(::WrapperIconButtonGroupM) - -public val WrapperIconButtonGroupM.Wide: WrapperIconButtonGroupMWide - @Composable - @JvmName("WrapperIconButtonGroupMWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupMWide) - -public val WrapperIconButtonGroupMWide.Default: WrapperIconButtonGroupMWideDefault - @Composable - @JvmName("WrapperIconButtonGroupMWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMWideDefault) - -public val WrapperIconButtonGroupMWide.Pilled: WrapperIconButtonGroupMWidePilled - @Composable - @JvmName("WrapperIconButtonGroupMWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMWidePilled) - -public val WrapperIconButtonGroupMWide.Segmented: WrapperIconButtonGroupMWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupMWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMWideSegmented) - -public val WrapperIconButtonGroupM.Dense: WrapperIconButtonGroupMDense - @Composable - @JvmName("WrapperIconButtonGroupMDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupMDense) - -public val WrapperIconButtonGroupMDense.Default: WrapperIconButtonGroupMDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupMDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMDenseDefault) - -public val WrapperIconButtonGroupMDense.Pilled: WrapperIconButtonGroupMDensePilled - @Composable - @JvmName("WrapperIconButtonGroupMDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMDensePilled) - -public val WrapperIconButtonGroupMDense.Segmented: WrapperIconButtonGroupMDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupMDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXxs) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMDenseSegmented) - -public val WrapperIconButtonGroupM.NoGap: WrapperIconButtonGroupMNoGap - @Composable - @JvmName("WrapperIconButtonGroupMNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupMNoGap) - -public val WrapperIconButtonGroupMNoGap.Default: WrapperIconButtonGroupMNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupMNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundM) - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMNoGapDefault) - -public val WrapperIconButtonGroupMNoGap.Pilled: WrapperIconButtonGroupMNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupMNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupMNoGapPilled) - -public val WrapperIconButtonGroupMNoGap.Segmented: WrapperIconButtonGroupMNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupMNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperIconButtonGroupMNoGapSegmented) - -public val IconButtonGroup.L: WrapperIconButtonGroupL - @Composable - @JvmName("WrapperIconButtonGroupL") - get() = ButtonGroupStyle.builder(this) - .invariantProps - .buttonStyle(IconButton.L.Default.style()) - .wrap(::WrapperIconButtonGroupL) - -public val WrapperIconButtonGroupL.Wide: WrapperIconButtonGroupLWide - @Composable - @JvmName("WrapperIconButtonGroupLWide") - get() = builder - .dimensions { - spacing(8.0.dp) - } - .wrap(::WrapperIconButtonGroupLWide) - -public val WrapperIconButtonGroupLWide.Default: WrapperIconButtonGroupLWideDefault - @Composable - @JvmName("WrapperIconButtonGroupLWideDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLWideDefault) - -public val WrapperIconButtonGroupLWide.Pilled: WrapperIconButtonGroupLWidePilled - @Composable - @JvmName("WrapperIconButtonGroupLWidePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLWidePilled) - -public val WrapperIconButtonGroupLWide.Segmented: WrapperIconButtonGroupLWideSegmented - @Composable - @JvmName("WrapperIconButtonGroupLWideSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXs) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLWideSegmented) - -public val WrapperIconButtonGroupL.Dense: WrapperIconButtonGroupLDense - @Composable - @JvmName("WrapperIconButtonGroupLDense") - get() = builder - .dimensions { - spacing(2.0.dp) - } - .wrap(::WrapperIconButtonGroupLDense) - -public val WrapperIconButtonGroupLDense.Default: WrapperIconButtonGroupLDenseDefault - @Composable - @JvmName("WrapperIconButtonGroupLDenseDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLDenseDefault) - -public val WrapperIconButtonGroupLDense.Pilled: WrapperIconButtonGroupLDensePilled - @Composable - @JvmName("WrapperIconButtonGroupLDensePilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLDensePilled) - -public val WrapperIconButtonGroupLDense.Segmented: WrapperIconButtonGroupLDenseSegmented - @Composable - @JvmName("WrapperIconButtonGroupLDenseSegmented") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundXs) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLDenseSegmented) - -public val WrapperIconButtonGroupL.NoGap: WrapperIconButtonGroupLNoGap - @Composable - @JvmName("WrapperIconButtonGroupLNoGap") - get() = builder - .dimensions { - spacing(0.0.dp) - } - .wrap(::WrapperIconButtonGroupLNoGap) - -public val WrapperIconButtonGroupLNoGap.Default: WrapperIconButtonGroupLNoGapDefault - @Composable - @JvmName("WrapperIconButtonGroupLNoGapDefault") - get() = builder - .internalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLNoGapDefault) - -public val WrapperIconButtonGroupLNoGap.Pilled: WrapperIconButtonGroupLNoGapPilled - @Composable - @JvmName("WrapperIconButtonGroupLNoGapPilled") - get() = builder - .internalShape(CircleShape) - .externalShape(CircleShape) - .wrap(::WrapperIconButtonGroupLNoGapPilled) - -public val WrapperIconButtonGroupLNoGap.Segmented: WrapperIconButtonGroupLNoGapSegmented - @Composable - @JvmName("WrapperIconButtonGroupLNoGapSegmented") - get() = builder - .externalShape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .wrap(::WrapperIconButtonGroupLNoGapSegmented) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClear.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClear.kt deleted file mode 100644 index 38ecce223b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.card - -/** - * Вспомогательный объект для описания API и стиля компонента CardClear - */ -public object CardClear diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClearStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClearStyles.kt deleted file mode 100644 index 6b1bba28f6..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardClearStyles.kt +++ /dev/null @@ -1,36 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.card - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.CardStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCardClear : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperCardClearDefault( - public override val builder: CardStyleBuilder, -) : WrapperCardClear - -public val CardClear.Default: WrapperCardClearDefault - @Composable - @JvmName("WrapperCardClearDefault") - get() = CardStyle.builder(this) - .wrap(::WrapperCardClearDefault) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolid.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolid.kt deleted file mode 100644 index 01b0dc752f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.card - -/** - * Вспомогательный объект для описания API и стиля компонента CardSolid - */ -public object CardSolid diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolidStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolidStyles.kt deleted file mode 100644 index 5a7a17066f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/card/CardSolidStyles.kt +++ /dev/null @@ -1,36 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.card - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.CardStyle -import com.sdds.compose.uikit.CardStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCardSolid : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperCardSolidDefault( - public override val builder: CardStyleBuilder, -) : WrapperCardSolid - -public val CardSolid.Default: WrapperCardSolidDefault - @Composable - @JvmName("WrapperCardSolidDefault") - get() = CardStyle.builder(this) - .wrap(::WrapperCardSolidDefault) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/Cell.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/Cell.kt deleted file mode 100644 index e49c7161d3..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/Cell.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.cell - -/** - * Вспомогательный объект для описания API и стиля компонента Cell - */ -public object Cell diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/CellStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/CellStyles.kt deleted file mode 100644 index c9b812d6ce..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/cell/CellStyles.kt +++ /dev/null @@ -1,184 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.cell - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CellStyle -import com.sdds.compose.uikit.CellStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.avatar.Avatar -import com.sdds.stylessalute.styles.avatar.L -import com.sdds.stylessalute.styles.avatar.M -import com.sdds.stylessalute.styles.avatar.S -import com.sdds.stylessalute.styles.checkbox.CheckBox -import com.sdds.stylessalute.styles.checkbox.Default -import com.sdds.stylessalute.styles.checkbox.M -import com.sdds.stylessalute.styles.checkbox.S -import com.sdds.stylessalute.styles.iconbutton.Clear -import com.sdds.stylessalute.styles.iconbutton.IconButton -import com.sdds.stylessalute.styles.iconbutton.L -import com.sdds.stylessalute.styles.iconbutton.M -import com.sdds.stylessalute.styles.iconbutton.S -import com.sdds.stylessalute.styles.iconbutton.Xs -import com.sdds.stylessalute.styles.radiobox.M -import com.sdds.stylessalute.styles.radiobox.RadioBox -import com.sdds.stylessalute.styles.radiobox.S -import com.sdds.stylessalute.styles.switcher.L -import com.sdds.stylessalute.styles.switcher.M -import com.sdds.stylessalute.styles.switcher.S -import com.sdds.stylessalute.styles.switcher.Switch -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCell : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCellL( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCellM( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCellS( - public override val builder: CellStyleBuilder, -) : WrapperCell - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperCellXs( - public override val builder: CellStyleBuilder, -) : WrapperCell - -private val CellStyleBuilder.invariantProps: CellStyleBuilder - @Composable - get() = this - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - disclosureTextColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - disclosureIconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val Cell.L: WrapperCellL - @Composable - @JvmName("WrapperCellL") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureTextStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingStart(8.0.dp) - contentPaddingEnd(8.0.dp) - } - .avatarStyle(Avatar.L.style()) - .iconButtonStyle(IconButton.L.Clear.style()) - .checkBoxStyle(CheckBox.M.Default.style()) - .radioBoxStyle(RadioBox.M.style()) - .switchStyle(Switch.L.style()) - .wrap(::WrapperCellL) - -public val Cell.M: WrapperCellM - @Composable - @JvmName("WrapperCellM") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .titleStyle(StylesSaluteTheme.typography.bodyMNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureTextStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingStart(8.0.dp) - contentPaddingEnd(8.0.dp) - } - .avatarStyle(Avatar.M.style()) - .iconButtonStyle(IconButton.M.Clear.style()) - .checkBoxStyle(CheckBox.M.Default.style()) - .radioBoxStyle(RadioBox.M.style()) - .switchStyle(Switch.M.style()) - .wrap(::WrapperCellM) - -public val Cell.S: WrapperCellS - @Composable - @JvmName("WrapperCellS") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .titleStyle(StylesSaluteTheme.typography.bodySNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingStart(6.0.dp) - contentPaddingEnd(6.0.dp) - } - .avatarStyle(Avatar.S.style()) - .iconButtonStyle(IconButton.S.Clear.style()) - .checkBoxStyle(CheckBox.S.Default.style()) - .radioBoxStyle(RadioBox.S.style()) - .switchStyle(Switch.S.style()) - .wrap(::WrapperCellS) - -public val Cell.Xs: WrapperCellXs - @Composable - @JvmName("WrapperCellXs") - get() = CellStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .titleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureTextStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingStart(6.0.dp) - contentPaddingEnd(6.0.dp) - } - .avatarStyle(Avatar.S.style()) - .iconButtonStyle(IconButton.Xs.Clear.style()) - .checkBoxStyle(CheckBox.S.Default.style()) - .radioBoxStyle(RadioBox.S.style()) - .switchStyle(Switch.S.style()) - .wrap(::WrapperCellXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBox.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBox.kt deleted file mode 100644 index 61d030c80d..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBox.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.checkbox - -/** - * Вспомогательный объект для описания API и стиля компонента CheckBox - */ -public object CheckBox diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBoxStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBoxStyles.kt deleted file mode 100644 index 1794d1d99f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkbox/CheckBoxStyles.kt +++ /dev/null @@ -1,197 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.checkbox - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CheckBoxStates -import com.sdds.compose.uikit.CheckBoxStyle -import com.sdds.compose.uikit.CheckBoxStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCheckBox : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperCheckBoxView : WrapperCheckBox - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperCheckBoxTerminate( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBox - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCheckBoxM( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBoxView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCheckBoxS( - public override val builder: CheckBoxStyleBuilder, -) : WrapperCheckBoxView - -public val WrapperCheckBoxView.Default: WrapperCheckBoxTerminate - @Composable - get() = builder - .colorValues { - toggleColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(CheckBoxStates.Checked) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - setOf(CheckBoxStates.Indeterminate) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - toggleIconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - toggleBorderColor( - StylesSaluteTheme.colors.outlineDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - setOf( - InteractiveState.Focused, - CheckBoxStates.Indeterminate, - ) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - setOf(InteractiveState.Focused) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - setOf(CheckBoxStates.Checked) - to StylesSaluteTheme.colors.outlineDefaultClear, - setOf(CheckBoxStates.Indeterminate) - to StylesSaluteTheme.colors.outlineDefaultClear, - ), - ) - } - .wrap(::WrapperCheckBoxTerminate) - -private val CheckBoxStyleBuilder.invariantProps: CheckBoxStyleBuilder - @Composable - get() = this - .colorValues { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensionValues { - toggleBorderOffset( - 0.0.dp.asStatefulValue( - setOf(InteractiveState.Focused) to 3.0.dp, - setOf( - InteractiveState.Focused, - CheckBoxStates.Checked, - ) to 3.0.dp, - setOf( - InteractiveState.Focused, - CheckBoxStates.Indeterminate, - ) to 3.0.dp, - ), - ) - } - .disableAlpha(0.4f) - -public val CheckBox.M: WrapperCheckBoxM - @Composable - @JvmName("WrapperCheckBoxM") - get() = CheckBoxStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 6.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 2.0.dp, - ), - ) - toggleIconWidth( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 9.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 12.0.dp, - ), - ) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) to 1.0.dp, - setOf(InteractiveState.Focused, CheckBoxStates.Indeterminate) to 1.0.dp, - ), - ) - togglePadding(2.0.dp) - textPadding(12.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperCheckBoxM) - -public val CheckBox.S: WrapperCheckBoxS - @Composable - @JvmName("WrapperCheckBoxS") - get() = CheckBoxStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensionValues { - toggleWidth(16.0.dp) - toggleHeight(16.0.dp) - toggleIconHeight( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 4.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 2.0.dp, - ), - ) - toggleIconWidth( - 0.0.dp.asStatefulValue( - setOf(CheckBoxStates.Checked) to 6.0.dp, - setOf(CheckBoxStates.Indeterminate) to - 8.0.dp, - ), - ) - toggleBorderWidth( - 1.5.dp.asStatefulValue( - setOf(InteractiveState.Focused, CheckBoxStates.Checked) to 1.0.dp, - setOf(InteractiveState.Focused, CheckBoxStates.Indeterminate) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(8.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperCheckBoxS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroup.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroup.kt deleted file mode 100644 index c7b854c330..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.checkboxgroup - -/** - * Вспомогательный объект для описания API и стиля компонента CheckBoxGroup - */ -public object CheckBoxGroup diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroupStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroupStyles.kt deleted file mode 100644 index 4eb62650ac..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/checkboxgroup/CheckBoxGroupStyles.kt +++ /dev/null @@ -1,73 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.checkboxgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CheckBoxGroupStyle -import com.sdds.compose.uikit.CheckBoxGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.checkbox.CheckBox -import com.sdds.stylessalute.styles.checkbox.Default -import com.sdds.stylessalute.styles.checkbox.M -import com.sdds.stylessalute.styles.checkbox.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCheckBoxGroup : - BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCheckBoxGroupM( - public override val builder: CheckBoxGroupStyleBuilder, -) : WrapperCheckBoxGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCheckBoxGroupS( - public override val builder: CheckBoxGroupStyleBuilder, -) : WrapperCheckBoxGroup - -private val CheckBoxGroupStyleBuilder.invariantProps: CheckBoxGroupStyleBuilder - @Composable - get() = this - -public val CheckBoxGroup.M: WrapperCheckBoxGroupM - @Composable - @JvmName("WrapperCheckBoxGroupM") - get() = CheckBoxGroupStyle.builder(this) - .invariantProps - .checkBoxStyle(CheckBox.M.Default.style()) - .dimensions { - itemSpacing(12.0.dp) - itemOffset(36.0.dp) - } - .wrap(::WrapperCheckBoxGroupM) - -public val CheckBoxGroup.S: WrapperCheckBoxGroupS - @Composable - @JvmName("WrapperCheckBoxGroupS") - get() = CheckBoxGroupStyle.builder(this) - .invariantProps - .checkBoxStyle(CheckBox.S.Default.style()) - .dimensions { - itemSpacing(10.0.dp) - itemOffset(24.0.dp) - } - .wrap(::WrapperCheckBoxGroupS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/Chip.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/Chip.kt deleted file mode 100644 index 79cc9638a4..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/Chip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chip - -/** - * Вспомогательный объект для описания API и стиля компонента Chip - */ -public object Chip diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/ChipStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/ChipStyles.kt deleted file mode 100644 index 2f5ae64bd3..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/ChipStyles.kt +++ /dev/null @@ -1,330 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chip - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.ChipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChip : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipView : WrapperChip - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipTerminate( - public override val builder: ChipStyleBuilder, -) : WrapperChip - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipL( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipLPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipM( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipMPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipS( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipSPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipXs( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipXsPilled( - public override val builder: ChipStyleBuilder, -) : WrapperChipView - -public val WrapperChipView.Default: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Accent: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultAccentHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -public val WrapperChipView.Secondary: WrapperChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperChipTerminate) - -private val ChipStyleBuilder.invariantProps: ChipStyleBuilder - @Composable - get() = this - .disableAlpha(0.4f) - -public val Chip.L: WrapperChipL - @Composable - @JvmName("WrapperChipL") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - contentStartPadding(8.0.dp) - contentEndPadding(8.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperChipL) - -public val WrapperChipL.Pilled: WrapperChipLPilled - @Composable - @JvmName("WrapperChipLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipLPilled) - -public val Chip.M: WrapperChipM - @Composable - @JvmName("WrapperChipM") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(6.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperChipM) - -public val WrapperChipM.Pilled: WrapperChipMPilled - @Composable - @JvmName("WrapperChipMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipMPilled) - -public val Chip.S: WrapperChipS - @Composable - @JvmName("WrapperChipS") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - contentStartPadding(4.0.dp) - contentEndPadding(4.0.dp) - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - } - .wrap(::WrapperChipS) - -public val WrapperChipS.Pilled: WrapperChipSPilled - @Composable - @JvmName("WrapperChipSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipSPilled) - -public val Chip.Xs: WrapperChipXs - @Composable - @JvmName("WrapperChipXs") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - height(24.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - contentStartPadding(2.0.dp) - contentEndPadding(2.0.dp) - contentStartSize(12.0.dp) - contentEndSize(12.0.dp) - } - .wrap(::WrapperChipXs) - -public val WrapperChipXs.Pilled: WrapperChipXsPilled - @Composable - @JvmName("WrapperChipXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperChipXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChip.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChip.kt deleted file mode 100644 index 51169e5676..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chip - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChip - */ -public object EmbeddedChip diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChipStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChipStyles.kt deleted file mode 100644 index 4ddcf326d2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chip/EmbeddedChipStyles.kt +++ /dev/null @@ -1,269 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chip - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipStyle -import com.sdds.compose.uikit.ChipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChip : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipView : WrapperEmbeddedChip - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipTerminate( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChip - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipL( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipM( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipS( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipXs( - public override val builder: ChipStyleBuilder, -) : WrapperEmbeddedChipView - -public val WrapperEmbeddedChipView.Default: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textInverseSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInverseSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInverseSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Accent: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccent.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultAccentActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultAccentHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textOnDarkSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -public val WrapperEmbeddedChipView.Secondary: WrapperEmbeddedChipTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - contentStartColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - contentEndColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperEmbeddedChipTerminate) - -private val ChipStyleBuilder.invariantProps: ChipStyleBuilder - @Composable - get() = this - .disableAlpha(0.4f) - -public val EmbeddedChip.L: WrapperEmbeddedChipL - @Composable - @JvmName("WrapperEmbeddedChipL") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -4.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .dimensions { - height(44.0.dp) - paddingStart(14.0.dp) - paddingEnd(12.0.dp) - contentStartPadding(8.0.dp) - contentEndPadding(8.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperEmbeddedChipL) - -public val EmbeddedChip.M: WrapperEmbeddedChipM - @Composable - @JvmName("WrapperEmbeddedChipM") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -6.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensions { - height(36.0.dp) - paddingStart(12.0.dp) - paddingEnd(10.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(6.0.dp) - contentStartSize(24.0.dp) - contentEndSize(24.0.dp) - } - .wrap(::WrapperEmbeddedChipM) - -public val EmbeddedChip.S: WrapperEmbeddedChipS - @Composable - @JvmName("WrapperEmbeddedChipS") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -8.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - height(28.0.dp) - paddingStart(10.0.dp) - paddingEnd(8.0.dp) - contentStartPadding(4.0.dp) - contentEndPadding(4.0.dp) - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - } - .wrap(::WrapperEmbeddedChipS) - -public val EmbeddedChip.Xs: WrapperEmbeddedChipXs - @Composable - @JvmName("WrapperEmbeddedChipXs") - get() = ChipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS.adjustBy(all = -6.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - height(20.0.dp) - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - contentStartPadding(2.0.dp) - contentEndPadding(2.0.dp) - contentStartSize(12.0.dp) - contentEndSize(12.0.dp) - } - .wrap(::WrapperEmbeddedChipXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDense.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDense.kt deleted file mode 100644 index c557f1dcf9..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDense.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента ChipGroupDense - */ -public object ChipGroupDense diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDenseStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDenseStyles.kt deleted file mode 100644 index a71b51c0e2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupDenseStyles.kt +++ /dev/null @@ -1,398 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Chip -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.Pilled -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChipGroupDense : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseLView : WrapperChipGroupDense - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipGroupDenseTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDense - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipGroupDenseL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseLPilledView : WrapperChipGroupDenseLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipGroupDenseLPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseMView : WrapperChipGroupDense - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipGroupDenseM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseMPilledView : WrapperChipGroupDenseMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipGroupDenseMPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseSView : WrapperChipGroupDense - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipGroupDenseS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseSPilledView : WrapperChipGroupDenseSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipGroupDenseSPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseXsView : WrapperChipGroupDense - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipGroupDenseXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupDenseXsPilledView : WrapperChipGroupDenseXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipGroupDenseXsPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupDenseXsPilledView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(2.0.dp) - lineSpacing(2.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperChipGroupDenseLView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewDefault") - get() = builder - .chipStyle(Chip.L.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewAccent") - get() = builder - .chipStyle(Chip.L.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLViewSecondary") - get() = builder - .chipStyle(Chip.L.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.L: WrapperChipGroupDenseL - @Composable - @JvmName("WrapperChipGroupDenseL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseL) - -public val WrapperChipGroupDenseLPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewDefault") - get() = builder - .chipStyle(Chip.L.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewAccent") - get() = builder - .chipStyle(Chip.L.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseLPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseLPilledViewSecondary") - get() = builder - .chipStyle(Chip.L.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseL.Pilled: WrapperChipGroupDenseLPilled - @Composable - @JvmName("WrapperChipGroupDenseLPilled") - get() = builder - .wrap(::WrapperChipGroupDenseLPilled) - -public val WrapperChipGroupDenseMView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewDefault") - get() = builder - .chipStyle(Chip.M.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewAccent") - get() = builder - .chipStyle(Chip.M.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMViewSecondary") - get() = builder - .chipStyle(Chip.M.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.M: WrapperChipGroupDenseM - @Composable - @JvmName("WrapperChipGroupDenseM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseM) - -public val WrapperChipGroupDenseMPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewDefault") - get() = builder - .chipStyle(Chip.M.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewAccent") - get() = builder - .chipStyle(Chip.M.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseMPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseMPilledViewSecondary") - get() = builder - .chipStyle(Chip.M.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseM.Pilled: WrapperChipGroupDenseMPilled - @Composable - @JvmName("WrapperChipGroupDenseMPilled") - get() = builder - .wrap(::WrapperChipGroupDenseMPilled) - -public val WrapperChipGroupDenseSView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewDefault") - get() = builder - .chipStyle(Chip.S.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewAccent") - get() = builder - .chipStyle(Chip.S.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSViewSecondary") - get() = builder - .chipStyle(Chip.S.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.S: WrapperChipGroupDenseS - @Composable - @JvmName("WrapperChipGroupDenseS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseS) - -public val WrapperChipGroupDenseSPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewDefault") - get() = builder - .chipStyle(Chip.S.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewAccent") - get() = builder - .chipStyle(Chip.S.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseSPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseSPilledViewSecondary") - get() = builder - .chipStyle(Chip.S.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseS.Pilled: WrapperChipGroupDenseSPilled - @Composable - @JvmName("WrapperChipGroupDenseSPilled") - get() = builder - .wrap(::WrapperChipGroupDenseSPilled) - -public val WrapperChipGroupDenseXsView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewDefault") - get() = builder - .chipStyle(Chip.Xs.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewAccent") - get() = builder - .chipStyle(Chip.Xs.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val ChipGroupDense.Xs: WrapperChipGroupDenseXs - @Composable - @JvmName("WrapperChipGroupDenseXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupDenseXs) - -public val WrapperChipGroupDenseXsPilledView.Default: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewDefault") - get() = builder - .chipStyle(Chip.Xs.Pilled.Default.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Accent: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewAccent") - get() = builder - .chipStyle(Chip.Xs.Pilled.Accent.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXsPilledView.Secondary: WrapperChipGroupDenseTerminate - @Composable - @JvmName("WrapperChipGroupDenseXsPilledViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupDenseTerminate) - -public val WrapperChipGroupDenseXs.Pilled: WrapperChipGroupDenseXsPilled - @Composable - @JvmName("WrapperChipGroupDenseXsPilled") - get() = builder - .wrap(::WrapperChipGroupDenseXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWide.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWide.kt deleted file mode 100644 index 644d76b762..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWide.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента ChipGroupWide - */ -public object ChipGroupWide diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWideStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWideStyles.kt deleted file mode 100644 index 6f43bda5d3..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/ChipGroupWideStyles.kt +++ /dev/null @@ -1,398 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Chip -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.Pilled -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperChipGroupWide : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideLView : WrapperChipGroupWide - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperChipGroupWideTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWide - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperChipGroupWideL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideLPilledView : WrapperChipGroupWideLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperChipGroupWideLPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideMView : WrapperChipGroupWide - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperChipGroupWideM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideMPilledView : WrapperChipGroupWideMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperChipGroupWideMPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideSView : WrapperChipGroupWide - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperChipGroupWideS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideSPilledView : WrapperChipGroupWideSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperChipGroupWideSPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideXsView : WrapperChipGroupWide - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperChipGroupWideXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperChipGroupWideXsPilledView : WrapperChipGroupWideXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperChipGroupWideXsPilled( - public override val builder: ChipGroupStyleBuilder, -) : WrapperChipGroupWideXsPilledView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(8.0.dp) - lineSpacing(8.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperChipGroupWideLView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewDefault") - get() = builder - .chipStyle(Chip.L.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewAccent") - get() = builder - .chipStyle(Chip.L.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLViewSecondary") - get() = builder - .chipStyle(Chip.L.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.L: WrapperChipGroupWideL - @Composable - @JvmName("WrapperChipGroupWideL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideL) - -public val WrapperChipGroupWideLPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewDefault") - get() = builder - .chipStyle(Chip.L.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewAccent") - get() = builder - .chipStyle(Chip.L.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideLPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideLPilledViewSecondary") - get() = builder - .chipStyle(Chip.L.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideL.Pilled: WrapperChipGroupWideLPilled - @Composable - @JvmName("WrapperChipGroupWideLPilled") - get() = builder - .wrap(::WrapperChipGroupWideLPilled) - -public val WrapperChipGroupWideMView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewDefault") - get() = builder - .chipStyle(Chip.M.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewAccent") - get() = builder - .chipStyle(Chip.M.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMViewSecondary") - get() = builder - .chipStyle(Chip.M.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.M: WrapperChipGroupWideM - @Composable - @JvmName("WrapperChipGroupWideM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideM) - -public val WrapperChipGroupWideMPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewDefault") - get() = builder - .chipStyle(Chip.M.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewAccent") - get() = builder - .chipStyle(Chip.M.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideMPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideMPilledViewSecondary") - get() = builder - .chipStyle(Chip.M.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideM.Pilled: WrapperChipGroupWideMPilled - @Composable - @JvmName("WrapperChipGroupWideMPilled") - get() = builder - .wrap(::WrapperChipGroupWideMPilled) - -public val WrapperChipGroupWideSView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewDefault") - get() = builder - .chipStyle(Chip.S.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewAccent") - get() = builder - .chipStyle(Chip.S.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSViewSecondary") - get() = builder - .chipStyle(Chip.S.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.S: WrapperChipGroupWideS - @Composable - @JvmName("WrapperChipGroupWideS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideS) - -public val WrapperChipGroupWideSPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewDefault") - get() = builder - .chipStyle(Chip.S.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewAccent") - get() = builder - .chipStyle(Chip.S.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideSPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideSPilledViewSecondary") - get() = builder - .chipStyle(Chip.S.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideS.Pilled: WrapperChipGroupWideSPilled - @Composable - @JvmName("WrapperChipGroupWideSPilled") - get() = builder - .wrap(::WrapperChipGroupWideSPilled) - -public val WrapperChipGroupWideXsView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewDefault") - get() = builder - .chipStyle(Chip.Xs.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewAccent") - get() = builder - .chipStyle(Chip.Xs.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val ChipGroupWide.Xs: WrapperChipGroupWideXs - @Composable - @JvmName("WrapperChipGroupWideXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperChipGroupWideXs) - -public val WrapperChipGroupWideXsPilledView.Default: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewDefault") - get() = builder - .chipStyle(Chip.Xs.Pilled.Default.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Accent: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewAccent") - get() = builder - .chipStyle(Chip.Xs.Pilled.Accent.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXsPilledView.Secondary: WrapperChipGroupWideTerminate - @Composable - @JvmName("WrapperChipGroupWideXsPilledViewSecondary") - get() = builder - .chipStyle(Chip.Xs.Pilled.Secondary.style()) - .wrap(::WrapperChipGroupWideTerminate) - -public val WrapperChipGroupWideXs.Pilled: WrapperChipGroupWideXsPilled - @Composable - @JvmName("WrapperChipGroupWideXsPilled") - get() = builder - .wrap(::WrapperChipGroupWideXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDense.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDense.kt deleted file mode 100644 index 69c7161173..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDense.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChipGroupDense - */ -public object EmbeddedChipGroupDense diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt deleted file mode 100644 index 6ff432b02c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupDenseStyles.kt +++ /dev/null @@ -1,226 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.EmbeddedChip -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChipGroupDense : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseLView : WrapperEmbeddedChipGroupDense - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseLView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseMView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseMView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseSView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseSView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupDenseXsView : WrapperEmbeddedChipGroupDense - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipGroupDenseXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupDenseXsView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(2.0.dp) - lineSpacing(2.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperEmbeddedChipGroupDenseLView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewDefault") - get() = builder - .chipStyle(EmbeddedChip.L.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewAccent") - get() = builder - .chipStyle(EmbeddedChip.L.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseLView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseLViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.L.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.L: WrapperEmbeddedChipGroupDenseL - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseL) - -public val WrapperEmbeddedChipGroupDenseMView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewDefault") - get() = builder - .chipStyle(EmbeddedChip.M.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewAccent") - get() = builder - .chipStyle(EmbeddedChip.M.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseMView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseMViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.M.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.M: WrapperEmbeddedChipGroupDenseM - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseM) - -public val WrapperEmbeddedChipGroupDenseSView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewDefault") - get() = builder - .chipStyle(EmbeddedChip.S.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewAccent") - get() = builder - .chipStyle(EmbeddedChip.S.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseSView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseSViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.S.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.S: WrapperEmbeddedChipGroupDenseS - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseS) - -public val WrapperEmbeddedChipGroupDenseXsView.Default: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xs.Default.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Accent: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xs.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val WrapperEmbeddedChipGroupDenseXsView.Secondary: WrapperEmbeddedChipGroupDenseTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXsViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xs.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupDenseTerminate) - -public val EmbeddedChipGroupDense.Xs: WrapperEmbeddedChipGroupDenseXs - @Composable - @JvmName("WrapperEmbeddedChipGroupDenseXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupDenseXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWide.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWide.kt deleted file mode 100644 index db84e35681..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWide.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.chipgroup - -/** - * Вспомогательный объект для описания API и стиля компонента EmbeddedChipGroupWide - */ -public object EmbeddedChipGroupWide diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWideStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWideStyles.kt deleted file mode 100644 index c3abc878d2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/chipgroup/EmbeddedChipGroupWideStyles.kt +++ /dev/null @@ -1,226 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.chipgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ChipGroupStyle -import com.sdds.compose.uikit.ChipGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.EmbeddedChip -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperEmbeddedChipGroupWide : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideLView : WrapperEmbeddedChipGroupWide - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideTerminate( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideL( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideLView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideMView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideM( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideMView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideSView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideS( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideSView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperEmbeddedChipGroupWideXsView : WrapperEmbeddedChipGroupWide - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperEmbeddedChipGroupWideXs( - public override val builder: ChipGroupStyleBuilder, -) : WrapperEmbeddedChipGroupWideXsView - -private val ChipGroupStyleBuilder.invariantProps: ChipGroupStyleBuilder - @Composable - get() = this - .dimensions { - gap(8.0.dp) - lineSpacing(8.0.dp) - } - .disableAlpha(0.4f) - -public val WrapperEmbeddedChipGroupWideLView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewDefault") - get() = builder - .chipStyle(EmbeddedChip.L.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewAccent") - get() = builder - .chipStyle(EmbeddedChip.L.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideLView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideLViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.L.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.L: WrapperEmbeddedChipGroupWideL - @Composable - @JvmName("WrapperEmbeddedChipGroupWideL") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideL) - -public val WrapperEmbeddedChipGroupWideMView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewDefault") - get() = builder - .chipStyle(EmbeddedChip.M.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewAccent") - get() = builder - .chipStyle(EmbeddedChip.M.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideMView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideMViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.M.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.M: WrapperEmbeddedChipGroupWideM - @Composable - @JvmName("WrapperEmbeddedChipGroupWideM") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideM) - -public val WrapperEmbeddedChipGroupWideSView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewDefault") - get() = builder - .chipStyle(EmbeddedChip.S.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewAccent") - get() = builder - .chipStyle(EmbeddedChip.S.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideSView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideSViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.S.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.S: WrapperEmbeddedChipGroupWideS - @Composable - @JvmName("WrapperEmbeddedChipGroupWideS") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideS) - -public val WrapperEmbeddedChipGroupWideXsView.Default: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewDefault") - get() = builder - .chipStyle(EmbeddedChip.Xs.Default.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Accent: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewAccent") - get() = builder - .chipStyle(EmbeddedChip.Xs.Accent.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val WrapperEmbeddedChipGroupWideXsView.Secondary: WrapperEmbeddedChipGroupWideTerminate - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXsViewSecondary") - get() = builder - .chipStyle(EmbeddedChip.Xs.Secondary.style()) - .wrap(::WrapperEmbeddedChipGroupWideTerminate) - -public val EmbeddedChipGroupWide.Xs: WrapperEmbeddedChipGroupWideXs - @Composable - @JvmName("WrapperEmbeddedChipGroupWideXs") - get() = ChipGroupStyle.builder(this) - .invariantProps - .wrap(::WrapperEmbeddedChipGroupWideXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInput.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInput.kt deleted file mode 100644 index 75e139a0f8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInput.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.codeinput - -/** - * Вспомогательный объект для описания API и стиля компонента CodeInput - */ -public object CodeInput diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInputStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInputStyles.kt deleted file mode 100644 index d2816670e6..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/codeinput/CodeInputStyles.kt +++ /dev/null @@ -1,148 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.codeinput - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CodeInputStates -import com.sdds.compose.uikit.CodeInputStyle -import com.sdds.compose.uikit.CodeInputStyleBuilder -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCodeInput : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCodeInputS( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCodeInputM( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCodeInputL( - public override val builder: CodeInputStyleBuilder, -) : WrapperCodeInput - -private val CodeInputStyleBuilder.invariantProps: CodeInputStyleBuilder - @Composable - get() = this - .colors { - codeColor( - StylesSaluteTheme.colors.textDefaultPrimary.asStatefulValue( - setOf(CodeInputStates.Error) - to StylesSaluteTheme.colors.textDefaultNegative, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asStatefulValue( - setOf(CodeInputStates.Error) - to StylesSaluteTheme.colors.textDefaultNegative, - ), - ) - fillColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asStatefulValue( - setOf(CodeInputStates.Error) - to StylesSaluteTheme.colors.surfaceDefaultNegative, - ), - ) - strokeColor( - StylesSaluteTheme.colors.outlineDefaultSolidDefault.asStatefulValue( - setOf(CodeInputStates.Error) - to StylesSaluteTheme.colors.outlineDefaultNegative, - setOf(CodeInputStates.Focused) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - ), - ) - } - -public val CodeInput.S: WrapperCodeInputS - @Composable - @JvmName("WrapperCodeInputS") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(StylesSaluteTheme.typography.displaySBold) - .captionStyle(StylesSaluteTheme.typography.headerH5Normal) - .dimensions { - circleSize( - 12.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 16.0.dp, - ), - ) - strokeWidth(1.0.dp) - itemHeight(44.0.dp) - itemWidth(26.0.dp) - itemSpacing(4.0.dp) - groupSpacing(16.0.dp) - captionPadding(24.0.dp) - } - .wrap(::WrapperCodeInputS) - -public val CodeInput.M: WrapperCodeInputM - @Composable - @JvmName("WrapperCodeInputM") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(StylesSaluteTheme.typography.displayMBold) - .captionStyle(StylesSaluteTheme.typography.headerH4Normal) - .dimensions { - circleSize( - 16.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 24.0.dp, - ), - ) - strokeWidth(1.5.dp) - itemHeight(60.0.dp) - itemWidth(36.0.dp) - itemSpacing(8.0.dp) - groupSpacing(28.0.dp) - captionPadding(28.0.dp) - } - .wrap(::WrapperCodeInputM) - -public val CodeInput.L: WrapperCodeInputL - @Composable - @JvmName("WrapperCodeInputL") - get() = CodeInputStyle.builder(this) - .invariantProps - .codeStyle(StylesSaluteTheme.typography.displayLBold) - .captionStyle(StylesSaluteTheme.typography.headerH3Normal) - .dimensions { - circleSize( - 24.0.dp.asStatefulValue( - setOf(CodeInputStates.Focused) to 36.0.dp, - ), - ) - strokeWidth(2.0.dp) - itemHeight(92.0.dp) - itemWidth(56.0.dp) - itemSpacing(12.0.dp) - groupSpacing(36.0.dp) - captionPadding(40.0.dp) - } - .wrap(::WrapperCodeInputL) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/Counter.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/Counter.kt deleted file mode 100644 index ceec1fd0a5..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/Counter.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.counter - -/** - * Вспомогательный объект для описания API и стиля компонента Counter - */ -public object Counter diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/CounterStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/CounterStyles.kt deleted file mode 100644 index 950f11d7a2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/counter/CounterStyles.kt +++ /dev/null @@ -1,319 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.counter - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.CounterStyle -import com.sdds.compose.uikit.CounterStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperCounter : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperCounterView : WrapperCounter - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperCounterTerminate( - public override val builder: CounterStyleBuilder, -) : WrapperCounter - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperCounterL( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperCounterM( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperCounterS( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperCounterXs( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -/** - * Обертка для вариации Xxs - */ -@JvmInline -public value class WrapperCounterXxs( - public override val builder: CounterStyleBuilder, -) : WrapperCounterView - -public val WrapperCounterView.Default: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Accent: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Positive: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultPositiveHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Warning: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultWarningHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Negative: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultNegativeHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.Black: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -public val WrapperCounterView.White: WrapperCounterTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - textColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - } - .wrap(::WrapperCounterTerminate) - -private val CounterStyleBuilder.invariantProps: CounterStyleBuilder - @Composable - get() = this - .shape(CircleShape) - -public val Counter.L: WrapperCounterL - @Composable - @JvmName("WrapperCounterL") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - minHeight(28.0.dp) - minWidth(28.0.dp) - paddingStart(10.0.dp) - paddingEnd(10.0.dp) - } - .wrap(::WrapperCounterL) - -public val Counter.M: WrapperCounterM - @Composable - @JvmName("WrapperCounterM") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - minHeight(24.0.dp) - minWidth(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperCounterM) - -public val Counter.S: WrapperCounterS - @Composable - @JvmName("WrapperCounterS") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(20.0.dp) - minWidth(20.0.dp) - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - } - .wrap(::WrapperCounterS) - -public val Counter.Xs: WrapperCounterXs - @Composable - @JvmName("WrapperCounterXs") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(16.0.dp) - minWidth(16.0.dp) - paddingStart(4.0.dp) - paddingEnd(4.0.dp) - } - .wrap(::WrapperCounterXs) - -public val Counter.Xxs: WrapperCounterXxs - @Composable - @JvmName("WrapperCounterXxs") - get() = CounterStyle.builder(this) - .invariantProps - .textStyle(StylesSaluteTheme.typography.bodyXxsNormal) - .dimensions { - minHeight(12.0.dp) - minWidth(12.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - } - .wrap(::WrapperCounterXxs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/Divider.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/Divider.kt deleted file mode 100644 index 719418758a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/Divider.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.divider - -/** - * Вспомогательный объект для описания API и стиля компонента Divider - */ -public object Divider diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/DividerStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/DividerStyles.kt deleted file mode 100644 index 0451675059..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/divider/DividerStyles.kt +++ /dev/null @@ -1,49 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.divider - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DividerStyle -import com.sdds.compose.uikit.DividerStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDivider : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperDividerDefault( - public override val builder: DividerStyleBuilder, -) : WrapperDivider - -public val Divider.Default: WrapperDividerDefault - @Composable - @JvmName("WrapperDividerDefault") - get() = DividerStyle.builder(this) - .shape(CircleShape) - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - .dimensions { - thickness(1.0.dp) - } - .wrap(::WrapperDividerDefault) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormal.kt deleted file mode 100644 index bf2def76f5..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.dropdownmenu - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuNormal - */ -public object DropdownMenuNormal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormalStyles.kt deleted file mode 100644 index 30944ad675..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuNormalStyles.kt +++ /dev/null @@ -1,145 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.dropdownmenu - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.DropdownMenuStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import com.sdds.stylessalute.styles.list.DropdownMenuListNormal -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xs -import com.sdds.stylessalute.styles.scrollbar.S -import com.sdds.stylessalute.styles.scrollbar.ScrollBar -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuNormal : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuNormalL( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuNormalM( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuNormalS( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuNormalXs( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuNormal - -private val DropdownMenuStyleBuilder.invariantProps: DropdownMenuStyleBuilder - @Composable - get() = this - .shadow(StylesSaluteTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .dimensions { - offset(8.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .dividerStyle(Divider.Default.style()) - .scrollBarStyle(ScrollBar.S.style()) - -public val DropdownMenuNormal.L: WrapperDropdownMenuNormalL - @Composable - @JvmName("WrapperDropdownMenuNormalL") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.L.style()) - .wrap(::WrapperDropdownMenuNormalL) - -public val DropdownMenuNormal.M: WrapperDropdownMenuNormalM - @Composable - @JvmName("WrapperDropdownMenuNormalM") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.M.style()) - .wrap(::WrapperDropdownMenuNormalM) - -public val DropdownMenuNormal.S: WrapperDropdownMenuNormalS - @Composable - @JvmName("WrapperDropdownMenuNormalS") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.S.style()) - .wrap(::WrapperDropdownMenuNormalS) - -public val DropdownMenuNormal.Xs: WrapperDropdownMenuNormalXs - @Composable - @JvmName("WrapperDropdownMenuNormalXs") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListNormal.Xs.style()) - .wrap(::WrapperDropdownMenuNormalXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTight.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTight.kt deleted file mode 100644 index b42a849a37..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.dropdownmenu - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuTight - */ -public object DropdownMenuTight diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTightStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTightStyles.kt deleted file mode 100644 index 58f7b5e1d9..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/dropdownmenu/DropdownMenuTightStyles.kt +++ /dev/null @@ -1,145 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.dropdownmenu - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.DropdownMenuStyle -import com.sdds.compose.uikit.DropdownMenuStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import com.sdds.stylessalute.styles.list.DropdownMenuListTight -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xs -import com.sdds.stylessalute.styles.scrollbar.S -import com.sdds.stylessalute.styles.scrollbar.ScrollBar -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuTight : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuTightL( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuTightM( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuTightS( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuTightXs( - public override val builder: DropdownMenuStyleBuilder, -) : WrapperDropdownMenuTight - -private val DropdownMenuStyleBuilder.invariantProps: DropdownMenuStyleBuilder - @Composable - get() = this - .shadow(StylesSaluteTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .dimensions { - offset(8.0.dp) - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .dividerStyle(Divider.Default.style()) - .scrollBarStyle(ScrollBar.S.style()) - -public val DropdownMenuTight.L: WrapperDropdownMenuTightL - @Composable - @JvmName("WrapperDropdownMenuTightL") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.L.style()) - .wrap(::WrapperDropdownMenuTightL) - -public val DropdownMenuTight.M: WrapperDropdownMenuTightM - @Composable - @JvmName("WrapperDropdownMenuTightM") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - width(200.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.M.style()) - .wrap(::WrapperDropdownMenuTightM) - -public val DropdownMenuTight.S: WrapperDropdownMenuTightS - @Composable - @JvmName("WrapperDropdownMenuTightS") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.S.style()) - .wrap(::WrapperDropdownMenuTightS) - -public val DropdownMenuTight.Xs: WrapperDropdownMenuTightXs - @Composable - @JvmName("WrapperDropdownMenuTightXs") - get() = DropdownMenuStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - width(160.0.dp) - scrollBarPaddingTop(6.0.dp) - scrollBarPaddingBottom(8.0.dp) - } - .listStyle(DropdownMenuListTight.Xs.style()) - .wrap(::WrapperDropdownMenuTightXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClear.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClear.kt deleted file mode 100644 index 557196d616..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeClear - */ -public object IconBadgeClear diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClearStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClearStyles.kt deleted file mode 100644 index 8f21729174..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeClearStyles.kt +++ /dev/null @@ -1,270 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeClearView : WrapperIconBadgeClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeClearTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClear - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeClearL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeClearLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeClearM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeClearMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeClearS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeClearSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeClearXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeClearXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeClearView - -public val WrapperIconBadgeClearView.Default: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Accent: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Negative: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Positive: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Warning: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Dark: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -public val WrapperIconBadgeClearView.Light: WrapperIconBadgeClearTerminate - @Composable - get() = builder - .colors { - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeClearTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - -public val IconBadgeClear.L: WrapperIconBadgeClearL - @Composable - @JvmName("WrapperIconBadgeClearL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeClearL) - -public val WrapperIconBadgeClearL.Pilled: WrapperIconBadgeClearLPilled - @Composable - @JvmName("WrapperIconBadgeClearLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearLPilled) - -public val IconBadgeClear.M: WrapperIconBadgeClearM - @Composable - @JvmName("WrapperIconBadgeClearM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeClearM) - -public val WrapperIconBadgeClearM.Pilled: WrapperIconBadgeClearMPilled - @Composable - @JvmName("WrapperIconBadgeClearMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearMPilled) - -public val IconBadgeClear.S: WrapperIconBadgeClearS - @Composable - @JvmName("WrapperIconBadgeClearS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeClearS) - -public val WrapperIconBadgeClearS.Pilled: WrapperIconBadgeClearSPilled - @Composable - @JvmName("WrapperIconBadgeClearSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearSPilled) - -public val IconBadgeClear.Xs: WrapperIconBadgeClearXs - @Composable - @JvmName("WrapperIconBadgeClearXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeClearXs) - -public val WrapperIconBadgeClearXs.Pilled: WrapperIconBadgeClearXsPilled - @Composable - @JvmName("WrapperIconBadgeClearXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeClearXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolid.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolid.kt deleted file mode 100644 index 453c6906b6..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolid.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeSolid - */ -public object IconBadgeSolid diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolidStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolidStyles.kt deleted file mode 100644 index 9d5c2ed1e8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeSolidStyles.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeSolid : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeSolidView : WrapperIconBadgeSolid - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeSolidTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolid - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeSolidL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeSolidM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeSolidS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeSolidXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeSolidXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeSolidView - -public val WrapperIconBadgeSolidView.Default: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Accent: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Negative: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Positive: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Warning: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Dark: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -public val WrapperIconBadgeSolidView.Light: WrapperIconBadgeSolidTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeSolidTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - -public val IconBadgeSolid.L: WrapperIconBadgeSolidL - @Composable - @JvmName("WrapperIconBadgeSolidL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeSolidL) - -public val WrapperIconBadgeSolidL.Pilled: WrapperIconBadgeSolidLPilled - @Composable - @JvmName("WrapperIconBadgeSolidLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidLPilled) - -public val IconBadgeSolid.M: WrapperIconBadgeSolidM - @Composable - @JvmName("WrapperIconBadgeSolidM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeSolidM) - -public val WrapperIconBadgeSolidM.Pilled: WrapperIconBadgeSolidMPilled - @Composable - @JvmName("WrapperIconBadgeSolidMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidMPilled) - -public val IconBadgeSolid.S: WrapperIconBadgeSolidS - @Composable - @JvmName("WrapperIconBadgeSolidS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeSolidS) - -public val WrapperIconBadgeSolidS.Pilled: WrapperIconBadgeSolidSPilled - @Composable - @JvmName("WrapperIconBadgeSolidSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidSPilled) - -public val IconBadgeSolid.Xs: WrapperIconBadgeSolidXs - @Composable - @JvmName("WrapperIconBadgeSolidXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeSolidXs) - -public val WrapperIconBadgeSolidXs.Pilled: WrapperIconBadgeSolidXsPilled - @Composable - @JvmName("WrapperIconBadgeSolidXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeSolidXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparent.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparent.kt deleted file mode 100644 index ebfc7a8487..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.iconbadge - -/** - * Вспомогательный объект для описания API и стиля компонента IconBadgeTransparent - */ -public object IconBadgeTransparent diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparentStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparentStyles.kt deleted file mode 100644 index 6e811f0fbd..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbadge/IconBadgeTransparentStyles.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.iconbadge - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.BadgeStyle -import com.sdds.compose.uikit.IconBadgeStyleBuilder -import com.sdds.compose.uikit.iconBadgeBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconBadgeTransparent : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconBadgeTransparentView : WrapperIconBadgeTransparent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconBadgeTransparentTerminate( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparent - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconBadgeTransparentL( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentLPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconBadgeTransparentM( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentMPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconBadgeTransparentS( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentSPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconBadgeTransparentXs( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconBadgeTransparentXsPilled( - public override val builder: IconBadgeStyleBuilder, -) : WrapperIconBadgeTransparentView - -public val WrapperIconBadgeTransparentView.Default: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Accent: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentAccentMain.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Negative: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Positive: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPositive.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Warning: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentWarning.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Dark: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightTransparentDeep.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -public val WrapperIconBadgeTransparentView.Light: WrapperIconBadgeTransparentTerminate - @Composable - get() = builder - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkTransparentSecondary.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - } - .wrap(::WrapperIconBadgeTransparentTerminate) - -private val IconBadgeStyleBuilder.invariantProps: IconBadgeStyleBuilder - @Composable - get() = this - -public val IconBadgeTransparent.L: WrapperIconBadgeTransparentL - @Composable - @JvmName("WrapperIconBadgeTransparentL") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - height(28.0.dp) - startContentSize(16.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeTransparentL) - -public val WrapperIconBadgeTransparentL.Pilled: WrapperIconBadgeTransparentLPilled - @Composable - @JvmName("WrapperIconBadgeTransparentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentLPilled) - -public val IconBadgeTransparent.M: WrapperIconBadgeTransparentM - @Composable - @JvmName("WrapperIconBadgeTransparentM") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(24.0.dp) - startContentSize(12.0.dp) - startPadding(6.0.dp) - endPadding(6.0.dp) - } - .wrap(::WrapperIconBadgeTransparentM) - -public val WrapperIconBadgeTransparentM.Pilled: WrapperIconBadgeTransparentMPilled - @Composable - @JvmName("WrapperIconBadgeTransparentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentMPilled) - -public val IconBadgeTransparent.S: WrapperIconBadgeTransparentS - @Composable - @JvmName("WrapperIconBadgeTransparentS") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXs) - .dimensions { - height(20.0.dp) - startContentSize(12.0.dp) - startPadding(4.0.dp) - endPadding(4.0.dp) - } - .wrap(::WrapperIconBadgeTransparentS) - -public val WrapperIconBadgeTransparentS.Pilled: WrapperIconBadgeTransparentSPilled - @Composable - @JvmName("WrapperIconBadgeTransparentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentSPilled) - -public val IconBadgeTransparent.Xs: WrapperIconBadgeTransparentXs - @Composable - @JvmName("WrapperIconBadgeTransparentXs") - get() = BadgeStyle.iconBadgeBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundXxs) - .dimensions { - height(16.0.dp) - startContentSize(10.0.dp) - startPadding(3.0.dp) - endPadding(3.0.dp) - } - .wrap(::WrapperIconBadgeTransparentXs) - -public val WrapperIconBadgeTransparentXs.Pilled: WrapperIconBadgeTransparentXsPilled - @Composable - @JvmName("WrapperIconBadgeTransparentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconBadgeTransparentXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButton.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButton.kt deleted file mode 100644 index ebefe17e8c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.iconbutton - -/** - * Вспомогательный объект для описания API и стиля компонента IconButton - */ -public object IconButton diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButtonStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButtonStyles.kt deleted file mode 100644 index ddb6269169..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/iconbutton/IconButtonStyles.kt +++ /dev/null @@ -1,521 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.iconbutton - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.IconButtonStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.iconButtonBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIconButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIconButtonView : WrapperIconButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIconButtonTerminate( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButton - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIconButtonL( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperIconButtonLPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIconButtonM( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperIconButtonMPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIconButtonS( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperIconButtonSPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperIconButtonXs( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperIconButtonXsPilled( - public override val builder: IconButtonStyleBuilder, -) : WrapperIconButtonView - -public val WrapperIconButtonView.Default: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textInversePrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Secondary: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Accent: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultAccentMainHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Positive: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultPositiveHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Negative: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultNegativeHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Warning: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultWarningHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Clear: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondaryHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Dark: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightTransparentDeep.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnLightTransparentDeepActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnLightTransparentDeepHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.Black: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnDarkPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnDarkPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnLightSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -public val WrapperIconButtonView.White: WrapperIconButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textOnLightPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textOnLightPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textOnLightPrimaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceOnDarkSolidDefaultHover, - ), - ) - } - .wrap(::WrapperIconButtonTerminate) - -private val IconButtonStyleBuilder.invariantProps: IconButtonStyleBuilder - @Composable - get() = this - .loadingAlpha(0.0f) - .disableAlpha(0.4f) - -public val IconButton.L: WrapperIconButtonL - @Composable - @JvmName("WrapperIconButtonL") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - minWidth(56.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonL) - -public val WrapperIconButtonL.Pilled: WrapperIconButtonLPilled - @Composable - @JvmName("WrapperIconButtonLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonLPilled) - -public val IconButton.M: WrapperIconButtonM - @Composable - @JvmName("WrapperIconButtonM") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - height(48.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - minWidth(48.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonM) - -public val WrapperIconButtonM.Pilled: WrapperIconButtonMPilled - @Composable - @JvmName("WrapperIconButtonMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonMPilled) - -public val IconButton.S: WrapperIconButtonS - @Composable - @JvmName("WrapperIconButtonS") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - height(40.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - minWidth(40.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - } - .wrap(::WrapperIconButtonS) - -public val WrapperIconButtonS.Pilled: WrapperIconButtonSPilled - @Composable - @JvmName("WrapperIconButtonSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonSPilled) - -public val IconButton.Xs: WrapperIconButtonXs - @Composable - @JvmName("WrapperIconButtonXs") - get() = ButtonStyle.iconButtonBuilder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - minWidth(32.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - } - .wrap(::WrapperIconButtonXs) - -public val WrapperIconButtonXs.Pilled: WrapperIconButtonXsPilled - @Composable - @JvmName("WrapperIconButtonXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperIconButtonXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/Indicator.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/Indicator.kt deleted file mode 100644 index 65aeb2a43b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/Indicator.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.indicator - -/** - * Вспомогательный объект для описания API и стиля компонента Indicator - */ -public object Indicator diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/IndicatorStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/IndicatorStyles.kt deleted file mode 100644 index 0980aa0241..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/indicator/IndicatorStyles.kt +++ /dev/null @@ -1,194 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.indicator - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.IndicatorStyle -import com.sdds.compose.uikit.IndicatorStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperIndicator : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperIndicatorView : WrapperIndicator - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperIndicatorTerminate( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicator - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperIndicatorL( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperIndicatorM( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperIndicatorS( - public override val builder: IndicatorStyleBuilder, -) : WrapperIndicatorView - -public val WrapperIndicatorView.Default: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Accent: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Inactive: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Positive: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Warning: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Negative: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Dark: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightTransparentDeep.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.Black: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnLightSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -public val WrapperIndicatorView.White: WrapperIndicatorTerminate - @Composable - get() = builder - .color { - backgroundColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperIndicatorTerminate) - -private val IndicatorStyleBuilder.invariantProps: IndicatorStyleBuilder - @Composable - get() = this - .shape(CircleShape) - -public val Indicator.L: WrapperIndicatorL - @Composable - @JvmName("WrapperIndicatorL") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(12.0.dp) - width(12.0.dp) - } - .wrap(::WrapperIndicatorL) - -public val Indicator.M: WrapperIndicatorM - @Composable - @JvmName("WrapperIndicatorM") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(8.0.dp) - width(8.0.dp) - } - .wrap(::WrapperIndicatorM) - -public val Indicator.S: WrapperIndicatorS - @Composable - @JvmName("WrapperIndicatorS") - get() = IndicatorStyle.builder(this) - .invariantProps - .dimensions { - height(6.0.dp) - width(6.0.dp) - } - .wrap(::WrapperIndicatorS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButton.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButton.kt deleted file mode 100644 index bcd99df231..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.linkbutton - -/** - * Вспомогательный объект для описания API и стиля компонента LinkButton - */ -public object LinkButton diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButtonStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButtonStyles.kt deleted file mode 100644 index a1d0e2e80e..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/linkbutton/LinkButtonStyles.kt +++ /dev/null @@ -1,344 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.linkbutton - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ButtonStyle -import com.sdds.compose.uikit.LinkButtonStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.linkButtonBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperLinkButton : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperLinkButtonView : WrapperLinkButton - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperLinkButtonTerminate( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButton - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperLinkButtonL( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperLinkButtonM( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperLinkButtonS( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperLinkButtonXs( - public override val builder: LinkButtonStyleBuilder, -) : WrapperLinkButtonView - -public val WrapperLinkButtonView.Default: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Secondary: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Accent: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultAccentMainHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultAccentMainHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultAccentMainActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultAccentMainHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Positive: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPositiveHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPositiveHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPositiveActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPositiveHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Negative: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultNegativeHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultNegativeHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultNegativeActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultNegativeHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -public val WrapperLinkButtonView.Warning: WrapperLinkButtonTerminate - @Composable - get() = builder - .colors { - spinnerColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultWarningHover, - ), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultWarningHover, - ), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultWarningActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultWarningHover, - ), - ) - } - .wrap(::WrapperLinkButtonTerminate) - -private val LinkButtonStyleBuilder.invariantProps: LinkButtonStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive(), - ) - } - .loadingAlpha(0.06f) - .disableAlpha(0.4f) - -public val LinkButton.L: WrapperLinkButtonL - @Composable - @JvmName("WrapperLinkButtonL") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyLBold) - .dimensions { - height(56.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(50.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(8.0.dp) - } - .wrap(::WrapperLinkButtonL) - -public val LinkButton.M: WrapperLinkButtonM - @Composable - @JvmName("WrapperLinkButtonM") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyMBold) - .dimensions { - height(48.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(44.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(6.0.dp) - } - .wrap(::WrapperLinkButtonM) - -public val LinkButton.S: WrapperLinkButtonS - @Composable - @JvmName("WrapperLinkButtonS") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodySBold) - .dimensions { - height(40.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(39.0.dp) - iconSize(24.0.dp) - spinnerSize(22.0.dp) - spinnerStrokeWidth(2.0.dp) - iconMargin(4.0.dp) - } - .wrap(::WrapperLinkButtonS) - -public val LinkButton.Xs: WrapperLinkButtonXs - @Composable - @JvmName("WrapperLinkButtonXs") - get() = ButtonStyle.linkButtonBuilder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyXsBold) - .dimensions { - height(32.0.dp) - paddingStart(0.0.dp) - paddingEnd(0.0.dp) - minWidth(33.0.dp) - iconSize(16.0.dp) - spinnerSize(16.0.dp) - spinnerStrokeWidth(1.0.dp) - iconMargin(4.0.dp) - } - .wrap(::WrapperLinkButtonXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormal.kt deleted file mode 100644 index ec8bef8c78..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuListNormal - */ -public object DropdownMenuListNormal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormalStyles.kt deleted file mode 100644 index 3ac199673c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListNormalStyles.kt +++ /dev/null @@ -1,100 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import com.sdds.stylessalute.styles.listitem.Default -import com.sdds.stylessalute.styles.listitem.DropdownMenuItemNormal -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuListNormal : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuListNormalL( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuListNormalM( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuListNormalS( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuListNormalXs( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListNormal - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val DropdownMenuListNormal.L: WrapperDropdownMenuListNormalL - @Composable - @JvmName("WrapperDropdownMenuListNormalL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.L.Default.style()) - .wrap(::WrapperDropdownMenuListNormalL) - -public val DropdownMenuListNormal.M: WrapperDropdownMenuListNormalM - @Composable - @JvmName("WrapperDropdownMenuListNormalM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.M.Default.style()) - .wrap(::WrapperDropdownMenuListNormalM) - -public val DropdownMenuListNormal.S: WrapperDropdownMenuListNormalS - @Composable - @JvmName("WrapperDropdownMenuListNormalS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.S.Default.style()) - .wrap(::WrapperDropdownMenuListNormalS) - -public val DropdownMenuListNormal.Xs: WrapperDropdownMenuListNormalXs - @Composable - @JvmName("WrapperDropdownMenuListNormalXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemNormal.Xs.Default.style()) - .wrap(::WrapperDropdownMenuListNormalXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTight.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTight.kt deleted file mode 100644 index 38d28f6b40..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuListTight - */ -public object DropdownMenuListTight diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTightStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTightStyles.kt deleted file mode 100644 index 98a8085c0d..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/DropdownMenuListTightStyles.kt +++ /dev/null @@ -1,100 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.divider.Default -import com.sdds.stylessalute.styles.divider.Divider -import com.sdds.stylessalute.styles.listitem.Default -import com.sdds.stylessalute.styles.listitem.DropdownMenuItemTight -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuListTight : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuListTightL( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuListTightM( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuListTightS( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuListTightXs( - public override val builder: ListStyleBuilder, -) : WrapperDropdownMenuListTight - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - .dividerStyle(Divider.Default.style()) - -public val DropdownMenuListTight.L: WrapperDropdownMenuListTightL - @Composable - @JvmName("WrapperDropdownMenuListTightL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.L.Default.style()) - .wrap(::WrapperDropdownMenuListTightL) - -public val DropdownMenuListTight.M: WrapperDropdownMenuListTightM - @Composable - @JvmName("WrapperDropdownMenuListTightM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.M.Default.style()) - .wrap(::WrapperDropdownMenuListTightM) - -public val DropdownMenuListTight.S: WrapperDropdownMenuListTightS - @Composable - @JvmName("WrapperDropdownMenuListTightS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.S.Default.style()) - .wrap(::WrapperDropdownMenuListTightS) - -public val DropdownMenuListTight.Xs: WrapperDropdownMenuListTightXs - @Composable - @JvmName("WrapperDropdownMenuListTightXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(DropdownMenuItemTight.Xs.Default.style()) - .wrap(::WrapperDropdownMenuListTightXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormal.kt deleted file mode 100644 index 5665f26a26..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента ListNormal - */ -public object ListNormal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormalStyles.kt deleted file mode 100644 index 255d959a86..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListNormalStyles.kt +++ /dev/null @@ -1,113 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.ListItemNormal -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xl -import com.sdds.stylessalute.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListNormal : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListNormalXl( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListNormalL( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListNormalM( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListNormalS( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListNormalXs( - public override val builder: ListStyleBuilder, -) : WrapperListNormal - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - -public val ListNormal.Xl: WrapperListNormalXl - @Composable - @JvmName("WrapperListNormalXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.Xl.style()) - .wrap(::WrapperListNormalXl) - -public val ListNormal.L: WrapperListNormalL - @Composable - @JvmName("WrapperListNormalL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.L.style()) - .wrap(::WrapperListNormalL) - -public val ListNormal.M: WrapperListNormalM - @Composable - @JvmName("WrapperListNormalM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.M.style()) - .wrap(::WrapperListNormalM) - -public val ListNormal.S: WrapperListNormalS - @Composable - @JvmName("WrapperListNormalS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.S.style()) - .wrap(::WrapperListNormalS) - -public val ListNormal.Xs: WrapperListNormalXs - @Composable - @JvmName("WrapperListNormalXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemNormal.Xs.style()) - .wrap(::WrapperListNormalXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTight.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTight.kt deleted file mode 100644 index 6ad081a1a2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.list - -/** - * Вспомогательный объект для описания API и стиля компонента ListTight - */ -public object ListTight diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTightStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTightStyles.kt deleted file mode 100644 index cca2cc5f8d..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/list/ListTightStyles.kt +++ /dev/null @@ -1,113 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.list - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.ListStyle -import com.sdds.compose.uikit.ListStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.listitem.L -import com.sdds.stylessalute.styles.listitem.ListItemTight -import com.sdds.stylessalute.styles.listitem.M -import com.sdds.stylessalute.styles.listitem.S -import com.sdds.stylessalute.styles.listitem.Xl -import com.sdds.stylessalute.styles.listitem.Xs -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListTight : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListTightXl( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListTightL( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListTightM( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListTightS( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListTightXs( - public override val builder: ListStyleBuilder, -) : WrapperListTight - -private val ListStyleBuilder.invariantProps: ListStyleBuilder - @Composable - get() = this - -public val ListTight.Xl: WrapperListTightXl - @Composable - @JvmName("WrapperListTightXl") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.Xl.style()) - .wrap(::WrapperListTightXl) - -public val ListTight.L: WrapperListTightL - @Composable - @JvmName("WrapperListTightL") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.L.style()) - .wrap(::WrapperListTightL) - -public val ListTight.M: WrapperListTightM - @Composable - @JvmName("WrapperListTightM") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.M.style()) - .wrap(::WrapperListTightM) - -public val ListTight.S: WrapperListTightS - @Composable - @JvmName("WrapperListTightS") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.S.style()) - .wrap(::WrapperListTightS) - -public val ListTight.Xs: WrapperListTightXs - @Composable - @JvmName("WrapperListTightXs") - get() = ListStyle.builder(this) - .invariantProps - .listItemStyle(ListItemTight.Xs.style()) - .wrap(::WrapperListTightXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormal.kt deleted file mode 100644 index ece6c8721b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuItemNormal - */ -public object DropdownMenuItemNormal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormalStyles.kt deleted file mode 100644 index 5c6a508c56..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemNormalStyles.kt +++ /dev/null @@ -1,192 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuItemNormal : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperDropdownMenuItemNormalView : WrapperDropdownMenuItemNormal - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalTerminate( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalL( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalM( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalS( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuItemNormalXs( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemNormalView - -public val WrapperDropdownMenuItemNormalView.Default: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -public val WrapperDropdownMenuItemNormalView.Positive: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -public val WrapperDropdownMenuItemNormalView.Negative: WrapperDropdownMenuItemNormalTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemNormalTerminate) - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Focused) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val DropdownMenuItemNormal.L: WrapperDropdownMenuItemNormalL - @Composable - @JvmName("WrapperDropdownMenuItemNormalL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalL) - -public val DropdownMenuItemNormal.M: WrapperDropdownMenuItemNormalM - @Composable - @JvmName("WrapperDropdownMenuItemNormalM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalM) - -public val DropdownMenuItemNormal.S: WrapperDropdownMenuItemNormalS - @Composable - @JvmName("WrapperDropdownMenuItemNormalS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(40.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalS) - -public val DropdownMenuItemNormal.Xs: WrapperDropdownMenuItemNormalXs - @Composable - @JvmName("WrapperDropdownMenuItemNormalXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperDropdownMenuItemNormalXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTight.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTight.kt deleted file mode 100644 index 432f36d149..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента DropdownMenuItemTight - */ -public object DropdownMenuItemTight diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTightStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTightStyles.kt deleted file mode 100644 index 206ea06e66..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/DropdownMenuItemTightStyles.kt +++ /dev/null @@ -1,192 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperDropdownMenuItemTight : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperDropdownMenuItemTightView : WrapperDropdownMenuItemTight - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperDropdownMenuItemTightTerminate( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperDropdownMenuItemTightL( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperDropdownMenuItemTightM( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperDropdownMenuItemTightS( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperDropdownMenuItemTightXs( - public override val builder: ListItemStyleBuilder, -) : WrapperDropdownMenuItemTightView - -public val WrapperDropdownMenuItemTightView.Default: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -public val WrapperDropdownMenuItemTightView.Positive: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -public val WrapperDropdownMenuItemTightView.Negative: WrapperDropdownMenuItemTightTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperDropdownMenuItemTightTerminate) - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Focused) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val DropdownMenuItemTight.L: WrapperDropdownMenuItemTightL - @Composable - @JvmName("WrapperDropdownMenuItemTightL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightL) - -public val DropdownMenuItemTight.M: WrapperDropdownMenuItemTightM - @Composable - @JvmName("WrapperDropdownMenuItemTightM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightM) - -public val DropdownMenuItemTight.S: WrapperDropdownMenuItemTightS - @Composable - @JvmName("WrapperDropdownMenuItemTightS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(7.0.dp) - paddingBottom(7.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightS) - -public val DropdownMenuItemTight.Xs: WrapperDropdownMenuItemTightXs - @Composable - @JvmName("WrapperDropdownMenuItemTightXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - } - .wrap(::WrapperDropdownMenuItemTightXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormal.kt deleted file mode 100644 index 0968a424bf..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента ListItemNormal - */ -public object ListItemNormal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormalStyles.kt deleted file mode 100644 index d2c811dfa6..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemNormalStyles.kt +++ /dev/null @@ -1,191 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListItemNormal : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListItemNormalXl( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListItemNormalL( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListItemNormalM( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListItemNormalS( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListItemNormalXs( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemNormal - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val ListItemNormal.Xl: WrapperListItemNormalXl - @Composable - @JvmName("WrapperListItemNormalXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(64.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(20.0.dp) - paddingBottom(20.0.dp) - } - .wrap(::WrapperListItemNormalXl) - -public val ListItemNormal.L: WrapperListItemNormalL - @Composable - @JvmName("WrapperListItemNormalL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperListItemNormalL) - -public val ListItemNormal.M: WrapperListItemNormalM - @Composable - @JvmName("WrapperListItemNormalM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodySNormal) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperListItemNormalM) - -public val ListItemNormal.S: WrapperListItemNormalS - @Composable - @JvmName("WrapperListItemNormalS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(40.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - } - .wrap(::WrapperListItemNormalS) - -public val ListItemNormal.Xs: WrapperListItemNormalXs - @Composable - @JvmName("WrapperListItemNormalXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperListItemNormalXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTight.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTight.kt deleted file mode 100644 index 2ccf2f6d24..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTight.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.listitem - -/** - * Вспомогательный объект для описания API и стиля компонента ListItemTight - */ -public object ListItemTight diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTightStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTightStyles.kt deleted file mode 100644 index df5c4d4d85..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/listitem/ListItemTightStyles.kt +++ /dev/null @@ -1,191 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.listitem - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ListItemStyle -import com.sdds.compose.uikit.ListItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperListItemTight : BuilderWrapper - -/** - * Обертка для вариации Xl - */ -@JvmInline -public value class WrapperListItemTightXl( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperListItemTightL( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperListItemTightM( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperListItemTightS( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperListItemTightXs( - public override val builder: ListItemStyleBuilder, -) : WrapperListItemTight - -private val ListItemStyleBuilder.invariantProps: ListItemStyleBuilder - @Composable - get() = this - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - subtitleColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - disclosureIconColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val ListItemTight.Xl: WrapperListItemTightXl - @Composable - @JvmName("WrapperListItemTightXl") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(56.0.dp) - paddingStart(18.0.dp) - paddingEnd(18.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - } - .wrap(::WrapperListItemTightXl) - -public val ListItemTight.L: WrapperListItemTightL - @Composable - @JvmName("WrapperListItemTightL") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodyLNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(48.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - } - .wrap(::WrapperListItemTightL) - -public val ListItemTight.M: WrapperListItemTightM - @Composable - @JvmName("WrapperListItemTightM") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .titleStyle(StylesSaluteTheme.typography.bodyMNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodySNormal) - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_24) - .dimensions { - contentPaddingEnd(8.0.dp) - height(40.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - .wrap(::WrapperListItemTightM) - -public val ListItemTight.S: WrapperListItemTightS - @Composable - @JvmName("WrapperListItemTightS") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .titleStyle(StylesSaluteTheme.typography.bodySNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(7.0.dp) - paddingBottom(7.0.dp) - } - .wrap(::WrapperListItemTightS) - -public val ListItemTight.Xs: WrapperListItemTightXs - @Composable - @JvmName("WrapperListItemTightXs") - get() = ListItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .titleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .subtitleStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .disclosureIcon(com.sdds.icons.R.drawable.ic_disclosure_right_outline_16) - .dimensions { - contentPaddingEnd(6.0.dp) - height(24.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - } - .wrap(::WrapperListItemTightXs) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/Modal.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/Modal.kt deleted file mode 100644 index 0f6cbcff15..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/Modal.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.modal - -/** - * Вспомогательный объект для описания API и стиля компонента Modal - */ -public object Modal diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/ModalStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/ModalStyles.kt deleted file mode 100644 index cd5bb31c79..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/modal/ModalStyles.kt +++ /dev/null @@ -1,58 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.modal - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ModalStyle -import com.sdds.compose.uikit.ModalStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperModal : BuilderWrapper - -/** - * Обертка для вариации Default - */ -@JvmInline -public value class WrapperModalDefault( - public override val builder: ModalStyleBuilder, -) : WrapperModal - -public val Modal.Default: WrapperModalDefault - @Composable - @JvmName("WrapperModalDefault") - get() = ModalStyle.builder(this) - .shape(StylesSaluteTheme.shapes.roundXl) - .shadow(StylesSaluteTheme.shadows.downSoftL) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - paddingStart(32.0.dp) - paddingEnd(32.0.dp) - paddingTop(32.0.dp) - paddingBottom(32.0.dp) - closeSize(24.0.dp) - } - .wrap(::WrapperModalDefault) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompact.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompact.kt deleted file mode 100644 index 9b9ac14429..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompact.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.notification - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationCompact - */ -public object NotificationCompact diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompactStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompactStyles.kt deleted file mode 100644 index dd27db2906..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationCompactStyles.kt +++ /dev/null @@ -1,115 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.notification - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.NotificationStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.notificationcontent.ButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.Default -import com.sdds.stylessalute.styles.notificationcontent.NotificationContent -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationCompact : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperNotificationCompactL( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperNotificationCompactM( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperNotificationCompactS( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationCompact - -private val NotificationStyleBuilder.invariantProps: NotificationStyleBuilder - @Composable - get() = this - .notificationContentStyle(NotificationContent.ButtonStretch.Default.style()) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val NotificationCompact.L: WrapperNotificationCompactL - @Composable - @JvmName("WrapperNotificationCompactL") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - closeSize(24.0.dp) - } - .wrap(::WrapperNotificationCompactL) - -public val NotificationCompact.M: WrapperNotificationCompactM - @Composable - @JvmName("WrapperNotificationCompactM") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(6.0.dp) - paddingEnd(6.0.dp) - paddingTop(6.0.dp) - paddingBottom(6.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationCompactM) - -public val NotificationCompact.S: WrapperNotificationCompactS - @Composable - @JvmName("WrapperNotificationCompactS") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - paddingStart(4.0.dp) - paddingEnd(4.0.dp) - paddingTop(4.0.dp) - paddingBottom(4.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationCompactS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLoose.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLoose.kt deleted file mode 100644 index 5e954946a1..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLoose.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.notification - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationLoose - */ -public object NotificationLoose diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLooseStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLooseStyles.kt deleted file mode 100644 index 80414fbaeb..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notification/NotificationLooseStyles.kt +++ /dev/null @@ -1,115 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.notification - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationStyle -import com.sdds.compose.uikit.NotificationStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.notificationcontent.Default -import com.sdds.stylessalute.styles.notificationcontent.NoButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.NotificationContent -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationLoose : - BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperNotificationLooseL( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperNotificationLooseM( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperNotificationLooseS( - public override val builder: NotificationStyleBuilder, -) : WrapperNotificationLoose - -private val NotificationStyleBuilder.invariantProps: NotificationStyleBuilder - @Composable - get() = this - .notificationContentStyle(NotificationContent.NoButtonStretch.Default.style()) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - closeColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - -public val NotificationLoose.L: WrapperNotificationLooseL - @Composable - @JvmName("WrapperNotificationLooseL") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - paddingTop(16.0.dp) - paddingBottom(16.0.dp) - closeSize(24.0.dp) - } - .wrap(::WrapperNotificationLooseL) - -public val NotificationLoose.M: WrapperNotificationLooseM - @Composable - @JvmName("WrapperNotificationLooseM") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(14.0.dp) - paddingBottom(14.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationLooseM) - -public val NotificationLoose.S: WrapperNotificationLooseS - @Composable - @JvmName("WrapperNotificationLooseS") - get() = NotificationStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .dimensions { - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(12.0.dp) - paddingBottom(12.0.dp) - closeSize(16.0.dp) - } - .wrap(::WrapperNotificationLooseS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContent.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContent.kt deleted file mode 100644 index 89f7547be4..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContent.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.notificationcontent - -/** - * Вспомогательный объект для описания API и стиля компонента NotificationContent - */ -public object NotificationContent diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContentStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContentStyles.kt deleted file mode 100644 index cfcf89ead2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/notificationcontent/NotificationContentStyles.kt +++ /dev/null @@ -1,266 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.notificationcontent - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.NotificationContentButtonLayout -import com.sdds.compose.uikit.NotificationContentIconPlacement -import com.sdds.compose.uikit.NotificationContentStyle -import com.sdds.compose.uikit.NotificationContentStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.buttongroup.BasicButtonGroup -import com.sdds.stylessalute.styles.buttongroup.Default -import com.sdds.stylessalute.styles.buttongroup.Dense -import com.sdds.stylessalute.styles.buttongroup.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperNotificationContent : - BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperNotificationContentView : WrapperNotificationContent - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperNotificationContentTerminate( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContent - -/** - * Обертка для вариации ButtonStretch - */ -@JvmInline -public value class WrapperNotificationContentButtonStretch( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации ButtonStretchIconTop - */ -@JvmInline -public value class WrapperNotificationContentButtonStretchIconTop( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации ButtonStretchIconStart - */ -@JvmInline -public value class WrapperNotificationContentButtonStretchIconStart( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretch - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretch( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretchIconTop - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretchIconTop( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -/** - * Обертка для вариации NoButtonStretchIconStart - */ -@JvmInline -public value class WrapperNotificationContentNoButtonStretchIconStart( - public override val builder: NotificationContentStyleBuilder, -) : WrapperNotificationContentView - -public val WrapperNotificationContentView.Default: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Positive: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Negative: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Warning: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -public val WrapperNotificationContentView.Info: WrapperNotificationContentTerminate - @Composable - get() = builder - .colors { - titleColor( - StylesSaluteTheme.colors.textDefaultInfo.asInteractive(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - iconColor( - StylesSaluteTheme.colors.textDefaultInfo.asInteractive(), - ) - } - .wrap(::WrapperNotificationContentTerminate) - -private val NotificationContentStyleBuilder.invariantProps: NotificationContentStyleBuilder - @Composable - get() = this - .icon(com.sdds.icons.R.drawable.ic_info_circle_outline_24) - .titleStyle(StylesSaluteTheme.typography.bodySBold) - .textStyle(StylesSaluteTheme.typography.textSNormal) - .dimensions { - iconSize(24.0.dp) - textPadding(4.0.dp) - textBoxBottomPadding(6.0.dp) - buttonGroupTopPadding(6.0.dp) - } - -public val NotificationContent.ButtonStretch: WrapperNotificationContentButtonStretch - @Composable - @JvmName("WrapperNotificationContentButtonStretch") - get() = NotificationContentStyle.builder(this) - .invariantProps - .buttonLayout(NotificationContentButtonLayout.Stretch) - .buttonGroupStyle(BasicButtonGroup.Xs.Dense.Default.style()) - .dimensions { - contentStartPadding(4.0.dp) - contentTopPadding(2.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretch) - -public val WrapperNotificationContentButtonStretch.IconTop: - WrapperNotificationContentButtonStretchIconTop - @Composable - @JvmName("WrapperNotificationContentButtonStretchIconTop") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Top) - .dimensions { - iconMargin(8.0.dp) - contentEndPadding(6.0.dp) - textBoxStartPadding(2.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretchIconTop) - -public val WrapperNotificationContentButtonStretch.IconStart: - WrapperNotificationContentButtonStretchIconStart - @Composable - @JvmName("WrapperNotificationContentButtonStretchIconStart") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Start) - .dimensions { - iconMargin(6.0.dp) - textBoxStartPadding(2.0.dp) - textBoxTopPadding(3.0.dp) - } - .wrap(::WrapperNotificationContentButtonStretchIconStart) - -public val NotificationContent.NoButtonStretch: WrapperNotificationContentNoButtonStretch - @Composable - @JvmName("WrapperNotificationContentNoButtonStretch") - get() = NotificationContentStyle.builder(this) - .invariantProps - .buttonLayout(NotificationContentButtonLayout.Normal) - .buttonGroupStyle(BasicButtonGroup.Xs.Dense.Default.style()) - .dimensions { - contentTopPadding(4.0.dp) - textBoxStartPadding(2.0.dp) - textBoxTopPadding(3.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretch) - -public val WrapperNotificationContentNoButtonStretch.IconTop: - WrapperNotificationContentNoButtonStretchIconTop - @Composable - @JvmName("WrapperNotificationContentNoButtonStretchIconTop") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Top) - .dimensions { - iconMargin(8.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretchIconTop) - -public val WrapperNotificationContentNoButtonStretch.IconStart: - WrapperNotificationContentNoButtonStretchIconStart - @Composable - @JvmName("WrapperNotificationContentNoButtonStretchIconStart") - get() = builder - .iconPlacement(NotificationContentIconPlacement.Start) - .dimensions { - iconMargin(6.0.dp) - buttonGroupStartPadding(32.0.dp) - } - .wrap(::WrapperNotificationContentNoButtonStretchIconStart) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/Popover.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/Popover.kt deleted file mode 100644 index 464b3b18e5..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/Popover.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.popover - -/** - * Вспомогательный объект для описания API и стиля компонента Popover - */ -public object Popover diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/PopoverStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/PopoverStyles.kt deleted file mode 100644 index d55b97593b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/popover/PopoverStyles.kt +++ /dev/null @@ -1,111 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.popover - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.PopoverStyle -import com.sdds.compose.uikit.PopoverStyleBuilder -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperPopover : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperPopoverView : WrapperPopover - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperPopoverTerminate( - public override val builder: PopoverStyleBuilder, -) : WrapperPopover - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperPopoverM( - public override val builder: PopoverStyleBuilder, -) : WrapperPopoverView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperPopoverS( - public override val builder: PopoverStyleBuilder, -) : WrapperPopoverView - -public val WrapperPopoverView.Default: WrapperPopoverTerminate - @Composable - get() = builder - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - } - .wrap(::WrapperPopoverTerminate) - -public val WrapperPopoverView.Accent: WrapperPopoverTerminate - @Composable - get() = builder - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultAccentMain).asStatefulValue(), - ) - } - .wrap(::WrapperPopoverTerminate) - -private val PopoverStyleBuilder.invariantProps: PopoverStyleBuilder - @Composable - get() = this - .shadow(StylesSaluteTheme.shadows.downHardM) - .dimensions { - width(182.0.dp) - offset(8.0.dp) - tailWidth(20.0.dp) - tailHeight(8.0.dp) - } - -public val Popover.M: WrapperPopoverM - @Composable - @JvmName("WrapperPopoverM") - get() = PopoverStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL) - .dimensions { - tailPadding(20.0.dp) - } - .wrap(::WrapperPopoverM) - -public val Popover.S: WrapperPopoverS - @Composable - @JvmName("WrapperPopoverS") - get() = PopoverStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - tailPadding(16.0.dp) - } - .wrap(::WrapperPopoverS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBar.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBar.kt deleted file mode 100644 index bf3b0064f5..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.progressbar - -/** - * Вспомогательный объект для описания API и стиля компонента ProgressBar - */ -public object ProgressBar diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBarStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBarStyles.kt deleted file mode 100644 index 8010c1090a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/progressbar/ProgressBarStyles.kt +++ /dev/null @@ -1,143 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.progressbar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ProgressBarStyle -import com.sdds.compose.uikit.ProgressBarStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperProgressBar : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperProgressBarTerminate( - public override val builder: ProgressBarStyleBuilder, -) : WrapperProgressBar - -public val ProgressBar.Default: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultSolidDefault.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Secondary: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Accent: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultAccentMain.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Gradient: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.gradients.surfaceDefaultGradientMain.asLayered().asStatefulValue(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Negative: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Positive: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -public val ProgressBar.Warning: WrapperProgressBarTerminate - @Composable - get() = ProgressBarStyle.builder(this) - .invariantProps - .colorValues { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive(), - ) - } - .wrap(::WrapperProgressBarTerminate) - -private val ProgressBarStyleBuilder.invariantProps: ProgressBarStyleBuilder - @Composable - get() = this - .indicatorShape(CircleShape) - .backgroundShape(CircleShape) - .dimensionValues { - indicatorHeight(4.0.dp) - backgroundHeight(4.0.dp) - } diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBox.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBox.kt deleted file mode 100644 index 898fbbf02f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBox.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.radiobox - -/** - * Вспомогательный объект для описания API и стиля компонента RadioBox - */ -public object RadioBox diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBoxStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBoxStyles.kt deleted file mode 100644 index 336e874ca2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radiobox/RadioBoxStyles.kt +++ /dev/null @@ -1,138 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.radiobox - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.RadioBoxStates -import com.sdds.compose.uikit.RadioBoxStyle -import com.sdds.compose.uikit.RadioBoxStyleBuilder -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRadioBox : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperRadioBoxM( - public override val builder: RadioBoxStyleBuilder, -) : WrapperRadioBox - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperRadioBoxS( - public override val builder: RadioBoxStyleBuilder, -) : WrapperRadioBox - -private val RadioBoxStyleBuilder.invariantProps: RadioBoxStyleBuilder - @Composable - get() = this - .shape(CircleShape) - .colorValues { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - toggleColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(RadioBoxStates.Checked) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - toggleIconColor( - StylesSaluteTheme.colors.textOnDarkPrimary.asInteractive(), - ) - toggleBorderColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Focused) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - setOf( - InteractiveState.Focused, - RadioBoxStates.Checked, - ) - to StylesSaluteTheme.colors.outlineDefaultAccentMain, - setOf(RadioBoxStates.Checked) - to StylesSaluteTheme.colors.outlineDefaultClear, - ), - ) - } - .dimensionValues { - toggleBorderOffset( - 0.0.dp.asStatefulValue( - setOf(InteractiveState.Focused) to 3.0.dp, - setOf( - InteractiveState.Focused, - RadioBoxStates.Checked, - ) to 3.0.dp, - ), - ) - } - .disableAlpha(0.4f) - -public val RadioBox.M: WrapperRadioBoxM - @Composable - @JvmName("WrapperRadioBoxM") - get() = RadioBoxStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensionValues { - toggleWidth(24.0.dp) - toggleHeight(24.0.dp) - toggleIconHeight(10.0.dp) - toggleIconWidth(10.0.dp) - toggleBorderWidth( - 2.0.dp.asStatefulValue( - setOf(InteractiveState.Focused, RadioBoxStates.Checked) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(10.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperRadioBoxM) - -public val RadioBox.S: WrapperRadioBoxS - @Composable - @JvmName("WrapperRadioBoxS") - get() = RadioBoxStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensionValues { - toggleWidth(18.0.dp) - toggleHeight(18.0.dp) - toggleIconHeight(8.0.dp) - toggleIconWidth(8.0.dp) - toggleBorderWidth( - 1.5.dp.asStatefulValue( - setOf(InteractiveState.Focused, RadioBoxStates.Checked) to 1.0.dp, - ), - ) - togglePadding(1.0.dp) - textPadding(8.0.dp) - descriptionPadding(2.0.dp) - } - .wrap(::WrapperRadioBoxS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroup.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroup.kt deleted file mode 100644 index 75bb1da29b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroup.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.radioboxgroup - -/** - * Вспомогательный объект для описания API и стиля компонента RadioBoxGroup - */ -public object RadioBoxGroup diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroupStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroupStyles.kt deleted file mode 100644 index 2524fd3c5c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/radioboxgroup/RadioBoxGroupStyles.kt +++ /dev/null @@ -1,70 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.radioboxgroup - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.RadioBoxGroupStyle -import com.sdds.compose.uikit.RadioBoxGroupStyleBuilder -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.radiobox.M -import com.sdds.stylessalute.styles.radiobox.RadioBox -import com.sdds.stylessalute.styles.radiobox.S -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRadioBoxGroup : - BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperRadioBoxGroupM( - public override val builder: RadioBoxGroupStyleBuilder, -) : WrapperRadioBoxGroup - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperRadioBoxGroupS( - public override val builder: RadioBoxGroupStyleBuilder, -) : WrapperRadioBoxGroup - -private val RadioBoxGroupStyleBuilder.invariantProps: RadioBoxGroupStyleBuilder - @Composable - get() = this - -public val RadioBoxGroup.M: WrapperRadioBoxGroupM - @Composable - @JvmName("WrapperRadioBoxGroupM") - get() = RadioBoxGroupStyle.builder(this) - .invariantProps - .radioBoxStyle(RadioBox.M.style()) - .dimensions { - itemSpacing(12.0.dp) - } - .wrap(::WrapperRadioBoxGroupM) - -public val RadioBoxGroup.S: WrapperRadioBoxGroupS - @Composable - @JvmName("WrapperRadioBoxGroupS") - get() = RadioBoxGroupStyle.builder(this) - .invariantProps - .radioBoxStyle(RadioBox.S.style()) - .dimensions { - itemSpacing(10.0.dp) - } - .wrap(::WrapperRadioBoxGroupS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeleton.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeleton.kt deleted file mode 100644 index f53cb3bfe8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeleton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.rectskeleton - -/** - * Вспомогательный объект для описания API и стиля компонента RectSkeleton - */ -public object RectSkeleton diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeletonStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeletonStyles.kt deleted file mode 100644 index a98d01f963..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/rectskeleton/RectSkeletonStyles.kt +++ /dev/null @@ -1,56 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.rectskeleton - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.RectSkeletonStyle -import com.sdds.compose.uikit.RectSkeletonStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperRectSkeleton : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperRectSkeletonTerminate( - public override val builder: RectSkeletonStyleBuilder, -) : WrapperRectSkeleton - -public val RectSkeleton.Default: WrapperRectSkeletonTerminate - @Composable - get() = RectSkeletonStyle.builder(this) - .invariantProps - .gradient( - StylesSaluteTheme.gradients.surfaceDefaultSkeletonGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperRectSkeletonTerminate) - -public val RectSkeleton.Lighter: WrapperRectSkeletonTerminate - @Composable - get() = RectSkeletonStyle.builder(this) - .invariantProps - .gradient( - StylesSaluteTheme.gradients.surfaceDefaultSkeletonDeepGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperRectSkeletonTerminate) - -private val RectSkeletonStyleBuilder.invariantProps: RectSkeletonStyleBuilder - @Composable - get() = this - .shape(StylesSaluteTheme.shapes.roundM) - .duration(5000.0.toInt()) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBar.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBar.kt deleted file mode 100644 index 20a5ec2f83..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBar.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.scrollbar - -/** - * Вспомогательный объект для описания API и стиля компонента ScrollBar - */ -public object ScrollBar diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBarStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBarStyles.kt deleted file mode 100644 index 68ae53d432..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/scrollbar/ScrollBarStyles.kt +++ /dev/null @@ -1,76 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.scrollbar - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ScrollBarStyle -import com.sdds.compose.uikit.ScrollBarStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperScrollBar : BuilderWrapper - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperScrollBarS( - public override val builder: ScrollBarStyleBuilder, -) : WrapperScrollBar - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperScrollBarM( - public override val builder: ScrollBarStyleBuilder, -) : WrapperScrollBar - -private val ScrollBarStyleBuilder.invariantProps: ScrollBarStyleBuilder - @Composable - get() = this - .hoverExpandFactor(2.0f) - .shape(CircleShape) - .colors { - thumbColor( - StylesSaluteTheme.colors.surfaceDefaultSolidTertiary.asInteractive(), - ) - trackColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - } - -public val ScrollBar.S: WrapperScrollBarS - @Composable - @JvmName("WrapperScrollBarS") - get() = ScrollBarStyle.builder(this) - .invariantProps - .dimensions { - width(2.0.dp) - } - .wrap(::WrapperScrollBarS) - -public val ScrollBar.M: WrapperScrollBarM - @Composable - @JvmName("WrapperScrollBarM") - get() = ScrollBarStyle.builder(this) - .invariantProps - .dimensions { - width(4.0.dp) - } - .wrap(::WrapperScrollBarM) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/Segment.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/Segment.kt deleted file mode 100644 index db65f9e7eb..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/Segment.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.segment - -/** - * Вспомогательный объект для описания API и стиля компонента Segment - */ -public object Segment diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/SegmentStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/SegmentStyles.kt deleted file mode 100644 index b853a0d198..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segment/SegmentStyles.kt +++ /dev/null @@ -1,377 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.segment - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SegmentStyle -import com.sdds.compose.uikit.SegmentStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.segmentitem.L -import com.sdds.stylessalute.styles.segmentitem.M -import com.sdds.stylessalute.styles.segmentitem.Pilled -import com.sdds.stylessalute.styles.segmentitem.Primary -import com.sdds.stylessalute.styles.segmentitem.S -import com.sdds.stylessalute.styles.segmentitem.Secondary -import com.sdds.stylessalute.styles.segmentitem.SegmentItem -import com.sdds.stylessalute.styles.segmentitem.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSegment : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариации l - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentLView : WrapperSegment - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperSegmentTerminate( - public override val builder: SegmentStyleBuilder, -) : WrapperSegment - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSegmentL( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentLView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentLPilledView : WrapperSegmentLView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperSegmentLPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentLPilledView - -/** - * Интерфейс, который реализуют все обертки вариации m - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentMView : WrapperSegment - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSegmentM( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentMView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentMPilledView : WrapperSegmentMView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperSegmentMPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentMPilledView - -/** - * Интерфейс, который реализуют все обертки вариации s - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentSView : WrapperSegment - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSegmentS( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentSView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentSPilledView : WrapperSegmentSView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperSegmentSPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentSPilledView - -/** - * Интерфейс, который реализуют все обертки вариации xs - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXsView : WrapperSegment - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperSegmentXs( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXsView - -/** - * Интерфейс, который реализуют все обертки вариации pilled - * и обертки ее подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentXsPilledView : WrapperSegmentXsView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperSegmentXsPilled( - public override val builder: SegmentStyleBuilder, -) : WrapperSegmentXsPilledView - -private val SegmentStyleBuilder.invariantProps: SegmentStyleBuilder - @Composable - get() = this - .colors { - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary.asInteractive(), - ) - } - -public val WrapperSegmentLView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.L.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.L.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.L: WrapperSegmentL - @Composable - @JvmName("WrapperSegmentL") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentL) - -public val WrapperSegmentLPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.L.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentLPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentLPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.L.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentL.Pilled: WrapperSegmentLPilled - @Composable - @JvmName("WrapperSegmentLPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentLPilled) - -public val WrapperSegmentMView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.M.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.M.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.M: WrapperSegmentM - @Composable - @JvmName("WrapperSegmentM") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentM) - -public val WrapperSegmentMPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.M.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentMPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentMPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.M.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentM.Pilled: WrapperSegmentMPilled - @Composable - @JvmName("WrapperSegmentMPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentMPilled) - -public val WrapperSegmentSView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.S.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.S.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.S: WrapperSegmentS - @Composable - @JvmName("WrapperSegmentS") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentS) - -public val WrapperSegmentSPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.S.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentSPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentSPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.S.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentS.Pilled: WrapperSegmentSPilled - @Composable - @JvmName("WrapperSegmentSPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentSPilled) - -public val WrapperSegmentXsView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val Segment.Xs: WrapperSegmentXs - @Composable - @JvmName("WrapperSegmentXs") - get() = SegmentStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - paddingStart(2.0.dp) - paddingEnd(2.0.dp) - paddingTop(2.0.dp) - paddingBottom(2.0.dp) - } - .wrap(::WrapperSegmentXs) - -public val WrapperSegmentXsPilledView.Primary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsPilledViewPrimary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Pilled.Primary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXsPilledView.Secondary: WrapperSegmentTerminate - @Composable - @JvmName("WrapperSegmentXsPilledViewSecondary") - get() = builder - .segmentItemStyle(SegmentItem.Xs.Pilled.Secondary.style()) - .wrap(::WrapperSegmentTerminate) - -public val WrapperSegmentXs.Pilled: WrapperSegmentXsPilled - @Composable - @JvmName("WrapperSegmentXsPilled") - get() = builder - .shape(CircleShape) - .wrap(::WrapperSegmentXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItem.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItem.kt deleted file mode 100644 index c3e7dd9ad2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItem.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.segmentitem - -/** - * Вспомогательный объект для описания API и стиля компонента SegmentItem - */ -public object SegmentItem diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItemStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItemStyles.kt deleted file mode 100644 index 70cc1c957f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/segmentitem/SegmentItemStyles.kt +++ /dev/null @@ -1,439 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.segmentitem - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SegmentItemStyle -import com.sdds.compose.uikit.SegmentItemStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.counter.Accent -import com.sdds.stylessalute.styles.counter.Counter -import com.sdds.stylessalute.styles.counter.S -import com.sdds.stylessalute.styles.counter.Xs -import com.sdds.stylessalute.styles.counter.Xxs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSegmentItem : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperSegmentItemView : WrapperSegmentItem - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperSegmentItemTerminate( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItem - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSegmentItemL( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации LPilled - */ -@JvmInline -public value class WrapperSegmentItemLPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSegmentItemM( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации MPilled - */ -@JvmInline -public value class WrapperSegmentItemMPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSegmentItemS( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации SPilled - */ -@JvmInline -public value class WrapperSegmentItemSPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperSegmentItemXs( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -/** - * Обертка для вариации XsPilled - */ -@JvmInline -public value class WrapperSegmentItemXsPilled( - public override val builder: SegmentItemStyleBuilder, -) : WrapperSegmentItemView - -public val WrapperSegmentItemView.Primary: WrapperSegmentItemTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textInverseSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textInverseSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textInverseSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefault, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.surfaceDefaultSolidDefaultHover, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textInversePrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textInversePrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textInversePrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -public val WrapperSegmentItemView.Secondary: WrapperSegmentItemTerminate - @Composable - get() = builder - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textDefaultSecondary, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive( - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultClearHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.surfaceDefaultTransparentCard, - setOf( - InteractiveState.Selected, - InteractiveState.Pressed, - ) - to StylesSaluteTheme.colors.surfaceDefaultTransparentCardActive, - setOf(InteractiveState.Selected, InteractiveState.Hovered) - to StylesSaluteTheme.colors.surfaceDefaultTransparentCardHover, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultPrimaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - setOf(InteractiveState.Selected) - to StylesSaluteTheme.colors.textDefaultPrimary, - setOf( - InteractiveState.Selected, - InteractiveState.Hovered, - ) - to StylesSaluteTheme.colors.textDefaultPrimaryHover, - ), - ) - } - .wrap(::WrapperSegmentItemTerminate) - -private val SegmentItemStyleBuilder.invariantProps: SegmentItemStyleBuilder - @Composable - get() = this - -public val SegmentItem.L: WrapperSegmentItemL - @Composable - @JvmName("WrapperSegmentItemL") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundL.adjustBy(all = -2.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyLBold) - .valueStyle(StylesSaluteTheme.typography.bodyLBold) - .dimensions { - minWidth(102.0.dp) - minHeight(56.0.dp) - paddingStart(24.0.dp) - paddingEnd(24.0.dp) - startContentPadding(6.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(6.0.dp) - } - .counterStyle(Counter.S.Accent.style()) - .wrap(::WrapperSegmentItemL) - -public val WrapperSegmentItemL.Pilled: WrapperSegmentItemLPilled - @Composable - @JvmName("WrapperSegmentItemLPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(86.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - } - .wrap(::WrapperSegmentItemLPilled) - -public val SegmentItem.M: WrapperSegmentItemM - @Composable - @JvmName("WrapperSegmentItemM") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = 0.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyMBold) - .valueStyle(StylesSaluteTheme.typography.bodyMBold) - .dimensions { - minWidth(88.0.dp) - minHeight(48.0.dp) - paddingStart(20.0.dp) - paddingEnd(20.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(4.0.dp) - } - .counterStyle(Counter.Xs.Accent.style()) - .wrap(::WrapperSegmentItemM) - -public val WrapperSegmentItemM.Pilled: WrapperSegmentItemMPilled - @Composable - @JvmName("WrapperSegmentItemMPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(72.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - } - .wrap(::WrapperSegmentItemMPilled) - -public val SegmentItem.S: WrapperSegmentItemS - @Composable - @JvmName("WrapperSegmentItemS") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodySBold) - .valueStyle(StylesSaluteTheme.typography.bodySBold) - .dimensions { - minWidth(75.0.dp) - minHeight(40.0.dp) - paddingStart(16.0.dp) - paddingEnd(16.0.dp) - startContentPadding(2.0.dp) - endContentPadding(2.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - valueMargin(2.0.dp) - } - .counterStyle(Counter.Xs.Accent.style()) - .wrap(::WrapperSegmentItemS) - -public val WrapperSegmentItemS.Pilled: WrapperSegmentItemSPilled - @Composable - @JvmName("WrapperSegmentItemSPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(59.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperSegmentItemSPilled) - -public val SegmentItem.Xs: WrapperSegmentItemXs - @Composable - @JvmName("WrapperSegmentItemXs") - get() = SegmentItemStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .labelStyle(StylesSaluteTheme.typography.bodyXsBold) - .valueStyle(StylesSaluteTheme.typography.bodyXsBold) - .dimensions { - minWidth(61.0.dp) - minHeight(32.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - startContentPadding(2.0.dp) - endContentPadding(2.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - valueMargin(2.0.dp) - } - .counterStyle(Counter.Xxs.Accent.style()) - .wrap(::WrapperSegmentItemXs) - -public val WrapperSegmentItemXs.Pilled: WrapperSegmentItemXsPilled - @Composable - @JvmName("WrapperSegmentItemXsPilled") - get() = builder - .shape(CircleShape) - .dimensions { - minWidth(53.0.dp) - paddingStart(8.0.dp) - paddingEnd(8.0.dp) - } - .wrap(::WrapperSegmentItemXsPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/Switch.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/Switch.kt deleted file mode 100644 index 9dc5c4e25b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/Switch.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.switcher - -/** - * Вспомогательный объект для описания API и стиля компонента Switch - */ -public object Switch diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/SwitchStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/SwitchStyles.kt deleted file mode 100644 index 09bcf3395b..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/switcher/SwitchStyles.kt +++ /dev/null @@ -1,189 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.switcher - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.SwitchStates -import com.sdds.compose.uikit.SwitchStyle -import com.sdds.compose.uikit.SwitchStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperSwitch : BuilderWrapper - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperSwitchL( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации LToggleS - */ -@JvmInline -public value class WrapperSwitchLToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperSwitchM( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации MToggleS - */ -@JvmInline -public value class WrapperSwitchMToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperSwitchS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -/** - * Обертка для вариации SToggleS - */ -@JvmInline -public value class WrapperSwitchSToggleS( - public override val builder: SwitchStyleBuilder, -) : WrapperSwitch - -private val SwitchStyleBuilder.invariantProps: SwitchStyleBuilder - @Composable - get() = this - .toggleTrackShape(CircleShape) - .toggleThumbShape(CircleShape) - .colorValues { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - descriptionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - toggleTrackColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(SwitchStates.Checked) - to StylesSaluteTheme.colors.surfaceDefaultAccent, - ), - ) - toggleTrackBorderColor( - StylesSaluteTheme.colors.surfaceDefaultClear.asInteractive(), - ) - toggleThumbColor( - StylesSaluteTheme.colors.surfaceOnDarkSolidDefault.asInteractive(), - ) - } - .disableAlpha(0.4f) - -public val Switch.L: WrapperSwitchL - @Composable - @JvmName("WrapperSwitchL") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodyMNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchL) - -public val WrapperSwitchL.ToggleS: WrapperSwitchLToggleS - @Composable - @JvmName("WrapperSwitchLToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchLToggleS) - -public val Switch.M: WrapperSwitchM - @Composable - @JvmName("WrapperSwitchM") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchM) - -public val WrapperSwitchM.ToggleS: WrapperSwitchMToggleS - @Composable - @JvmName("WrapperSwitchMToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchMToggleS) - -public val Switch.S: WrapperSwitchS - @Composable - @JvmName("WrapperSwitchS") - get() = SwitchStyle.builder(this) - .invariantProps - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .descriptionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensionValues { - toggleTrackWidth(44.0.dp) - toggleTrackHeight(28.0.dp) - toggleThumbWidth(24.0.dp) - toggleThumbHeight(24.0.dp) - textPadding(12.0.dp) - descriptionPadding(4.0.dp) - } - .wrap(::WrapperSwitchS) - -public val WrapperSwitchS.ToggleS: WrapperSwitchSToggleS - @Composable - @JvmName("WrapperSwitchSToggleS") - get() = builder - .dimensionValues { - toggleTrackWidth(32.0.dp) - toggleTrackHeight(20.0.dp) - toggleThumbWidth(16.0.dp) - toggleThumbHeight(16.0.dp) - } - .wrap(::WrapperSwitchSToggleS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextArea.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextArea.kt deleted file mode 100644 index d4b1f1b9bf..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextArea.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.textarea - -/** - * Вспомогательный объект для описания API и стиля компонента TextArea - */ -public object TextArea diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClear.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClear.kt deleted file mode 100644 index 9c40ba5cb2..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.textarea - -/** - * Вспомогательный объект для описания API и стиля компонента TextAreaClear - */ -public object TextAreaClear diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClearStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClearStyles.kt deleted file mode 100644 index 27f4e96166..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaClearStyles.kt +++ /dev/null @@ -1,1019 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.textarea - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextAreaClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextAreaClearView : WrapperTextAreaClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextAreaClearTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClear - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextAreaClearXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextAreaClearS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextAreaClearM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextAreaClearL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaClearLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaClearView - -public val WrapperTextAreaClearView.Default: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -public val WrapperTextAreaClearView.Warning: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -public val WrapperTextAreaClearView.Error: WrapperTextAreaClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextAreaClearTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(false) - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - boxPaddingStart(0.0.dp) - boxPaddingEnd(0.0.dp) - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - chipsPaddingStart(0.0.dp) - chipsPaddingEnd(0.0.dp) - } - .captionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .counterStyle(StylesSaluteTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColorReadOnly( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - cursorColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - dividerColorReadOnly( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - prefixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextAreaClear.Xs: WrapperTextAreaClearXs - @Composable - @JvmName("WrapperTextAreaClearXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyXsNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearXs) - -public val WrapperTextAreaClearXs.RequiredStart: WrapperTextAreaClearXsRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXsRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXsRequiredStart) - -public val WrapperTextAreaClearXs.RequiredEnd: WrapperTextAreaClearXsRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXsRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXsRequiredEnd) - -public val WrapperTextAreaClearXs.OuterLabel: WrapperTextAreaClearXsOuterLabel - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearXsOuterLabel) - -public val WrapperTextAreaClearXsOuterLabel.RequiredStart: - WrapperTextAreaClearXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearXsOuterLabelRequiredStart) - -public val WrapperTextAreaClearXsOuterLabel.RequiredEnd: WrapperTextAreaClearXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearXsOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearXsOuterLabelRequiredEnd) - -public val TextAreaClear.S: WrapperTextAreaClearS - @Composable - @JvmName("WrapperTextAreaClearS") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodySNormal) - .prefixStyle(StylesSaluteTheme.typography.bodySNormal) - .suffixStyle(StylesSaluteTheme.typography.bodySNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearS) - -public val WrapperTextAreaClearS.RequiredStart: WrapperTextAreaClearSRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSRequiredStart) - -public val WrapperTextAreaClearS.RequiredEnd: WrapperTextAreaClearSRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSRequiredEnd) - -public val WrapperTextAreaClearS.OuterLabel: WrapperTextAreaClearSOuterLabel - @Composable - @JvmName("WrapperTextAreaClearSOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .optionalStyle(StylesSaluteTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearSOuterLabel) - -public val WrapperTextAreaClearSOuterLabel.RequiredStart: - WrapperTextAreaClearSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSOuterLabelRequiredStart) - -public val WrapperTextAreaClearSOuterLabel.RequiredEnd: WrapperTextAreaClearSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSOuterLabelRequiredEnd) - -public val WrapperTextAreaClearS.InnerLabel: WrapperTextAreaClearSInnerLabel - @Composable - @JvmName("WrapperTextAreaClearSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearSInnerLabel) - -public val WrapperTextAreaClearSInnerLabel.RequiredStart: - WrapperTextAreaClearSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearSInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearSInnerLabelRequiredStart) - -public val WrapperTextAreaClearSInnerLabel.RequiredEnd: WrapperTextAreaClearSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearSInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearSInnerLabelRequiredEnd) - -public val TextAreaClear.M: WrapperTextAreaClearM - @Composable - @JvmName("WrapperTextAreaClearM") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyMNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyMNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyMNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearM) - -public val WrapperTextAreaClearM.RequiredStart: WrapperTextAreaClearMRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMRequiredStart) - -public val WrapperTextAreaClearM.RequiredEnd: WrapperTextAreaClearMRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMRequiredEnd) - -public val WrapperTextAreaClearM.OuterLabel: WrapperTextAreaClearMOuterLabel - @Composable - @JvmName("WrapperTextAreaClearMOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearMOuterLabel) - -public val WrapperTextAreaClearMOuterLabel.RequiredStart: - WrapperTextAreaClearMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMOuterLabelRequiredStart) - -public val WrapperTextAreaClearMOuterLabel.RequiredEnd: WrapperTextAreaClearMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMOuterLabelRequiredEnd) - -public val WrapperTextAreaClearM.InnerLabel: WrapperTextAreaClearMInnerLabel - @Composable - @JvmName("WrapperTextAreaClearMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearMInnerLabel) - -public val WrapperTextAreaClearMInnerLabel.RequiredStart: - WrapperTextAreaClearMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearMInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearMInnerLabelRequiredStart) - -public val WrapperTextAreaClearMInnerLabel.RequiredEnd: WrapperTextAreaClearMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearMInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearMInnerLabelRequiredEnd) - -public val TextAreaClear.L: WrapperTextAreaClearL - @Composable - @JvmName("WrapperTextAreaClearL") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyLNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyLNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyLNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaClearL) - -public val WrapperTextAreaClearL.RequiredStart: WrapperTextAreaClearLRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLRequiredStart) - -public val WrapperTextAreaClearL.RequiredEnd: WrapperTextAreaClearLRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLRequiredEnd) - -public val WrapperTextAreaClearL.OuterLabel: WrapperTextAreaClearLOuterLabel - @Composable - @JvmName("WrapperTextAreaClearLOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearLOuterLabel) - -public val WrapperTextAreaClearLOuterLabel.RequiredStart: - WrapperTextAreaClearLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLOuterLabelRequiredStart) - -public val WrapperTextAreaClearLOuterLabel.RequiredEnd: WrapperTextAreaClearLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLOuterLabelRequiredEnd) - -public val WrapperTextAreaClearL.InnerLabel: WrapperTextAreaClearLInnerLabel - @Composable - @JvmName("WrapperTextAreaClearLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaClearLInnerLabel) - -public val WrapperTextAreaClearLInnerLabel.RequiredStart: - WrapperTextAreaClearLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaClearLInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaClearLInnerLabelRequiredStart) - -public val WrapperTextAreaClearLInnerLabel.RequiredEnd: WrapperTextAreaClearLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaClearLInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaClearLInnerLabelRequiredEnd) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaStyles.kt deleted file mode 100644 index e87502188a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textarea/TextAreaStyles.kt +++ /dev/null @@ -1,987 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.textarea - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextArea : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextAreaView : WrapperTextArea - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextAreaTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextArea - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextAreaXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextAreaS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextAreaSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextAreaSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextAreaM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextAreaMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextAreaMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextAreaL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextAreaLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextAreaLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextAreaLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextAreaLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextAreaView - -public val WrapperTextAreaView.Default: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -public val WrapperTextAreaView.Warning: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -public val WrapperTextAreaView.Error: WrapperTextAreaTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextAreaTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(false) - .dimensions { - optionalPadding(4.0.dp) - chipsPadding(6.0.dp) - } - .captionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .counterStyle(StylesSaluteTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Inner) - .counterPlacement(TextFieldHelperTextPlacement.Inner) - .colors { - optionalColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - placeholderColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColorReadOnly( - StylesSaluteTheme.colors.surfaceDefaultSolidPrimary.multiplyAlpha(0.4f).asInteractive(), - ) - cursorColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - prefixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - .scrollBar { - scrollBarThickness(2.0.dp) - scrollBarPaddingTop(18.0.dp) - scrollBarPaddingBottom(36.0.dp) - scrollBarPaddingEnd(2.0.dp) - scrollBarTrackColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - scrollBarThumbColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentTertiary.asInteractive(), - ) - } - -public val TextArea.Xs: WrapperTextAreaXs - @Composable - @JvmName("WrapperTextAreaXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .dimensions { - boxPaddingStart(8.0.dp) - boxPaddingEnd(8.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - helperTextPadding(8.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyXsNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaXs) - -public val WrapperTextAreaXs.RequiredStart: WrapperTextAreaXsRequiredStart - @Composable - @JvmName("WrapperTextAreaXsRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXsRequiredStart) - -public val WrapperTextAreaXs.RequiredEnd: WrapperTextAreaXsRequiredEnd - @Composable - @JvmName("WrapperTextAreaXsRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXsRequiredEnd) - -public val WrapperTextAreaXs.OuterLabel: WrapperTextAreaXsOuterLabel - @Composable - @JvmName("WrapperTextAreaXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(6.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaXsOuterLabel) - -public val WrapperTextAreaXsOuterLabel.RequiredStart: WrapperTextAreaXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaXsOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaXsOuterLabelRequiredStart) - -public val WrapperTextAreaXsOuterLabel.RequiredEnd: WrapperTextAreaXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaXsOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaXsOuterLabelRequiredEnd) - -public val TextArea.S: WrapperTextAreaS - @Composable - @JvmName("WrapperTextAreaS") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - boxPaddingStart(12.0.dp) - boxPaddingEnd(12.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodySNormal) - .prefixStyle(StylesSaluteTheme.typography.bodySNormal) - .suffixStyle(StylesSaluteTheme.typography.bodySNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaS) - -public val WrapperTextAreaS.RequiredStart: WrapperTextAreaSRequiredStart - @Composable - @JvmName("WrapperTextAreaSRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSRequiredStart) - -public val WrapperTextAreaS.RequiredEnd: WrapperTextAreaSRequiredEnd - @Composable - @JvmName("WrapperTextAreaSRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSRequiredEnd) - -public val WrapperTextAreaS.OuterLabel: WrapperTextAreaSOuterLabel - @Composable - @JvmName("WrapperTextAreaSOuterLabel") - get() = builder - .dimensions { - labelPadding(8.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .optionalStyle(StylesSaluteTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaSOuterLabel) - -public val WrapperTextAreaSOuterLabel.RequiredStart: WrapperTextAreaSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaSOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSOuterLabelRequiredStart) - -public val WrapperTextAreaSOuterLabel.RequiredEnd: WrapperTextAreaSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaSOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSOuterLabelRequiredEnd) - -public val WrapperTextAreaS.InnerLabel: WrapperTextAreaSInnerLabel - @Composable - @JvmName("WrapperTextAreaSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaSInnerLabel) - -public val WrapperTextAreaSInnerLabel.RequiredStart: WrapperTextAreaSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaSInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaSInnerLabelRequiredStart) - -public val WrapperTextAreaSInnerLabel.RequiredEnd: WrapperTextAreaSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaSInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaSInnerLabelRequiredEnd) - -public val TextArea.M: WrapperTextAreaM - @Composable - @JvmName("WrapperTextAreaM") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - boxPaddingStart(14.0.dp) - boxPaddingEnd(14.0.dp) - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyMNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyMNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyMNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaM) - -public val WrapperTextAreaM.RequiredStart: WrapperTextAreaMRequiredStart - @Composable - @JvmName("WrapperTextAreaMRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMRequiredStart) - -public val WrapperTextAreaM.RequiredEnd: WrapperTextAreaMRequiredEnd - @Composable - @JvmName("WrapperTextAreaMRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMRequiredEnd) - -public val WrapperTextAreaM.OuterLabel: WrapperTextAreaMOuterLabel - @Composable - @JvmName("WrapperTextAreaMOuterLabel") - get() = builder - .dimensions { - labelPadding(10.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaMOuterLabel) - -public val WrapperTextAreaMOuterLabel.RequiredStart: WrapperTextAreaMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaMOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMOuterLabelRequiredStart) - -public val WrapperTextAreaMOuterLabel.RequiredEnd: WrapperTextAreaMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaMOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMOuterLabelRequiredEnd) - -public val WrapperTextAreaM.InnerLabel: WrapperTextAreaMInnerLabel - @Composable - @JvmName("WrapperTextAreaMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaMInnerLabel) - -public val WrapperTextAreaMInnerLabel.RequiredStart: WrapperTextAreaMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaMInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaMInnerLabelRequiredStart) - -public val WrapperTextAreaMInnerLabel.RequiredEnd: WrapperTextAreaMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaMInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaMInnerLabelRequiredEnd) - -public val TextArea.L: WrapperTextAreaL - @Composable - @JvmName("WrapperTextAreaL") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = 2.0.dp)) - .dimensions { - boxPaddingStart(16.0.dp) - boxPaddingEnd(16.0.dp) - boxPaddingTop(16.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - helperTextPadding(12.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyLNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyLNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyLNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextAreaL) - -public val WrapperTextAreaL.RequiredStart: WrapperTextAreaLRequiredStart - @Composable - @JvmName("WrapperTextAreaLRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLRequiredStart) - -public val WrapperTextAreaL.RequiredEnd: WrapperTextAreaLRequiredEnd - @Composable - @JvmName("WrapperTextAreaLRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLRequiredEnd) - -public val WrapperTextAreaL.OuterLabel: WrapperTextAreaLOuterLabel - @Composable - @JvmName("WrapperTextAreaLOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaLOuterLabel) - -public val WrapperTextAreaLOuterLabel.RequiredStart: WrapperTextAreaLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaLOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLOuterLabelRequiredStart) - -public val WrapperTextAreaLOuterLabel.RequiredEnd: WrapperTextAreaLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaLOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLOuterLabelRequiredEnd) - -public val WrapperTextAreaL.InnerLabel: WrapperTextAreaLInnerLabel - @Composable - @JvmName("WrapperTextAreaLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(12.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextAreaLInnerLabel) - -public val WrapperTextAreaLInnerLabel.RequiredStart: WrapperTextAreaLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextAreaLInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextAreaLInnerLabelRequiredStart) - -public val WrapperTextAreaLInnerLabel.RequiredEnd: WrapperTextAreaLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextAreaLInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextAreaLInnerLabelRequiredEnd) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextField.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextField.kt deleted file mode 100644 index 6d1806de40..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextField.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.textfield - -/** - * Вспомогательный объект для описания API и стиля компонента TextField - */ -public object TextField diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClear.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClear.kt deleted file mode 100644 index f9c180454c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClear.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.textfield - -/** - * Вспомогательный объект для описания API и стиля компонента TextFieldClear - */ -public object TextFieldClear diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClearStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClearStyles.kt deleted file mode 100644 index 5dfec44d5f..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldClearStyles.kt +++ /dev/null @@ -1,1057 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.textfield - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextFieldClear : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextFieldClearView : WrapperTextFieldClear - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextFieldClearTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClear - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextFieldClearXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextFieldClearS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextFieldClearM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextFieldClearL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldClearLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldClearView - -public val WrapperTextFieldClearView.Default: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentTertiary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Success: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Warning: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -public val WrapperTextFieldClearView.Error: WrapperTextFieldClearTerminate - @Composable - get() = builder - .colors { - valueColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultPrimary, - ), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - captionColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - dividerColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultAccentMain, - ), - ) - } - .wrap(::WrapperTextFieldClearTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(true) - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - boxPaddingStart(0.0.dp) - boxPaddingEnd(0.0.dp) - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - chipsPaddingStart(0.0.dp) - chipsPaddingEnd(0.0.dp) - } - .captionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .counterStyle(StylesSaluteTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColorReadOnly( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - cursorColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - dividerColorReadOnly( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive(), - ) - prefixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextFieldClear.Xs: WrapperTextFieldClearXs - @Composable - @JvmName("WrapperTextFieldClearXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyXsNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearXs) - -public val WrapperTextFieldClearXs.RequiredStart: WrapperTextFieldClearXsRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXsRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXsRequiredStart) - -public val WrapperTextFieldClearXs.RequiredEnd: WrapperTextFieldClearXsRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXsRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(13.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXsRequiredEnd) - -public val WrapperTextFieldClearXs.OuterLabel: WrapperTextFieldClearXsOuterLabel - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearXsOuterLabel) - -public val WrapperTextFieldClearXsOuterLabel.RequiredStart: - WrapperTextFieldClearXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearXsOuterLabelRequiredStart) - -public val WrapperTextFieldClearXsOuterLabel.RequiredEnd: - WrapperTextFieldClearXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearXsOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearXsOuterLabelRequiredEnd) - -public val TextFieldClear.S: WrapperTextFieldClearS - @Composable - @JvmName("WrapperTextFieldClearS") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodySNormal) - .prefixStyle(StylesSaluteTheme.typography.bodySNormal) - .suffixStyle(StylesSaluteTheme.typography.bodySNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearS) - -public val WrapperTextFieldClearS.RequiredStart: WrapperTextFieldClearSRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSRequiredStart) - -public val WrapperTextFieldClearS.RequiredEnd: WrapperTextFieldClearSRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSRequiredEnd) - -public val WrapperTextFieldClearS.OuterLabel: WrapperTextFieldClearSOuterLabel - @Composable - @JvmName("WrapperTextFieldClearSOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .optionalStyle(StylesSaluteTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearSOuterLabel) - -public val WrapperTextFieldClearSOuterLabel.RequiredStart: - WrapperTextFieldClearSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSOuterLabelRequiredStart) - -public val WrapperTextFieldClearSOuterLabel.RequiredEnd: WrapperTextFieldClearSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSOuterLabelRequiredEnd) - -public val WrapperTextFieldClearS.InnerLabel: WrapperTextFieldClearSInnerLabel - @Composable - @JvmName("WrapperTextFieldClearSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearSInnerLabel) - -public val WrapperTextFieldClearSInnerLabel.RequiredStart: - WrapperTextFieldClearSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearSInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearSInnerLabelRequiredStart) - -public val WrapperTextFieldClearSInnerLabel.RequiredEnd: WrapperTextFieldClearSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearSInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(17.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearSInnerLabelRequiredEnd) - -public val TextFieldClear.M: WrapperTextFieldClearM - @Composable - @JvmName("WrapperTextFieldClearM") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyMNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyMNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyMNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearM) - -public val WrapperTextFieldClearM.RequiredStart: WrapperTextFieldClearMRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMRequiredStart) - -public val WrapperTextFieldClearM.RequiredEnd: WrapperTextFieldClearMRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMRequiredEnd) - -public val WrapperTextFieldClearM.OuterLabel: WrapperTextFieldClearMOuterLabel - @Composable - @JvmName("WrapperTextFieldClearMOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearMOuterLabel) - -public val WrapperTextFieldClearMOuterLabel.RequiredStart: - WrapperTextFieldClearMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMOuterLabelRequiredStart) - -public val WrapperTextFieldClearMOuterLabel.RequiredEnd: WrapperTextFieldClearMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMOuterLabelRequiredEnd) - -public val WrapperTextFieldClearM.InnerLabel: WrapperTextFieldClearMInnerLabel - @Composable - @JvmName("WrapperTextFieldClearMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearMInnerLabel) - -public val WrapperTextFieldClearMInnerLabel.RequiredStart: - WrapperTextFieldClearMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearMInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearMInnerLabelRequiredStart) - -public val WrapperTextFieldClearMInnerLabel.RequiredEnd: WrapperTextFieldClearMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearMInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(20.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearMInnerLabelRequiredEnd) - -public val TextFieldClear.L: WrapperTextFieldClearL - @Composable - @JvmName("WrapperTextFieldClearL") - get() = TextFieldStyle.builder(this) - .invariantProps - .dimensions { - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyLNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyLNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyLNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldClearL) - -public val WrapperTextFieldClearL.RequiredStart: WrapperTextFieldClearLRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLRequiredStart) - -public val WrapperTextFieldClearL.RequiredEnd: WrapperTextFieldClearLRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLRequiredEnd) - -public val WrapperTextFieldClearL.OuterLabel: WrapperTextFieldClearLOuterLabel - @Composable - @JvmName("WrapperTextFieldClearLOuterLabel") - get() = builder - .dimensions { - labelPadding(4.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearLOuterLabel) - -public val WrapperTextFieldClearLOuterLabel.RequiredStart: - WrapperTextFieldClearLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLOuterLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLOuterLabelRequiredStart) - -public val WrapperTextFieldClearLOuterLabel.RequiredEnd: WrapperTextFieldClearLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLOuterLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLOuterLabelRequiredEnd) - -public val WrapperTextFieldClearL.InnerLabel: WrapperTextFieldClearLInnerLabel - @Composable - @JvmName("WrapperTextFieldClearLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldClearLInnerLabel) - -public val WrapperTextFieldClearLInnerLabel.RequiredStart: - WrapperTextFieldClearLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldClearLInnerLabelRequiredStart") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldClearLInnerLabelRequiredStart) - -public val WrapperTextFieldClearLInnerLabel.RequiredEnd: WrapperTextFieldClearLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldClearLInnerLabelRequiredEnd") - get() = builder - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(24.0.dp) - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldClearLInnerLabelRequiredEnd) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldStyles.kt deleted file mode 100644 index c268f2ad2a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textfield/TextFieldStyles.kt +++ /dev/null @@ -1,991 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.textfield - -import androidx.compose.runtime.Composable -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TextFieldHelperTextPlacement -import com.sdds.compose.uikit.TextFieldIndicatorAlignmentMode -import com.sdds.compose.uikit.TextFieldLabelPlacement -import com.sdds.compose.uikit.TextFieldStyle -import com.sdds.compose.uikit.TextFieldStyleBuilder -import com.sdds.compose.uikit.TextFieldType -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.InteractiveState -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.multiplyAlpha -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.style -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.styles.chipgroup.EmbeddedChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextField : BuilderWrapper - -/** - * Интерфейс, который реализуют все обертки вариаций корневого уровня - * и обертки их подвариаций. - * Является ресивером для extension-функций view, - * применимых к этим оберткам. - */ -public interface WrapperTextFieldView : WrapperTextField - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextFieldTerminate( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextField - -/** - * Обертка для вариации Xs - */ -@JvmInline -public value class WrapperTextFieldXs( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXsRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXsRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabel - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации XsOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldXsOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTextFieldS( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabel - */ -@JvmInline -public value class WrapperTextFieldSOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabel - */ -@JvmInline -public value class WrapperTextFieldSInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldSInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации SInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldSInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTextFieldM( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabel - */ -@JvmInline -public value class WrapperTextFieldMOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabel - */ -@JvmInline -public value class WrapperTextFieldMInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldMInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации MInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldMInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации L - */ -@JvmInline -public value class WrapperTextFieldL( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabel - */ -@JvmInline -public value class WrapperTextFieldLOuterLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLOuterLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LOuterLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLOuterLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabel - */ -@JvmInline -public value class WrapperTextFieldLInnerLabel( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabelRequiredStart - */ -@JvmInline -public value class WrapperTextFieldLInnerLabelRequiredStart( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -/** - * Обертка для вариации LInnerLabelRequiredEnd - */ -@JvmInline -public value class WrapperTextFieldLInnerLabelRequiredEnd( - public override val builder: TextFieldStyleBuilder, -) : WrapperTextFieldView - -public val WrapperTextFieldView.Default: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPrimary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Success: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentPositive.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Warning: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentWarning.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -public val WrapperTextFieldView.Error: WrapperTextFieldTerminate - @Composable - get() = builder - .colors { - captionColor( - StylesSaluteTheme.colors.textDefaultNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultSecondary, - ), - ) - backgroundColor( - StylesSaluteTheme.colors.surfaceDefaultTransparentNegative.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.surfaceDefaultTransparentSecondary, - ), - ) - } - .wrap(::WrapperTextFieldTerminate) - -private val TextFieldStyleBuilder.invariantProps: TextFieldStyleBuilder - @Composable - get() = this - .singleLine(true) - .dimensions { - optionalPadding(4.0.dp) - helperTextPadding(4.0.dp) - chipsPadding(6.0.dp) - } - .captionStyle(StylesSaluteTheme.typography.bodyXsNormal) - .counterStyle(StylesSaluteTheme.typography.bodyXsNormal) - .captionPlacement(TextFieldHelperTextPlacement.Outer) - .counterPlacement(TextFieldHelperTextPlacement.Outer) - .colors { - optionalColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - valueColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - placeholderColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Activated) - to StylesSaluteTheme.colors.textDefaultTertiary, - ), - ) - placeholderColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - indicatorColor( - StylesSaluteTheme.colors.surfaceDefaultNegative.asInteractive(), - ) - startContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - endContentColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive( - setOf(InteractiveState.Pressed) - to StylesSaluteTheme.colors.textDefaultSecondaryActive, - setOf(InteractiveState.Hovered) - to StylesSaluteTheme.colors.textDefaultSecondaryHover, - ), - ) - endContentColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.multiplyAlpha(0.4f).asInteractive(), - ) - captionColorReadOnly( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - counterColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - backgroundColorReadOnly( - StylesSaluteTheme.colors.surfaceDefaultSolidPrimary.multiplyAlpha(0.4f).asInteractive(), - ) - cursorColor( - StylesSaluteTheme.colors.textDefaultAccentMain.asInteractive(), - ) - prefixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - suffixColor( - StylesSaluteTheme.colors.textDefaultTertiary.asInteractive(), - ) - } - -public val TextField.Xs: WrapperTextFieldXs - @Composable - @JvmName("WrapperTextFieldXs") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS.adjustBy(all = 0.0.dp)) - .dimensions { - boxPaddingStart(8.0.dp) - boxPaddingEnd(8.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(32.0.dp) - alignmentLineHeight(32.0.dp) - startContentPadding(4.0.dp) - endContentPadding(4.0.dp) - startContentSize(16.0.dp) - endContentSize(16.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyXsNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyXsNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyXsNormal) - .chipGroupStyle(EmbeddedChipGroupDense.Xs.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldXs) - -public val WrapperTextFieldXs.RequiredStart: WrapperTextFieldXsRequiredStart - @Composable - @JvmName("WrapperTextFieldXsRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXsRequiredStart) - -public val WrapperTextFieldXs.RequiredEnd: WrapperTextFieldXsRequiredEnd - @Composable - @JvmName("WrapperTextFieldXsRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXsRequiredEnd) - -public val WrapperTextFieldXs.OuterLabel: WrapperTextFieldXsOuterLabel - @Composable - @JvmName("WrapperTextFieldXsOuterLabel") - get() = builder - .dimensions { - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - labelPadding(6.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldXsOuterLabel) - -public val WrapperTextFieldXsOuterLabel.RequiredStart: WrapperTextFieldXsOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldXsOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldXsOuterLabelRequiredStart) - -public val WrapperTextFieldXsOuterLabel.RequiredEnd: WrapperTextFieldXsOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldXsOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(2.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldXsOuterLabelRequiredEnd) - -public val TextField.S: WrapperTextFieldS - @Composable - @JvmName("WrapperTextFieldS") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .dimensions { - boxPaddingStart(12.0.dp) - boxPaddingEnd(12.0.dp) - boxPaddingTop(8.0.dp) - boxPaddingBottom(8.0.dp) - boxMinHeight(40.0.dp) - alignmentLineHeight(40.0.dp) - startContentPadding(4.0.dp) - endContentPadding(6.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodySNormal) - .prefixStyle(StylesSaluteTheme.typography.bodySNormal) - .suffixStyle(StylesSaluteTheme.typography.bodySNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodySNormal) - .chipGroupStyle(EmbeddedChipGroupDense.S.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldS) - -public val WrapperTextFieldS.RequiredStart: WrapperTextFieldSRequiredStart - @Composable - @JvmName("WrapperTextFieldSRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSRequiredStart) - -public val WrapperTextFieldS.RequiredEnd: WrapperTextFieldSRequiredEnd - @Composable - @JvmName("WrapperTextFieldSRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSRequiredEnd) - -public val WrapperTextFieldS.OuterLabel: WrapperTextFieldSOuterLabel - @Composable - @JvmName("WrapperTextFieldSOuterLabel") - get() = builder - .dimensions { - labelPadding(8.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodySNormal) - .optionalStyle(StylesSaluteTheme.typography.bodySNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldSOuterLabel) - -public val WrapperTextFieldSOuterLabel.RequiredStart: WrapperTextFieldSOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldSOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(6.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSOuterLabelRequiredStart) - -public val WrapperTextFieldSOuterLabel.RequiredEnd: WrapperTextFieldSOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldSOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSOuterLabelRequiredEnd) - -public val WrapperTextFieldS.InnerLabel: WrapperTextFieldSInnerLabel - @Composable - @JvmName("WrapperTextFieldSInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(4.0.dp) - boxPaddingBottom(4.0.dp) - labelPadding(0.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldSInnerLabel) - -public val WrapperTextFieldSInnerLabel.RequiredStart: WrapperTextFieldSInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldSInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldSInnerLabelRequiredStart) - -public val WrapperTextFieldSInnerLabel.RequiredEnd: WrapperTextFieldSInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldSInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldSInnerLabelRequiredEnd) - -public val TextField.M: WrapperTextFieldM - @Composable - @JvmName("WrapperTextFieldM") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .dimensions { - boxPaddingStart(14.0.dp) - boxPaddingEnd(14.0.dp) - boxPaddingTop(12.0.dp) - boxPaddingBottom(12.0.dp) - boxMinHeight(48.0.dp) - alignmentLineHeight(48.0.dp) - startContentPadding(6.0.dp) - endContentPadding(8.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyMNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyMNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyMNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyMNormal) - .chipGroupStyle(EmbeddedChipGroupDense.M.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldM) - -public val WrapperTextFieldM.RequiredStart: WrapperTextFieldMRequiredStart - @Composable - @JvmName("WrapperTextFieldMRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMRequiredStart) - -public val WrapperTextFieldM.RequiredEnd: WrapperTextFieldMRequiredEnd - @Composable - @JvmName("WrapperTextFieldMRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMRequiredEnd) - -public val WrapperTextFieldM.OuterLabel: WrapperTextFieldMOuterLabel - @Composable - @JvmName("WrapperTextFieldMOuterLabel") - get() = builder - .dimensions { - labelPadding(10.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyMNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyMNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldMOuterLabel) - -public val WrapperTextFieldMOuterLabel.RequiredStart: WrapperTextFieldMOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldMOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(7.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMOuterLabelRequiredStart) - -public val WrapperTextFieldMOuterLabel.RequiredEnd: WrapperTextFieldMOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldMOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMOuterLabelRequiredEnd) - -public val WrapperTextFieldM.InnerLabel: WrapperTextFieldMInnerLabel - @Composable - @JvmName("WrapperTextFieldMInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(6.0.dp) - boxPaddingBottom(6.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldMInnerLabel) - -public val WrapperTextFieldMInnerLabel.RequiredStart: WrapperTextFieldMInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldMInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldMInnerLabelRequiredStart) - -public val WrapperTextFieldMInnerLabel.RequiredEnd: WrapperTextFieldMInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldMInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldMInnerLabelRequiredEnd) - -public val TextField.L: WrapperTextFieldL - @Composable - @JvmName("WrapperTextFieldL") - get() = TextFieldStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = 2.0.dp)) - .dimensions { - boxPaddingStart(16.0.dp) - boxPaddingEnd(16.0.dp) - boxPaddingTop(16.0.dp) - boxPaddingBottom(16.0.dp) - boxMinHeight(56.0.dp) - alignmentLineHeight(56.0.dp) - startContentPadding(8.0.dp) - endContentPadding(10.0.dp) - startContentSize(24.0.dp) - endContentSize(24.0.dp) - } - .valueStyle(StylesSaluteTheme.typography.bodyLNormal) - .prefixStyle(StylesSaluteTheme.typography.bodyLNormal) - .suffixStyle(StylesSaluteTheme.typography.bodyLNormal) - .placeholderStyle(StylesSaluteTheme.typography.bodyLNormal) - .chipGroupStyle(EmbeddedChipGroupDense.L.Secondary.style()) - .labelPlacement(TextFieldLabelPlacement.None) - .wrap(::WrapperTextFieldL) - -public val WrapperTextFieldL.RequiredStart: WrapperTextFieldLRequiredStart - @Composable - @JvmName("WrapperTextFieldLRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLRequiredStart) - -public val WrapperTextFieldL.RequiredEnd: WrapperTextFieldLRequiredEnd - @Composable - @JvmName("WrapperTextFieldLRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLRequiredEnd) - -public val WrapperTextFieldL.OuterLabel: WrapperTextFieldLOuterLabel - @Composable - @JvmName("WrapperTextFieldLOuterLabel") - get() = builder - .dimensions { - labelPadding(12.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyLNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyLNormal) - .labelPlacement(TextFieldLabelPlacement.Outer) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldLOuterLabel) - -public val WrapperTextFieldLOuterLabel.RequiredStart: WrapperTextFieldLOuterLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldLOuterLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(6.0.dp) - verticalPadding(8.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLOuterLabelRequiredStart) - -public val WrapperTextFieldLOuterLabel.RequiredEnd: WrapperTextFieldLOuterLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldLOuterLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Outside) - .dimensions { - indicatorDimensions { - horizontalPadding(4.0.dp) - verticalPadding(4.0.dp) - indicatorSize(6.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLOuterLabelRequiredEnd) - -public val WrapperTextFieldL.InnerLabel: WrapperTextFieldLInnerLabel - @Composable - @JvmName("WrapperTextFieldLInnerLabel") - get() = builder - .dimensions { - boxPaddingTop(9.0.dp) - boxPaddingBottom(9.0.dp) - labelPadding(2.0.dp) - } - .labelStyle(StylesSaluteTheme.typography.bodyXsNormal) - .optionalStyle(StylesSaluteTheme.typography.bodyXsNormal) - .labelPlacement(TextFieldLabelPlacement.Inner) - .colors { - labelColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .wrap(::WrapperTextFieldLInnerLabel) - -public val WrapperTextFieldLInnerLabel.RequiredStart: WrapperTextFieldLInnerLabelRequiredStart - @Composable - @JvmName("WrapperTextFieldLInnerLabelRequiredStart") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredStart) - .wrap(::WrapperTextFieldLInnerLabelRequiredStart) - -public val WrapperTextFieldLInnerLabel.RequiredEnd: WrapperTextFieldLInnerLabelRequiredEnd - @Composable - @JvmName("WrapperTextFieldLInnerLabelRequiredEnd") - get() = builder - .indicatorAlignmentMode(TextFieldIndicatorAlignmentMode.Inside) - .dimensions { - indicatorDimensions { - indicatorSize(8.0.dp) - } - } - .fieldType(TextFieldType.RequiredEnd) - .wrap(::WrapperTextFieldLInnerLabelRequiredEnd) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeleton.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeleton.kt deleted file mode 100644 index 1e25ebd8ec..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeleton.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.textskeleton - -/** - * Вспомогательный объект для описания API и стиля компонента TextSkeleton - */ -public object TextSkeleton diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeletonStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeletonStyles.kt deleted file mode 100644 index 1bfe8b0bb7..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/textskeleton/TextSkeletonStyles.kt +++ /dev/null @@ -1,56 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.textskeleton - -import androidx.compose.runtime.Composable -import com.sdds.compose.uikit.TextSkeletonStyle -import com.sdds.compose.uikit.TextSkeletonStyleBuilder -import com.sdds.compose.uikit.graphics.asLayered -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTextSkeleton : BuilderWrapper - -/** - * Терминальная обертка - */ -@JvmInline -public value class WrapperTextSkeletonTerminate( - public override val builder: TextSkeletonStyleBuilder, -) : WrapperTextSkeleton - -public val TextSkeleton.Default: WrapperTextSkeletonTerminate - @Composable - get() = TextSkeletonStyle.builder(this) - .invariantProps - .gradient( - StylesSaluteTheme.gradients.surfaceDefaultSkeletonGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperTextSkeletonTerminate) - -public val TextSkeleton.Lighter: WrapperTextSkeletonTerminate - @Composable - get() = TextSkeletonStyle.builder(this) - .invariantProps - .gradient( - StylesSaluteTheme.gradients.surfaceDefaultSkeletonDeepGradient.asLayered().asStatefulValue(), - ) - .wrap(::WrapperTextSkeletonTerminate) - -private val TextSkeletonStyleBuilder.invariantProps: TextSkeletonStyleBuilder - @Composable - get() = this - .shape(StylesSaluteTheme.shapes.roundXxs) - .duration(5000.0.toInt()) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/Toast.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/Toast.kt deleted file mode 100644 index b018ee8fbf..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/Toast.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.toast - -/** - * Вспомогательный объект для описания API и стиля компонента Toast - */ -public object Toast diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/ToastStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/ToastStyles.kt deleted file mode 100644 index 7deca4e1b7..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/toast/ToastStyles.kt +++ /dev/null @@ -1,89 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.toast - -import androidx.compose.foundation.shape.CircleShape -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ToastStyle -import com.sdds.compose.uikit.ToastStyleBuilder -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperToast : BuilderWrapper - -/** - * Обертка для вариации Rounded - */ -@JvmInline -public value class WrapperToastRounded( - public override val builder: ToastStyleBuilder, -) : WrapperToast - -/** - * Обертка для вариации Pilled - */ -@JvmInline -public value class WrapperToastPilled( - public override val builder: ToastStyleBuilder, -) : WrapperToast - -private val ToastStyleBuilder.invariantProps: ToastStyleBuilder - @Composable - get() = this - .textStyle(StylesSaluteTheme.typography.bodyXsNormal) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - textColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentStartColor( - StylesSaluteTheme.colors.textDefaultPrimary.asInteractive(), - ) - contentEndColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - contentStartSize(16.0.dp) - contentEndSize(16.0.dp) - contentStartPadding(6.0.dp) - contentEndPadding(8.0.dp) - paddingStart(10.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - } - -public val Toast.Rounded: WrapperToastRounded - @Composable - @JvmName("WrapperToastRounded") - get() = ToastStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM) - .wrap(::WrapperToastRounded) - -public val Toast.Pilled: WrapperToastPilled - @Composable - @JvmName("WrapperToastPilled") - get() = ToastStyle.builder(this) - .invariantProps - .shape(CircleShape) - .wrap(::WrapperToastPilled) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/Tooltip.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/Tooltip.kt deleted file mode 100644 index 025a93aca8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/Tooltip.kt +++ /dev/null @@ -1,7 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.styles.tooltip - -/** - * Вспомогательный объект для описания API и стиля компонента Tooltip - */ -public object Tooltip diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/TooltipStyles.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/TooltipStyles.kt deleted file mode 100644 index e378da7cb8..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/styles/tooltip/TooltipStyles.kt +++ /dev/null @@ -1,103 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress( - "UndocumentedPublicClass", - "UndocumentedPublicProperty", - "ktlint:standard:max-line-length", -) - -package com.sdds.stylessalute.styles.tooltip - -import androidx.compose.runtime.Composable -import androidx.compose.ui.graphics.SolidColor -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.TooltipStyle -import com.sdds.compose.uikit.TooltipStyleBuilder -import com.sdds.compose.uikit.adjustBy -import com.sdds.compose.uikit.interactions.asInteractive -import com.sdds.compose.uikit.interactions.asStatefulValue -import com.sdds.compose.uikit.style.BuilderWrapper -import com.sdds.compose.uikit.style.wrap -import com.sdds.stylessalute.theme.StylesSaluteTheme -import kotlin.Suppress -import kotlin.jvm.JvmInline -import kotlin.jvm.JvmName - -/** - * Базовый интерфейс для всех оберток этого стиля - */ -public interface WrapperTooltip : BuilderWrapper - -/** - * Обертка для вариации M - */ -@JvmInline -public value class WrapperTooltipM( - public override val builder: TooltipStyleBuilder, -) : WrapperTooltip - -/** - * Обертка для вариации S - */ -@JvmInline -public value class WrapperTooltipS( - public override val builder: TooltipStyleBuilder, -) : WrapperTooltip - -private val TooltipStyleBuilder.invariantProps: TooltipStyleBuilder - @Composable - get() = this - .shadow(StylesSaluteTheme.shadows.downHardM) - .colors { - backgroundColor( - SolidColor(StylesSaluteTheme.colors.surfaceDefaultSolidCard).asStatefulValue(), - ) - textColor( - SolidColor(StylesSaluteTheme.colors.textDefaultPrimary).asStatefulValue(), - ) - contentStartColor( - StylesSaluteTheme.colors.textDefaultSecondary.asInteractive(), - ) - } - .dimensions { - contentStartSize(16.0.dp) - } - -public val Tooltip.M: WrapperTooltipM - @Composable - @JvmName("WrapperTooltipM") - get() = TooltipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundM.adjustBy(all = -2.0.dp)) - .textStyle(StylesSaluteTheme.typography.bodySNormal) - .dimensions { - contentStartPadding(6.0.dp) - paddingStart(14.0.dp) - paddingEnd(14.0.dp) - paddingTop(11.0.dp) - paddingBottom(11.0.dp) - offset(8.0.dp) - tailWidth(20.0.dp) - tailHeight(8.0.dp) - tailPadding(10.0.dp) - } - .wrap(::WrapperTooltipM) - -public val Tooltip.S: WrapperTooltipS - @Composable - @JvmName("WrapperTooltipS") - get() = TooltipStyle.builder(this) - .invariantProps - .shape(StylesSaluteTheme.shapes.roundS) - .textStyle(StylesSaluteTheme.typography.bodyXsNormal) - .dimensions { - contentStartPadding(4.0.dp) - paddingStart(12.0.dp) - paddingEnd(12.0.dp) - paddingTop(8.0.dp) - paddingBottom(8.0.dp) - offset(6.0.dp) - tailWidth(14.0.dp) - tailHeight(6.0.dp) - tailPadding(9.0.dp) - } - .wrap(::WrapperTooltipS) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteColors.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteColors.kt deleted file mode 100644 index 46fdb48085..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteColors.kt +++ /dev/null @@ -1,27319 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.MutableState -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.setValue -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.runtime.structuralEqualityPolicy -import androidx.compose.ui.graphics.Color -import com.sdds.stylessalute.tokens.DarkColorTokens -import com.sdds.stylessalute.tokens.LightColorTokens -import kotlin.String -import kotlin.Suppress -import kotlin.Unit -import kotlin.collections.Map -import kotlin.collections.MutableMap - -/** - * Цвета StylesSalute - */ -@Immutable -public class StylesSaluteColors( - private val colors: Map, -) { - /** - * Основной цвет текста - */ - public var textDefaultPrimaryHover: Color by colors.obtain("textDefaultPrimaryHover") - - /** - * Основной цвет текста - */ - public var textDefaultPrimaryActive: Color by colors.obtain("textDefaultPrimaryActive") - - /** - * Основной цвет текста - */ - public var textDefaultPrimary: Color by colors.obtain("textDefaultPrimary") - - /** - * Основной цвет текста - */ - public var textDefaultPrimaryBrightness: Color by colors.obtain("textDefaultPrimaryBrightness") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondaryHover: Color by colors.obtain("textDefaultSecondaryHover") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondaryActive: Color by colors.obtain("textDefaultSecondaryActive") - - /** - * Вторичный цвет текста - */ - public var textDefaultSecondary: Color by colors.obtain("textDefaultSecondary") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiaryHover: Color by colors.obtain("textDefaultTertiaryHover") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiaryActive: Color by colors.obtain("textDefaultTertiaryActive") - - /** - * Третичный цвет текста - */ - public var textDefaultTertiary: Color by colors.obtain("textDefaultTertiary") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraphHover: Color by colors.obtain("textDefaultParagraphHover") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraphActive: Color by colors.obtain("textDefaultParagraphActive") - - /** - * Сплошной наборный текст - */ - public var textDefaultParagraph: Color by colors.obtain("textDefaultParagraph") - - /** - * Акцентный цвет - */ - public var textDefaultAccentHover: Color by colors.obtain("textDefaultAccentHover") - - /** - * Акцентный цвет - */ - public var textDefaultAccentActive: Color by colors.obtain("textDefaultAccentActive") - - /** - * Акцентный цвет - */ - public var textDefaultAccent: Color by colors.obtain("textDefaultAccent") - - /** - * Акцентный минорный цвет - */ - public var textDefaultAccentMinorHover: Color by colors.obtain("textDefaultAccentMinorHover") - - /** - * Акцентный минорный цвет - */ - public var textDefaultAccentMinorActive: Color by colors.obtain("textDefaultAccentMinorActive") - - /** - * Акцентный минорный цвет - */ - public var textDefaultAccentMinor: Color by colors.obtain("textDefaultAccentMinor") - - /** - * Промо цвет - */ - public var textDefaultPromoHover: Color by colors.obtain("textDefaultPromoHover") - - /** - * Промо цвет - */ - public var textDefaultPromoActive: Color by colors.obtain("textDefaultPromoActive") - - /** - * Промо цвет - */ - public var textDefaultPromo: Color by colors.obtain("textDefaultPromo") - - /** - * Минорный промо цвет - */ - public var textDefaultPromoMinorHover: Color by colors.obtain("textDefaultPromoMinorHover") - - /** - * Минорный промо цвет - */ - public var textDefaultPromoMinorActive: Color by colors.obtain("textDefaultPromoMinorActive") - - /** - * Минорный промо цвет - */ - public var textDefaultPromoMinor: Color by colors.obtain("textDefaultPromoMinor") - - /** - * Цвет успеха - */ - public var textDefaultPositiveHover: Color by colors.obtain("textDefaultPositiveHover") - - /** - * Цвет успеха - */ - public var textDefaultPositiveActive: Color by colors.obtain("textDefaultPositiveActive") - - /** - * Цвет успеха - */ - public var textDefaultPositive: Color by colors.obtain("textDefaultPositive") - - /** - * Цвет предупреждения - */ - public var textDefaultWarningHover: Color by colors.obtain("textDefaultWarningHover") - - /** - * Цвет предупреждения - */ - public var textDefaultWarningActive: Color by colors.obtain("textDefaultWarningActive") - - /** - * Цвет предупреждения - */ - public var textDefaultWarning: Color by colors.obtain("textDefaultWarning") - - /** - * Цвет ошибки - */ - public var textDefaultNegativeHover: Color by colors.obtain("textDefaultNegativeHover") - - /** - * Цвет ошибки - */ - public var textDefaultNegativeActive: Color by colors.obtain("textDefaultNegativeActive") - - /** - * Цвет ошибки - */ - public var textDefaultNegative: Color by colors.obtain("textDefaultNegative") - - /** - * Цвет информации - */ - public var textDefaultInfoHover: Color by colors.obtain("textDefaultInfoHover") - - /** - * Цвет информации - */ - public var textDefaultInfoActive: Color by colors.obtain("textDefaultInfoActive") - - /** - * Минорный цвет успеха - */ - public var textDefaultPositiveMinorHover: Color by - colors.obtain("textDefaultPositiveMinorHover") - - /** - * Минорный цвет успеха - */ - public var textDefaultPositiveMinorActive: Color by - colors.obtain("textDefaultPositiveMinorActive") - - /** - * Минорный цвет предупреждения - */ - public var textDefaultWarningMinorHover: Color by colors.obtain("textDefaultWarningMinorHover") - - /** - * Минорный цвет предупреждения - */ - public var textDefaultWarningMinorActive: Color by - colors.obtain("textDefaultWarningMinorActive") - - /** - * Минорный цвет ошибки - */ - public var textDefaultNegativeMinorHover: Color by - colors.obtain("textDefaultNegativeMinorHover") - - /** - * Минорный цвет ошибки - */ - public var textDefaultNegativeMinorActive: Color by - colors.obtain("textDefaultNegativeMinorActive") - - /** - * Минорный цвет информации - */ - public var textDefaultInfoMinorHover: Color by colors.obtain("textDefaultInfoMinorHover") - - /** - * Минорный цвет информации - */ - public var textDefaultInfoMinorActive: Color by colors.obtain("textDefaultInfoMinorActive") - - /** - * Акцентный цвет Афины - */ - public var textDefaultAccentAthenaHover: Color by colors.obtain("textDefaultAccentAthenaHover") - - /** - * Акцентный цвет Афины - */ - public var textDefaultAccentAthenaActive: Color by - colors.obtain("textDefaultAccentAthenaActive") - - /** - * Акцентный цвет Афины - */ - public var textDefaultAccentAthena: Color by colors.obtain("textDefaultAccentAthena") - - /** - * Акцентный цвет Джой - */ - public var textDefaultAccentJoyHover: Color by colors.obtain("textDefaultAccentJoyHover") - - /** - * Акцентный цвет Джой - */ - public var textDefaultAccentJoyActive: Color by colors.obtain("textDefaultAccentJoyActive") - - /** - * Акцентный цвет Джой - */ - public var textDefaultAccentJoy: Color by colors.obtain("textDefaultAccentJoy") - - /** - * Акцентный цвет B2E-ассистента - */ - public var textDefaultAccentB2EHover: Color by colors.obtain("textDefaultAccentB2EHover") - - /** - * Акцентный цвет B2E-ассистента - */ - public var textDefaultAccentB2EActive: Color by colors.obtain("textDefaultAccentB2EActive") - - /** - * Акцентный цвет B2E-ассистента - */ - public var textDefaultAccentB2E: Color by colors.obtain("textDefaultAccentB2E") - - /** - * Акцентный цвет бренда - */ - public var textDefaultAccentBrandHover: Color by colors.obtain("textDefaultAccentBrandHover") - - /** - * Акцентный цвет бренда - */ - public var textDefaultAccentBrandActive: Color by colors.obtain("textDefaultAccentBrandActive") - - /** - * Акцентный цвет бренда - */ - public var textDefaultAccentBrand: Color by colors.obtain("textDefaultAccentBrand") - - /** - * Акцентный цвет - */ - public var textDefaultAccentMainHover: Color by colors.obtain("textDefaultAccentMainHover") - - /** - * Акцентный цвет - */ - public var textDefaultAccentMainActive: Color by colors.obtain("textDefaultAccentMainActive") - - /** - * Акцентный цвет - */ - public var textDefaultAccentMain: Color by colors.obtain("textDefaultAccentMain") - - /** - * light text default textAccentMainMinor - */ - public var textDefaultAccentMainMinor: Color by colors.obtain("textDefaultAccentMainMinor") - - /** - * light text default textAccentMainMinorHover - */ - public var textDefaultAccentMainMinorHover: Color by - colors.obtain("textDefaultAccentMainMinorHover") - - /** - * light text default textAccentMainMinorActive - */ - public var textDefaultAccentMainMinorActive: Color by - colors.obtain("textDefaultAccentMainMinorActive") - - /** - * light text default textAccentAthenaMinor - */ - public var textDefaultAccentAthenaMinor: Color by colors.obtain("textDefaultAccentAthenaMinor") - - /** - * light text default textAccentAthenaMinorHover - */ - public var textDefaultAccentAthenaMinorHover: Color by - colors.obtain("textDefaultAccentAthenaMinorHover") - - /** - * light text default textAccentAthenaMinorActive - */ - public var textDefaultAccentAthenaMinorActive: Color by - colors.obtain("textDefaultAccentAthenaMinorActive") - - /** - * light text default textAccentJoyMinor - */ - public var textDefaultAccentJoyMinor: Color by colors.obtain("textDefaultAccentJoyMinor") - - /** - * light text default textAccentB2EMinor - */ - public var textDefaultAccentB2EMinor: Color by colors.obtain("textDefaultAccentB2EMinor") - - /** - * light text default textAccentBrandMinor - */ - public var textDefaultAccentBrandMinor: Color by colors.obtain("textDefaultAccentBrandMinor") - - /** - * light text default textAccentBrandMinorHover - */ - public var textDefaultAccentBrandMinorHover: Color by - colors.obtain("textDefaultAccentBrandMinorHover") - - /** - * light text default textAccentBrandMinorActive - */ - public var textDefaultAccentBrandMinorActive: Color by - colors.obtain("textDefaultAccentBrandMinorActive") - - /** - * Цвет информации - */ - public var textDefaultInfo: Color by colors.obtain("textDefaultInfo") - - /** - * Минорный цвет успеха - */ - public var textDefaultPositiveMinor: Color by colors.obtain("textDefaultPositiveMinor") - - /** - * Минорный цвет предупреждения - */ - public var textDefaultWarningMinor: Color by colors.obtain("textDefaultWarningMinor") - - /** - * Минорный цвет ошибки - */ - public var textDefaultNegativeMinor: Color by colors.obtain("textDefaultNegativeMinor") - - /** - * Минорный цвет информации - */ - public var textDefaultInfoMinor: Color by colors.obtain("textDefaultInfoMinor") - - /** - * light text default textAccentJoyMinorHover - */ - public var textDefaultAccentJoyMinorHover: Color by - colors.obtain("textDefaultAccentJoyMinorHover") - - /** - * light text default textAccentJoyMinorActive - */ - public var textDefaultAccentJoyMinorActive: Color by - colors.obtain("textDefaultAccentJoyMinorActive") - - /** - * light text default textAccentB2EMinorHover - */ - public var textDefaultAccentB2EMinorHover: Color by - colors.obtain("textDefaultAccentB2EMinorHover") - - /** - * light text default textAccentB2EMinorActive - */ - public var textDefaultAccentB2EMinorActive: Color by - colors.obtain("textDefaultAccentB2EMinorActive") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryHover: Color by colors.obtain("textOnDarkPrimaryHover") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryActive: Color by colors.obtain("textOnDarkPrimaryActive") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimary: Color by colors.obtain("textOnDarkPrimary") - - /** - * Основной цвет текста на темном фоне - */ - public var textOnDarkPrimaryBrightness: Color by colors.obtain("textOnDarkPrimaryBrightness") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondaryHover: Color by colors.obtain("textOnDarkSecondaryHover") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondaryActive: Color by colors.obtain("textOnDarkSecondaryActive") - - /** - * Вторичный цвет текста на темном фоне - */ - public var textOnDarkSecondary: Color by colors.obtain("textOnDarkSecondary") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiaryHover: Color by colors.obtain("textOnDarkTertiaryHover") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiaryActive: Color by colors.obtain("textOnDarkTertiaryActive") - - /** - * Третичный цвет текста на темном фоне - */ - public var textOnDarkTertiary: Color by colors.obtain("textOnDarkTertiary") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraphHover: Color by colors.obtain("textOnDarkParagraphHover") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraphActive: Color by colors.obtain("textOnDarkParagraphActive") - - /** - * Сплошной наборный текст на темном фоне - */ - public var textOnDarkParagraph: Color by colors.obtain("textOnDarkParagraph") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentHover: Color by colors.obtain("textOnDarkAccentHover") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentActive: Color by colors.obtain("textOnDarkAccentActive") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccent: Color by colors.obtain("textOnDarkAccent") - - /** - * Акцентный минорный цвет на темном фоне - */ - public var textOnDarkAccentMinorHover: Color by colors.obtain("textOnDarkAccentMinorHover") - - /** - * Акцентный минорный цвет на темном фоне - */ - public var textOnDarkAccentMinorActive: Color by colors.obtain("textOnDarkAccentMinorActive") - - /** - * Акцентный минорный цвет на темном фоне - */ - public var textOnDarkAccentMinor: Color by colors.obtain("textOnDarkAccentMinor") - - /** - * Промо цвет на темном фоне - */ - public var textOnDarkPromoHover: Color by colors.obtain("textOnDarkPromoHover") - - /** - * Промо цвет на темном фоне - */ - public var textOnDarkPromoActive: Color by colors.obtain("textOnDarkPromoActive") - - /** - * Промо цвет на темном фоне - */ - public var textOnDarkPromo: Color by colors.obtain("textOnDarkPromo") - - /** - * Минорный промо цвет на темном фоне - */ - public var textOnDarkPromoMinorHover: Color by colors.obtain("textOnDarkPromoMinorHover") - - /** - * Минорный промо цвет на темном фоне - */ - public var textOnDarkPromoMinorActive: Color by colors.obtain("textOnDarkPromoMinorActive") - - /** - * Минорный промо цвет на темном фоне - */ - public var textOnDarkPromoMinor: Color by colors.obtain("textOnDarkPromoMinor") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositiveHover: Color by colors.obtain("textOnDarkPositiveHover") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositiveActive: Color by colors.obtain("textOnDarkPositiveActive") - - /** - * Цвет успеха на темном фоне - */ - public var textOnDarkPositive: Color by colors.obtain("textOnDarkPositive") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarningHover: Color by colors.obtain("textOnDarkWarningHover") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarningActive: Color by colors.obtain("textOnDarkWarningActive") - - /** - * Цвет предупреждения на темном фоне - */ - public var textOnDarkWarning: Color by colors.obtain("textOnDarkWarning") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegativeHover: Color by colors.obtain("textOnDarkNegativeHover") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegativeActive: Color by colors.obtain("textOnDarkNegativeActive") - - /** - * Цвет ошибки на темном фоне - */ - public var textOnDarkNegative: Color by colors.obtain("textOnDarkNegative") - - /** - * Цвет информации на темном фоне - */ - public var textOnDarkInfoHover: Color by colors.obtain("textOnDarkInfoHover") - - /** - * Цвет информации на темном фоне - */ - public var textOnDarkInfoActive: Color by colors.obtain("textOnDarkInfoActive") - - /** - * Минорный цвет успеха на темном фоне - */ - public var textOnDarkPositiveMinorHover: Color by colors.obtain("textOnDarkPositiveMinorHover") - - /** - * Минорный цвет успеха на темном фоне - */ - public var textOnDarkPositiveMinorActive: Color by - colors.obtain("textOnDarkPositiveMinorActive") - - /** - * Минорный цвет предупреждения на темном фоне - */ - public var textOnDarkWarningMinorHover: Color by colors.obtain("textOnDarkWarningMinorHover") - - /** - * Минорный цвет предупреждения на темном фоне - */ - public var textOnDarkWarningMinorActive: Color by colors.obtain("textOnDarkWarningMinorActive") - - /** - * Минорный цвет ошибки на темном фоне - */ - public var textOnDarkNegativeMinorHover: Color by colors.obtain("textOnDarkNegativeMinorHover") - - /** - * Минорный цвет ошибки на темном фоне - */ - public var textOnDarkNegativeMinorActive: Color by - colors.obtain("textOnDarkNegativeMinorActive") - - /** - * Минорный цвет информации на темном фоне - */ - public var textOnDarkInfoMinorHover: Color by colors.obtain("textOnDarkInfoMinorHover") - - /** - * Минорный цвет информации на темном фоне - */ - public var textOnDarkInfoMinorActive: Color by colors.obtain("textOnDarkInfoMinorActive") - - /** - * Акцентный цвет Афины на темном - */ - public var textOnDarkAccentAthenaHover: Color by colors.obtain("textOnDarkAccentAthenaHover") - - /** - * Акцентный цвет Афины на темном - */ - public var textOnDarkAccentAthenaActive: Color by colors.obtain("textOnDarkAccentAthenaActive") - - /** - * Акцентный цвет Афины на темном - */ - public var textOnDarkAccentAthena: Color by colors.obtain("textOnDarkAccentAthena") - - /** - * Акцентный цвет Джой на темном фоне - */ - public var textOnDarkAccentJoyHover: Color by colors.obtain("textOnDarkAccentJoyHover") - - /** - * Акцентный цвет Джой на темном фоне - */ - public var textOnDarkAccentJoyActive: Color by colors.obtain("textOnDarkAccentJoyActive") - - /** - * Акцентный цвет Джой на темном фоне - */ - public var textOnDarkAccentJoy: Color by colors.obtain("textOnDarkAccentJoy") - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public var textOnDarkAccentB2EHover: Color by colors.obtain("textOnDarkAccentB2EHover") - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public var textOnDarkAccentB2EActive: Color by colors.obtain("textOnDarkAccentB2EActive") - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public var textOnDarkAccentB2E: Color by colors.obtain("textOnDarkAccentB2E") - - /** - * Акцентный цвет бренда на темном фоне - */ - public var textOnDarkAccentBrandHover: Color by colors.obtain("textOnDarkAccentBrandHover") - - /** - * Акцентный цвет бренда на темном фоне - */ - public var textOnDarkAccentBrandActive: Color by colors.obtain("textOnDarkAccentBrandActive") - - /** - * Акцентный цвет бренда на темном фоне - */ - public var textOnDarkAccentBrand: Color by colors.obtain("textOnDarkAccentBrand") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentMainHover: Color by colors.obtain("textOnDarkAccentMainHover") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentMainActive: Color by colors.obtain("textOnDarkAccentMainActive") - - /** - * Акцентный цвет на темном фоне - */ - public var textOnDarkAccentMain: Color by colors.obtain("textOnDarkAccentMain") - - /** - * light text onDark textAccentMainMinor - */ - public var textOnDarkAccentMainMinor: Color by colors.obtain("textOnDarkAccentMainMinor") - - /** - * light text onDark textAccentMainMinorHover - */ - public var textOnDarkAccentMainMinorHover: Color by - colors.obtain("textOnDarkAccentMainMinorHover") - - /** - * light text onDark textAccentMainMinorActive - */ - public var textOnDarkAccentMainMinorActive: Color by - colors.obtain("textOnDarkAccentMainMinorActive") - - /** - * light text onDark textAccentAthenaMinor - */ - public var textOnDarkAccentAthenaMinor: Color by colors.obtain("textOnDarkAccentAthenaMinor") - - /** - * light text onDark textAccentAthenaMinorHover - */ - public var textOnDarkAccentAthenaMinorHover: Color by - colors.obtain("textOnDarkAccentAthenaMinorHover") - - /** - * light text onDark textAccentAthenaMinorActive - */ - public var textOnDarkAccentAthenaMinorActive: Color by - colors.obtain("textOnDarkAccentAthenaMinorActive") - - /** - * light text onDark textAccentB2EMinor - */ - public var textOnDarkAccentB2EMinor: Color by colors.obtain("textOnDarkAccentB2EMinor") - - /** - * light text onDark textAccentB2EMinorHover - */ - public var textOnDarkAccentB2EMinorHover: Color by - colors.obtain("textOnDarkAccentB2EMinorHover") - - /** - * light text onDark textAccentB2EMinorActive - */ - public var textOnDarkAccentB2EMinorActive: Color by - colors.obtain("textOnDarkAccentB2EMinorActive") - - /** - * light text onDark textAccentBrandMinor - */ - public var textOnDarkAccentBrandMinor: Color by colors.obtain("textOnDarkAccentBrandMinor") - - /** - * light text onDark textAccentBrandMinorHover - */ - public var textOnDarkAccentBrandMinorHover: Color by - colors.obtain("textOnDarkAccentBrandMinorHover") - - /** - * light text onDark textAccentBrandMinorActive - */ - public var textOnDarkAccentBrandMinorActive: Color by - colors.obtain("textOnDarkAccentBrandMinorActive") - - /** - * light text onDark textAccentJoyMinor - */ - public var textOnDarkAccentJoyMinor: Color by colors.obtain("textOnDarkAccentJoyMinor") - - /** - * light text onDark textAccentJoyMinorHover - */ - public var textOnDarkAccentJoyMinorHover: Color by - colors.obtain("textOnDarkAccentJoyMinorHover") - - /** - * light text onDark textAccentJoyMinorActive - */ - public var textOnDarkAccentJoyMinorActive: Color by - colors.obtain("textOnDarkAccentJoyMinorActive") - - /** - * Цвет информации на темном фоне - */ - public var textOnDarkInfo: Color by colors.obtain("textOnDarkInfo") - - /** - * Минорный цвет успеха на темном фоне - */ - public var textOnDarkPositiveMinor: Color by colors.obtain("textOnDarkPositiveMinor") - - /** - * Минорный цвет предупреждения на темном фоне - */ - public var textOnDarkWarningMinor: Color by colors.obtain("textOnDarkWarningMinor") - - /** - * Минорный цвет ошибки на темном фоне - */ - public var textOnDarkNegativeMinor: Color by colors.obtain("textOnDarkNegativeMinor") - - /** - * Минорный цвет информации на темном фоне - */ - public var textOnDarkInfoMinor: Color by colors.obtain("textOnDarkInfoMinor") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryHover: Color by colors.obtain("textOnLightPrimaryHover") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryActive: Color by colors.obtain("textOnLightPrimaryActive") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimary: Color by colors.obtain("textOnLightPrimary") - - /** - * Основной цвет текста на светлом фоне - */ - public var textOnLightPrimaryBrightness: Color by colors.obtain("textOnLightPrimaryBrightness") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondaryHover: Color by colors.obtain("textOnLightSecondaryHover") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondaryActive: Color by colors.obtain("textOnLightSecondaryActive") - - /** - * Вторичный цвет текста на светлом фоне - */ - public var textOnLightSecondary: Color by colors.obtain("textOnLightSecondary") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiaryHover: Color by colors.obtain("textOnLightTertiaryHover") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiaryActive: Color by colors.obtain("textOnLightTertiaryActive") - - /** - * Третичный цвет текста на светлом фоне - */ - public var textOnLightTertiary: Color by colors.obtain("textOnLightTertiary") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraphHover: Color by colors.obtain("textOnLightParagraphHover") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraphActive: Color by colors.obtain("textOnLightParagraphActive") - - /** - * Сплошной наборный текст на светлом фоне - */ - public var textOnLightParagraph: Color by colors.obtain("textOnLightParagraph") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentHover: Color by colors.obtain("textOnLightAccentHover") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentActive: Color by colors.obtain("textOnLightAccentActive") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccent: Color by colors.obtain("textOnLightAccent") - - /** - * Акцентный минорный цвет на светлом фоне - */ - public var textOnLightAccentMinorHover: Color by colors.obtain("textOnLightAccentMinorHover") - - /** - * Акцентный минорный цвет на светлом фоне - */ - public var textOnLightAccentMinorActive: Color by colors.obtain("textOnLightAccentMinorActive") - - /** - * Акцентный минорный цвет на светлом фоне - */ - public var textOnLightAccentMinor: Color by colors.obtain("textOnLightAccentMinor") - - /** - * Промо цвет на светлом фоне - */ - public var textOnLightPromoHover: Color by colors.obtain("textOnLightPromoHover") - - /** - * Промо цвет на светлом фоне - */ - public var textOnLightPromoActive: Color by colors.obtain("textOnLightPromoActive") - - /** - * Промо цвет на светлом фоне - */ - public var textOnLightPromo: Color by colors.obtain("textOnLightPromo") - - /** - * Минорный промо цвет на светлом фоне - */ - public var textOnLightPromoMinorHover: Color by colors.obtain("textOnLightPromoMinorHover") - - /** - * Минорный промо цвет на светлом фоне - */ - public var textOnLightPromoMinorActive: Color by colors.obtain("textOnLightPromoMinorActive") - - /** - * Минорный промо цвет на светлом фоне - */ - public var textOnLightPromoMinor: Color by colors.obtain("textOnLightPromoMinor") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositiveHover: Color by colors.obtain("textOnLightPositiveHover") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositiveActive: Color by colors.obtain("textOnLightPositiveActive") - - /** - * Цвет успеха на светлом фоне - */ - public var textOnLightPositive: Color by colors.obtain("textOnLightPositive") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarningHover: Color by colors.obtain("textOnLightWarningHover") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarningActive: Color by colors.obtain("textOnLightWarningActive") - - /** - * Цвет предупреждения на светлом фоне - */ - public var textOnLightWarning: Color by colors.obtain("textOnLightWarning") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegativeHover: Color by colors.obtain("textOnLightNegativeHover") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegativeActive: Color by colors.obtain("textOnLightNegativeActive") - - /** - * Цвет ошибки на светлом фоне - */ - public var textOnLightNegative: Color by colors.obtain("textOnLightNegative") - - /** - * Цвет информации на светлом фоне - */ - public var textOnLightInfoHover: Color by colors.obtain("textOnLightInfoHover") - - /** - * Цвет информации на светлом фоне - */ - public var textOnLightInfoActive: Color by colors.obtain("textOnLightInfoActive") - - /** - * Минорный цвет успеха на светлом фоне - */ - public var textOnLightPositiveMinorHover: Color by - colors.obtain("textOnLightPositiveMinorHover") - - /** - * Минорный цвет успеха на светлом фоне - */ - public var textOnLightPositiveMinorActive: Color by - colors.obtain("textOnLightPositiveMinorActive") - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public var textOnLightWarningMinorHover: Color by colors.obtain("textOnLightWarningMinorHover") - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public var textOnLightWarningMinorActive: Color by - colors.obtain("textOnLightWarningMinorActive") - - /** - * Минорный цвет ошибки на светлом фоне - */ - public var textOnLightNegativeMinorHover: Color by - colors.obtain("textOnLightNegativeMinorHover") - - /** - * Минорный цвет ошибки на светлом фоне - */ - public var textOnLightNegativeMinorActive: Color by - colors.obtain("textOnLightNegativeMinorActive") - - /** - * Минорный цвет информации на светлом фоне - */ - public var textOnLightInfoMinorHover: Color by colors.obtain("textOnLightInfoMinorHover") - - /** - * Минорный цвет информации на светлом фоне - */ - public var textOnLightInfoMinorActive: Color by colors.obtain("textOnLightInfoMinorActive") - - /** - * Акцентный цвет Афины на светлом фоне - */ - public var textOnLightAccentAthenaHover: Color by colors.obtain("textOnLightAccentAthenaHover") - - /** - * Акцентный цвет Афины на светлом фоне - */ - public var textOnLightAccentAthenaActive: Color by - colors.obtain("textOnLightAccentAthenaActive") - - /** - * Акцентный цвет Афины на светлом фоне - */ - public var textOnLightAccentAthena: Color by colors.obtain("textOnLightAccentAthena") - - /** - * Акцентный цвет Джой на светлом фоне - */ - public var textOnLightAccentJoyHover: Color by colors.obtain("textOnLightAccentJoyHover") - - /** - * Акцентный цвет Джой на светлом фоне - */ - public var textOnLightAccentJoyActive: Color by colors.obtain("textOnLightAccentJoyActive") - - /** - * Акцентный цвет Джой на светлом фоне - */ - public var textOnLightAccentJoy: Color by colors.obtain("textOnLightAccentJoy") - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public var textOnLightAccentB2EHover: Color by colors.obtain("textOnLightAccentB2EHover") - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public var textOnLightAccentB2EActive: Color by colors.obtain("textOnLightAccentB2EActive") - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public var textOnLightAccentB2E: Color by colors.obtain("textOnLightAccentB2E") - - /** - * Акцентный цвет бренда на светлом фоне - */ - public var textOnLightAccentBrandHover: Color by colors.obtain("textOnLightAccentBrandHover") - - /** - * Акцентный цвет бренда на светлом фоне - */ - public var textOnLightAccentBrandActive: Color by colors.obtain("textOnLightAccentBrandActive") - - /** - * Акцентный цвет бренда на светлом фоне - */ - public var textOnLightAccentBrand: Color by colors.obtain("textOnLightAccentBrand") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentMainHover: Color by colors.obtain("textOnLightAccentMainHover") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentMainActive: Color by colors.obtain("textOnLightAccentMainActive") - - /** - * Акцентный цвет на светлом фоне - */ - public var textOnLightAccentMain: Color by colors.obtain("textOnLightAccentMain") - - /** - * light text onLight textAccentMainMinor - */ - public var textOnLightAccentMainMinor: Color by colors.obtain("textOnLightAccentMainMinor") - - /** - * light text onLight textAccentMainMinorHover - */ - public var textOnLightAccentMainMinorHover: Color by - colors.obtain("textOnLightAccentMainMinorHover") - - /** - * light text onLight textAccentMainMinorActive - */ - public var textOnLightAccentMainMinorActive: Color by - colors.obtain("textOnLightAccentMainMinorActive") - - /** - * light text onLight textAccentAthenaMinor - */ - public var textOnLightAccentAthenaMinor: Color by colors.obtain("textOnLightAccentAthenaMinor") - - /** - * light text onLight textAccentAthenaMinorHover - */ - public var textOnLightAccentAthenaMinorHover: Color by - colors.obtain("textOnLightAccentAthenaMinorHover") - - /** - * light text onLight textAccentAthenaMinorActive - */ - public var textOnLightAccentAthenaMinorActive: Color by - colors.obtain("textOnLightAccentAthenaMinorActive") - - /** - * light text onLight textAccentJoyMinor - */ - public var textOnLightAccentJoyMinor: Color by colors.obtain("textOnLightAccentJoyMinor") - - /** - * light text onLight textAccentJoyMinorHover - */ - public var textOnLightAccentJoyMinorHover: Color by - colors.obtain("textOnLightAccentJoyMinorHover") - - /** - * light text onLight textAccentJoyMinorActive - */ - public var textOnLightAccentJoyMinorActive: Color by - colors.obtain("textOnLightAccentJoyMinorActive") - - /** - * light text onLight textAccentB2EMinor - */ - public var textOnLightAccentB2EMinor: Color by colors.obtain("textOnLightAccentB2EMinor") - - /** - * light text onLight textAccentB2EMinorHover - */ - public var textOnLightAccentB2EMinorHover: Color by - colors.obtain("textOnLightAccentB2EMinorHover") - - /** - * light text onLight textAccentB2EMinorActive - */ - public var textOnLightAccentB2EMinorActive: Color by - colors.obtain("textOnLightAccentB2EMinorActive") - - /** - * light text onLight textAccentBrandMinor - */ - public var textOnLightAccentBrandMinor: Color by colors.obtain("textOnLightAccentBrandMinor") - - /** - * light text onLight textAccentBrandMinorHover - */ - public var textOnLightAccentBrandMinorHover: Color by - colors.obtain("textOnLightAccentBrandMinorHover") - - /** - * light text onLight textAccentBrandMinorActive - */ - public var textOnLightAccentBrandMinorActive: Color by - colors.obtain("textOnLightAccentBrandMinorActive") - - /** - * Цвет информации на светлом фоне - */ - public var textOnLightInfo: Color by colors.obtain("textOnLightInfo") - - /** - * Минорный цвет успеха на светлом фоне - */ - public var textOnLightPositiveMinor: Color by colors.obtain("textOnLightPositiveMinor") - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public var textOnLightWarningMinor: Color by colors.obtain("textOnLightWarningMinor") - - /** - * Минорный цвет ошибки на светлом фоне - */ - public var textOnLightNegativeMinor: Color by colors.obtain("textOnLightNegativeMinor") - - /** - * Минорный цвет информации на светлом фоне - */ - public var textOnLightInfoMinor: Color by colors.obtain("textOnLightInfoMinor") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryHover: Color by colors.obtain("textInversePrimaryHover") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryActive: Color by colors.obtain("textInversePrimaryActive") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimary: Color by colors.obtain("textInversePrimary") - - /** - * Инвертированный основной цвет текста - */ - public var textInversePrimaryBrightness: Color by colors.obtain("textInversePrimaryBrightness") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondaryHover: Color by colors.obtain("textInverseSecondaryHover") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondaryActive: Color by colors.obtain("textInverseSecondaryActive") - - /** - * Инвертированный вторичный цвет текста - */ - public var textInverseSecondary: Color by colors.obtain("textInverseSecondary") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiaryHover: Color by colors.obtain("textInverseTertiaryHover") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiaryActive: Color by colors.obtain("textInverseTertiaryActive") - - /** - * Инвертированный третичный цвет текста - */ - public var textInverseTertiary: Color by colors.obtain("textInverseTertiary") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraphHover: Color by colors.obtain("textInverseParagraphHover") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraphActive: Color by colors.obtain("textInverseParagraphActive") - - /** - * Инвертированный cплошной наборный текст - */ - public var textInverseParagraph: Color by colors.obtain("textInverseParagraph") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccentHover: Color by colors.obtain("textInverseAccentHover") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccentActive: Color by colors.obtain("textInverseAccentActive") - - /** - * Инвертированный акцентный цвет - */ - public var textInverseAccent: Color by colors.obtain("textInverseAccent") - - /** - * Инвертированный минорный акцентный цвет - */ - public var textInverseAccentMinorHover: Color by colors.obtain("textInverseAccentMinorHover") - - /** - * Инвертированный минорный акцентный цвет - */ - public var textInverseAccentMinorActive: Color by colors.obtain("textInverseAccentMinorActive") - - /** - * Инвертированный минорный акцентный цвет - */ - public var textInverseAccentMinor: Color by colors.obtain("textInverseAccentMinor") - - /** - * Инвертированный промо цвет - */ - public var textInversePromoHover: Color by colors.obtain("textInversePromoHover") - - /** - * Инвертированный промо цвет - */ - public var textInversePromoActive: Color by colors.obtain("textInversePromoActive") - - /** - * Инвертированный промо цвет - */ - public var textInversePromo: Color by colors.obtain("textInversePromo") - - /** - * Инвертированный минорный промо цвет - */ - public var textInversePromoMinorHover: Color by colors.obtain("textInversePromoMinorHover") - - /** - * Инвертированный минорный промо цвет - */ - public var textInversePromoMinorActive: Color by colors.obtain("textInversePromoMinorActive") - - /** - * Инвертированный минорный промо цвет - */ - public var textInversePromoMinor: Color by colors.obtain("textInversePromoMinor") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositiveHover: Color by colors.obtain("textInversePositiveHover") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositiveActive: Color by colors.obtain("textInversePositiveActive") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarningHover: Color by colors.obtain("textInverseWarningHover") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarningActive: Color by colors.obtain("textInverseWarningActive") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegativeHover: Color by colors.obtain("textInverseNegativeHover") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegativeActive: Color by colors.obtain("textInverseNegativeActive") - - /** - * Инвертированный цвет информации - */ - public var textInverseInfoHover: Color by colors.obtain("textInverseInfoHover") - - /** - * Инвертированный цвет информации - */ - public var textInverseInfoActive: Color by colors.obtain("textInverseInfoActive") - - /** - * Инвертированный минорный цвет успеха - */ - public var textInversePositiveMinorHover: Color by - colors.obtain("textInversePositiveMinorHover") - - /** - * Инвертированный минорный цвет успеха - */ - public var textInversePositiveMinorActive: Color by - colors.obtain("textInversePositiveMinorActive") - - /** - * Инвертированный минорный цвет предупреждения - */ - public var textInverseWarningMinorHover: Color by colors.obtain("textInverseWarningMinorHover") - - /** - * Инвертированный минорный цвет предупреждения - */ - public var textInverseWarningMinorActive: Color by - colors.obtain("textInverseWarningMinorActive") - - /** - * Инвертированный минорный цвет ошибки - */ - public var textInverseNegativeMinorHover: Color by - colors.obtain("textInverseNegativeMinorHover") - - /** - * Инвертированный минорный цвет ошибки - */ - public var textInverseNegativeMinorActive: Color by - colors.obtain("textInverseNegativeMinorActive") - - /** - * Инвертированный минорный цвет информации - */ - public var textInverseInfoMinorHover: Color by colors.obtain("textInverseInfoMinorHover") - - /** - * Инвертированный минорный цвет информации - */ - public var textInverseInfoMinorActive: Color by colors.obtain("textInverseInfoMinorActive") - - /** - * light text inverse textAccentMain - */ - public var textInverseAccentMain: Color by colors.obtain("textInverseAccentMain") - - /** - * light text inverse textAccentMainHover - */ - public var textInverseAccentMainHover: Color by colors.obtain("textInverseAccentMainHover") - - /** - * light text inverse textAccentMainActive - */ - public var textInverseAccentMainActive: Color by colors.obtain("textInverseAccentMainActive") - - /** - * light text inverse textAccentAthena - */ - public var textInverseAccentAthena: Color by colors.obtain("textInverseAccentAthena") - - /** - * light text inverse textAccentAthenaHover - */ - public var textInverseAccentAthenaHover: Color by colors.obtain("textInverseAccentAthenaHover") - - /** - * light text inverse textAccentAthenaActive - */ - public var textInverseAccentAthenaActive: Color by - colors.obtain("textInverseAccentAthenaActive") - - /** - * light text inverse textAccentJoy - */ - public var textInverseAccentJoy: Color by colors.obtain("textInverseAccentJoy") - - /** - * light text inverse textAccentJoyHover - */ - public var textInverseAccentJoyHover: Color by colors.obtain("textInverseAccentJoyHover") - - /** - * light text inverse textAccentJoyActive - */ - public var textInverseAccentJoyActive: Color by colors.obtain("textInverseAccentJoyActive") - - /** - * light text inverse textAccentBrand - */ - public var textInverseAccentBrand: Color by colors.obtain("textInverseAccentBrand") - - /** - * light text inverse textAccentBrandHover - */ - public var textInverseAccentBrandHover: Color by colors.obtain("textInverseAccentBrandHover") - - /** - * light text inverse textAccentBrandActive - */ - public var textInverseAccentBrandActive: Color by colors.obtain("textInverseAccentBrandActive") - - /** - * light text inverse textAccentMainMinorHover - */ - public var textInverseAccentMainMinorHover: Color by - colors.obtain("textInverseAccentMainMinorHover") - - /** - * light text inverse textAccentMainMinorActive - */ - public var textInverseAccentMainMinorActive: Color by - colors.obtain("textInverseAccentMainMinorActive") - - /** - * light text inverse textAccentAthenaMinorHover - */ - public var textInverseAccentAthenaMinorHover: Color by - colors.obtain("textInverseAccentAthenaMinorHover") - - /** - * light text inverse textAccentAthenaMinorActive - */ - public var textInverseAccentAthenaMinorActive: Color by - colors.obtain("textInverseAccentAthenaMinorActive") - - /** - * light text inverse textAccentJoyMinorHover - */ - public var textInverseAccentJoyMinorHover: Color by - colors.obtain("textInverseAccentJoyMinorHover") - - /** - * light text inverse textAccentJoyMinorActive - */ - public var textInverseAccentJoyMinorActive: Color by - colors.obtain("textInverseAccentJoyMinorActive") - - /** - * light text inverse textAccentB2EMinorHover - */ - public var textInverseAccentB2EMinorHover: Color by - colors.obtain("textInverseAccentB2EMinorHover") - - /** - * light text inverse textAccentB2EMinorActive - */ - public var textInverseAccentB2EMinorActive: Color by - colors.obtain("textInverseAccentB2EMinorActive") - - /** - * light text inverse textAccentBrandMinorHover - */ - public var textInverseAccentBrandMinorHover: Color by - colors.obtain("textInverseAccentBrandMinorHover") - - /** - * light text inverse textAccentBrandMinorActive - */ - public var textInverseAccentBrandMinorActive: Color by - colors.obtain("textInverseAccentBrandMinorActive") - - /** - * light text inverse textAccentB2E - */ - public var textInverseAccentB2E: Color by colors.obtain("textInverseAccentB2E") - - /** - * light text inverse textAccentB2EHover - */ - public var textInverseAccentB2EHover: Color by colors.obtain("textInverseAccentB2EHover") - - /** - * light text inverse textAccentB2EActive - */ - public var textInverseAccentB2EActive: Color by colors.obtain("textInverseAccentB2EActive") - - /** - * Инвертированный цвет успеха - */ - public var textInversePositive: Color by colors.obtain("textInversePositive") - - /** - * Инвертированный цвет предупреждения - */ - public var textInverseWarning: Color by colors.obtain("textInverseWarning") - - /** - * Инвертированный цвет ошибки - */ - public var textInverseNegative: Color by colors.obtain("textInverseNegative") - - /** - * Инвертированный цвет информации - */ - public var textInverseInfo: Color by colors.obtain("textInverseInfo") - - /** - * Инвертированный минорный цвет успеха - */ - public var textInversePositiveMinor: Color by colors.obtain("textInversePositiveMinor") - - /** - * Инвертированный минорный цвет предупреждения - */ - public var textInverseWarningMinor: Color by colors.obtain("textInverseWarningMinor") - - /** - * Инвертированный минорный цвет ошибки - */ - public var textInverseNegativeMinor: Color by colors.obtain("textInverseNegativeMinor") - - /** - * Инвертированный минорный цвет информации - */ - public var textInverseInfoMinor: Color by colors.obtain("textInverseInfoMinor") - - /** - * light text inverse textAccentMainMinor - */ - public var textInverseAccentMainMinor: Color by colors.obtain("textInverseAccentMainMinor") - - /** - * light text inverse textAccentJoyMinor - */ - public var textInverseAccentJoyMinor: Color by colors.obtain("textInverseAccentJoyMinor") - - /** - * light text inverse textAccentB2EMinor - */ - public var textInverseAccentB2EMinor: Color by colors.obtain("textInverseAccentB2EMinor") - - /** - * light text inverse textAccentAthenaMinor - */ - public var textInverseAccentAthenaMinor: Color by colors.obtain("textInverseAccentAthenaMinor") - - /** - * light text inverse textAccentBrandMinor - */ - public var textInverseAccentBrandMinor: Color by colors.obtain("textInverseAccentBrandMinor") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryHover: Color by - colors.obtain("surfaceDefaultSolidPrimaryHover") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryActive: Color by - colors.obtain("surfaceDefaultSolidPrimaryActive") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimary: Color by colors.obtain("surfaceDefaultSolidPrimary") - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidPrimaryBrightness: Color by - colors.obtain("surfaceDefaultSolidPrimaryBrightness") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondaryHover: Color by - colors.obtain("surfaceDefaultSolidSecondaryHover") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondaryActive: Color by - colors.obtain("surfaceDefaultSolidSecondaryActive") - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidSecondary: Color by colors.obtain("surfaceDefaultSolidSecondary") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiaryHover: Color by - colors.obtain("surfaceDefaultSolidTertiaryHover") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiaryActive: Color by - colors.obtain("surfaceDefaultSolidTertiaryActive") - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultSolidTertiary: Color by colors.obtain("surfaceDefaultSolidTertiary") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardHover: Color by colors.obtain("surfaceDefaultSolidCardHover") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardActive: Color by - colors.obtain("surfaceDefaultSolidCardActive") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCard: Color by colors.obtain("surfaceDefaultSolidCard") - - /** - * Основной фон для карточек - */ - public var surfaceDefaultSolidCardBrightness: Color by - colors.obtain("surfaceDefaultSolidCardBrightness") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefaultHover: Color by - colors.obtain("surfaceDefaultSolidDefaultHover") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefaultActive: Color by - colors.obtain("surfaceDefaultSolidDefaultActive") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceDefaultSolidDefault: Color by colors.obtain("surfaceDefaultSolidDefault") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimaryHover: Color by - colors.obtain("surfaceDefaultTransparentPrimaryHover") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimaryActive: Color by - colors.obtain("surfaceDefaultTransparentPrimaryActive") - - /** - * Основной прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentPrimary: Color by - colors.obtain("surfaceDefaultTransparentPrimary") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondaryHover: Color by - colors.obtain("surfaceDefaultTransparentSecondaryHover") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondaryActive: Color by - colors.obtain("surfaceDefaultTransparentSecondaryActive") - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentSecondary: Color by - colors.obtain("surfaceDefaultTransparentSecondary") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiaryHover: Color by - colors.obtain("surfaceDefaultTransparentTertiaryHover") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiaryActive: Color by - colors.obtain("surfaceDefaultTransparentTertiaryActive") - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentTertiary: Color by - colors.obtain("surfaceDefaultTransparentTertiary") - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentDeepHover: Color by - colors.obtain("surfaceDefaultTransparentDeepHover") - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentDeepActive: Color by - colors.obtain("surfaceDefaultTransparentDeepActive") - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public var surfaceDefaultTransparentDeep: Color by - colors.obtain("surfaceDefaultTransparentDeep") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardHover: Color by - colors.obtain("surfaceDefaultTransparentCardHover") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardActive: Color by - colors.obtain("surfaceDefaultTransparentCardActive") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCard: Color by - colors.obtain("surfaceDefaultTransparentCard") - - /** - * Прозрачный фон для карточек - */ - public var surfaceDefaultTransparentCardBrightness: Color by - colors.obtain("surfaceDefaultTransparentCardBrightness") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClearHover: Color by colors.obtain("surfaceDefaultClearHover") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClearActive: Color by colors.obtain("surfaceDefaultClearActive") - - /** - * Фон поверхности/контрола без заливки - */ - public var surfaceDefaultClear: Color by colors.obtain("surfaceDefaultClear") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccentHover: Color by colors.obtain("surfaceDefaultAccentHover") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccentActive: Color by colors.obtain("surfaceDefaultAccentActive") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccent: Color by colors.obtain("surfaceDefaultAccent") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultAccentMinorHover: Color by - colors.obtain("surfaceDefaultAccentMinorHover") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultAccentMinorActive: Color by - colors.obtain("surfaceDefaultAccentMinorActive") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceDefaultAccentMinor: Color by colors.obtain("surfaceDefaultAccentMinor") - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public var surfaceDefaultTransparentAccentHover: Color by - colors.obtain("surfaceDefaultTransparentAccentHover") - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public var surfaceDefaultTransparentAccentActive: Color by - colors.obtain("surfaceDefaultTransparentAccentActive") - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public var surfaceDefaultTransparentAccent: Color by - colors.obtain("surfaceDefaultTransparentAccent") - - /** - * Промо фон поверхности/контрола - */ - public var surfaceDefaultPromoHover: Color by colors.obtain("surfaceDefaultPromoHover") - - /** - * Промо фон поверхности/контрола - */ - public var surfaceDefaultPromoActive: Color by colors.obtain("surfaceDefaultPromoActive") - - /** - * Промо фон поверхности/контрола - */ - public var surfaceDefaultPromo: Color by colors.obtain("surfaceDefaultPromo") - - /** - * Минорный промо фон поверхности/контрола - */ - public var surfaceDefaultPromoMinorHover: Color by - colors.obtain("surfaceDefaultPromoMinorHover") - - /** - * Минорный промо фон поверхности/контрола - */ - public var surfaceDefaultPromoMinorActive: Color by - colors.obtain("surfaceDefaultPromoMinorActive") - - /** - * Минорный промо фон поверхности/контрола - */ - public var surfaceDefaultPromoMinor: Color by colors.obtain("surfaceDefaultPromoMinor") - - /** - * Прозрачный промо фон поверхности/контрола - */ - public var surfaceDefaultTransparentPromoHover: Color by - colors.obtain("surfaceDefaultTransparentPromoHover") - - /** - * Прозрачный промо фон поверхности/контрола - */ - public var surfaceDefaultTransparentPromoActive: Color by - colors.obtain("surfaceDefaultTransparentPromoActive") - - /** - * Прозрачный промо фон поверхности/контрола - */ - public var surfaceDefaultTransparentPromo: Color by - colors.obtain("surfaceDefaultTransparentPromo") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositiveHover: Color by colors.obtain("surfaceDefaultPositiveHover") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositiveActive: Color by colors.obtain("surfaceDefaultPositiveActive") - - /** - * Цвет успеха - */ - public var surfaceDefaultPositive: Color by colors.obtain("surfaceDefaultPositive") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningHover: Color by colors.obtain("surfaceDefaultWarningHover") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningActive: Color by colors.obtain("surfaceDefaultWarningActive") - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarning: Color by colors.obtain("surfaceDefaultWarning") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeHover: Color by colors.obtain("surfaceDefaultNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeActive: Color by colors.obtain("surfaceDefaultNegativeActive") - - /** - * Цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegative: Color by colors.obtain("surfaceDefaultNegative") - - /** - * Цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfoHover: Color by colors.obtain("surfaceDefaultInfoHover") - - /** - * Цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfoActive: Color by colors.obtain("surfaceDefaultInfoActive") - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultPositiveMinorHover: Color by - colors.obtain("surfaceDefaultPositiveMinorHover") - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultPositiveMinorActive: Color by - colors.obtain("surfaceDefaultPositiveMinorActive") - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningMinorHover: Color by - colors.obtain("surfaceDefaultWarningMinorHover") - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningMinorActive: Color by - colors.obtain("surfaceDefaultWarningMinorActive") - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeMinorHover: Color by - colors.obtain("surfaceDefaultNegativeMinorHover") - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeMinorActive: Color by - colors.obtain("surfaceDefaultNegativeMinorActive") - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfoMinorHover: Color by colors.obtain("surfaceDefaultInfoMinorHover") - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfoMinorActive: Color by - colors.obtain("surfaceDefaultInfoMinorActive") - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultTransparentPositiveHover: Color by - colors.obtain("surfaceDefaultTransparentPositiveHover") - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultTransparentPositiveActive: Color by - colors.obtain("surfaceDefaultTransparentPositiveActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentWarningHover: Color by - colors.obtain("surfaceDefaultTransparentWarningHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentWarningActive: Color by - colors.obtain("surfaceDefaultTransparentWarningActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentNegativeHover: Color by - colors.obtain("surfaceDefaultTransparentNegativeHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentNegativeActive: Color by - colors.obtain("surfaceDefaultTransparentNegativeActive") - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultTransparentInfoHover: Color by - colors.obtain("surfaceDefaultTransparentInfoHover") - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultTransparentInfoActive: Color by - colors.obtain("surfaceDefaultTransparentInfoActive") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceDefaultAccentAthenaHover: Color by - colors.obtain("surfaceDefaultAccentAthenaHover") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceDefaultAccentAthenaActive: Color by - colors.obtain("surfaceDefaultAccentAthenaActive") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceDefaultAccentAthena: Color by colors.obtain("surfaceDefaultAccentAthena") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceDefaultAccentJoyHover: Color by colors.obtain("surfaceDefaultAccentJoyHover") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceDefaultAccentJoyActive: Color by - colors.obtain("surfaceDefaultAccentJoyActive") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceDefaultAccentJoy: Color by colors.obtain("surfaceDefaultAccentJoy") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceDefaultAccentB2EHover: Color by colors.obtain("surfaceDefaultAccentB2EHover") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceDefaultAccentB2EActive: Color by - colors.obtain("surfaceDefaultAccentB2EActive") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceDefaultAccentB2E: Color by colors.obtain("surfaceDefaultAccentB2E") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceDefaultAccentBrandHover: Color by - colors.obtain("surfaceDefaultAccentBrandHover") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceDefaultAccentBrandActive: Color by - colors.obtain("surfaceDefaultAccentBrandActive") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceDefaultAccentBrand: Color by colors.obtain("surfaceDefaultAccentBrand") - - /** - * Цвет баббла сообщения от пользователя - */ - public var surfaceDefaultSpeechBubbleSentHover: Color by - colors.obtain("surfaceDefaultSpeechBubbleSentHover") - - /** - * Цвет баббла сообщения от пользователя - */ - public var surfaceDefaultSpeechBubbleSentActive: Color by - colors.obtain("surfaceDefaultSpeechBubbleSentActive") - - /** - * Цвет баббла сообщения от пользователя - */ - public var surfaceDefaultSpeechBubbleSent: Color by - colors.obtain("surfaceDefaultSpeechBubbleSent") - - /** - * Цвет баббла сообщения от ассистента - */ - public var surfaceDefaultSpeechBubbleReceivedHover: Color by - colors.obtain("surfaceDefaultSpeechBubbleReceivedHover") - - /** - * Цвет баббла сообщения от ассистента - */ - public var surfaceDefaultSpeechBubbleReceivedActive: Color by - colors.obtain("surfaceDefaultSpeechBubbleReceivedActive") - - /** - * Цвет баббла сообщения от ассистента - */ - public var surfaceDefaultSpeechBubbleReceived: Color by - colors.obtain("surfaceDefaultSpeechBubbleReceived") - - /** - * Фон для скелетона - */ - public var surfaceDefaultSkeletonHover: Color by colors.obtain("surfaceDefaultSkeletonHover") - - /** - * Фон для скелетона - */ - public var surfaceDefaultSkeletonActive: Color by colors.obtain("surfaceDefaultSkeletonActive") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccentMainHover: Color by - colors.obtain("surfaceDefaultAccentMainHover") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccentMainActive: Color by - colors.obtain("surfaceDefaultAccentMainActive") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceDefaultAccentMain: Color by colors.obtain("surfaceDefaultAccentMain") - - /** - * light surface default surfaceAccentMainMinorHover - */ - public var surfaceDefaultAccentMainMinorHover: Color by - colors.obtain("surfaceDefaultAccentMainMinorHover") - - /** - * light surface default surfaceAccentMainMinorActive - */ - public var surfaceDefaultAccentMainMinorActive: Color by - colors.obtain("surfaceDefaultAccentMainMinorActive") - - /** - * light surface default surfaceAccentAthenaMinorHover - */ - public var surfaceDefaultAccentAthenaMinorHover: Color by - colors.obtain("surfaceDefaultAccentAthenaMinorHover") - - /** - * light surface default surfaceAccentAthenaMinorActive - */ - public var surfaceDefaultAccentAthenaMinorActive: Color by - colors.obtain("surfaceDefaultAccentAthenaMinorActive") - - /** - * light surface default surfaceAccentJoyMinorHover - */ - public var surfaceDefaultAccentJoyMinorHover: Color by - colors.obtain("surfaceDefaultAccentJoyMinorHover") - - /** - * light surface default surfaceAccentJoyMinorActive - */ - public var surfaceDefaultAccentJoyMinorActive: Color by - colors.obtain("surfaceDefaultAccentJoyMinorActive") - - /** - * light surface default surfaceAccentB2EMinorHover - */ - public var surfaceDefaultAccentB2EMinorHover: Color by - colors.obtain("surfaceDefaultAccentB2EMinorHover") - - /** - * light surface default surfaceAccentB2EMinorActive - */ - public var surfaceDefaultAccentB2EMinorActive: Color by - colors.obtain("surfaceDefaultAccentB2EMinorActive") - - /** - * light surface default surfaceAccentBrandMinorHover - */ - public var surfaceDefaultAccentBrandMinorHover: Color by - colors.obtain("surfaceDefaultAccentBrandMinorHover") - - /** - * light surface default surfaceAccentBrandMinorActive - */ - public var surfaceDefaultAccentBrandMinorActive: Color by - colors.obtain("surfaceDefaultAccentBrandMinorActive") - - /** - * light surface default surfacesurfaceTransparentAccentMainHover - */ - public var surfaceDefaultSurfaceTransparentAccentMainHover: Color by - colors.obtain("surfaceDefaultSurfaceTransparentAccentMainHover") - - /** - * light surface default surfacesurfaceTransparentAccentMainActive - */ - public var surfaceDefaultSurfaceTransparentAccentMainActive: Color by - colors.obtain("surfaceDefaultSurfaceTransparentAccentMainActive") - - /** - * light surface default surfaceTransparentAccentAthenaHover - */ - public var surfaceDefaultTransparentAccentAthenaHover: Color by - colors.obtain("surfaceDefaultTransparentAccentAthenaHover") - - /** - * light surface default surfaceTransparentAccentAthenaActive - */ - public var surfaceDefaultTransparentAccentAthenaActive: Color by - colors.obtain("surfaceDefaultTransparentAccentAthenaActive") - - /** - * light surface default surfaceTransparentAccentJoyHover - */ - public var surfaceDefaultTransparentAccentJoyHover: Color by - colors.obtain("surfaceDefaultTransparentAccentJoyHover") - - /** - * light surface default surfaceTransparentAccentJoyActive - */ - public var surfaceDefaultTransparentAccentJoyActive: Color by - colors.obtain("surfaceDefaultTransparentAccentJoyActive") - - /** - * light surface default surfaceTransparentAccentB2EHover - */ - public var surfaceDefaultTransparentAccentB2EHover: Color by - colors.obtain("surfaceDefaultTransparentAccentB2EHover") - - /** - * light surface default surfaceTransparentAccentB2EActive - */ - public var surfaceDefaultTransparentAccentB2EActive: Color by - colors.obtain("surfaceDefaultTransparentAccentB2EActive") - - /** - * light surface default surfaceTransparentAccentBrandHover - */ - public var surfaceDefaultTransparentAccentBrandHover: Color by - colors.obtain("surfaceDefaultTransparentAccentBrandHover") - - /** - * light surface default surfaceTransparentAccentBrandActive - */ - public var surfaceDefaultTransparentAccentBrandActive: Color by - colors.obtain("surfaceDefaultTransparentAccentBrandActive") - - /** - * light surface default surfaceTransparentAccentMainHover - */ - public var surfaceDefaultTransparentAccentMainHover: Color by - colors.obtain("surfaceDefaultTransparentAccentMainHover") - - /** - * light surface default surfaceTransparentAccentMainActive - */ - public var surfaceDefaultTransparentAccentMainActive: Color by - colors.obtain("surfaceDefaultTransparentAccentMainActive") - - /** - * Цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfo: Color by colors.obtain("surfaceDefaultInfo") - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultPositiveMinor: Color by colors.obtain("surfaceDefaultPositiveMinor") - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultWarningMinor: Color by colors.obtain("surfaceDefaultWarningMinor") - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceDefaultNegativeMinor: Color by colors.obtain("surfaceDefaultNegativeMinor") - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultInfoMinor: Color by colors.obtain("surfaceDefaultInfoMinor") - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public var surfaceDefaultTransparentPositive: Color by - colors.obtain("surfaceDefaultTransparentPositive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentWarning: Color by - colors.obtain("surfaceDefaultTransparentWarning") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public var surfaceDefaultTransparentNegative: Color by - colors.obtain("surfaceDefaultTransparentNegative") - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public var surfaceDefaultTransparentInfo: Color by - colors.obtain("surfaceDefaultTransparentInfo") - - /** - * light surface default surfaceAccentMainMinor - */ - public var surfaceDefaultAccentMainMinor: Color by - colors.obtain("surfaceDefaultAccentMainMinor") - - /** - * light surface default surfaceAccentAthenaMinor - */ - public var surfaceDefaultAccentAthenaMinor: Color by - colors.obtain("surfaceDefaultAccentAthenaMinor") - - /** - * light surface default surfaceAccentJoyMinor - */ - public var surfaceDefaultAccentJoyMinor: Color by colors.obtain("surfaceDefaultAccentJoyMinor") - - /** - * light surface default surfaceAccentB2EMinor - */ - public var surfaceDefaultAccentB2EMinor: Color by colors.obtain("surfaceDefaultAccentB2EMinor") - - /** - * light surface default surfaceAccentBrandMinor - */ - public var surfaceDefaultAccentBrandMinor: Color by - colors.obtain("surfaceDefaultAccentBrandMinor") - - /** - * light surface default surfaceTransparentAccentAthena - */ - public var surfaceDefaultTransparentAccentAthena: Color by - colors.obtain("surfaceDefaultTransparentAccentAthena") - - /** - * light surface default surfaceTransparentAccentJoy - */ - public var surfaceDefaultTransparentAccentJoy: Color by - colors.obtain("surfaceDefaultTransparentAccentJoy") - - /** - * light surface default surfaceTransparentAccentB2E - */ - public var surfaceDefaultTransparentAccentB2E: Color by - colors.obtain("surfaceDefaultTransparentAccentB2E") - - /** - * light surface default surfaceTransparentAccentBrand - */ - public var surfaceDefaultTransparentAccentBrand: Color by - colors.obtain("surfaceDefaultTransparentAccentBrand") - - /** - * light surface default surfaceTransparentAccentMain - */ - public var surfaceDefaultTransparentAccentMain: Color by - colors.obtain("surfaceDefaultTransparentAccentMain") - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryHover: Color by - colors.obtain("surfaceOnDarkSolidPrimaryHover") - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryActive: Color by - colors.obtain("surfaceOnDarkSolidPrimaryActive") - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimary: Color by colors.obtain("surfaceOnDarkSolidPrimary") - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidPrimaryBrightness: Color by - colors.obtain("surfaceOnDarkSolidPrimaryBrightness") - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public var surfaceOnDarkSolidSecondaryHover: Color by - colors.obtain("surfaceOnDarkSolidSecondaryHover") - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public var surfaceOnDarkSolidSecondaryActive: Color by - colors.obtain("surfaceOnDarkSolidSecondaryActive") - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public var surfaceOnDarkSolidSecondary: Color by colors.obtain("surfaceOnDarkSolidSecondary") - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiaryHover: Color by - colors.obtain("surfaceOnDarkSolidTertiaryHover") - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiaryActive: Color by - colors.obtain("surfaceOnDarkSolidTertiaryActive") - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkSolidTertiary: Color by colors.obtain("surfaceOnDarkSolidTertiary") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardHover: Color by colors.obtain("surfaceOnDarkSolidCardHover") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardActive: Color by colors.obtain("surfaceOnDarkSolidCardActive") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCard: Color by colors.obtain("surfaceOnDarkSolidCard") - - /** - * Основной фон для карточек на темном фоне - */ - public var surfaceOnDarkSolidCardBrightness: Color by - colors.obtain("surfaceOnDarkSolidCardBrightness") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefaultHover: Color by - colors.obtain("surfaceOnDarkSolidDefaultHover") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefaultActive: Color by - colors.obtain("surfaceOnDarkSolidDefaultActive") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public var surfaceOnDarkSolidDefault: Color by colors.obtain("surfaceOnDarkSolidDefault") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimaryHover: Color by - colors.obtain("surfaceOnDarkTransparentPrimaryHover") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimaryActive: Color by - colors.obtain("surfaceOnDarkTransparentPrimaryActive") - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPrimary: Color by - colors.obtain("surfaceOnDarkTransparentPrimary") - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondaryHover: Color by - colors.obtain("surfaceOnDarkTransparentSecondaryHover") - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondaryActive: Color by - colors.obtain("surfaceOnDarkTransparentSecondaryActive") - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentSecondary: Color by - colors.obtain("surfaceOnDarkTransparentSecondary") - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiaryHover: Color by - colors.obtain("surfaceOnDarkTransparentTertiaryHover") - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiaryActive: Color by - colors.obtain("surfaceOnDarkTransparentTertiaryActive") - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentTertiary: Color by - colors.obtain("surfaceOnDarkTransparentTertiary") - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentDeepHover: Color by - colors.obtain("surfaceOnDarkTransparentDeepHover") - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentDeepActive: Color by - colors.obtain("surfaceOnDarkTransparentDeepActive") - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentDeep: Color by colors.obtain("surfaceOnDarkTransparentDeep") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardHover: Color by - colors.obtain("surfaceOnDarkTransparentCardHover") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardActive: Color by - colors.obtain("surfaceOnDarkTransparentCardActive") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCard: Color by colors.obtain("surfaceOnDarkTransparentCard") - - /** - * Прозрачный фон для карточек на темном фоне - */ - public var surfaceOnDarkTransparentCardBrightness: Color by - colors.obtain("surfaceOnDarkTransparentCardBrightness") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClearHover: Color by colors.obtain("surfaceOnDarkClearHover") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClearActive: Color by colors.obtain("surfaceOnDarkClearActive") - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public var surfaceOnDarkClear: Color by colors.obtain("surfaceOnDarkClear") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccentHover: Color by colors.obtain("surfaceOnDarkAccentHover") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccentActive: Color by colors.obtain("surfaceOnDarkAccentActive") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccent: Color by colors.obtain("surfaceOnDarkAccent") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccentMinorHover: Color by - colors.obtain("surfaceOnDarkAccentMinorHover") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccentMinorActive: Color by - colors.obtain("surfaceOnDarkAccentMinorActive") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkAccentMinor: Color by colors.obtain("surfaceOnDarkAccentMinor") - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentAccentHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentHover") - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentAccentActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentActive") - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentAccent: Color by - colors.obtain("surfaceOnDarkTransparentAccent") - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromoHover: Color by colors.obtain("surfaceOnDarkPromoHover") - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromoActive: Color by colors.obtain("surfaceOnDarkPromoActive") - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromo: Color by colors.obtain("surfaceOnDarkPromo") - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromoMinorHover: Color by colors.obtain("surfaceOnDarkPromoMinorHover") - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromoMinorActive: Color by - colors.obtain("surfaceOnDarkPromoMinorActive") - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkPromoMinor: Color by colors.obtain("surfaceOnDarkPromoMinor") - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPromoHover: Color by - colors.obtain("surfaceOnDarkTransparentPromoHover") - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPromoActive: Color by - colors.obtain("surfaceOnDarkTransparentPromoActive") - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public var surfaceOnDarkTransparentPromo: Color by - colors.obtain("surfaceOnDarkTransparentPromo") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositiveHover: Color by colors.obtain("surfaceOnDarkPositiveHover") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositiveActive: Color by colors.obtain("surfaceOnDarkPositiveActive") - - /** - * Цвет успеха на темном фоне - */ - public var surfaceOnDarkPositive: Color by colors.obtain("surfaceOnDarkPositive") - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public var surfaceOnDarkWarningHover: Color by colors.obtain("surfaceOnDarkWarningHover") - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public var surfaceOnDarkWarningActive: Color by colors.obtain("surfaceOnDarkWarningActive") - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public var surfaceOnDarkWarning: Color by colors.obtain("surfaceOnDarkWarning") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeHover: Color by colors.obtain("surfaceOnDarkNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeActive: Color by colors.obtain("surfaceOnDarkNegativeActive") - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegative: Color by colors.obtain("surfaceOnDarkNegative") - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfoHover: Color by colors.obtain("surfaceOnDarkInfoHover") - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfoActive: Color by colors.obtain("surfaceOnDarkInfoActive") - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkPositiveMinorHover: Color by - colors.obtain("surfaceOnDarkPositiveMinorHover") - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkPositiveMinorActive: Color by - colors.obtain("surfaceOnDarkPositiveMinorActive") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarningMinorHover: Color by - colors.obtain("surfaceOnDarkWarningMinorHover") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarningMinorActive: Color by - colors.obtain("surfaceOnDarkWarningMinorActive") - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeMinorHover: Color by - colors.obtain("surfaceOnDarkNegativeMinorHover") - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeMinorActive: Color by - colors.obtain("surfaceOnDarkNegativeMinorActive") - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfoMinorHover: Color by colors.obtain("surfaceOnDarkInfoMinorHover") - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfoMinorActive: Color by colors.obtain("surfaceOnDarkInfoMinorActive") - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkTransparentPositiveHover: Color by - colors.obtain("surfaceOnDarkTransparentPositiveHover") - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkTransparentPositiveActive: Color by - colors.obtain("surfaceOnDarkTransparentPositiveActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentWarningHover: Color by - colors.obtain("surfaceOnDarkTransparentWarningHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentWarningActive: Color by - colors.obtain("surfaceOnDarkTransparentWarningActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentNegativeHover: Color by - colors.obtain("surfaceOnDarkTransparentNegativeHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentNegativeActive: Color by - colors.obtain("surfaceOnDarkTransparentNegativeActive") - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkTransparentInfoHover: Color by - colors.obtain("surfaceOnDarkTransparentInfoHover") - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkTransparentInfoActive: Color by - colors.obtain("surfaceOnDarkTransparentInfoActive") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceOnDarkAccentAthenaHover: Color by - colors.obtain("surfaceOnDarkAccentAthenaHover") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceOnDarkAccentAthenaActive: Color by - colors.obtain("surfaceOnDarkAccentAthenaActive") - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public var surfaceOnDarkAccentAthena: Color by colors.obtain("surfaceOnDarkAccentAthena") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceOnDarkAccentJoyHover: Color by colors.obtain("surfaceOnDarkAccentJoyHover") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceOnDarkAccentJoyActive: Color by colors.obtain("surfaceOnDarkAccentJoyActive") - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public var surfaceOnDarkAccentJoy: Color by colors.obtain("surfaceOnDarkAccentJoy") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceOnDarkAccentB2EHover: Color by colors.obtain("surfaceOnDarkAccentB2EHover") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceOnDarkAccentB2EActive: Color by colors.obtain("surfaceOnDarkAccentB2EActive") - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public var surfaceOnDarkAccentB2E: Color by colors.obtain("surfaceOnDarkAccentB2E") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceOnDarkAccentBrandHover: Color by - colors.obtain("surfaceOnDarkAccentBrandHover") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceOnDarkAccentBrandActive: Color by - colors.obtain("surfaceOnDarkAccentBrandActive") - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public var surfaceOnDarkAccentBrand: Color by colors.obtain("surfaceOnDarkAccentBrand") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccentMainHover: Color by colors.obtain("surfaceOnDarkAccentMainHover") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccentMainActive: Color by - colors.obtain("surfaceOnDarkAccentMainActive") - - /** - * Акцентный цвет поверхности/контролла - */ - public var surfaceOnDarkAccentMain: Color by colors.obtain("surfaceOnDarkAccentMain") - - /** - * light surface onDark surfaceAccentMainMinor - */ - public var surfaceOnDarkAccentMainMinor: Color by colors.obtain("surfaceOnDarkAccentMainMinor") - - /** - * light surface onDark surfaceAccentMainMinorHover - */ - public var surfaceOnDarkAccentMainMinorHover: Color by - colors.obtain("surfaceOnDarkAccentMainMinorHover") - - /** - * light surface onDark surfaceAccentMainMinorActive - */ - public var surfaceOnDarkAccentMainMinorActive: Color by - colors.obtain("surfaceOnDarkAccentMainMinorActive") - - /** - * light surface onDark surfaceAccentAthenaMinor - */ - public var surfaceOnDarkAccentAthenaMinor: Color by - colors.obtain("surfaceOnDarkAccentAthenaMinor") - - /** - * light surface onDark surfaceAccentAthenaMinorHover - */ - public var surfaceOnDarkAccentAthenaMinorHover: Color by - colors.obtain("surfaceOnDarkAccentAthenaMinorHover") - - /** - * light surface onDark surfaceAccentAthenaMinorActive - */ - public var surfaceOnDarkAccentAthenaMinorActive: Color by - colors.obtain("surfaceOnDarkAccentAthenaMinorActive") - - /** - * light surface onDark surfaceAccentJoyMinor - */ - public var surfaceOnDarkAccentJoyMinor: Color by colors.obtain("surfaceOnDarkAccentJoyMinor") - - /** - * light surface onDark surfaceAccentJoyMinorHover - */ - public var surfaceOnDarkAccentJoyMinorHover: Color by - colors.obtain("surfaceOnDarkAccentJoyMinorHover") - - /** - * light surface onDark surfaceAccentJoyMinorActive - */ - public var surfaceOnDarkAccentJoyMinorActive: Color by - colors.obtain("surfaceOnDarkAccentJoyMinorActive") - - /** - * light surface onDark surfaceAccentB2EMinor - */ - public var surfaceOnDarkAccentB2EMinor: Color by colors.obtain("surfaceOnDarkAccentB2EMinor") - - /** - * light surface onDark surfaceAccentB2EMinorHover - */ - public var surfaceOnDarkAccentB2EMinorHover: Color by - colors.obtain("surfaceOnDarkAccentB2EMinorHover") - - /** - * light surface onDark surfaceAccentB2EMinorActive - */ - public var surfaceOnDarkAccentB2EMinorActive: Color by - colors.obtain("surfaceOnDarkAccentB2EMinorActive") - - /** - * light surface onDark surfaceAccentBrandMinor - */ - public var surfaceOnDarkAccentBrandMinor: Color by - colors.obtain("surfaceOnDarkAccentBrandMinor") - - /** - * light surface onDark surfaceAccentBrandMinorHover - */ - public var surfaceOnDarkAccentBrandMinorHover: Color by - colors.obtain("surfaceOnDarkAccentBrandMinorHover") - - /** - * light surface onDark surfaceAccentBrandMinorActive - */ - public var surfaceOnDarkAccentBrandMinorActive: Color by - colors.obtain("surfaceOnDarkAccentBrandMinorActive") - - /** - * light surface onDark surfaceTransparentAccentMain - */ - public var surfaceOnDarkTransparentAccentMain: Color by - colors.obtain("surfaceOnDarkTransparentAccentMain") - - /** - * light surface onDark surfaceTransparentAccentMainHover - */ - public var surfaceOnDarkTransparentAccentMainHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentMainHover") - - /** - * light surface onDark surfaceTransparentAccentMainActive - */ - public var surfaceOnDarkTransparentAccentMainActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentMainActive") - - /** - * light surface onDark surfaceTransparentAccentAthena - */ - public var surfaceOnDarkTransparentAccentAthena: Color by - colors.obtain("surfaceOnDarkTransparentAccentAthena") - - /** - * light surface onDark surfaceTransparentAccentAthenaHover - */ - public var surfaceOnDarkTransparentAccentAthenaHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentAthenaHover") - - /** - * light surface onDark surfaceTransparentAccentAthenaActive - */ - public var surfaceOnDarkTransparentAccentAthenaActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentAthenaActive") - - /** - * light surface onDark surfaceTransparentAccentJoy - */ - public var surfaceOnDarkTransparentAccentJoy: Color by - colors.obtain("surfaceOnDarkTransparentAccentJoy") - - /** - * light surface onDark surfaceTransparentAccentJoyHover - */ - public var surfaceOnDarkTransparentAccentJoyHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentJoyHover") - - /** - * light surface onDark surfaceTransparentAccentJoyActive - */ - public var surfaceOnDarkTransparentAccentJoyActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentJoyActive") - - /** - * light surface onDark surfaceTransparentAccentB2E - */ - public var surfaceOnDarkTransparentAccentB2E: Color by - colors.obtain("surfaceOnDarkTransparentAccentB2E") - - /** - * light surface onDark surfaceTransparentAccentB2EHover - */ - public var surfaceOnDarkTransparentAccentB2EHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentB2EHover") - - /** - * light surface onDark surfaceTransparentAccentB2EActive - */ - public var surfaceOnDarkTransparentAccentB2EActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentB2EActive") - - /** - * light surface onDark surfaceTransparentAccentBrand - */ - public var surfaceOnDarkTransparentAccentBrand: Color by - colors.obtain("surfaceOnDarkTransparentAccentBrand") - - /** - * light surface onDark surfaceTransparentAccentBrandHover - */ - public var surfaceOnDarkTransparentAccentBrandHover: Color by - colors.obtain("surfaceOnDarkTransparentAccentBrandHover") - - /** - * light surface onDark surfaceTransparentAccentBrandActive - */ - public var surfaceOnDarkTransparentAccentBrandActive: Color by - colors.obtain("surfaceOnDarkTransparentAccentBrandActive") - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfo: Color by colors.obtain("surfaceOnDarkInfo") - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkPositiveMinor: Color by colors.obtain("surfaceOnDarkPositiveMinor") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkWarningMinor: Color by colors.obtain("surfaceOnDarkWarningMinor") - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public var surfaceOnDarkNegativeMinor: Color by colors.obtain("surfaceOnDarkNegativeMinor") - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkInfoMinor: Color by colors.obtain("surfaceOnDarkInfoMinor") - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public var surfaceOnDarkTransparentPositive: Color by - colors.obtain("surfaceOnDarkTransparentPositive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentWarning: Color by - colors.obtain("surfaceOnDarkTransparentWarning") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public var surfaceOnDarkTransparentNegative: Color by - colors.obtain("surfaceOnDarkTransparentNegative") - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public var surfaceOnDarkTransparentInfo: Color by colors.obtain("surfaceOnDarkTransparentInfo") - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidPrimaryHover: Color by - colors.obtain("surfaceOnLightSolidPrimaryHover") - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidPrimaryActive: Color by - colors.obtain("surfaceOnLightSolidPrimaryActive") - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidPrimary: Color by colors.obtain("surfaceOnLightSolidPrimary") - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidPrimaryBrightness: Color by - colors.obtain("surfaceOnLightSolidPrimaryBrightness") - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidSecondaryHover: Color by - colors.obtain("surfaceOnLightSolidSecondaryHover") - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidSecondaryActive: Color by - colors.obtain("surfaceOnLightSolidSecondaryActive") - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidSecondary: Color by colors.obtain("surfaceOnLightSolidSecondary") - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidTertiaryHover: Color by - colors.obtain("surfaceOnLightSolidTertiaryHover") - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidTertiaryActive: Color by - colors.obtain("surfaceOnLightSolidTertiaryActive") - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightSolidTertiary: Color by colors.obtain("surfaceOnLightSolidTertiary") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardHover: Color by colors.obtain("surfaceOnLightSolidCardHover") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardActive: Color by - colors.obtain("surfaceOnLightSolidCardActive") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCard: Color by colors.obtain("surfaceOnLightSolidCard") - - /** - * Основной фон для карточек на светлом фоне - */ - public var surfaceOnLightSolidCardBrightness: Color by - colors.obtain("surfaceOnLightSolidCardBrightness") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefaultHover: Color by - colors.obtain("surfaceOnLightSolidDefaultHover") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefaultActive: Color by - colors.obtain("surfaceOnLightSolidDefaultActive") - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public var surfaceOnLightSolidDefault: Color by colors.obtain("surfaceOnLightSolidDefault") - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightTransparentPrimaryHover: Color by - colors.obtain("surfaceOnLightTransparentPrimaryHover") - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightTransparentPrimaryActive: Color by - colors.obtain("surfaceOnLightTransparentPrimaryActive") - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public var surfaceOnLightTransparentPrimary: Color by - colors.obtain("surfaceOnLightTransparentPrimary") - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondaryHover: Color by - colors.obtain("surfaceOnLightTransparentSecondaryHover") - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondaryActive: Color by - colors.obtain("surfaceOnLightTransparentSecondaryActive") - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentSecondary: Color by - colors.obtain("surfaceOnLightTransparentSecondary") - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiaryHover: Color by - colors.obtain("surfaceOnLightTransparentTertiaryHover") - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiaryActive: Color by - colors.obtain("surfaceOnLightTransparentTertiaryActive") - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentTertiary: Color by - colors.obtain("surfaceOnLightTransparentTertiary") - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightTransparentDeepHover: Color by - colors.obtain("surfaceOnLightTransparentDeepHover") - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightTransparentDeepActive: Color by - colors.obtain("surfaceOnLightTransparentDeepActive") - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightTransparentDeep: Color by - colors.obtain("surfaceOnLightTransparentDeep") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardHover: Color by - colors.obtain("surfaceOnLightTransparentCardHover") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardActive: Color by - colors.obtain("surfaceOnLightTransparentCardActive") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCard: Color by - colors.obtain("surfaceOnLightTransparentCard") - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public var surfaceOnLightTransparentCardBrightness: Color by - colors.obtain("surfaceOnLightTransparentCardBrightness") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClearHover: Color by colors.obtain("surfaceOnLightClearHover") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClearActive: Color by colors.obtain("surfaceOnLightClearActive") - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public var surfaceOnLightClear: Color by colors.obtain("surfaceOnLightClear") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccentHover: Color by colors.obtain("surfaceOnLightAccentHover") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccentActive: Color by colors.obtain("surfaceOnLightAccentActive") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccent: Color by colors.obtain("surfaceOnLightAccent") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccentMinorHover: Color by - colors.obtain("surfaceOnLightAccentMinorHover") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccentMinorActive: Color by - colors.obtain("surfaceOnLightAccentMinorActive") - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightAccentMinor: Color by colors.obtain("surfaceOnLightAccentMinor") - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentAccentHover: Color by - colors.obtain("surfaceOnLightTransparentAccentHover") - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentAccentActive: Color by - colors.obtain("surfaceOnLightTransparentAccentActive") - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentAccent: Color by - colors.obtain("surfaceOnLightTransparentAccent") - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromoHover: Color by colors.obtain("surfaceOnLightPromoHover") - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromoActive: Color by colors.obtain("surfaceOnLightPromoActive") - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromo: Color by colors.obtain("surfaceOnLightPromo") - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromoMinorHover: Color by - colors.obtain("surfaceOnLightPromoMinorHover") - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromoMinorActive: Color by - colors.obtain("surfaceOnLightPromoMinorActive") - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightPromoMinor: Color by colors.obtain("surfaceOnLightPromoMinor") - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPromoHover: Color by - colors.obtain("surfaceOnLightTransparentPromoHover") - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPromoActive: Color by - colors.obtain("surfaceOnLightTransparentPromoActive") - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public var surfaceOnLightTransparentPromo: Color by - colors.obtain("surfaceOnLightTransparentPromo") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositiveHover: Color by colors.obtain("surfaceOnLightPositiveHover") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositiveActive: Color by colors.obtain("surfaceOnLightPositiveActive") - - /** - * Цвет успеха на светлом фоне - */ - public var surfaceOnLightPositive: Color by colors.obtain("surfaceOnLightPositive") - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public var surfaceOnLightWarningHover: Color by colors.obtain("surfaceOnLightWarningHover") - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public var surfaceOnLightWarningActive: Color by colors.obtain("surfaceOnLightWarningActive") - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public var surfaceOnLightWarning: Color by colors.obtain("surfaceOnLightWarning") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeHover: Color by colors.obtain("surfaceOnLightNegativeHover") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeActive: Color by colors.obtain("surfaceOnLightNegativeActive") - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegative: Color by colors.obtain("surfaceOnLightNegative") - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfoHover: Color by colors.obtain("surfaceOnLightInfoHover") - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfoActive: Color by colors.obtain("surfaceOnLightInfoActive") - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightPositiveMinorHover: Color by - colors.obtain("surfaceOnLightPositiveMinorHover") - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightPositiveMinorActive: Color by - colors.obtain("surfaceOnLightPositiveMinorActive") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarningMinorHover: Color by - colors.obtain("surfaceOnLightWarningMinorHover") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarningMinorActive: Color by - colors.obtain("surfaceOnLightWarningMinorActive") - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeMinorHover: Color by - colors.obtain("surfaceOnLightNegativeMinorHover") - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeMinorActive: Color by - colors.obtain("surfaceOnLightNegativeMinorActive") - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfoMinorHover: Color by colors.obtain("surfaceOnLightInfoMinorHover") - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfoMinorActive: Color by - colors.obtain("surfaceOnLightInfoMinorActive") - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightTransparentPositiveHover: Color by - colors.obtain("surfaceOnLightTransparentPositiveHover") - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightTransparentPositiveActive: Color by - colors.obtain("surfaceOnLightTransparentPositiveActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentWarningHover: Color by - colors.obtain("surfaceOnLightTransparentWarningHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentWarningActive: Color by - colors.obtain("surfaceOnLightTransparentWarningActive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentNegativeHover: Color by - colors.obtain("surfaceOnLightTransparentNegativeHover") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentNegativeActive: Color by - colors.obtain("surfaceOnLightTransparentNegativeActive") - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightTransparentInfoHover: Color by - colors.obtain("surfaceOnLightTransparentInfoHover") - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightTransparentInfoActive: Color by - colors.obtain("surfaceOnLightTransparentInfoActive") - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public var surfaceOnLightAccentAthenaHover: Color by - colors.obtain("surfaceOnLightAccentAthenaHover") - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public var surfaceOnLightAccentAthenaActive: Color by - colors.obtain("surfaceOnLightAccentAthenaActive") - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public var surfaceOnLightAccentAthena: Color by colors.obtain("surfaceOnLightAccentAthena") - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public var surfaceOnLightAccentJoyHover: Color by colors.obtain("surfaceOnLightAccentJoyHover") - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public var surfaceOnLightAccentJoyActive: Color by - colors.obtain("surfaceOnLightAccentJoyActive") - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public var surfaceOnLightAccentJoy: Color by colors.obtain("surfaceOnLightAccentJoy") - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public var surfaceOnLightAccentB2EHover: Color by colors.obtain("surfaceOnLightAccentB2EHover") - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public var surfaceOnLightAccentB2EActive: Color by - colors.obtain("surfaceOnLightAccentB2EActive") - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public var surfaceOnLightAccentB2E: Color by colors.obtain("surfaceOnLightAccentB2E") - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public var surfaceOnLightAccentBrandHover: Color by - colors.obtain("surfaceOnLightAccentBrandHover") - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public var surfaceOnLightAccentBrandActive: Color by - colors.obtain("surfaceOnLightAccentBrandActive") - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public var surfaceOnLightAccentBrand: Color by colors.obtain("surfaceOnLightAccentBrand") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccentMainHover: Color by - colors.obtain("surfaceOnLightAccentMainHover") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccentMainActive: Color by - colors.obtain("surfaceOnLightAccentMainActive") - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public var surfaceOnLightAccentMain: Color by colors.obtain("surfaceOnLightAccentMain") - - /** - * light surface onLight surfaceAccentMainMinor - */ - public var surfaceOnLightAccentMainMinor: Color by - colors.obtain("surfaceOnLightAccentMainMinor") - - /** - * light surface onLight surfaceAccentMainMinorHover - */ - public var surfaceOnLightAccentMainMinorHover: Color by - colors.obtain("surfaceOnLightAccentMainMinorHover") - - /** - * light surface onLight surfaceAccentMainMinorActive - */ - public var surfaceOnLightAccentMainMinorActive: Color by - colors.obtain("surfaceOnLightAccentMainMinorActive") - - /** - * light surface onLight surfaceAccentAthenaMinor - */ - public var surfaceOnLightAccentAthenaMinor: Color by - colors.obtain("surfaceOnLightAccentAthenaMinor") - - /** - * light surface onLight surfaceAccentAthenaMinorHover - */ - public var surfaceOnLightAccentAthenaMinorHover: Color by - colors.obtain("surfaceOnLightAccentAthenaMinorHover") - - /** - * light surface onLight surfaceAccentAthenaMinorActive - */ - public var surfaceOnLightAccentAthenaMinorActive: Color by - colors.obtain("surfaceOnLightAccentAthenaMinorActive") - - /** - * light surface onLight surfaceAccentJoyMinor - */ - public var surfaceOnLightAccentJoyMinor: Color by colors.obtain("surfaceOnLightAccentJoyMinor") - - /** - * light surface onLight surfaceAccentJoyMinorHover - */ - public var surfaceOnLightAccentJoyMinorHover: Color by - colors.obtain("surfaceOnLightAccentJoyMinorHover") - - /** - * light surface onLight surfaceAccentJoyMinorActive - */ - public var surfaceOnLightAccentJoyMinorActive: Color by - colors.obtain("surfaceOnLightAccentJoyMinorActive") - - /** - * light surface onLight surfaceAccentB2EMinor - */ - public var surfaceOnLightAccentB2EMinor: Color by colors.obtain("surfaceOnLightAccentB2EMinor") - - /** - * light surface onLight surfaceAccentB2EMinorHover - */ - public var surfaceOnLightAccentB2EMinorHover: Color by - colors.obtain("surfaceOnLightAccentB2EMinorHover") - - /** - * light surface onLight surfaceAccentB2EMinorActive - */ - public var surfaceOnLightAccentB2EMinorActive: Color by - colors.obtain("surfaceOnLightAccentB2EMinorActive") - - /** - * light surface onLight surfaceAccentBrandMinor - */ - public var surfaceOnLightAccentBrandMinor: Color by - colors.obtain("surfaceOnLightAccentBrandMinor") - - /** - * light surface onLight surfaceAccentBrandMinorHover - */ - public var surfaceOnLightAccentBrandMinorHover: Color by - colors.obtain("surfaceOnLightAccentBrandMinorHover") - - /** - * light surface onLight surfaceAccentBrandMinorActive - */ - public var surfaceOnLightAccentBrandMinorActive: Color by - colors.obtain("surfaceOnLightAccentBrandMinorActive") - - /** - * light surface onLight surfaceTransparentAccentMain - */ - public var surfaceOnLightTransparentAccentMain: Color by - colors.obtain("surfaceOnLightTransparentAccentMain") - - /** - * light surface onLight surfaceTransparentAccentMainHover - */ - public var surfaceOnLightTransparentAccentMainHover: Color by - colors.obtain("surfaceOnLightTransparentAccentMainHover") - - /** - * light surface onLight surfaceTransparentAccentMainActive - */ - public var surfaceOnLightTransparentAccentMainActive: Color by - colors.obtain("surfaceOnLightTransparentAccentMainActive") - - /** - * light surface onLight surfaceTransparentAccentAthena - */ - public var surfaceOnLightTransparentAccentAthena: Color by - colors.obtain("surfaceOnLightTransparentAccentAthena") - - /** - * light surface onLight surfaceTransparentAccentAthenaHover - */ - public var surfaceOnLightTransparentAccentAthenaHover: Color by - colors.obtain("surfaceOnLightTransparentAccentAthenaHover") - - /** - * light surface onLight surfaceTransparentAccentAthenaActive - */ - public var surfaceOnLightTransparentAccentAthenaActive: Color by - colors.obtain("surfaceOnLightTransparentAccentAthenaActive") - - /** - * light surface onLight surfaceTransparentAccentJoy - */ - public var surfaceOnLightTransparentAccentJoy: Color by - colors.obtain("surfaceOnLightTransparentAccentJoy") - - /** - * light surface onLight surfaceTransparentAccentJoyHover - */ - public var surfaceOnLightTransparentAccentJoyHover: Color by - colors.obtain("surfaceOnLightTransparentAccentJoyHover") - - /** - * light surface onLight surfaceTransparentAccentJoyActive - */ - public var surfaceOnLightTransparentAccentJoyActive: Color by - colors.obtain("surfaceOnLightTransparentAccentJoyActive") - - /** - * light surface onLight surfaceTransparentAccentB2E - */ - public var surfaceOnLightTransparentAccentB2E: Color by - colors.obtain("surfaceOnLightTransparentAccentB2E") - - /** - * light surface onLight surfaceTransparentAccentB2EHover - */ - public var surfaceOnLightTransparentAccentB2EHover: Color by - colors.obtain("surfaceOnLightTransparentAccentB2EHover") - - /** - * light surface onLight surfaceTransparentAccentB2EActive - */ - public var surfaceOnLightTransparentAccentB2EActive: Color by - colors.obtain("surfaceOnLightTransparentAccentB2EActive") - - /** - * light surface onLight surfaceTransparentAccentBrand - */ - public var surfaceOnLightTransparentAccentBrand: Color by - colors.obtain("surfaceOnLightTransparentAccentBrand") - - /** - * light surface onLight surfaceTransparentAccentBrandHover - */ - public var surfaceOnLightTransparentAccentBrandHover: Color by - colors.obtain("surfaceOnLightTransparentAccentBrandHover") - - /** - * light surface onLight surfaceTransparentAccentBrandActive - */ - public var surfaceOnLightTransparentAccentBrandActive: Color by - colors.obtain("surfaceOnLightTransparentAccentBrandActive") - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfo: Color by colors.obtain("surfaceOnLightInfo") - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightPositiveMinor: Color by colors.obtain("surfaceOnLightPositiveMinor") - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightWarningMinor: Color by colors.obtain("surfaceOnLightWarningMinor") - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public var surfaceOnLightNegativeMinor: Color by colors.obtain("surfaceOnLightNegativeMinor") - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightInfoMinor: Color by colors.obtain("surfaceOnLightInfoMinor") - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public var surfaceOnLightTransparentPositive: Color by - colors.obtain("surfaceOnLightTransparentPositive") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentWarning: Color by - colors.obtain("surfaceOnLightTransparentWarning") - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public var surfaceOnLightTransparentNegative: Color by - colors.obtain("surfaceOnLightTransparentNegative") - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public var surfaceOnLightTransparentInfo: Color by - colors.obtain("surfaceOnLightTransparentInfo") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryHover: Color by - colors.obtain("surfaceInverseSolidPrimaryHover") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryActive: Color by - colors.obtain("surfaceInverseSolidPrimaryActive") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimaryBrightness: Color by - colors.obtain("surfaceInverseSolidPrimaryBrightness") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondaryHover: Color by - colors.obtain("surfaceInverseSolidSecondaryHover") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondaryActive: Color by - colors.obtain("surfaceInverseSolidSecondaryActive") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiaryHover: Color by - colors.obtain("surfaceInverseSolidTertiaryHover") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiaryActive: Color by - colors.obtain("surfaceInverseSolidTertiaryActive") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardHover: Color by colors.obtain("surfaceInverseSolidCardHover") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardActive: Color by - colors.obtain("surfaceInverseSolidCardActive") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCardBrightness: Color by - colors.obtain("surfaceInverseSolidCardBrightness") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefaultHover: Color by - colors.obtain("surfaceInverseSolidDefaultHover") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefaultActive: Color by - colors.obtain("surfaceInverseSolidDefaultActive") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimaryHover: Color by - colors.obtain("surfaceInverseTransparentPrimaryHover") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimaryActive: Color by - colors.obtain("surfaceInverseTransparentPrimaryActive") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondaryHover: Color by - colors.obtain("surfaceInverseTransparentSecondaryHover") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondaryActive: Color by - colors.obtain("surfaceInverseTransparentSecondaryActive") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiaryHover: Color by - colors.obtain("surfaceInverseTransparentTertiaryHover") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiaryActive: Color by - colors.obtain("surfaceInverseTransparentTertiaryActive") - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentDeepHover: Color by - colors.obtain("surfaceInverseTransparentDeepHover") - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentDeepActive: Color by - colors.obtain("surfaceInverseTransparentDeepActive") - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentDeep: Color by - colors.obtain("surfaceInverseTransparentDeep") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardHover: Color by - colors.obtain("surfaceInverseTransparentCardHover") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardActive: Color by - colors.obtain("surfaceInverseTransparentCardActive") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCardBrightness: Color by - colors.obtain("surfaceInverseTransparentCardBrightness") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClearHover: Color by colors.obtain("surfaceInverseClearHover") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClearActive: Color by colors.obtain("surfaceInverseClearActive") - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public var surfaceInverseClear: Color by colors.obtain("surfaceInverseClear") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccentHover: Color by colors.obtain("surfaceInverseAccentHover") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccentActive: Color by colors.obtain("surfaceInverseAccentActive") - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseAccent: Color by colors.obtain("surfaceInverseAccent") - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseAccentMinorHover: Color by - colors.obtain("surfaceInverseAccentMinorHover") - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseAccentMinorActive: Color by - colors.obtain("surfaceInverseAccentMinorActive") - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseAccentMinor: Color by colors.obtain("surfaceInverseAccentMinor") - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseTransparentAccentHover: Color by - colors.obtain("surfaceInverseTransparentAccentHover") - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseTransparentAccentActive: Color by - colors.obtain("surfaceInverseTransparentAccentActive") - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public var surfaceInverseTransparentAccent: Color by - colors.obtain("surfaceInverseTransparentAccent") - - /** - * Инвертированный промо фон поверхности/контрола - */ - public var surfaceInversePromoHover: Color by colors.obtain("surfaceInversePromoHover") - - /** - * Инвертированный промо фон поверхности/контрола - */ - public var surfaceInversePromoActive: Color by colors.obtain("surfaceInversePromoActive") - - /** - * Инвертированный промо фон поверхности/контрола - */ - public var surfaceInversePromo: Color by colors.obtain("surfaceInversePromo") - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public var surfaceInversePromoMinorHover: Color by - colors.obtain("surfaceInversePromoMinorHover") - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public var surfaceInversePromoMinorActive: Color by - colors.obtain("surfaceInversePromoMinorActive") - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public var surfaceInversePromoMinor: Color by colors.obtain("surfaceInversePromoMinor") - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public var surfaceInverseTransparentPromoHover: Color by - colors.obtain("surfaceInverseTransparentPromoHover") - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public var surfaceInverseTransparentPromoActive: Color by - colors.obtain("surfaceInverseTransparentPromoActive") - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public var surfaceInverseTransparentPromo: Color by - colors.obtain("surfaceInverseTransparentPromo") - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositiveHover: Color by colors.obtain("surfaceInversePositiveHover") - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositiveActive: Color by colors.obtain("surfaceInversePositiveActive") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningHover: Color by colors.obtain("surfaceInverseWarningHover") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningActive: Color by colors.obtain("surfaceInverseWarningActive") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeHover: Color by colors.obtain("surfaceInverseNegativeHover") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeActive: Color by colors.obtain("surfaceInverseNegativeActive") - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfoHover: Color by colors.obtain("surfaceInverseInfoHover") - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfoActive: Color by colors.obtain("surfaceInverseInfoActive") - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositiveMinorHover: Color by - colors.obtain("surfaceInversePositiveMinorHover") - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositiveMinorActive: Color by - colors.obtain("surfaceInversePositiveMinorActive") - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningMinorHover: Color by - colors.obtain("surfaceInverseWarningMinorHover") - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningMinorActive: Color by - colors.obtain("surfaceInverseWarningMinorActive") - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeMinorHover: Color by - colors.obtain("surfaceInverseNegativeMinorHover") - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeMinorActive: Color by - colors.obtain("surfaceInverseNegativeMinorActive") - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfoMinorHover: Color by colors.obtain("surfaceInverseInfoMinorHover") - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfoMinorActive: Color by - colors.obtain("surfaceInverseInfoMinorActive") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInverseTransparentPositiveHover: Color by - colors.obtain("surfaceInverseTransparentPositiveHover") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInverseTransparentPositiveActive: Color by - colors.obtain("surfaceInverseTransparentPositiveActive") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentWarningHover: Color by - colors.obtain("surfaceInverseTransparentWarningHover") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentWarningActive: Color by - colors.obtain("surfaceInverseTransparentWarningActive") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentNegativeHover: Color by - colors.obtain("surfaceInverseTransparentNegativeHover") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentNegativeActive: Color by - colors.obtain("surfaceInverseTransparentNegativeActive") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseTransparentInfoHover: Color by - colors.obtain("surfaceInverseTransparentInfoHover") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseTransparentInfoActive: Color by - colors.obtain("surfaceInverseTransparentInfoActive") - - /** - * light surface inverse surfaceAccentMain - */ - public var surfaceInverseAccentMain: Color by colors.obtain("surfaceInverseAccentMain") - - /** - * light surface inverse surfaceAccentMainHover - */ - public var surfaceInverseAccentMainHover: Color by - colors.obtain("surfaceInverseAccentMainHover") - - /** - * light surface inverse surfaceAccentMainActive - */ - public var surfaceInverseAccentMainActive: Color by - colors.obtain("surfaceInverseAccentMainActive") - - /** - * light surface inverse surfaceAccentAthena - */ - public var surfaceInverseAccentAthena: Color by colors.obtain("surfaceInverseAccentAthena") - - /** - * light surface inverse surfaceAccentAthenaHover - */ - public var surfaceInverseAccentAthenaHover: Color by - colors.obtain("surfaceInverseAccentAthenaHover") - - /** - * light surface inverse surfaceAccentAthenaActive - */ - public var surfaceInverseAccentAthenaActive: Color by - colors.obtain("surfaceInverseAccentAthenaActive") - - /** - * light surface inverse surfacesurfaceAccentJoy - */ - public var surfaceInverseSurfaceAccentJoy: Color by - colors.obtain("surfaceInverseSurfaceAccentJoy") - - /** - * light surface inverse surfacesurfaceAccentJoyHover - */ - public var surfaceInverseSurfaceAccentJoyHover: Color by - colors.obtain("surfaceInverseSurfaceAccentJoyHover") - - /** - * light surface inverse surfacesurfaceAccentJoyActive - */ - public var surfaceInverseSurfaceAccentJoyActive: Color by - colors.obtain("surfaceInverseSurfaceAccentJoyActive") - - /** - * light surface inverse surfaceAccentB2E - */ - public var surfaceInverseAccentB2E: Color by colors.obtain("surfaceInverseAccentB2E") - - /** - * light surface inverse surfaceAccentB2EHover - */ - public var surfaceInverseAccentB2EHover: Color by colors.obtain("surfaceInverseAccentB2EHover") - - /** - * light surface inverse surfaceAccentB2EActive - */ - public var surfaceInverseAccentB2EActive: Color by - colors.obtain("surfaceInverseAccentB2EActive") - - /** - * light surface inverse surfaceAccentBrand - */ - public var surfaceInverseAccentBrand: Color by colors.obtain("surfaceInverseAccentBrand") - - /** - * light surface inverse surfaceAccentBrandHover - */ - public var surfaceInverseAccentBrandHover: Color by - colors.obtain("surfaceInverseAccentBrandHover") - - /** - * light surface inverse surfaceAccentBrandActive - */ - public var surfaceInverseAccentBrandActive: Color by - colors.obtain("surfaceInverseAccentBrandActive") - - /** - * light surface inverse surfaceAccentMainMinorHover - */ - public var surfaceInverseAccentMainMinorHover: Color by - colors.obtain("surfaceInverseAccentMainMinorHover") - - /** - * light surface inverse surfaceAccentMainMinorActive - */ - public var surfaceInverseAccentMainMinorActive: Color by - colors.obtain("surfaceInverseAccentMainMinorActive") - - /** - * light surface inverse surfaceAccentAthenaMinorHover - */ - public var surfaceInverseAccentAthenaMinorHover: Color by - colors.obtain("surfaceInverseAccentAthenaMinorHover") - - /** - * light surface inverse surfaceAccentAthenaMinorActive - */ - public var surfaceInverseAccentAthenaMinorActive: Color by - colors.obtain("surfaceInverseAccentAthenaMinorActive") - - /** - * light surface inverse surfaceAccentJoyMinorHover - */ - public var surfaceInverseAccentJoyMinorHover: Color by - colors.obtain("surfaceInverseAccentJoyMinorHover") - - /** - * light surface inverse surfaceAccentJoyMinorActive - */ - public var surfaceInverseAccentJoyMinorActive: Color by - colors.obtain("surfaceInverseAccentJoyMinorActive") - - /** - * light surface inverse surfaceAccentB2EMinorHover - */ - public var surfaceInverseAccentB2EMinorHover: Color by - colors.obtain("surfaceInverseAccentB2EMinorHover") - - /** - * light surface inverse surfaceAccentB2EMinorActive - */ - public var surfaceInverseAccentB2EMinorActive: Color by - colors.obtain("surfaceInverseAccentB2EMinorActive") - - /** - * light surface inverse surfaceAccentBrandMinorHover - */ - public var surfaceInverseAccentBrandMinorHover: Color by - colors.obtain("surfaceInverseAccentBrandMinorHover") - - /** - * light surface inverse surfaceAccentBrandMinorActive - */ - public var surfaceInverseAccentBrandMinorActive: Color by - colors.obtain("surfaceInverseAccentBrandMinorActive") - - /** - * light surface inverse surfaceTransparentAccentMainHover - */ - public var surfaceInverseTransparentAccentMainHover: Color by - colors.obtain("surfaceInverseTransparentAccentMainHover") - - /** - * light surface inverse surfaceTransparentAccentMainActive - */ - public var surfaceInverseTransparentAccentMainActive: Color by - colors.obtain("surfaceInverseTransparentAccentMainActive") - - /** - * light surface inverse surfaceTransparentAccentAthenaHover - */ - public var surfaceInverseTransparentAccentAthenaHover: Color by - colors.obtain("surfaceInverseTransparentAccentAthenaHover") - - /** - * light surface inverse surfaceTransparentAccentAthenaActive - */ - public var surfaceInverseTransparentAccentAthenaActive: Color by - colors.obtain("surfaceInverseTransparentAccentAthenaActive") - - /** - * light surface inverse surfaceTransparentAccentJoyHover - */ - public var surfaceInverseTransparentAccentJoyHover: Color by - colors.obtain("surfaceInverseTransparentAccentJoyHover") - - /** - * light surface inverse surfaceTransparentAccentJoyActive - */ - public var surfaceInverseTransparentAccentJoyActive: Color by - colors.obtain("surfaceInverseTransparentAccentJoyActive") - - /** - * light surface inverse surfaceTransparentAccentB2EHover - */ - public var surfaceInverseTransparentAccentB2EHover: Color by - colors.obtain("surfaceInverseTransparentAccentB2EHover") - - /** - * light surface inverse surfaceTransparentAccentB2EActive - */ - public var surfaceInverseTransparentAccentB2EActive: Color by - colors.obtain("surfaceInverseTransparentAccentB2EActive") - - /** - * light surface inverse surfaceTransparentAccentBrandHover - */ - public var surfaceInverseTransparentAccentBrandHover: Color by - colors.obtain("surfaceInverseTransparentAccentBrandHover") - - /** - * light surface inverse surfaceTransparentAccentBrandActive - */ - public var surfaceInverseTransparentAccentBrandActive: Color by - colors.obtain("surfaceInverseTransparentAccentBrandActive") - - /** - * Инвертированный основной фон для карточек - */ - public var surfaceInverseSolidCard: Color by colors.obtain("surfaceInverseSolidCard") - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidPrimary: Color by colors.obtain("surfaceInverseSolidPrimary") - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidSecondary: Color by colors.obtain("surfaceInverseSolidSecondary") - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public var surfaceInverseSolidTertiary: Color by colors.obtain("surfaceInverseSolidTertiary") - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public var surfaceInverseSolidDefault: Color by colors.obtain("surfaceInverseSolidDefault") - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentPrimary: Color by - colors.obtain("surfaceInverseTransparentPrimary") - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentSecondary: Color by - colors.obtain("surfaceInverseTransparentSecondary") - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public var surfaceInverseTransparentTertiary: Color by - colors.obtain("surfaceInverseTransparentTertiary") - - /** - * Инвертированный прозрачный фон для карточек - */ - public var surfaceInverseTransparentCard: Color by - colors.obtain("surfaceInverseTransparentCard") - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositive: Color by colors.obtain("surfaceInversePositive") - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarning: Color by colors.obtain("surfaceInverseWarning") - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegative: Color by colors.obtain("surfaceInverseNegative") - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfo: Color by colors.obtain("surfaceInverseInfo") - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public var surfaceInversePositiveMinor: Color by colors.obtain("surfaceInversePositiveMinor") - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseWarningMinor: Color by colors.obtain("surfaceInverseWarningMinor") - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public var surfaceInverseNegativeMinor: Color by colors.obtain("surfaceInverseNegativeMinor") - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public var surfaceInverseInfoMinor: Color by colors.obtain("surfaceInverseInfoMinor") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public var surfaceInverseTransparentPositive: Color by - colors.obtain("surfaceInverseTransparentPositive") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentWarning: Color by - colors.obtain("surfaceInverseTransparentWarning") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public var surfaceInverseTransparentNegative: Color by - colors.obtain("surfaceInverseTransparentNegative") - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public var surfaceInverseTransparentInfo: Color by - colors.obtain("surfaceInverseTransparentInfo") - - /** - * light surface inverse surfaceAccentMainMinor - */ - public var surfaceInverseAccentMainMinor: Color by - colors.obtain("surfaceInverseAccentMainMinor") - - /** - * light surface inverse surfaceAccentAthenaMinor - */ - public var surfaceInverseAccentAthenaMinor: Color by - colors.obtain("surfaceInverseAccentAthenaMinor") - - /** - * light surface inverse surfaceAccentJoyMinor - */ - public var surfaceInverseAccentJoyMinor: Color by colors.obtain("surfaceInverseAccentJoyMinor") - - /** - * light surface inverse surfaceAccentBrandMinor - */ - public var surfaceInverseAccentBrandMinor: Color by - colors.obtain("surfaceInverseAccentBrandMinor") - - /** - * light surface inverse surfaceAccentB2EMinor - */ - public var surfaceInverseAccentB2EMinor: Color by colors.obtain("surfaceInverseAccentB2EMinor") - - /** - * light surface inverse surfaceTransparentAccentMain - */ - public var surfaceInverseTransparentAccentMain: Color by - colors.obtain("surfaceInverseTransparentAccentMain") - - /** - * light surface inverse surfaceTransparentAccentAthena - */ - public var surfaceInverseTransparentAccentAthena: Color by - colors.obtain("surfaceInverseTransparentAccentAthena") - - /** - * light surface inverse surfaceTransparentAccentJoy - */ - public var surfaceInverseTransparentAccentJoy: Color by - colors.obtain("surfaceInverseTransparentAccentJoy") - - /** - * light surface inverse surfaceTransparentAccentB2E - */ - public var surfaceInverseTransparentAccentB2E: Color by - colors.obtain("surfaceInverseTransparentAccentB2E") - - /** - * light surface inverse surfaceTransparentAccentBrand - */ - public var surfaceInverseTransparentAccentBrand: Color by - colors.obtain("surfaceInverseTransparentAccentBrand") - - /** - * Основной фон - */ - public var backgroundDefaultPrimary: Color by colors.obtain("backgroundDefaultPrimary") - - /** - * Основной фон - */ - public var backgroundDefaultPrimaryBrightness: Color by - colors.obtain("backgroundDefaultPrimaryBrightness") - - /** - * Вторичный фон - */ - public var backgroundDefaultSecondary: Color by colors.obtain("backgroundDefaultSecondary") - - /** - * Третичный фон - */ - public var backgroundDefaultTertiary: Color by colors.obtain("backgroundDefaultTertiary") - - /** - * Основной фон на темном фоне - */ - public var backgroundDarkPrimary: Color by colors.obtain("backgroundDarkPrimary") - - /** - * Вторичный фон на темном фоне - */ - public var backgroundDarkSecondary: Color by colors.obtain("backgroundDarkSecondary") - - /** - * Третичный фон на темном фоне - */ - public var backgroundDarkTertiary: Color by colors.obtain("backgroundDarkTertiary") - - /** - * Основной фон на светлом фоне - */ - public var backgroundLightPrimary: Color by colors.obtain("backgroundLightPrimary") - - /** - * Вторичный фон на светлом фоне - */ - public var backgroundLightSecondary: Color by colors.obtain("backgroundLightSecondary") - - /** - * Третичный фон на светлом фоне - */ - public var backgroundLightTertiary: Color by colors.obtain("backgroundLightTertiary") - - /** - * Инвертированный основной фон - */ - public var backgroundInversePrimaryBrightness: Color by - colors.obtain("backgroundInversePrimaryBrightness") - - /** - * Инвертированный третичный фон - */ - public var backgroundInverseTertiary: Color by colors.obtain("backgroundInverseTertiary") - - /** - * Инвертированный основной фон - */ - public var backgroundInversePrimary: Color by colors.obtain("backgroundInversePrimary") - - /** - * Инвертированный вторичный фон - */ - public var backgroundInverseSecondary: Color by colors.obtain("backgroundInverseSecondary") - - /** - * Цвет фона паранжи светлый - */ - public var overlayDefaultSoft: Color by colors.obtain("overlayDefaultSoft") - - /** - * Цвет фона паранжи темный - */ - public var overlayDefaultHard: Color by colors.obtain("overlayDefaultHard") - - /** - * Цвет фона паранжи размытый - */ - public var overlayDefaultBlur: Color by colors.obtain("overlayDefaultBlur") - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public var overlayOnDarkSoft: Color by colors.obtain("overlayOnDarkSoft") - - /** - * Цвет фона паранжи темный на темном фоне - */ - public var overlayOnDarkHard: Color by colors.obtain("overlayOnDarkHard") - - /** - * Оверлей с блюром - */ - public var overlayOnDarkBlur: Color by colors.obtain("overlayOnDarkBlur") - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public var overlayOnLightSoft: Color by colors.obtain("overlayOnLightSoft") - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public var overlayOnLightHard: Color by colors.obtain("overlayOnLightHard") - - /** - * Цвет фона паранжи размытый на светлом фоне - */ - public var overlayOnLightBlur: Color by colors.obtain("overlayOnLightBlur") - - /** - * Инвертированный цвет фона паранжи светлый - */ - public var overlayInverseSoft: Color by colors.obtain("overlayInverseSoft") - - /** - * Инвертированный цвет фона паранжи темный - */ - public var overlayInverseHard: Color by colors.obtain("overlayInverseHard") - - /** - * Инвертированный цвет фона паранжи размытый - */ - public var overlayInverseBlur: Color by colors.obtain("overlayInverseBlur") - - /** - * Основной непрозрачный цвет обводки - */ - public var outlineDefaultSolidPrimaryHover: Color by - colors.obtain("outlineDefaultSolidPrimaryHover") - - /** - * Основной непрозрачный цвет обводки - */ - public var outlineDefaultSolidPrimaryActive: Color by - colors.obtain("outlineDefaultSolidPrimaryActive") - - /** - * Вторичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidSecondaryHover: Color by - colors.obtain("outlineDefaultSolidSecondaryHover") - - /** - * Вторичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidSecondaryActive: Color by - colors.obtain("outlineDefaultSolidSecondaryActive") - - /** - * Третичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidTertiaryHover: Color by - colors.obtain("outlineDefaultSolidTertiaryHover") - - /** - * Третичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidTertiaryActive: Color by - colors.obtain("outlineDefaultSolidTertiaryActive") - - /** - * Прозрачный цвет обводки по умолчанию - */ - public var outlineDefaultTransparentDefaultHover: Color by - colors.obtain("outlineDefaultTransparentDefaultHover") - - /** - * Прозрачный цвет обводки по умолчанию - */ - public var outlineDefaultTransparentDefaultActive: Color by - colors.obtain("outlineDefaultTransparentDefaultActive") - - /** - * Прозрачный цвет обводки по умолчанию - */ - public var outlineDefaultTransparentDefault: Color by - colors.obtain("outlineDefaultTransparentDefault") - - /** - * Основной прозрачный цвет обводки - */ - public var outlineDefaultTransparentPrimaryHover: Color by - colors.obtain("outlineDefaultTransparentPrimaryHover") - - /** - * Основной прозрачный цвет обводки - */ - public var outlineDefaultTransparentPrimaryActive: Color by - colors.obtain("outlineDefaultTransparentPrimaryActive") - - /** - * Вторичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentSecondaryHover: Color by - colors.obtain("outlineDefaultTransparentSecondaryHover") - - /** - * Вторичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentSecondaryActive: Color by - colors.obtain("outlineDefaultTransparentSecondaryActive") - - /** - * Третичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentTertiaryHover: Color by - colors.obtain("outlineDefaultTransparentTertiaryHover") - - /** - * Третичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentTertiaryActive: Color by - colors.obtain("outlineDefaultTransparentTertiaryActive") - - /** - * Бесцветная обводка - */ - public var outlineDefaultClearHover: Color by colors.obtain("outlineDefaultClearHover") - - /** - * Бесцветная обводка - */ - public var outlineDefaultClearActive: Color by colors.obtain("outlineDefaultClearActive") - - /** - * Акцентный цвет обводки - */ - public var outlineDefaultAccentHover: Color by colors.obtain("outlineDefaultAccentHover") - - /** - * Акцентный цвет обводки - */ - public var outlineDefaultAccentActive: Color by colors.obtain("outlineDefaultAccentActive") - - /** - * Акцентный цвет обводки - */ - public var outlineDefaultAccent: Color by colors.obtain("outlineDefaultAccent") - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public var outlineDefaultAccentMinorHover: Color by - colors.obtain("outlineDefaultAccentMinorHover") - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public var outlineDefaultAccentMinorActive: Color by - colors.obtain("outlineDefaultAccentMinorActive") - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public var outlineDefaultAccentMinor: Color by colors.obtain("outlineDefaultAccentMinor") - - /** - * Прозрачный акцентный цвет обводки - */ - public var outlineDefaultTransparentAccentHover: Color by - colors.obtain("outlineDefaultTransparentAccentHover") - - /** - * Прозрачный акцентный цвет обводки - */ - public var outlineDefaultTransparentAccentActive: Color by - colors.obtain("outlineDefaultTransparentAccentActive") - - /** - * Прозрачный акцентный цвет обводки - */ - public var outlineDefaultTransparentAccent: Color by - colors.obtain("outlineDefaultTransparentAccent") - - /** - * Промо цвет обводки - */ - public var outlineDefaultPromoHover: Color by colors.obtain("outlineDefaultPromoHover") - - /** - * Промо цвет обводки - */ - public var outlineDefaultPromoActive: Color by colors.obtain("outlineDefaultPromoActive") - - /** - * Промо цвет обводки - */ - public var outlineDefaultPromo: Color by colors.obtain("outlineDefaultPromo") - - /** - * Минорный промо цвет обводки - */ - public var outlineDefaultPromoMinorHover: Color by - colors.obtain("outlineDefaultPromoMinorHover") - - /** - * Минорный промо цвет обводки - */ - public var outlineDefaultPromoMinorActive: Color by - colors.obtain("outlineDefaultPromoMinorActive") - - /** - * Минорный промо цвет обводки - */ - public var outlineDefaultPromoMinor: Color by colors.obtain("outlineDefaultPromoMinor") - - /** - * Цвет обводки успех - */ - public var outlineDefaultPositiveHover: Color by colors.obtain("outlineDefaultPositiveHover") - - /** - * Цвет обводки успех - */ - public var outlineDefaultPositiveActive: Color by colors.obtain("outlineDefaultPositiveActive") - - /** - * Цвет обводки предупреждение - */ - public var outlineDefaultWarningHover: Color by colors.obtain("outlineDefaultWarningHover") - - /** - * Цвет обводки предупреждение - */ - public var outlineDefaultWarningActive: Color by colors.obtain("outlineDefaultWarningActive") - - /** - * Цвет обводки ошибка - */ - public var outlineDefaultNegativeHover: Color by colors.obtain("outlineDefaultNegativeHover") - - /** - * Цвет обводки ошибка - */ - public var outlineDefaultNegativeActive: Color by colors.obtain("outlineDefaultNegativeActive") - - /** - * Цвет обводки информация - */ - public var outlineDefaultInfoHover: Color by colors.obtain("outlineDefaultInfoHover") - - /** - * Цвет обводки информация - */ - public var outlineDefaultInfoActive: Color by colors.obtain("outlineDefaultInfoActive") - - /** - * Минорный цвет обводки успех - */ - public var outlineDefaultPositiveMinorHover: Color by - colors.obtain("outlineDefaultPositiveMinorHover") - - /** - * Минорный цвет обводки успех - */ - public var outlineDefaultPositiveMinorActive: Color by - colors.obtain("outlineDefaultPositiveMinorActive") - - /** - * Минорный цвет обводки предупреждение - */ - public var outlineDefaultWarningMinorHover: Color by - colors.obtain("outlineDefaultWarningMinorHover") - - /** - * Минорный цвет обводки предупреждение - */ - public var outlineDefaultWarningMinorActive: Color by - colors.obtain("outlineDefaultWarningMinorActive") - - /** - * Минорный цвет обводки ошибка - */ - public var outlineDefaultNegativeMinorHover: Color by - colors.obtain("outlineDefaultNegativeMinorHover") - - /** - * Минорный цвет обводки ошибка - */ - public var outlineDefaultNegativeMinorActive: Color by - colors.obtain("outlineDefaultNegativeMinorActive") - - /** - * Минорный цвет обводки информация - */ - public var outlineDefaultInfoMinorHover: Color by colors.obtain("outlineDefaultInfoMinorHover") - - /** - * Минорный цвет обводки информация - */ - public var outlineDefaultInfoMinorActive: Color by - colors.obtain("outlineDefaultInfoMinorActive") - - /** - * Прозрачный цвет обводки успех - */ - public var outlineDefaultTransparentPositiveHover: Color by - colors.obtain("outlineDefaultTransparentPositiveHover") - - /** - * Прозрачный цвет обводки успех - */ - public var outlineDefaultTransparentPositiveActive: Color by - colors.obtain("outlineDefaultTransparentPositiveActive") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentWarningHover: Color by - colors.obtain("outlineDefaultTransparentWarningHover") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentWarningActive: Color by - colors.obtain("outlineDefaultTransparentWarningActive") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentNegativeHover: Color by - colors.obtain("outlineDefaultTransparentNegativeHover") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentNegativeActive: Color by - colors.obtain("outlineDefaultTransparentNegativeActive") - - /** - * Прозрачный цвет обводки информация - */ - public var outlineDefaultTransparentInfoHover: Color by - colors.obtain("outlineDefaultTransparentInfoHover") - - /** - * Прозрачный цвет обводки информация - */ - public var outlineDefaultTransparentInfoActive: Color by - colors.obtain("outlineDefaultTransparentInfoActive") - - /** - * light outline default outlineSolidDefaultHover - */ - public var outlineDefaultSolidDefaultHover: Color by - colors.obtain("outlineDefaultSolidDefaultHover") - - /** - * light outline default outlineSolidDefaultActive - */ - public var outlineDefaultSolidDefaultActive: Color by - colors.obtain("outlineDefaultSolidDefaultActive") - - /** - * light outline default outlineAccentMainHover - */ - public var outlineDefaultAccentMainHover: Color by - colors.obtain("outlineDefaultAccentMainHover") - - /** - * light outline default outlineAccentMainActive - */ - public var outlineDefaultAccentMainActive: Color by - colors.obtain("outlineDefaultAccentMainActive") - - /** - * light outline default outlineAccentAthenaHover - */ - public var outlineDefaultAccentAthenaHover: Color by - colors.obtain("outlineDefaultAccentAthenaHover") - - /** - * light outline default outlineAccentAthenaActive - */ - public var outlineDefaultAccentAthenaActive: Color by - colors.obtain("outlineDefaultAccentAthenaActive") - - /** - * light outline default outlineAccentJoyHover - */ - public var outlineDefaultAccentJoyHover: Color by colors.obtain("outlineDefaultAccentJoyHover") - - /** - * light outline default outlineAccentJoyActive - */ - public var outlineDefaultAccentJoyActive: Color by - colors.obtain("outlineDefaultAccentJoyActive") - - /** - * light outline default outlineAccentB2EHover - */ - public var outlineDefaultAccentB2EHover: Color by colors.obtain("outlineDefaultAccentB2EHover") - - /** - * light outline default outlineAccentB2EActive - */ - public var outlineDefaultAccentB2EActive: Color by - colors.obtain("outlineDefaultAccentB2EActive") - - /** - * light outline default outlineAccentBrandHover - */ - public var outlineDefaultAccentBrandHover: Color by - colors.obtain("outlineDefaultAccentBrandHover") - - /** - * light outline default outlineAccentBrandActive - */ - public var outlineDefaultAccentBrandActive: Color by - colors.obtain("outlineDefaultAccentBrandActive") - - /** - * light outline default outlineAccentMainMinorHover - */ - public var outlineDefaultAccentMainMinorHover: Color by - colors.obtain("outlineDefaultAccentMainMinorHover") - - /** - * light outline default outlineAccentMainMinorActive - */ - public var outlineDefaultAccentMainMinorActive: Color by - colors.obtain("outlineDefaultAccentMainMinorActive") - - /** - * light outline default outlineAccentAthenaMinorHover - */ - public var outlineDefaultAccentAthenaMinorHover: Color by - colors.obtain("outlineDefaultAccentAthenaMinorHover") - - /** - * light outline default outlineAccentAthenaMinorActive - */ - public var outlineDefaultAccentAthenaMinorActive: Color by - colors.obtain("outlineDefaultAccentAthenaMinorActive") - - /** - * light outline default outlineAccentJoyMinorHover - */ - public var outlineDefaultAccentJoyMinorHover: Color by - colors.obtain("outlineDefaultAccentJoyMinorHover") - - /** - * light outline default outlineAccentJoyMinorActive - */ - public var outlineDefaultAccentJoyMinorActive: Color by - colors.obtain("outlineDefaultAccentJoyMinorActive") - - /** - * light outline default outlineAccentB2EMinorHover - */ - public var outlineDefaultAccentB2EMinorHover: Color by - colors.obtain("outlineDefaultAccentB2EMinorHover") - - /** - * light outline default outlineAccentB2EMinorActive - */ - public var outlineDefaultAccentB2EMinorActive: Color by - colors.obtain("outlineDefaultAccentB2EMinorActive") - - /** - * light outline default outlineAccentBrandMinorHover - */ - public var outlineDefaultAccentBrandMinorHover: Color by - colors.obtain("outlineDefaultAccentBrandMinorHover") - - /** - * light outline default outlineAccentBrandMinorActive - */ - public var outlineDefaultAccentBrandMinorActive: Color by - colors.obtain("outlineDefaultAccentBrandMinorActive") - - /** - * light outline default outlineTransparentAccentMainHover - */ - public var outlineDefaultTransparentAccentMainHover: Color by - colors.obtain("outlineDefaultTransparentAccentMainHover") - - /** - * light outline default outlineTransparentAccentMainActive - */ - public var outlineDefaultTransparentAccentMainActive: Color by - colors.obtain("outlineDefaultTransparentAccentMainActive") - - /** - * light outline default outlineTransparentAccentAthenaHover - */ - public var outlineDefaultTransparentAccentAthenaHover: Color by - colors.obtain("outlineDefaultTransparentAccentAthenaHover") - - /** - * light outline default outlineTransparentAccentAthenaActive - */ - public var outlineDefaultTransparentAccentAthenaActive: Color by - colors.obtain("outlineDefaultTransparentAccentAthenaActive") - - /** - * light outline default outlineTransparentAccentJoyHover - */ - public var outlineDefaultTransparentAccentJoyHover: Color by - colors.obtain("outlineDefaultTransparentAccentJoyHover") - - /** - * light outline default outlineTransparentAccentJoyActive - */ - public var outlineDefaultTransparentAccentJoyActive: Color by - colors.obtain("outlineDefaultTransparentAccentJoyActive") - - /** - * light outline default outlineTransparentAccentB2EHover - */ - public var outlineDefaultTransparentAccentB2EHover: Color by - colors.obtain("outlineDefaultTransparentAccentB2EHover") - - /** - * light outline default outlineTransparentAccentB2EActive - */ - public var outlineDefaultTransparentAccentB2EActive: Color by - colors.obtain("outlineDefaultTransparentAccentB2EActive") - - /** - * light outline default outlineTransparentAccentBrandHover - */ - public var outlineDefaultTransparentAccentBrandHover: Color by - colors.obtain("outlineDefaultTransparentAccentBrandHover") - - /** - * light outline default outlineTransparentAccentBrandActive - */ - public var outlineDefaultTransparentAccentBrandActive: Color by - colors.obtain("outlineDefaultTransparentAccentBrandActive") - - /** - * Основной непрозрачный цвет обводки - */ - public var outlineDefaultSolidPrimary: Color by colors.obtain("outlineDefaultSolidPrimary") - - /** - * Вторичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidSecondary: Color by colors.obtain("outlineDefaultSolidSecondary") - - /** - * Третичный непрозрачный цвет обводки - */ - public var outlineDefaultSolidTertiary: Color by colors.obtain("outlineDefaultSolidTertiary") - - /** - * Основной прозрачный цвет обводки - */ - public var outlineDefaultTransparentPrimary: Color by - colors.obtain("outlineDefaultTransparentPrimary") - - /** - * Вторичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentSecondary: Color by - colors.obtain("outlineDefaultTransparentSecondary") - - /** - * Третичный прозрачный цвет обводки - */ - public var outlineDefaultTransparentTertiary: Color by - colors.obtain("outlineDefaultTransparentTertiary") - - /** - * Бесцветная обводка - */ - public var outlineDefaultClear: Color by colors.obtain("outlineDefaultClear") - - /** - * light outline default outlineSolidDefault - */ - public var outlineDefaultSolidDefault: Color by colors.obtain("outlineDefaultSolidDefault") - - /** - * Цвет обводки успех - */ - public var outlineDefaultPositive: Color by colors.obtain("outlineDefaultPositive") - - /** - * Цвет обводки предупреждение - */ - public var outlineDefaultWarning: Color by colors.obtain("outlineDefaultWarning") - - /** - * Цвет обводки ошибка - */ - public var outlineDefaultNegative: Color by colors.obtain("outlineDefaultNegative") - - /** - * Цвет обводки информация - */ - public var outlineDefaultInfo: Color by colors.obtain("outlineDefaultInfo") - - /** - * Минорный цвет обводки успех - */ - public var outlineDefaultPositiveMinor: Color by colors.obtain("outlineDefaultPositiveMinor") - - /** - * Минорный цвет обводки предупреждение - */ - public var outlineDefaultWarningMinor: Color by colors.obtain("outlineDefaultWarningMinor") - - /** - * Минорный цвет обводки ошибка - */ - public var outlineDefaultNegativeMinor: Color by colors.obtain("outlineDefaultNegativeMinor") - - /** - * Минорный цвет обводки информация - */ - public var outlineDefaultInfoMinor: Color by colors.obtain("outlineDefaultInfoMinor") - - /** - * Прозрачный цвет обводки успех - */ - public var outlineDefaultTransparentPositive: Color by - colors.obtain("outlineDefaultTransparentPositive") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentWarning: Color by - colors.obtain("outlineDefaultTransparentWarning") - - /** - * Прозрачный цвет обводки предупреждение - */ - public var outlineDefaultTransparentNegative: Color by - colors.obtain("outlineDefaultTransparentNegative") - - /** - * Прозрачный цвет обводки информация - */ - public var outlineDefaultTransparentInfo: Color by - colors.obtain("outlineDefaultTransparentInfo") - - /** - * light outline default outlineAccentMain - */ - public var outlineDefaultAccentMain: Color by colors.obtain("outlineDefaultAccentMain") - - /** - * light outline default outlineAccentAthena - */ - public var outlineDefaultAccentAthena: Color by colors.obtain("outlineDefaultAccentAthena") - - /** - * light outline default outlineAccentJoy - */ - public var outlineDefaultAccentJoy: Color by colors.obtain("outlineDefaultAccentJoy") - - /** - * light outline default outlineAccentB2E - */ - public var outlineDefaultAccentB2E: Color by colors.obtain("outlineDefaultAccentB2E") - - /** - * light outline default outlineAccentBrand - */ - public var outlineDefaultAccentBrand: Color by colors.obtain("outlineDefaultAccentBrand") - - /** - * light outline default outlineAccentMainMinor - */ - public var outlineDefaultAccentMainMinor: Color by - colors.obtain("outlineDefaultAccentMainMinor") - - /** - * light outline default outlineAccentAthenaMinor - */ - public var outlineDefaultAccentAthenaMinor: Color by - colors.obtain("outlineDefaultAccentAthenaMinor") - - /** - * light outline default outlineAccentJoyMinor - */ - public var outlineDefaultAccentJoyMinor: Color by colors.obtain("outlineDefaultAccentJoyMinor") - - /** - * light outline default outlineAccentB2EMinor - */ - public var outlineDefaultAccentB2EMinor: Color by colors.obtain("outlineDefaultAccentB2EMinor") - - /** - * light outline default outlineAccentBrandMinor - */ - public var outlineDefaultAccentBrandMinor: Color by - colors.obtain("outlineDefaultAccentBrandMinor") - - /** - * light outline default outlineTransparentAccentMain - */ - public var outlineDefaultTransparentAccentMain: Color by - colors.obtain("outlineDefaultTransparentAccentMain") - - /** - * light outline default outlineTransparentAccentAthena - */ - public var outlineDefaultTransparentAccentAthena: Color by - colors.obtain("outlineDefaultTransparentAccentAthena") - - /** - * light outline default outlineTransparentAccentJoy - */ - public var outlineDefaultTransparentAccentJoy: Color by - colors.obtain("outlineDefaultTransparentAccentJoy") - - /** - * light outline default outlineTransparentAccentB2E - */ - public var outlineDefaultTransparentAccentB2E: Color by - colors.obtain("outlineDefaultTransparentAccentB2E") - - /** - * light outline default outlineTransparentAccentBrand - */ - public var outlineDefaultTransparentAccentBrand: Color by - colors.obtain("outlineDefaultTransparentAccentBrand") - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidPrimaryHover: Color by - colors.obtain("outlineOnDarkSolidPrimaryHover") - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidPrimaryActive: Color by - colors.obtain("outlineOnDarkSolidPrimaryActive") - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidSecondaryHover: Color by - colors.obtain("outlineOnDarkSolidSecondaryHover") - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidSecondaryActive: Color by - colors.obtain("outlineOnDarkSolidSecondaryActive") - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidTertiaryHover: Color by - colors.obtain("outlineOnDarkSolidTertiaryHover") - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidTertiaryActive: Color by - colors.obtain("outlineOnDarkSolidTertiaryActive") - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public var outlineOnDarkTransparentDefaultHover: Color by - colors.obtain("outlineOnDarkTransparentDefaultHover") - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public var outlineOnDarkTransparentDefaultActive: Color by - colors.obtain("outlineOnDarkTransparentDefaultActive") - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public var outlineOnDarkTransparentDefault: Color by - colors.obtain("outlineOnDarkTransparentDefault") - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentPrimaryHover: Color by - colors.obtain("outlineOnDarkTransparentPrimaryHover") - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentPrimaryActive: Color by - colors.obtain("outlineOnDarkTransparentPrimaryActive") - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentSecondaryHover: Color by - colors.obtain("outlineOnDarkTransparentSecondaryHover") - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentSecondaryActive: Color by - colors.obtain("outlineOnDarkTransparentSecondaryActive") - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentTertiaryHover: Color by - colors.obtain("outlineOnDarkTransparentTertiaryHover") - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentTertiaryActive: Color by - colors.obtain("outlineOnDarkTransparentTertiaryActive") - - /** - * Бесцветная обводка на темном фоне - */ - public var outlineOnDarkClearHover: Color by colors.obtain("outlineOnDarkClearHover") - - /** - * Бесцветная обводка на темном фоне - */ - public var outlineOnDarkClearActive: Color by colors.obtain("outlineOnDarkClearActive") - - /** - * Бесцветная обводка на темном фоне - */ - public var outlineOnDarkClear: Color by colors.obtain("outlineOnDarkClear") - - /** - * Акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkAccentHover: Color by colors.obtain("outlineOnDarkAccentHover") - - /** - * Акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkAccentActive: Color by colors.obtain("outlineOnDarkAccentActive") - - /** - * Акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkAccent: Color by colors.obtain("outlineOnDarkAccent") - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkAccentMinorHover: Color by - colors.obtain("outlineOnDarkAccentMinorHover") - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkAccentMinorActive: Color by - colors.obtain("outlineOnDarkAccentMinorActive") - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkAccentMinor: Color by colors.obtain("outlineOnDarkAccentMinor") - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentAccentHover: Color by - colors.obtain("outlineOnDarkTransparentAccentHover") - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentAccentActive: Color by - colors.obtain("outlineOnDarkTransparentAccentActive") - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentAccent: Color by - colors.obtain("outlineOnDarkTransparentAccent") - - /** - * Промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromoHover: Color by colors.obtain("outlineOnDarkPromoHover") - - /** - * Промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromoActive: Color by colors.obtain("outlineOnDarkPromoActive") - - /** - * Промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromo: Color by colors.obtain("outlineOnDarkPromo") - - /** - * Минорный промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromoMinorHover: Color by colors.obtain("outlineOnDarkPromoMinorHover") - - /** - * Минорный промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromoMinorActive: Color by - colors.obtain("outlineOnDarkPromoMinorActive") - - /** - * Минорный промо цвет обводки на темном фоне - */ - public var outlineOnDarkPromoMinor: Color by colors.obtain("outlineOnDarkPromoMinor") - - /** - * Цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositiveHover: Color by colors.obtain("outlineOnDarkPositiveHover") - - /** - * Цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositiveActive: Color by colors.obtain("outlineOnDarkPositiveActive") - - /** - * Цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarningHover: Color by colors.obtain("outlineOnDarkWarningHover") - - /** - * Цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarningActive: Color by colors.obtain("outlineOnDarkWarningActive") - - /** - * Цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegativeHover: Color by colors.obtain("outlineOnDarkNegativeHover") - - /** - * Цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegativeActive: Color by colors.obtain("outlineOnDarkNegativeActive") - - /** - * Цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfoHover: Color by colors.obtain("outlineOnDarkInfoHover") - - /** - * Цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfoActive: Color by colors.obtain("outlineOnDarkInfoActive") - - /** - * Минорный цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositiveMinorHover: Color by - colors.obtain("outlineOnDarkPositiveMinorHover") - - /** - * Минорный цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositiveMinorActive: Color by - colors.obtain("outlineOnDarkPositiveMinorActive") - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarningMinorHover: Color by - colors.obtain("outlineOnDarkWarningMinorHover") - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarningMinorActive: Color by - colors.obtain("outlineOnDarkWarningMinorActive") - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegativeMinorHover: Color by - colors.obtain("outlineOnDarkNegativeMinorHover") - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegativeMinorActive: Color by - colors.obtain("outlineOnDarkNegativeMinorActive") - - /** - * Минорный цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfoMinorHover: Color by colors.obtain("outlineOnDarkInfoMinorHover") - - /** - * Минорный цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfoMinorActive: Color by colors.obtain("outlineOnDarkInfoMinorActive") - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public var outlineOnDarkTransparentPositiveHover: Color by - colors.obtain("outlineOnDarkTransparentPositiveHover") - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public var outlineOnDarkTransparentPositiveActive: Color by - colors.obtain("outlineOnDarkTransparentPositiveActive") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentWarningHover: Color by - colors.obtain("outlineOnDarkTransparentWarningHover") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentWarningActive: Color by - colors.obtain("outlineOnDarkTransparentWarningActive") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentNegativeHover: Color by - colors.obtain("outlineOnDarkTransparentNegativeHover") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentNegativeActive: Color by - colors.obtain("outlineOnDarkTransparentNegativeActive") - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public var outlineOnDarkTransparentInfoHover: Color by - colors.obtain("outlineOnDarkTransparentInfoHover") - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public var outlineOnDarkTransparentInfoActive: Color by - colors.obtain("outlineOnDarkTransparentInfoActive") - - /** - * light outline onDark outlineSolidDefaultHover - */ - public var outlineOnDarkSolidDefaultHover: Color by - colors.obtain("outlineOnDarkSolidDefaultHover") - - /** - * light outline onDark outlineSolidDefaultActive - */ - public var outlineOnDarkSolidDefaultActive: Color by - colors.obtain("outlineOnDarkSolidDefaultActive") - - /** - * light outline onDark outlineAccentMain - */ - public var outlineOnDarkAccentMain: Color by colors.obtain("outlineOnDarkAccentMain") - - /** - * light outline onDark outlineAccentMainHover - */ - public var outlineOnDarkAccentMainHover: Color by colors.obtain("outlineOnDarkAccentMainHover") - - /** - * light outline onDark outlineAccentMainActive - */ - public var outlineOnDarkAccentMainActive: Color by - colors.obtain("outlineOnDarkAccentMainActive") - - /** - * light outline onDark outlineAccentAthena - */ - public var outlineOnDarkAccentAthena: Color by colors.obtain("outlineOnDarkAccentAthena") - - /** - * light outline onDark outlineAccentAthenaHover - */ - public var outlineOnDarkAccentAthenaHover: Color by - colors.obtain("outlineOnDarkAccentAthenaHover") - - /** - * light outline onDark outlineAccentAthenaActive - */ - public var outlineOnDarkAccentAthenaActive: Color by - colors.obtain("outlineOnDarkAccentAthenaActive") - - /** - * light outline onDark outlineAccentJoy - */ - public var outlineOnDarkAccentJoy: Color by colors.obtain("outlineOnDarkAccentJoy") - - /** - * light outline onDark outlineAccentJoyHover - */ - public var outlineOnDarkAccentJoyHover: Color by colors.obtain("outlineOnDarkAccentJoyHover") - - /** - * light outline onDark outlineAccentJoyActive - */ - public var outlineOnDarkAccentJoyActive: Color by colors.obtain("outlineOnDarkAccentJoyActive") - - /** - * light outline onDark outlineAccentB2E - */ - public var outlineOnDarkAccentB2E: Color by colors.obtain("outlineOnDarkAccentB2E") - - /** - * light outline onDark outlineAccentB2EHover - */ - public var outlineOnDarkAccentB2EHover: Color by colors.obtain("outlineOnDarkAccentB2EHover") - - /** - * light outline onDark outlineAccentB2EActive - */ - public var outlineOnDarkAccentB2EActive: Color by colors.obtain("outlineOnDarkAccentB2EActive") - - /** - * light outline onDark outlineAccentBrand - */ - public var outlineOnDarkAccentBrand: Color by colors.obtain("outlineOnDarkAccentBrand") - - /** - * light outline onDark outlineAccentBrandHover - */ - public var outlineOnDarkAccentBrandHover: Color by - colors.obtain("outlineOnDarkAccentBrandHover") - - /** - * light outline onDark outlineAccentBrandActive - */ - public var outlineOnDarkAccentBrandActive: Color by - colors.obtain("outlineOnDarkAccentBrandActive") - - /** - * light outline onDark outlineAccentMainMinor - */ - public var outlineOnDarkAccentMainMinor: Color by colors.obtain("outlineOnDarkAccentMainMinor") - - /** - * light outline onDark outlineAccentMainMinorHover - */ - public var outlineOnDarkAccentMainMinorHover: Color by - colors.obtain("outlineOnDarkAccentMainMinorHover") - - /** - * light outline onDark outlineAccentMainMinorActive - */ - public var outlineOnDarkAccentMainMinorActive: Color by - colors.obtain("outlineOnDarkAccentMainMinorActive") - - /** - * light outline onDark outlineAccentAthenaMinor - */ - public var outlineOnDarkAccentAthenaMinor: Color by - colors.obtain("outlineOnDarkAccentAthenaMinor") - - /** - * light outline onDark outlineAccentAthenaMinorHover - */ - public var outlineOnDarkAccentAthenaMinorHover: Color by - colors.obtain("outlineOnDarkAccentAthenaMinorHover") - - /** - * light outline onDark outlineAccentAthenaMinorActive - */ - public var outlineOnDarkAccentAthenaMinorActive: Color by - colors.obtain("outlineOnDarkAccentAthenaMinorActive") - - /** - * light outline onDark outlineAccentJoyMinor - */ - public var outlineOnDarkAccentJoyMinor: Color by colors.obtain("outlineOnDarkAccentJoyMinor") - - /** - * light outline onDark outlineAccentJoyMinorHover - */ - public var outlineOnDarkAccentJoyMinorHover: Color by - colors.obtain("outlineOnDarkAccentJoyMinorHover") - - /** - * light outline onDark outlineAccentJoyMinorActive - */ - public var outlineOnDarkAccentJoyMinorActive: Color by - colors.obtain("outlineOnDarkAccentJoyMinorActive") - - /** - * light outline onDark outlineAccentB2EMinor - */ - public var outlineOnDarkAccentB2EMinor: Color by colors.obtain("outlineOnDarkAccentB2EMinor") - - /** - * light outline onDark outlineAccentB2EMinorHover - */ - public var outlineOnDarkAccentB2EMinorHover: Color by - colors.obtain("outlineOnDarkAccentB2EMinorHover") - - /** - * light outline onDark outlineAccentB2EMinorActive - */ - public var outlineOnDarkAccentB2EMinorActive: Color by - colors.obtain("outlineOnDarkAccentB2EMinorActive") - - /** - * light outline onDark outlineAccentBrandMinor - */ - public var outlineOnDarkAccentBrandMinor: Color by - colors.obtain("outlineOnDarkAccentBrandMinor") - - /** - * light outline onDark outlineAccentBrandMinorHover - */ - public var outlineOnDarkAccentBrandMinorHover: Color by - colors.obtain("outlineOnDarkAccentBrandMinorHover") - - /** - * light outline onDark outlineAccentBrandMinorActive - */ - public var outlineOnDarkAccentBrandMinorActive: Color by - colors.obtain("outlineOnDarkAccentBrandMinorActive") - - /** - * light outline onDark outlineTransparentAccentMain - */ - public var outlineOnDarkTransparentAccentMain: Color by - colors.obtain("outlineOnDarkTransparentAccentMain") - - /** - * light outline onDark outlineTransparentAccentMainHover - */ - public var outlineOnDarkTransparentAccentMainHover: Color by - colors.obtain("outlineOnDarkTransparentAccentMainHover") - - /** - * light outline onDark outlineTransparentAccentMainActive - */ - public var outlineOnDarkTransparentAccentMainActive: Color by - colors.obtain("outlineOnDarkTransparentAccentMainActive") - - /** - * light outline onDark outlineTransparentAccentAthena - */ - public var outlineOnDarkTransparentAccentAthena: Color by - colors.obtain("outlineOnDarkTransparentAccentAthena") - - /** - * light outline onDark outlineTransparentAccentAthenaHover - */ - public var outlineOnDarkTransparentAccentAthenaHover: Color by - colors.obtain("outlineOnDarkTransparentAccentAthenaHover") - - /** - * light outline onDark outlineTransparentAccentAthenaActive - */ - public var outlineOnDarkTransparentAccentAthenaActive: Color by - colors.obtain("outlineOnDarkTransparentAccentAthenaActive") - - /** - * light outline onDark outlineTransparentAccentJoy - */ - public var outlineOnDarkTransparentAccentJoy: Color by - colors.obtain("outlineOnDarkTransparentAccentJoy") - - /** - * light outline onDark outlineTransparentAccentJoyHover - */ - public var outlineOnDarkTransparentAccentJoyHover: Color by - colors.obtain("outlineOnDarkTransparentAccentJoyHover") - - /** - * light outline onDark outlineTransparentAccentJoyActive - */ - public var outlineOnDarkTransparentAccentJoyActive: Color by - colors.obtain("outlineOnDarkTransparentAccentJoyActive") - - /** - * light outline onDark outlineTransparentAccentB2E - */ - public var outlineOnDarkTransparentAccentB2E: Color by - colors.obtain("outlineOnDarkTransparentAccentB2E") - - /** - * light outline onDark outlineTransparentAccentB2EHover - */ - public var outlineOnDarkTransparentAccentB2EHover: Color by - colors.obtain("outlineOnDarkTransparentAccentB2EHover") - - /** - * light outline onDark outlineTransparentAccentB2EActive - */ - public var outlineOnDarkTransparentAccentB2EActive: Color by - colors.obtain("outlineOnDarkTransparentAccentB2EActive") - - /** - * light outline onDark outlineTransparentAccentBrand - */ - public var outlineOnDarkTransparentAccentBrand: Color by - colors.obtain("outlineOnDarkTransparentAccentBrand") - - /** - * light outline onDark outlineTransparentAccentBrandHover - */ - public var outlineOnDarkTransparentAccentBrandHover: Color by - colors.obtain("outlineOnDarkTransparentAccentBrandHover") - - /** - * light outline onDark outlineTransparentAccentBrandActive - */ - public var outlineOnDarkTransparentAccentBrandActive: Color by - colors.obtain("outlineOnDarkTransparentAccentBrandActive") - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidPrimary: Color by colors.obtain("outlineOnDarkSolidPrimary") - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidSecondary: Color by colors.obtain("outlineOnDarkSolidSecondary") - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkSolidTertiary: Color by colors.obtain("outlineOnDarkSolidTertiary") - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentPrimary: Color by - colors.obtain("outlineOnDarkTransparentPrimary") - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentSecondary: Color by - colors.obtain("outlineOnDarkTransparentSecondary") - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public var outlineOnDarkTransparentTertiary: Color by - colors.obtain("outlineOnDarkTransparentTertiary") - - /** - * light outline onDark outlineSolidDefault - */ - public var outlineOnDarkSolidDefault: Color by colors.obtain("outlineOnDarkSolidDefault") - - /** - * Цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositive: Color by colors.obtain("outlineOnDarkPositive") - - /** - * Цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarning: Color by colors.obtain("outlineOnDarkWarning") - - /** - * Цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegative: Color by colors.obtain("outlineOnDarkNegative") - - /** - * Цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfo: Color by colors.obtain("outlineOnDarkInfo") - - /** - * Минорный цвет обводки успех на темном фоне - */ - public var outlineOnDarkPositiveMinor: Color by colors.obtain("outlineOnDarkPositiveMinor") - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkWarningMinor: Color by colors.obtain("outlineOnDarkWarningMinor") - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public var outlineOnDarkNegativeMinor: Color by colors.obtain("outlineOnDarkNegativeMinor") - - /** - * Минорный цвет обводки информация на темном фоне - */ - public var outlineOnDarkInfoMinor: Color by colors.obtain("outlineOnDarkInfoMinor") - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public var outlineOnDarkTransparentPositive: Color by - colors.obtain("outlineOnDarkTransparentPositive") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentWarning: Color by - colors.obtain("outlineOnDarkTransparentWarning") - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public var outlineOnDarkTransparentNegative: Color by - colors.obtain("outlineOnDarkTransparentNegative") - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public var outlineOnDarkTransparentInfo: Color by colors.obtain("outlineOnDarkTransparentInfo") - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidPrimaryHover: Color by - colors.obtain("outlineOnLightSolidPrimaryHover") - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidPrimaryActive: Color by - colors.obtain("outlineOnLightSolidPrimaryActive") - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidSecondaryHover: Color by - colors.obtain("outlineOnLightSolidSecondaryHover") - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidSecondaryActive: Color by - colors.obtain("outlineOnLightSolidSecondaryActive") - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidTertiaryHover: Color by - colors.obtain("outlineOnLightSolidTertiaryHover") - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidTertiaryActive: Color by - colors.obtain("outlineOnLightSolidTertiaryActive") - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public var outlineOnLightTransparentDefaultHover: Color by - colors.obtain("outlineOnLightTransparentDefaultHover") - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public var outlineOnLightTransparentDefaultActive: Color by - colors.obtain("outlineOnLightTransparentDefaultActive") - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public var outlineOnLightTransparentDefault: Color by - colors.obtain("outlineOnLightTransparentDefault") - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentPrimaryHover: Color by - colors.obtain("outlineOnLightTransparentPrimaryHover") - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentPrimaryActive: Color by - colors.obtain("outlineOnLightTransparentPrimaryActive") - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentSecondaryHover: Color by - colors.obtain("outlineOnLightTransparentSecondaryHover") - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentSecondaryActive: Color by - colors.obtain("outlineOnLightTransparentSecondaryActive") - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentTertiaryHover: Color by - colors.obtain("outlineOnLightTransparentTertiaryHover") - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentTertiaryActive: Color by - colors.obtain("outlineOnLightTransparentTertiaryActive") - - /** - * Бесцветная обводка на светлом фоне - */ - public var outlineOnLightClearHover: Color by colors.obtain("outlineOnLightClearHover") - - /** - * Бесцветная обводка на светлом фоне - */ - public var outlineOnLightClearActive: Color by colors.obtain("outlineOnLightClearActive") - - /** - * Бесцветная обводка на светлом фоне - */ - public var outlineOnLightClear: Color by colors.obtain("outlineOnLightClear") - - /** - * Акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightAccentHover: Color by colors.obtain("outlineOnLightAccentHover") - - /** - * Акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightAccentActive: Color by colors.obtain("outlineOnLightAccentActive") - - /** - * Акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightAccent: Color by colors.obtain("outlineOnLightAccent") - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightAccentMinorHover: Color by - colors.obtain("outlineOnLightAccentMinorHover") - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightAccentMinorActive: Color by - colors.obtain("outlineOnLightAccentMinorActive") - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightAccentMinor: Color by colors.obtain("outlineOnLightAccentMinor") - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentAccentHover: Color by - colors.obtain("outlineOnLightTransparentAccentHover") - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentAccentActive: Color by - colors.obtain("outlineOnLightTransparentAccentActive") - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentAccent: Color by - colors.obtain("outlineOnLightTransparentAccent") - - /** - * Промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromoHover: Color by colors.obtain("outlineOnLightPromoHover") - - /** - * Промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromoActive: Color by colors.obtain("outlineOnLightPromoActive") - - /** - * Промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromo: Color by colors.obtain("outlineOnLightPromo") - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromoMinorHover: Color by - colors.obtain("outlineOnLightPromoMinorHover") - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromoMinorActive: Color by - colors.obtain("outlineOnLightPromoMinorActive") - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public var outlineOnLightPromoMinor: Color by colors.obtain("outlineOnLightPromoMinor") - - /** - * Цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositiveHover: Color by colors.obtain("outlineOnLightPositiveHover") - - /** - * Цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositiveActive: Color by colors.obtain("outlineOnLightPositiveActive") - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarningHover: Color by colors.obtain("outlineOnLightWarningHover") - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarningActive: Color by colors.obtain("outlineOnLightWarningActive") - - /** - * Цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegativeHover: Color by colors.obtain("outlineOnLightNegativeHover") - - /** - * Цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegativeActive: Color by colors.obtain("outlineOnLightNegativeActive") - - /** - * Цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfoHover: Color by colors.obtain("outlineOnLightInfoHover") - - /** - * Цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfoActive: Color by colors.obtain("outlineOnLightInfoActive") - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositiveMinorHover: Color by - colors.obtain("outlineOnLightPositiveMinorHover") - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositiveMinorActive: Color by - colors.obtain("outlineOnLightPositiveMinorActive") - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarningMinorHover: Color by - colors.obtain("outlineOnLightWarningMinorHover") - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarningMinorActive: Color by - colors.obtain("outlineOnLightWarningMinorActive") - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegativeMinorHover: Color by - colors.obtain("outlineOnLightNegativeMinorHover") - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegativeMinorActive: Color by - colors.obtain("outlineOnLightNegativeMinorActive") - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfoMinorHover: Color by colors.obtain("outlineOnLightInfoMinorHover") - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfoMinorActive: Color by - colors.obtain("outlineOnLightInfoMinorActive") - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public var outlineOnLightTransparentPositiveHover: Color by - colors.obtain("outlineOnLightTransparentPositiveHover") - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public var outlineOnLightTransparentPositiveActive: Color by - colors.obtain("outlineOnLightTransparentPositiveActive") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentWarningHover: Color by - colors.obtain("outlineOnLightTransparentWarningHover") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentWarningActive: Color by - colors.obtain("outlineOnLightTransparentWarningActive") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentNegativeHover: Color by - colors.obtain("outlineOnLightTransparentNegativeHover") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentNegativeActive: Color by - colors.obtain("outlineOnLightTransparentNegativeActive") - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public var outlineOnLightTransparentInfoHover: Color by - colors.obtain("outlineOnLightTransparentInfoHover") - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public var outlineOnLightTransparentInfoActive: Color by - colors.obtain("outlineOnLightTransparentInfoActive") - - /** - * light outline onLight outlineSolidDefaultHover - */ - public var outlineOnLightSolidDefaultHover: Color by - colors.obtain("outlineOnLightSolidDefaultHover") - - /** - * light outline onLight outlineSolidDefaultActive - */ - public var outlineOnLightSolidDefaultActive: Color by - colors.obtain("outlineOnLightSolidDefaultActive") - - /** - * light outline onLight outlineAccentMain - */ - public var outlineOnLightAccentMain: Color by colors.obtain("outlineOnLightAccentMain") - - /** - * light outline onLight outlineAccentMainHover - */ - public var outlineOnLightAccentMainHover: Color by - colors.obtain("outlineOnLightAccentMainHover") - - /** - * light outline onLight outlineAccentMainActive - */ - public var outlineOnLightAccentMainActive: Color by - colors.obtain("outlineOnLightAccentMainActive") - - /** - * light outline onLight outlineAccentAthena - */ - public var outlineOnLightAccentAthena: Color by colors.obtain("outlineOnLightAccentAthena") - - /** - * light outline onLight outlineAccentAthenaHover - */ - public var outlineOnLightAccentAthenaHover: Color by - colors.obtain("outlineOnLightAccentAthenaHover") - - /** - * light outline onLight outlineAccentAthenaActive - */ - public var outlineOnLightAccentAthenaActive: Color by - colors.obtain("outlineOnLightAccentAthenaActive") - - /** - * light outline onLight outlineAccentJoy - */ - public var outlineOnLightAccentJoy: Color by colors.obtain("outlineOnLightAccentJoy") - - /** - * light outline onLight outlineAccentJoyHover - */ - public var outlineOnLightAccentJoyHover: Color by colors.obtain("outlineOnLightAccentJoyHover") - - /** - * light outline onLight outlineAccentJoyActive - */ - public var outlineOnLightAccentJoyActive: Color by - colors.obtain("outlineOnLightAccentJoyActive") - - /** - * light outline onLight outlineAccentB2E - */ - public var outlineOnLightAccentB2E: Color by colors.obtain("outlineOnLightAccentB2E") - - /** - * light outline onLight outlineAccentB2EHover - */ - public var outlineOnLightAccentB2EHover: Color by colors.obtain("outlineOnLightAccentB2EHover") - - /** - * light outline onLight outlineAccentB2EActive - */ - public var outlineOnLightAccentB2EActive: Color by - colors.obtain("outlineOnLightAccentB2EActive") - - /** - * light outline onLight outlineAccentBrand - */ - public var outlineOnLightAccentBrand: Color by colors.obtain("outlineOnLightAccentBrand") - - /** - * light outline onLight outlineAccentBrandHover - */ - public var outlineOnLightAccentBrandHover: Color by - colors.obtain("outlineOnLightAccentBrandHover") - - /** - * light outline onLight outlineAccentBrandActive - */ - public var outlineOnLightAccentBrandActive: Color by - colors.obtain("outlineOnLightAccentBrandActive") - - /** - * light outline onLight outlineAccentMainMinor - */ - public var outlineOnLightAccentMainMinor: Color by - colors.obtain("outlineOnLightAccentMainMinor") - - /** - * light outline onLight outlineAccentMainMinorHover - */ - public var outlineOnLightAccentMainMinorHover: Color by - colors.obtain("outlineOnLightAccentMainMinorHover") - - /** - * light outline onLight outlineAccentMainMinorActive - */ - public var outlineOnLightAccentMainMinorActive: Color by - colors.obtain("outlineOnLightAccentMainMinorActive") - - /** - * light outline onLight outlineAccentAthenaMinor - */ - public var outlineOnLightAccentAthenaMinor: Color by - colors.obtain("outlineOnLightAccentAthenaMinor") - - /** - * light outline onLight outlineAccentAthenaMinorHover - */ - public var outlineOnLightAccentAthenaMinorHover: Color by - colors.obtain("outlineOnLightAccentAthenaMinorHover") - - /** - * light outline onLight outlineAccentAthenaMinorActive - */ - public var outlineOnLightAccentAthenaMinorActive: Color by - colors.obtain("outlineOnLightAccentAthenaMinorActive") - - /** - * light outline onLight outlineAccentJoyMinor - */ - public var outlineOnLightAccentJoyMinor: Color by colors.obtain("outlineOnLightAccentJoyMinor") - - /** - * light outline onLight outlineAccentJoyMinorHover - */ - public var outlineOnLightAccentJoyMinorHover: Color by - colors.obtain("outlineOnLightAccentJoyMinorHover") - - /** - * light outline onLight outlineAccentJoyMinorActive - */ - public var outlineOnLightAccentJoyMinorActive: Color by - colors.obtain("outlineOnLightAccentJoyMinorActive") - - /** - * light outline onLight outlineAccentB2EMinor - */ - public var outlineOnLightAccentB2EMinor: Color by colors.obtain("outlineOnLightAccentB2EMinor") - - /** - * light outline onLight outlineAccentB2EMinorHover - */ - public var outlineOnLightAccentB2EMinorHover: Color by - colors.obtain("outlineOnLightAccentB2EMinorHover") - - /** - * light outline onLight outlineAccentB2EMinorActive - */ - public var outlineOnLightAccentB2EMinorActive: Color by - colors.obtain("outlineOnLightAccentB2EMinorActive") - - /** - * light outline onLight outlineAccentBrandMinor - */ - public var outlineOnLightAccentBrandMinor: Color by - colors.obtain("outlineOnLightAccentBrandMinor") - - /** - * light outline onLight outlineAccentBrandMinorHover - */ - public var outlineOnLightAccentBrandMinorHover: Color by - colors.obtain("outlineOnLightAccentBrandMinorHover") - - /** - * light outline onLight outlineAccentBrandMinorActive - */ - public var outlineOnLightAccentBrandMinorActive: Color by - colors.obtain("outlineOnLightAccentBrandMinorActive") - - /** - * light outline onLight outlineTransparentAccentMain - */ - public var outlineOnLightTransparentAccentMain: Color by - colors.obtain("outlineOnLightTransparentAccentMain") - - /** - * light outline onLight outlineTransparentAccentMainHover - */ - public var outlineOnLightTransparentAccentMainHover: Color by - colors.obtain("outlineOnLightTransparentAccentMainHover") - - /** - * light outline onLight outlineTransparentAccentMainActive - */ - public var outlineOnLightTransparentAccentMainActive: Color by - colors.obtain("outlineOnLightTransparentAccentMainActive") - - /** - * light outline onLight outlineTransparentAccentAthena - */ - public var outlineOnLightTransparentAccentAthena: Color by - colors.obtain("outlineOnLightTransparentAccentAthena") - - /** - * light outline onLight outlineTransparentAccentAthenaHover - */ - public var outlineOnLightTransparentAccentAthenaHover: Color by - colors.obtain("outlineOnLightTransparentAccentAthenaHover") - - /** - * light outline onLight outlineTransparentAccentAthenaActive - */ - public var outlineOnLightTransparentAccentAthenaActive: Color by - colors.obtain("outlineOnLightTransparentAccentAthenaActive") - - /** - * light outline onLight outlineTransparentAccentJoy - */ - public var outlineOnLightTransparentAccentJoy: Color by - colors.obtain("outlineOnLightTransparentAccentJoy") - - /** - * light outline onLight outlineTransparentAccentJoyHover - */ - public var outlineOnLightTransparentAccentJoyHover: Color by - colors.obtain("outlineOnLightTransparentAccentJoyHover") - - /** - * light outline onLight outlineTransparentAccentJoyActive - */ - public var outlineOnLightTransparentAccentJoyActive: Color by - colors.obtain("outlineOnLightTransparentAccentJoyActive") - - /** - * light outline onLight outlineTransparentAccentB2E - */ - public var outlineOnLightTransparentAccentB2E: Color by - colors.obtain("outlineOnLightTransparentAccentB2E") - - /** - * light outline onLight outlineTransparentAccentB2EHover - */ - public var outlineOnLightTransparentAccentB2EHover: Color by - colors.obtain("outlineOnLightTransparentAccentB2EHover") - - /** - * light outline onLight outlineTransparentAccentB2EActive - */ - public var outlineOnLightTransparentAccentB2EActive: Color by - colors.obtain("outlineOnLightTransparentAccentB2EActive") - - /** - * light outline onLight outlineTransparentAccentBrand - */ - public var outlineOnLightTransparentAccentBrand: Color by - colors.obtain("outlineOnLightTransparentAccentBrand") - - /** - * light outline onLight outlineTransparentAccentBrandHover - */ - public var outlineOnLightTransparentAccentBrandHover: Color by - colors.obtain("outlineOnLightTransparentAccentBrandHover") - - /** - * light outline onLight outlineTransparentAccentBrandActive - */ - public var outlineOnLightTransparentAccentBrandActive: Color by - colors.obtain("outlineOnLightTransparentAccentBrandActive") - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidPrimary: Color by colors.obtain("outlineOnLightSolidPrimary") - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidSecondary: Color by colors.obtain("outlineOnLightSolidSecondary") - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightSolidTertiary: Color by colors.obtain("outlineOnLightSolidTertiary") - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentPrimary: Color by - colors.obtain("outlineOnLightTransparentPrimary") - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentSecondary: Color by - colors.obtain("outlineOnLightTransparentSecondary") - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public var outlineOnLightTransparentTertiary: Color by - colors.obtain("outlineOnLightTransparentTertiary") - - /** - * light outline onLight outlineSolidDefault - */ - public var outlineOnLightSolidDefault: Color by colors.obtain("outlineOnLightSolidDefault") - - /** - * Цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositive: Color by colors.obtain("outlineOnLightPositive") - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarning: Color by colors.obtain("outlineOnLightWarning") - - /** - * Цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegative: Color by colors.obtain("outlineOnLightNegative") - - /** - * Цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfo: Color by colors.obtain("outlineOnLightInfo") - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public var outlineOnLightPositiveMinor: Color by colors.obtain("outlineOnLightPositiveMinor") - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightWarningMinor: Color by colors.obtain("outlineOnLightWarningMinor") - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public var outlineOnLightNegativeMinor: Color by colors.obtain("outlineOnLightNegativeMinor") - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public var outlineOnLightInfoMinor: Color by colors.obtain("outlineOnLightInfoMinor") - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public var outlineOnLightTransparentPositive: Color by - colors.obtain("outlineOnLightTransparentPositive") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentWarning: Color by - colors.obtain("outlineOnLightTransparentWarning") - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public var outlineOnLightTransparentNegative: Color by - colors.obtain("outlineOnLightTransparentNegative") - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public var outlineOnLightTransparentInfo: Color by - colors.obtain("outlineOnLightTransparentInfo") - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public var outlineInverseSolidPrimaryHover: Color by - colors.obtain("outlineInverseSolidPrimaryHover") - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public var outlineInverseSolidPrimaryActive: Color by - colors.obtain("outlineInverseSolidPrimaryActive") - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public var outlineInverseSolidSecondaryHover: Color by - colors.obtain("outlineInverseSolidSecondaryHover") - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public var outlineInverseSolidSecondaryActive: Color by - colors.obtain("outlineInverseSolidSecondaryActive") - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public var outlineInverseSolidTertiaryHover: Color by - colors.obtain("outlineInverseSolidTertiaryHover") - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public var outlineInverseSolidTertiaryActive: Color by - colors.obtain("outlineInverseSolidTertiaryActive") - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public var outlineInverseTransparentDefaultHover: Color by - colors.obtain("outlineInverseTransparentDefaultHover") - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public var outlineInverseTransparentDefaultActive: Color by - colors.obtain("outlineInverseTransparentDefaultActive") - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public var outlineInverseTransparentDefault: Color by - colors.obtain("outlineInverseTransparentDefault") - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public var outlineInverseTransparentPrimaryHover: Color by - colors.obtain("outlineInverseTransparentPrimaryHover") - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public var outlineInverseTransparentPrimaryActive: Color by - colors.obtain("outlineInverseTransparentPrimaryActive") - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public var outlineInverseTransparentSecondaryHover: Color by - colors.obtain("outlineInverseTransparentSecondaryHover") - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public var outlineInverseTransparentSecondaryActive: Color by - colors.obtain("outlineInverseTransparentSecondaryActive") - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public var outlineInverseTransparentTertiaryHover: Color by - colors.obtain("outlineInverseTransparentTertiaryHover") - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public var outlineInverseTransparentTertiaryActive: Color by - colors.obtain("outlineInverseTransparentTertiaryActive") - - /** - * Инвертированная бесцветная обводка - */ - public var outlineInverseClearHover: Color by colors.obtain("outlineInverseClearHover") - - /** - * Инвертированная бесцветная обводка - */ - public var outlineInverseClearActive: Color by colors.obtain("outlineInverseClearActive") - - /** - * Инвертированная бесцветная обводка - */ - public var outlineInverseClear: Color by colors.obtain("outlineInverseClear") - - /** - * Инвертированный акцентный цвет обводки - */ - public var outlineInverseAccentHover: Color by colors.obtain("outlineInverseAccentHover") - - /** - * Инвертированный акцентный цвет обводки - */ - public var outlineInverseAccentActive: Color by colors.obtain("outlineInverseAccentActive") - - /** - * Инвертированный акцентный цвет обводки - */ - public var outlineInverseAccent: Color by colors.obtain("outlineInverseAccent") - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public var outlineInverseAccentMinorHover: Color by - colors.obtain("outlineInverseAccentMinorHover") - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public var outlineInverseAccentMinorActive: Color by - colors.obtain("outlineInverseAccentMinorActive") - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public var outlineInverseAccentMinor: Color by colors.obtain("outlineInverseAccentMinor") - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public var outlineInverseTransparentAccentHover: Color by - colors.obtain("outlineInverseTransparentAccentHover") - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public var outlineInverseTransparentAccentActive: Color by - colors.obtain("outlineInverseTransparentAccentActive") - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public var outlineInverseTransparentAccent: Color by - colors.obtain("outlineInverseTransparentAccent") - - /** - * Инвертированный промо цвет обводки - */ - public var outlineInversePromoHover: Color by colors.obtain("outlineInversePromoHover") - - /** - * Инвертированный промо цвет обводки - */ - public var outlineInversePromoActive: Color by colors.obtain("outlineInversePromoActive") - - /** - * Инвертированный промо цвет обводки - */ - public var outlineInversePromo: Color by colors.obtain("outlineInversePromo") - - /** - * Инвертированный минорный промо цвет обводки - */ - public var outlineInversePromoMinorHover: Color by - colors.obtain("outlineInversePromoMinorHover") - - /** - * Инвертированный минорный промо цвет обводки - */ - public var outlineInversePromoMinorActive: Color by - colors.obtain("outlineInversePromoMinorActive") - - /** - * Инвертированный минорный промо цвет обводки - */ - public var outlineInversePromoMinor: Color by colors.obtain("outlineInversePromoMinor") - - /** - * Инвертированный цвет обводки успех - */ - public var outlineInversePositiveHover: Color by colors.obtain("outlineInversePositiveHover") - - /** - * Инвертированный цвет обводки успех - */ - public var outlineInversePositiveActive: Color by colors.obtain("outlineInversePositiveActive") - - /** - * Инвертированный цвет обводки предупреждение - */ - public var outlineInverseWarningHover: Color by colors.obtain("outlineInverseWarningHover") - - /** - * Инвертированный цвет обводки предупреждение - */ - public var outlineInverseWarningActive: Color by colors.obtain("outlineInverseWarningActive") - - /** - * Инвертированный цвет обводки ошибка - */ - public var outlineInverseNegativeHover: Color by colors.obtain("outlineInverseNegativeHover") - - /** - * Инвертированный цвет обводки ошибка - */ - public var outlineInverseNegativeActive: Color by colors.obtain("outlineInverseNegativeActive") - - /** - * Инвертированный цвет обводки информация - */ - public var outlineInverseInfoHover: Color by colors.obtain("outlineInverseInfoHover") - - /** - * Инвертированный цвет обводки информация - */ - public var outlineInverseInfoActive: Color by colors.obtain("outlineInverseInfoActive") - - /** - * Инвертированный минорный цвет обводки успех - */ - public var outlineInversePositiveMinorHover: Color by - colors.obtain("outlineInversePositiveMinorHover") - - /** - * Инвертированный минорный цвет обводки успех - */ - public var outlineInversePositiveMinorActive: Color by - colors.obtain("outlineInversePositiveMinorActive") - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public var outlineInverseWarningMinorHover: Color by - colors.obtain("outlineInverseWarningMinorHover") - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public var outlineInverseWarningMinorActive: Color by - colors.obtain("outlineInverseWarningMinorActive") - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public var outlineInverseNegativeMinorHover: Color by - colors.obtain("outlineInverseNegativeMinorHover") - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public var outlineInverseNegativeMinorActive: Color by - colors.obtain("outlineInverseNegativeMinorActive") - - /** - * Инвертированный минорный цвет обводки информация - */ - public var outlineInverseInfoMinorHover: Color by colors.obtain("outlineInverseInfoMinorHover") - - /** - * Инвертированный минорный цвет обводки информация - */ - public var outlineInverseInfoMinorActive: Color by - colors.obtain("outlineInverseInfoMinorActive") - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public var outlineInverseTransparentPositiveHover: Color by - colors.obtain("outlineInverseTransparentPositiveHover") - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public var outlineInverseTransparentPositiveActive: Color by - colors.obtain("outlineInverseTransparentPositiveActive") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentWarningHover: Color by - colors.obtain("outlineInverseTransparentWarningHover") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentWarningActive: Color by - colors.obtain("outlineInverseTransparentWarningActive") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentNegativeHover: Color by - colors.obtain("outlineInverseTransparentNegativeHover") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentNegativeActive: Color by - colors.obtain("outlineInverseTransparentNegativeActive") - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public var outlineInverseTransparentInfoHover: Color by - colors.obtain("outlineInverseTransparentInfoHover") - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public var outlineInverseTransparentInfoActive: Color by - colors.obtain("outlineInverseTransparentInfoActive") - - /** - * light outline inverse outlineAccentMainHover - */ - public var outlineInverseAccentMainHover: Color by - colors.obtain("outlineInverseAccentMainHover") - - /** - * light outline inverse outlineAccentMainActive - */ - public var outlineInverseAccentMainActive: Color by - colors.obtain("outlineInverseAccentMainActive") - - /** - * light outline inverse outlineAccentAthenaHover - */ - public var outlineInverseAccentAthenaHover: Color by - colors.obtain("outlineInverseAccentAthenaHover") - - /** - * light outline inverse outlineAccentAthenaActive - */ - public var outlineInverseAccentAthenaActive: Color by - colors.obtain("outlineInverseAccentAthenaActive") - - /** - * light outline inverse outlineAccentJoyHover - */ - public var outlineInverseAccentJoyHover: Color by colors.obtain("outlineInverseAccentJoyHover") - - /** - * light outline inverse outlineAccentJoyActive - */ - public var outlineInverseAccentJoyActive: Color by - colors.obtain("outlineInverseAccentJoyActive") - - /** - * light outline inverse outlineAccentB2EHover - */ - public var outlineInverseAccentB2EHover: Color by colors.obtain("outlineInverseAccentB2EHover") - - /** - * light outline inverse outlineAccentB2EActive - */ - public var outlineInverseAccentB2EActive: Color by - colors.obtain("outlineInverseAccentB2EActive") - - /** - * light outline inverse outlineAccentBrandHover - */ - public var outlineInverseAccentBrandHover: Color by - colors.obtain("outlineInverseAccentBrandHover") - - /** - * light outline inverse outlineAccentBrandActive - */ - public var outlineInverseAccentBrandActive: Color by - colors.obtain("outlineInverseAccentBrandActive") - - /** - * light outline inverse outlineAccentMainMinorHover - */ - public var outlineInverseAccentMainMinorHover: Color by - colors.obtain("outlineInverseAccentMainMinorHover") - - /** - * light outline inverse outlineAccentMainMinorActive - */ - public var outlineInverseAccentMainMinorActive: Color by - colors.obtain("outlineInverseAccentMainMinorActive") - - /** - * light outline inverse outlineAccentAthenaMinorHover - */ - public var outlineInverseAccentAthenaMinorHover: Color by - colors.obtain("outlineInverseAccentAthenaMinorHover") - - /** - * light outline inverse outlineAccentAthenaMinorActive - */ - public var outlineInverseAccentAthenaMinorActive: Color by - colors.obtain("outlineInverseAccentAthenaMinorActive") - - /** - * light outline inverse outlineAccentJoyMinorHover - */ - public var outlineInverseAccentJoyMinorHover: Color by - colors.obtain("outlineInverseAccentJoyMinorHover") - - /** - * light outline inverse outlineAccentJoyMinorActive - */ - public var outlineInverseAccentJoyMinorActive: Color by - colors.obtain("outlineInverseAccentJoyMinorActive") - - /** - * light outline inverse outlineAccentB2EMinorHover - */ - public var outlineInverseAccentB2EMinorHover: Color by - colors.obtain("outlineInverseAccentB2EMinorHover") - - /** - * light outline inverse outlineAccentB2EMinorActive - */ - public var outlineInverseAccentB2EMinorActive: Color by - colors.obtain("outlineInverseAccentB2EMinorActive") - - /** - * light outline inverse outlineAccentBrandMinorHover - */ - public var outlineInverseAccentBrandMinorHover: Color by - colors.obtain("outlineInverseAccentBrandMinorHover") - - /** - * light outline inverse outlineAccentBrandMinorActive - */ - public var outlineInverseAccentBrandMinorActive: Color by - colors.obtain("outlineInverseAccentBrandMinorActive") - - /** - * light outline inverse outlineTransparentAccentMainHover - */ - public var outlineInverseTransparentAccentMainHover: Color by - colors.obtain("outlineInverseTransparentAccentMainHover") - - /** - * light outline inverse outlineTransparentAccentMainActive - */ - public var outlineInverseTransparentAccentMainActive: Color by - colors.obtain("outlineInverseTransparentAccentMainActive") - - /** - * light outline inverse outlineTransparentAccentAthenaHover - */ - public var outlineInverseTransparentAccentAthenaHover: Color by - colors.obtain("outlineInverseTransparentAccentAthenaHover") - - /** - * light outline inverse outlineTransparentAccentAthenaActive - */ - public var outlineInverseTransparentAccentAthenaActive: Color by - colors.obtain("outlineInverseTransparentAccentAthenaActive") - - /** - * light outline inverse outlineTransparentAccentJoyHover - */ - public var outlineInverseTransparentAccentJoyHover: Color by - colors.obtain("outlineInverseTransparentAccentJoyHover") - - /** - * light outline inverse outlineTransparentAccentJoyActive - */ - public var outlineInverseTransparentAccentJoyActive: Color by - colors.obtain("outlineInverseTransparentAccentJoyActive") - - /** - * light outline inverse outlineTransparentAccentB2EHover - */ - public var outlineInverseTransparentAccentB2EHover: Color by - colors.obtain("outlineInverseTransparentAccentB2EHover") - - /** - * light outline inverse outlineTransparentAccentB2EActive - */ - public var outlineInverseTransparentAccentB2EActive: Color by - colors.obtain("outlineInverseTransparentAccentB2EActive") - - /** - * light outline inverse outlineTransparentAccentBrandHover - */ - public var outlineInverseTransparentAccentBrandHover: Color by - colors.obtain("outlineInverseTransparentAccentBrandHover") - - /** - * light outline inverse outlineTransparentAccentBrandActive - */ - public var outlineInverseTransparentAccentBrandActive: Color by - colors.obtain("outlineInverseTransparentAccentBrandActive") - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public var outlineInverseSolidPrimary: Color by colors.obtain("outlineInverseSolidPrimary") - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public var outlineInverseSolidSecondary: Color by colors.obtain("outlineInverseSolidSecondary") - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public var outlineInverseSolidTertiary: Color by colors.obtain("outlineInverseSolidTertiary") - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public var outlineInverseTransparentPrimary: Color by - colors.obtain("outlineInverseTransparentPrimary") - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public var outlineInverseTransparentSecondary: Color by - colors.obtain("outlineInverseTransparentSecondary") - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public var outlineInverseTransparentTertiary: Color by - colors.obtain("outlineInverseTransparentTertiary") - - /** - * Инвертированный цвет обводки успех - */ - public var outlineInversePositive: Color by colors.obtain("outlineInversePositive") - - /** - * Инвертированный цвет обводки предупреждение - */ - public var outlineInverseWarning: Color by colors.obtain("outlineInverseWarning") - - /** - * Инвертированный цвет обводки ошибка - */ - public var outlineInverseNegative: Color by colors.obtain("outlineInverseNegative") - - /** - * Инвертированный цвет обводки информация - */ - public var outlineInverseInfo: Color by colors.obtain("outlineInverseInfo") - - /** - * Инвертированный минорный цвет обводки успех - */ - public var outlineInversePositiveMinor: Color by colors.obtain("outlineInversePositiveMinor") - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public var outlineInverseWarningMinor: Color by colors.obtain("outlineInverseWarningMinor") - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public var outlineInverseNegativeMinor: Color by colors.obtain("outlineInverseNegativeMinor") - - /** - * Инвертированный минорный цвет обводки информация - */ - public var outlineInverseInfoMinor: Color by colors.obtain("outlineInverseInfoMinor") - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public var outlineInverseTransparentPositive: Color by - colors.obtain("outlineInverseTransparentPositive") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentWarning: Color by - colors.obtain("outlineInverseTransparentWarning") - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public var outlineInverseTransparentNegative: Color by - colors.obtain("outlineInverseTransparentNegative") - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public var outlineInverseTransparentInfo: Color by - colors.obtain("outlineInverseTransparentInfo") - - /** - * light outline inverse outlineAccentMain - */ - public var outlineInverseAccentMain: Color by colors.obtain("outlineInverseAccentMain") - - /** - * light outline inverse outlineAccentAthena - */ - public var outlineInverseAccentAthena: Color by colors.obtain("outlineInverseAccentAthena") - - /** - * light outline inverse outlineAccentJoy - */ - public var outlineInverseAccentJoy: Color by colors.obtain("outlineInverseAccentJoy") - - /** - * light outline inverse outlineAccentB2E - */ - public var outlineInverseAccentB2E: Color by colors.obtain("outlineInverseAccentB2E") - - /** - * light outline inverse outlineAccentBrand - */ - public var outlineInverseAccentBrand: Color by colors.obtain("outlineInverseAccentBrand") - - /** - * light outline inverse outlineAccentMainMinor - */ - public var outlineInverseAccentMainMinor: Color by - colors.obtain("outlineInverseAccentMainMinor") - - /** - * light outline inverse outlineAccentAthenaMinor - */ - public var outlineInverseAccentAthenaMinor: Color by - colors.obtain("outlineInverseAccentAthenaMinor") - - /** - * light outline inverse outlineAccentJoyMinor - */ - public var outlineInverseAccentJoyMinor: Color by colors.obtain("outlineInverseAccentJoyMinor") - - /** - * light outline inverse outlineAccentB2EMinor - */ - public var outlineInverseAccentB2EMinor: Color by colors.obtain("outlineInverseAccentB2EMinor") - - /** - * light outline inverse outlineAccentBrandMinor - */ - public var outlineInverseAccentBrandMinor: Color by - colors.obtain("outlineInverseAccentBrandMinor") - - /** - * light outline inverse outlineTransparentAccentMain - */ - public var outlineInverseTransparentAccentMain: Color by - colors.obtain("outlineInverseTransparentAccentMain") - - /** - * light outline inverse outlineTransparentAccentAthena - */ - public var outlineInverseTransparentAccentAthena: Color by - colors.obtain("outlineInverseTransparentAccentAthena") - - /** - * light outline inverse outlineTransparentAccentJoy - */ - public var outlineInverseTransparentAccentJoy: Color by - colors.obtain("outlineInverseTransparentAccentJoy") - - /** - * light outline inverse outlineTransparentAccentB2E - */ - public var outlineInverseTransparentAccentB2E: Color by - colors.obtain("outlineInverseTransparentAccentB2E") - - /** - * light outline inverse outlineTransparentAccentBrand - */ - public var outlineInverseTransparentAccentBrand: Color by - colors.obtain("outlineInverseTransparentAccentBrand") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellow: Color by colors.obtain("dataDefaultYellow") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellowHover: Color by colors.obtain("dataDefaultYellowHover") - - /** - * Желтый цвет для данных - */ - public var dataDefaultYellowActive: Color by colors.obtain("dataDefaultYellowActive") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinor: Color by colors.obtain("dataDefaultYellowMinor") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinorHover: Color by colors.obtain("dataDefaultYellowMinorHover") - - /** - * Минорный желтый цвет для данных - */ - public var dataDefaultYellowMinorActive: Color by colors.obtain("dataDefaultYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparent: Color by colors.obtain("dataDefaultYellowTransparent") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparentHover: Color by - colors.obtain("dataDefaultYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных - */ - public var dataDefaultYellowTransparentActive: Color by - colors.obtain("dataDefaultYellowTransparentActive") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellow: Color by colors.obtain("dataOnDarkYellow") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowHover: Color by colors.obtain("dataOnDarkYellowHover") - - /** - * Желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowActive: Color by colors.obtain("dataOnDarkYellowActive") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinor: Color by colors.obtain("dataOnDarkYellowMinor") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinorHover: Color by colors.obtain("dataOnDarkYellowMinorHover") - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowMinorActive: Color by colors.obtain("dataOnDarkYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparent: Color by colors.obtain("dataOnDarkYellowTransparent") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparentHover: Color by - colors.obtain("dataOnDarkYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public var dataOnDarkYellowTransparentActive: Color by - colors.obtain("dataOnDarkYellowTransparentActive") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellow: Color by colors.obtain("dataOnLightYellow") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowHover: Color by colors.obtain("dataOnLightYellowHover") - - /** - * Желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowActive: Color by colors.obtain("dataOnLightYellowActive") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinor: Color by colors.obtain("dataOnLightYellowMinor") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinorHover: Color by colors.obtain("dataOnLightYellowMinorHover") - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowMinorActive: Color by colors.obtain("dataOnLightYellowMinorActive") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparent: Color by colors.obtain("dataOnLightYellowTransparent") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparentHover: Color by - colors.obtain("dataOnLightYellowTransparentHover") - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public var dataOnLightYellowTransparentActive: Color by - colors.obtain("dataOnLightYellowTransparentActive") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellow: Color by colors.obtain("dataInverseYellow") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellowHover: Color by colors.obtain("dataInverseYellowHover") - - /** - * Инвертированный желтый цвет для данных - */ - public var dataInverseYellowActive: Color by colors.obtain("dataInverseYellowActive") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinor: Color by colors.obtain("dataInverseYellowMinor") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinorHover: Color by colors.obtain("dataInverseYellowMinorHover") - - /** - * Инвертированный минорный желтый цвет для данных - */ - public var dataInverseYellowMinorActive: Color by colors.obtain("dataInverseYellowMinorActive") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparent: Color by colors.obtain("dataInverseYellowTransparent") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparentHover: Color by - colors.obtain("dataInverseYellowTransparentHover") - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public var dataInverseYellowTransparentActive: Color by - colors.obtain("dataInverseYellowTransparentActive") - - /** - * dark surface inverse surfaceAccentJoy - */ - public var surfaceInverseAccentJoy: Color by colors.obtain("surfaceInverseAccentJoy") - - /** - * dark surface inverse surfaceAccentJoyHover - */ - public var surfaceInverseAccentJoyHover: Color by colors.obtain("surfaceInverseAccentJoyHover") - - /** - * dark surface inverse surfaceAccentJoyActive - */ - public var surfaceInverseAccentJoyActive: Color by - colors.obtain("surfaceInverseAccentJoyActive") - - /** - * Возвращает копию [StylesSaluteColors]. Предоставляет возможность переопределять цвета. - */ - public fun copy(overrideColors: ColorOverrideScope.() -> Unit = {}): StylesSaluteColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overrideMap = colorOverrideScope.overrideMap - return StylesSaluteColors(colors.mapValues { overrideMap[it.key] ?: it.value }) - } -} - -/** - * Скоуп переопределения цветов - */ -public class ColorOverrideScope { - private val _overrideMap: MutableMap = mutableMapOf() - - internal val overrideMap: Map - get() = _overrideMap.toMap() - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryHover: String = "textDefaultPrimaryHover" - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryActive: String = "textDefaultPrimaryActive" - - /** - * Основной цвет текста - */ - public val textDefaultPrimary: String = "textDefaultPrimary" - - /** - * Основной цвет текста - */ - public val textDefaultPrimaryBrightness: String = "textDefaultPrimaryBrightness" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondaryHover: String = "textDefaultSecondaryHover" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondaryActive: String = "textDefaultSecondaryActive" - - /** - * Вторичный цвет текста - */ - public val textDefaultSecondary: String = "textDefaultSecondary" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiaryHover: String = "textDefaultTertiaryHover" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiaryActive: String = "textDefaultTertiaryActive" - - /** - * Третичный цвет текста - */ - public val textDefaultTertiary: String = "textDefaultTertiary" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraphHover: String = "textDefaultParagraphHover" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraphActive: String = "textDefaultParagraphActive" - - /** - * Сплошной наборный текст - */ - public val textDefaultParagraph: String = "textDefaultParagraph" - - /** - * Акцентный цвет - */ - public val textDefaultAccentHover: String = "textDefaultAccentHover" - - /** - * Акцентный цвет - */ - public val textDefaultAccentActive: String = "textDefaultAccentActive" - - /** - * Акцентный цвет - */ - public val textDefaultAccent: String = "textDefaultAccent" - - /** - * Акцентный минорный цвет - */ - public val textDefaultAccentMinorHover: String = "textDefaultAccentMinorHover" - - /** - * Акцентный минорный цвет - */ - public val textDefaultAccentMinorActive: String = "textDefaultAccentMinorActive" - - /** - * Акцентный минорный цвет - */ - public val textDefaultAccentMinor: String = "textDefaultAccentMinor" - - /** - * Промо цвет - */ - public val textDefaultPromoHover: String = "textDefaultPromoHover" - - /** - * Промо цвет - */ - public val textDefaultPromoActive: String = "textDefaultPromoActive" - - /** - * Промо цвет - */ - public val textDefaultPromo: String = "textDefaultPromo" - - /** - * Минорный промо цвет - */ - public val textDefaultPromoMinorHover: String = "textDefaultPromoMinorHover" - - /** - * Минорный промо цвет - */ - public val textDefaultPromoMinorActive: String = "textDefaultPromoMinorActive" - - /** - * Минорный промо цвет - */ - public val textDefaultPromoMinor: String = "textDefaultPromoMinor" - - /** - * Цвет успеха - */ - public val textDefaultPositiveHover: String = "textDefaultPositiveHover" - - /** - * Цвет успеха - */ - public val textDefaultPositiveActive: String = "textDefaultPositiveActive" - - /** - * Цвет успеха - */ - public val textDefaultPositive: String = "textDefaultPositive" - - /** - * Цвет предупреждения - */ - public val textDefaultWarningHover: String = "textDefaultWarningHover" - - /** - * Цвет предупреждения - */ - public val textDefaultWarningActive: String = "textDefaultWarningActive" - - /** - * Цвет предупреждения - */ - public val textDefaultWarning: String = "textDefaultWarning" - - /** - * Цвет ошибки - */ - public val textDefaultNegativeHover: String = "textDefaultNegativeHover" - - /** - * Цвет ошибки - */ - public val textDefaultNegativeActive: String = "textDefaultNegativeActive" - - /** - * Цвет ошибки - */ - public val textDefaultNegative: String = "textDefaultNegative" - - /** - * Цвет информации - */ - public val textDefaultInfoHover: String = "textDefaultInfoHover" - - /** - * Цвет информации - */ - public val textDefaultInfoActive: String = "textDefaultInfoActive" - - /** - * Минорный цвет успеха - */ - public val textDefaultPositiveMinorHover: String = "textDefaultPositiveMinorHover" - - /** - * Минорный цвет успеха - */ - public val textDefaultPositiveMinorActive: String = "textDefaultPositiveMinorActive" - - /** - * Минорный цвет предупреждения - */ - public val textDefaultWarningMinorHover: String = "textDefaultWarningMinorHover" - - /** - * Минорный цвет предупреждения - */ - public val textDefaultWarningMinorActive: String = "textDefaultWarningMinorActive" - - /** - * Минорный цвет ошибки - */ - public val textDefaultNegativeMinorHover: String = "textDefaultNegativeMinorHover" - - /** - * Минорный цвет ошибки - */ - public val textDefaultNegativeMinorActive: String = "textDefaultNegativeMinorActive" - - /** - * Минорный цвет информации - */ - public val textDefaultInfoMinorHover: String = "textDefaultInfoMinorHover" - - /** - * Минорный цвет информации - */ - public val textDefaultInfoMinorActive: String = "textDefaultInfoMinorActive" - - /** - * Акцентный цвет Афины - */ - public val textDefaultAccentAthenaHover: String = "textDefaultAccentAthenaHover" - - /** - * Акцентный цвет Афины - */ - public val textDefaultAccentAthenaActive: String = "textDefaultAccentAthenaActive" - - /** - * Акцентный цвет Афины - */ - public val textDefaultAccentAthena: String = "textDefaultAccentAthena" - - /** - * Акцентный цвет Джой - */ - public val textDefaultAccentJoyHover: String = "textDefaultAccentJoyHover" - - /** - * Акцентный цвет Джой - */ - public val textDefaultAccentJoyActive: String = "textDefaultAccentJoyActive" - - /** - * Акцентный цвет Джой - */ - public val textDefaultAccentJoy: String = "textDefaultAccentJoy" - - /** - * Акцентный цвет B2E-ассистента - */ - public val textDefaultAccentB2EHover: String = "textDefaultAccentB2EHover" - - /** - * Акцентный цвет B2E-ассистента - */ - public val textDefaultAccentB2EActive: String = "textDefaultAccentB2EActive" - - /** - * Акцентный цвет B2E-ассистента - */ - public val textDefaultAccentB2E: String = "textDefaultAccentB2E" - - /** - * Акцентный цвет бренда - */ - public val textDefaultAccentBrandHover: String = "textDefaultAccentBrandHover" - - /** - * Акцентный цвет бренда - */ - public val textDefaultAccentBrandActive: String = "textDefaultAccentBrandActive" - - /** - * Акцентный цвет бренда - */ - public val textDefaultAccentBrand: String = "textDefaultAccentBrand" - - /** - * Акцентный цвет - */ - public val textDefaultAccentMainHover: String = "textDefaultAccentMainHover" - - /** - * Акцентный цвет - */ - public val textDefaultAccentMainActive: String = "textDefaultAccentMainActive" - - /** - * Акцентный цвет - */ - public val textDefaultAccentMain: String = "textDefaultAccentMain" - - /** - * light text default textAccentMainMinor - */ - public val textDefaultAccentMainMinor: String = "textDefaultAccentMainMinor" - - /** - * light text default textAccentMainMinorHover - */ - public val textDefaultAccentMainMinorHover: String = "textDefaultAccentMainMinorHover" - - /** - * light text default textAccentMainMinorActive - */ - public val textDefaultAccentMainMinorActive: String = "textDefaultAccentMainMinorActive" - - /** - * light text default textAccentAthenaMinor - */ - public val textDefaultAccentAthenaMinor: String = "textDefaultAccentAthenaMinor" - - /** - * light text default textAccentAthenaMinorHover - */ - public val textDefaultAccentAthenaMinorHover: String = "textDefaultAccentAthenaMinorHover" - - /** - * light text default textAccentAthenaMinorActive - */ - public val textDefaultAccentAthenaMinorActive: String = "textDefaultAccentAthenaMinorActive" - - /** - * light text default textAccentJoyMinor - */ - public val textDefaultAccentJoyMinor: String = "textDefaultAccentJoyMinor" - - /** - * light text default textAccentB2EMinor - */ - public val textDefaultAccentB2EMinor: String = "textDefaultAccentB2EMinor" - - /** - * light text default textAccentBrandMinor - */ - public val textDefaultAccentBrandMinor: String = "textDefaultAccentBrandMinor" - - /** - * light text default textAccentBrandMinorHover - */ - public val textDefaultAccentBrandMinorHover: String = "textDefaultAccentBrandMinorHover" - - /** - * light text default textAccentBrandMinorActive - */ - public val textDefaultAccentBrandMinorActive: String = "textDefaultAccentBrandMinorActive" - - /** - * Цвет информации - */ - public val textDefaultInfo: String = "textDefaultInfo" - - /** - * Минорный цвет успеха - */ - public val textDefaultPositiveMinor: String = "textDefaultPositiveMinor" - - /** - * Минорный цвет предупреждения - */ - public val textDefaultWarningMinor: String = "textDefaultWarningMinor" - - /** - * Минорный цвет ошибки - */ - public val textDefaultNegativeMinor: String = "textDefaultNegativeMinor" - - /** - * Минорный цвет информации - */ - public val textDefaultInfoMinor: String = "textDefaultInfoMinor" - - /** - * light text default textAccentJoyMinorHover - */ - public val textDefaultAccentJoyMinorHover: String = "textDefaultAccentJoyMinorHover" - - /** - * light text default textAccentJoyMinorActive - */ - public val textDefaultAccentJoyMinorActive: String = "textDefaultAccentJoyMinorActive" - - /** - * light text default textAccentB2EMinorHover - */ - public val textDefaultAccentB2EMinorHover: String = "textDefaultAccentB2EMinorHover" - - /** - * light text default textAccentB2EMinorActive - */ - public val textDefaultAccentB2EMinorActive: String = "textDefaultAccentB2EMinorActive" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryHover: String = "textOnDarkPrimaryHover" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryActive: String = "textOnDarkPrimaryActive" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimary: String = "textOnDarkPrimary" - - /** - * Основной цвет текста на темном фоне - */ - public val textOnDarkPrimaryBrightness: String = "textOnDarkPrimaryBrightness" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondaryHover: String = "textOnDarkSecondaryHover" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondaryActive: String = "textOnDarkSecondaryActive" - - /** - * Вторичный цвет текста на темном фоне - */ - public val textOnDarkSecondary: String = "textOnDarkSecondary" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiaryHover: String = "textOnDarkTertiaryHover" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiaryActive: String = "textOnDarkTertiaryActive" - - /** - * Третичный цвет текста на темном фоне - */ - public val textOnDarkTertiary: String = "textOnDarkTertiary" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraphHover: String = "textOnDarkParagraphHover" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraphActive: String = "textOnDarkParagraphActive" - - /** - * Сплошной наборный текст на темном фоне - */ - public val textOnDarkParagraph: String = "textOnDarkParagraph" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentHover: String = "textOnDarkAccentHover" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentActive: String = "textOnDarkAccentActive" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccent: String = "textOnDarkAccent" - - /** - * Акцентный минорный цвет на темном фоне - */ - public val textOnDarkAccentMinorHover: String = "textOnDarkAccentMinorHover" - - /** - * Акцентный минорный цвет на темном фоне - */ - public val textOnDarkAccentMinorActive: String = "textOnDarkAccentMinorActive" - - /** - * Акцентный минорный цвет на темном фоне - */ - public val textOnDarkAccentMinor: String = "textOnDarkAccentMinor" - - /** - * Промо цвет на темном фоне - */ - public val textOnDarkPromoHover: String = "textOnDarkPromoHover" - - /** - * Промо цвет на темном фоне - */ - public val textOnDarkPromoActive: String = "textOnDarkPromoActive" - - /** - * Промо цвет на темном фоне - */ - public val textOnDarkPromo: String = "textOnDarkPromo" - - /** - * Минорный промо цвет на темном фоне - */ - public val textOnDarkPromoMinorHover: String = "textOnDarkPromoMinorHover" - - /** - * Минорный промо цвет на темном фоне - */ - public val textOnDarkPromoMinorActive: String = "textOnDarkPromoMinorActive" - - /** - * Минорный промо цвет на темном фоне - */ - public val textOnDarkPromoMinor: String = "textOnDarkPromoMinor" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositiveHover: String = "textOnDarkPositiveHover" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositiveActive: String = "textOnDarkPositiveActive" - - /** - * Цвет успеха на темном фоне - */ - public val textOnDarkPositive: String = "textOnDarkPositive" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarningHover: String = "textOnDarkWarningHover" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarningActive: String = "textOnDarkWarningActive" - - /** - * Цвет предупреждения на темном фоне - */ - public val textOnDarkWarning: String = "textOnDarkWarning" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegativeHover: String = "textOnDarkNegativeHover" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegativeActive: String = "textOnDarkNegativeActive" - - /** - * Цвет ошибки на темном фоне - */ - public val textOnDarkNegative: String = "textOnDarkNegative" - - /** - * Цвет информации на темном фоне - */ - public val textOnDarkInfoHover: String = "textOnDarkInfoHover" - - /** - * Цвет информации на темном фоне - */ - public val textOnDarkInfoActive: String = "textOnDarkInfoActive" - - /** - * Минорный цвет успеха на темном фоне - */ - public val textOnDarkPositiveMinorHover: String = "textOnDarkPositiveMinorHover" - - /** - * Минорный цвет успеха на темном фоне - */ - public val textOnDarkPositiveMinorActive: String = "textOnDarkPositiveMinorActive" - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val textOnDarkWarningMinorHover: String = "textOnDarkWarningMinorHover" - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val textOnDarkWarningMinorActive: String = "textOnDarkWarningMinorActive" - - /** - * Минорный цвет ошибки на темном фоне - */ - public val textOnDarkNegativeMinorHover: String = "textOnDarkNegativeMinorHover" - - /** - * Минорный цвет ошибки на темном фоне - */ - public val textOnDarkNegativeMinorActive: String = "textOnDarkNegativeMinorActive" - - /** - * Минорный цвет информации на темном фоне - */ - public val textOnDarkInfoMinorHover: String = "textOnDarkInfoMinorHover" - - /** - * Минорный цвет информации на темном фоне - */ - public val textOnDarkInfoMinorActive: String = "textOnDarkInfoMinorActive" - - /** - * Акцентный цвет Афины на темном - */ - public val textOnDarkAccentAthenaHover: String = "textOnDarkAccentAthenaHover" - - /** - * Акцентный цвет Афины на темном - */ - public val textOnDarkAccentAthenaActive: String = "textOnDarkAccentAthenaActive" - - /** - * Акцентный цвет Афины на темном - */ - public val textOnDarkAccentAthena: String = "textOnDarkAccentAthena" - - /** - * Акцентный цвет Джой на темном фоне - */ - public val textOnDarkAccentJoyHover: String = "textOnDarkAccentJoyHover" - - /** - * Акцентный цвет Джой на темном фоне - */ - public val textOnDarkAccentJoyActive: String = "textOnDarkAccentJoyActive" - - /** - * Акцентный цвет Джой на темном фоне - */ - public val textOnDarkAccentJoy: String = "textOnDarkAccentJoy" - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val textOnDarkAccentB2EHover: String = "textOnDarkAccentB2EHover" - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val textOnDarkAccentB2EActive: String = "textOnDarkAccentB2EActive" - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val textOnDarkAccentB2E: String = "textOnDarkAccentB2E" - - /** - * Акцентный цвет бренда на темном фоне - */ - public val textOnDarkAccentBrandHover: String = "textOnDarkAccentBrandHover" - - /** - * Акцентный цвет бренда на темном фоне - */ - public val textOnDarkAccentBrandActive: String = "textOnDarkAccentBrandActive" - - /** - * Акцентный цвет бренда на темном фоне - */ - public val textOnDarkAccentBrand: String = "textOnDarkAccentBrand" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentMainHover: String = "textOnDarkAccentMainHover" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentMainActive: String = "textOnDarkAccentMainActive" - - /** - * Акцентный цвет на темном фоне - */ - public val textOnDarkAccentMain: String = "textOnDarkAccentMain" - - /** - * light text onDark textAccentMainMinor - */ - public val textOnDarkAccentMainMinor: String = "textOnDarkAccentMainMinor" - - /** - * light text onDark textAccentMainMinorHover - */ - public val textOnDarkAccentMainMinorHover: String = "textOnDarkAccentMainMinorHover" - - /** - * light text onDark textAccentMainMinorActive - */ - public val textOnDarkAccentMainMinorActive: String = "textOnDarkAccentMainMinorActive" - - /** - * light text onDark textAccentAthenaMinor - */ - public val textOnDarkAccentAthenaMinor: String = "textOnDarkAccentAthenaMinor" - - /** - * light text onDark textAccentAthenaMinorHover - */ - public val textOnDarkAccentAthenaMinorHover: String = "textOnDarkAccentAthenaMinorHover" - - /** - * light text onDark textAccentAthenaMinorActive - */ - public val textOnDarkAccentAthenaMinorActive: String = "textOnDarkAccentAthenaMinorActive" - - /** - * light text onDark textAccentB2EMinor - */ - public val textOnDarkAccentB2EMinor: String = "textOnDarkAccentB2EMinor" - - /** - * light text onDark textAccentB2EMinorHover - */ - public val textOnDarkAccentB2EMinorHover: String = "textOnDarkAccentB2EMinorHover" - - /** - * light text onDark textAccentB2EMinorActive - */ - public val textOnDarkAccentB2EMinorActive: String = "textOnDarkAccentB2EMinorActive" - - /** - * light text onDark textAccentBrandMinor - */ - public val textOnDarkAccentBrandMinor: String = "textOnDarkAccentBrandMinor" - - /** - * light text onDark textAccentBrandMinorHover - */ - public val textOnDarkAccentBrandMinorHover: String = "textOnDarkAccentBrandMinorHover" - - /** - * light text onDark textAccentBrandMinorActive - */ - public val textOnDarkAccentBrandMinorActive: String = "textOnDarkAccentBrandMinorActive" - - /** - * light text onDark textAccentJoyMinor - */ - public val textOnDarkAccentJoyMinor: String = "textOnDarkAccentJoyMinor" - - /** - * light text onDark textAccentJoyMinorHover - */ - public val textOnDarkAccentJoyMinorHover: String = "textOnDarkAccentJoyMinorHover" - - /** - * light text onDark textAccentJoyMinorActive - */ - public val textOnDarkAccentJoyMinorActive: String = "textOnDarkAccentJoyMinorActive" - - /** - * Цвет информации на темном фоне - */ - public val textOnDarkInfo: String = "textOnDarkInfo" - - /** - * Минорный цвет успеха на темном фоне - */ - public val textOnDarkPositiveMinor: String = "textOnDarkPositiveMinor" - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val textOnDarkWarningMinor: String = "textOnDarkWarningMinor" - - /** - * Минорный цвет ошибки на темном фоне - */ - public val textOnDarkNegativeMinor: String = "textOnDarkNegativeMinor" - - /** - * Минорный цвет информации на темном фоне - */ - public val textOnDarkInfoMinor: String = "textOnDarkInfoMinor" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryHover: String = "textOnLightPrimaryHover" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryActive: String = "textOnLightPrimaryActive" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimary: String = "textOnLightPrimary" - - /** - * Основной цвет текста на светлом фоне - */ - public val textOnLightPrimaryBrightness: String = "textOnLightPrimaryBrightness" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondaryHover: String = "textOnLightSecondaryHover" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondaryActive: String = "textOnLightSecondaryActive" - - /** - * Вторичный цвет текста на светлом фоне - */ - public val textOnLightSecondary: String = "textOnLightSecondary" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiaryHover: String = "textOnLightTertiaryHover" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiaryActive: String = "textOnLightTertiaryActive" - - /** - * Третичный цвет текста на светлом фоне - */ - public val textOnLightTertiary: String = "textOnLightTertiary" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraphHover: String = "textOnLightParagraphHover" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraphActive: String = "textOnLightParagraphActive" - - /** - * Сплошной наборный текст на светлом фоне - */ - public val textOnLightParagraph: String = "textOnLightParagraph" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentHover: String = "textOnLightAccentHover" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentActive: String = "textOnLightAccentActive" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccent: String = "textOnLightAccent" - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val textOnLightAccentMinorHover: String = "textOnLightAccentMinorHover" - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val textOnLightAccentMinorActive: String = "textOnLightAccentMinorActive" - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val textOnLightAccentMinor: String = "textOnLightAccentMinor" - - /** - * Промо цвет на светлом фоне - */ - public val textOnLightPromoHover: String = "textOnLightPromoHover" - - /** - * Промо цвет на светлом фоне - */ - public val textOnLightPromoActive: String = "textOnLightPromoActive" - - /** - * Промо цвет на светлом фоне - */ - public val textOnLightPromo: String = "textOnLightPromo" - - /** - * Минорный промо цвет на светлом фоне - */ - public val textOnLightPromoMinorHover: String = "textOnLightPromoMinorHover" - - /** - * Минорный промо цвет на светлом фоне - */ - public val textOnLightPromoMinorActive: String = "textOnLightPromoMinorActive" - - /** - * Минорный промо цвет на светлом фоне - */ - public val textOnLightPromoMinor: String = "textOnLightPromoMinor" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositiveHover: String = "textOnLightPositiveHover" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositiveActive: String = "textOnLightPositiveActive" - - /** - * Цвет успеха на светлом фоне - */ - public val textOnLightPositive: String = "textOnLightPositive" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarningHover: String = "textOnLightWarningHover" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarningActive: String = "textOnLightWarningActive" - - /** - * Цвет предупреждения на светлом фоне - */ - public val textOnLightWarning: String = "textOnLightWarning" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegativeHover: String = "textOnLightNegativeHover" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegativeActive: String = "textOnLightNegativeActive" - - /** - * Цвет ошибки на светлом фоне - */ - public val textOnLightNegative: String = "textOnLightNegative" - - /** - * Цвет информации на светлом фоне - */ - public val textOnLightInfoHover: String = "textOnLightInfoHover" - - /** - * Цвет информации на светлом фоне - */ - public val textOnLightInfoActive: String = "textOnLightInfoActive" - - /** - * Минорный цвет успеха на светлом фоне - */ - public val textOnLightPositiveMinorHover: String = "textOnLightPositiveMinorHover" - - /** - * Минорный цвет успеха на светлом фоне - */ - public val textOnLightPositiveMinorActive: String = "textOnLightPositiveMinorActive" - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val textOnLightWarningMinorHover: String = "textOnLightWarningMinorHover" - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val textOnLightWarningMinorActive: String = "textOnLightWarningMinorActive" - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val textOnLightNegativeMinorHover: String = "textOnLightNegativeMinorHover" - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val textOnLightNegativeMinorActive: String = "textOnLightNegativeMinorActive" - - /** - * Минорный цвет информации на светлом фоне - */ - public val textOnLightInfoMinorHover: String = "textOnLightInfoMinorHover" - - /** - * Минорный цвет информации на светлом фоне - */ - public val textOnLightInfoMinorActive: String = "textOnLightInfoMinorActive" - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val textOnLightAccentAthenaHover: String = "textOnLightAccentAthenaHover" - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val textOnLightAccentAthenaActive: String = "textOnLightAccentAthenaActive" - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val textOnLightAccentAthena: String = "textOnLightAccentAthena" - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val textOnLightAccentJoyHover: String = "textOnLightAccentJoyHover" - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val textOnLightAccentJoyActive: String = "textOnLightAccentJoyActive" - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val textOnLightAccentJoy: String = "textOnLightAccentJoy" - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val textOnLightAccentB2EHover: String = "textOnLightAccentB2EHover" - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val textOnLightAccentB2EActive: String = "textOnLightAccentB2EActive" - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val textOnLightAccentB2E: String = "textOnLightAccentB2E" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightAccentBrandHover: String = "textOnLightAccentBrandHover" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightAccentBrandActive: String = "textOnLightAccentBrandActive" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightAccentBrand: String = "textOnLightAccentBrand" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentMainHover: String = "textOnLightAccentMainHover" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentMainActive: String = "textOnLightAccentMainActive" - - /** - * Акцентный цвет на светлом фоне - */ - public val textOnLightAccentMain: String = "textOnLightAccentMain" - - /** - * light text onLight textAccentMainMinor - */ - public val textOnLightAccentMainMinor: String = "textOnLightAccentMainMinor" - - /** - * light text onLight textAccentMainMinorHover - */ - public val textOnLightAccentMainMinorHover: String = "textOnLightAccentMainMinorHover" - - /** - * light text onLight textAccentMainMinorActive - */ - public val textOnLightAccentMainMinorActive: String = "textOnLightAccentMainMinorActive" - - /** - * light text onLight textAccentAthenaMinor - */ - public val textOnLightAccentAthenaMinor: String = "textOnLightAccentAthenaMinor" - - /** - * light text onLight textAccentAthenaMinorHover - */ - public val textOnLightAccentAthenaMinorHover: String = "textOnLightAccentAthenaMinorHover" - - /** - * light text onLight textAccentAthenaMinorActive - */ - public val textOnLightAccentAthenaMinorActive: String = "textOnLightAccentAthenaMinorActive" - - /** - * light text onLight textAccentJoyMinor - */ - public val textOnLightAccentJoyMinor: String = "textOnLightAccentJoyMinor" - - /** - * light text onLight textAccentJoyMinorHover - */ - public val textOnLightAccentJoyMinorHover: String = "textOnLightAccentJoyMinorHover" - - /** - * light text onLight textAccentJoyMinorActive - */ - public val textOnLightAccentJoyMinorActive: String = "textOnLightAccentJoyMinorActive" - - /** - * light text onLight textAccentB2EMinor - */ - public val textOnLightAccentB2EMinor: String = "textOnLightAccentB2EMinor" - - /** - * light text onLight textAccentB2EMinorHover - */ - public val textOnLightAccentB2EMinorHover: String = "textOnLightAccentB2EMinorHover" - - /** - * light text onLight textAccentB2EMinorActive - */ - public val textOnLightAccentB2EMinorActive: String = "textOnLightAccentB2EMinorActive" - - /** - * light text onLight textAccentBrandMinor - */ - public val textOnLightAccentBrandMinor: String = "textOnLightAccentBrandMinor" - - /** - * light text onLight textAccentBrandMinorHover - */ - public val textOnLightAccentBrandMinorHover: String = "textOnLightAccentBrandMinorHover" - - /** - * light text onLight textAccentBrandMinorActive - */ - public val textOnLightAccentBrandMinorActive: String = "textOnLightAccentBrandMinorActive" - - /** - * Цвет информации на светлом фоне - */ - public val textOnLightInfo: String = "textOnLightInfo" - - /** - * Минорный цвет успеха на светлом фоне - */ - public val textOnLightPositiveMinor: String = "textOnLightPositiveMinor" - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val textOnLightWarningMinor: String = "textOnLightWarningMinor" - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val textOnLightNegativeMinor: String = "textOnLightNegativeMinor" - - /** - * Минорный цвет информации на светлом фоне - */ - public val textOnLightInfoMinor: String = "textOnLightInfoMinor" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryHover: String = "textInversePrimaryHover" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryActive: String = "textInversePrimaryActive" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimary: String = "textInversePrimary" - - /** - * Инвертированный основной цвет текста - */ - public val textInversePrimaryBrightness: String = "textInversePrimaryBrightness" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondaryHover: String = "textInverseSecondaryHover" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondaryActive: String = "textInverseSecondaryActive" - - /** - * Инвертированный вторичный цвет текста - */ - public val textInverseSecondary: String = "textInverseSecondary" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiaryHover: String = "textInverseTertiaryHover" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiaryActive: String = "textInverseTertiaryActive" - - /** - * Инвертированный третичный цвет текста - */ - public val textInverseTertiary: String = "textInverseTertiary" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraphHover: String = "textInverseParagraphHover" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraphActive: String = "textInverseParagraphActive" - - /** - * Инвертированный cплошной наборный текст - */ - public val textInverseParagraph: String = "textInverseParagraph" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccentHover: String = "textInverseAccentHover" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccentActive: String = "textInverseAccentActive" - - /** - * Инвертированный акцентный цвет - */ - public val textInverseAccent: String = "textInverseAccent" - - /** - * Инвертированный минорный акцентный цвет - */ - public val textInverseAccentMinorHover: String = "textInverseAccentMinorHover" - - /** - * Инвертированный минорный акцентный цвет - */ - public val textInverseAccentMinorActive: String = "textInverseAccentMinorActive" - - /** - * Инвертированный минорный акцентный цвет - */ - public val textInverseAccentMinor: String = "textInverseAccentMinor" - - /** - * Инвертированный промо цвет - */ - public val textInversePromoHover: String = "textInversePromoHover" - - /** - * Инвертированный промо цвет - */ - public val textInversePromoActive: String = "textInversePromoActive" - - /** - * Инвертированный промо цвет - */ - public val textInversePromo: String = "textInversePromo" - - /** - * Инвертированный минорный промо цвет - */ - public val textInversePromoMinorHover: String = "textInversePromoMinorHover" - - /** - * Инвертированный минорный промо цвет - */ - public val textInversePromoMinorActive: String = "textInversePromoMinorActive" - - /** - * Инвертированный минорный промо цвет - */ - public val textInversePromoMinor: String = "textInversePromoMinor" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositiveHover: String = "textInversePositiveHover" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositiveActive: String = "textInversePositiveActive" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarningHover: String = "textInverseWarningHover" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarningActive: String = "textInverseWarningActive" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegativeHover: String = "textInverseNegativeHover" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegativeActive: String = "textInverseNegativeActive" - - /** - * Инвертированный цвет информации - */ - public val textInverseInfoHover: String = "textInverseInfoHover" - - /** - * Инвертированный цвет информации - */ - public val textInverseInfoActive: String = "textInverseInfoActive" - - /** - * Инвертированный минорный цвет успеха - */ - public val textInversePositiveMinorHover: String = "textInversePositiveMinorHover" - - /** - * Инвертированный минорный цвет успеха - */ - public val textInversePositiveMinorActive: String = "textInversePositiveMinorActive" - - /** - * Инвертированный минорный цвет предупреждения - */ - public val textInverseWarningMinorHover: String = "textInverseWarningMinorHover" - - /** - * Инвертированный минорный цвет предупреждения - */ - public val textInverseWarningMinorActive: String = "textInverseWarningMinorActive" - - /** - * Инвертированный минорный цвет ошибки - */ - public val textInverseNegativeMinorHover: String = "textInverseNegativeMinorHover" - - /** - * Инвертированный минорный цвет ошибки - */ - public val textInverseNegativeMinorActive: String = "textInverseNegativeMinorActive" - - /** - * Инвертированный минорный цвет информации - */ - public val textInverseInfoMinorHover: String = "textInverseInfoMinorHover" - - /** - * Инвертированный минорный цвет информации - */ - public val textInverseInfoMinorActive: String = "textInverseInfoMinorActive" - - /** - * light text inverse textAccentMain - */ - public val textInverseAccentMain: String = "textInverseAccentMain" - - /** - * light text inverse textAccentMainHover - */ - public val textInverseAccentMainHover: String = "textInverseAccentMainHover" - - /** - * light text inverse textAccentMainActive - */ - public val textInverseAccentMainActive: String = "textInverseAccentMainActive" - - /** - * light text inverse textAccentAthena - */ - public val textInverseAccentAthena: String = "textInverseAccentAthena" - - /** - * light text inverse textAccentAthenaHover - */ - public val textInverseAccentAthenaHover: String = "textInverseAccentAthenaHover" - - /** - * light text inverse textAccentAthenaActive - */ - public val textInverseAccentAthenaActive: String = "textInverseAccentAthenaActive" - - /** - * light text inverse textAccentJoy - */ - public val textInverseAccentJoy: String = "textInverseAccentJoy" - - /** - * light text inverse textAccentJoyHover - */ - public val textInverseAccentJoyHover: String = "textInverseAccentJoyHover" - - /** - * light text inverse textAccentJoyActive - */ - public val textInverseAccentJoyActive: String = "textInverseAccentJoyActive" - - /** - * light text inverse textAccentBrand - */ - public val textInverseAccentBrand: String = "textInverseAccentBrand" - - /** - * light text inverse textAccentBrandHover - */ - public val textInverseAccentBrandHover: String = "textInverseAccentBrandHover" - - /** - * light text inverse textAccentBrandActive - */ - public val textInverseAccentBrandActive: String = "textInverseAccentBrandActive" - - /** - * light text inverse textAccentMainMinorHover - */ - public val textInverseAccentMainMinorHover: String = "textInverseAccentMainMinorHover" - - /** - * light text inverse textAccentMainMinorActive - */ - public val textInverseAccentMainMinorActive: String = "textInverseAccentMainMinorActive" - - /** - * light text inverse textAccentAthenaMinorHover - */ - public val textInverseAccentAthenaMinorHover: String = "textInverseAccentAthenaMinorHover" - - /** - * light text inverse textAccentAthenaMinorActive - */ - public val textInverseAccentAthenaMinorActive: String = "textInverseAccentAthenaMinorActive" - - /** - * light text inverse textAccentJoyMinorHover - */ - public val textInverseAccentJoyMinorHover: String = "textInverseAccentJoyMinorHover" - - /** - * light text inverse textAccentJoyMinorActive - */ - public val textInverseAccentJoyMinorActive: String = "textInverseAccentJoyMinorActive" - - /** - * light text inverse textAccentB2EMinorHover - */ - public val textInverseAccentB2EMinorHover: String = "textInverseAccentB2EMinorHover" - - /** - * light text inverse textAccentB2EMinorActive - */ - public val textInverseAccentB2EMinorActive: String = "textInverseAccentB2EMinorActive" - - /** - * light text inverse textAccentBrandMinorHover - */ - public val textInverseAccentBrandMinorHover: String = "textInverseAccentBrandMinorHover" - - /** - * light text inverse textAccentBrandMinorActive - */ - public val textInverseAccentBrandMinorActive: String = "textInverseAccentBrandMinorActive" - - /** - * light text inverse textAccentB2E - */ - public val textInverseAccentB2E: String = "textInverseAccentB2E" - - /** - * light text inverse textAccentB2EHover - */ - public val textInverseAccentB2EHover: String = "textInverseAccentB2EHover" - - /** - * light text inverse textAccentB2EActive - */ - public val textInverseAccentB2EActive: String = "textInverseAccentB2EActive" - - /** - * Инвертированный цвет успеха - */ - public val textInversePositive: String = "textInversePositive" - - /** - * Инвертированный цвет предупреждения - */ - public val textInverseWarning: String = "textInverseWarning" - - /** - * Инвертированный цвет ошибки - */ - public val textInverseNegative: String = "textInverseNegative" - - /** - * Инвертированный цвет информации - */ - public val textInverseInfo: String = "textInverseInfo" - - /** - * Инвертированный минорный цвет успеха - */ - public val textInversePositiveMinor: String = "textInversePositiveMinor" - - /** - * Инвертированный минорный цвет предупреждения - */ - public val textInverseWarningMinor: String = "textInverseWarningMinor" - - /** - * Инвертированный минорный цвет ошибки - */ - public val textInverseNegativeMinor: String = "textInverseNegativeMinor" - - /** - * Инвертированный минорный цвет информации - */ - public val textInverseInfoMinor: String = "textInverseInfoMinor" - - /** - * light text inverse textAccentMainMinor - */ - public val textInverseAccentMainMinor: String = "textInverseAccentMainMinor" - - /** - * light text inverse textAccentJoyMinor - */ - public val textInverseAccentJoyMinor: String = "textInverseAccentJoyMinor" - - /** - * light text inverse textAccentB2EMinor - */ - public val textInverseAccentB2EMinor: String = "textInverseAccentB2EMinor" - - /** - * light text inverse textAccentAthenaMinor - */ - public val textInverseAccentAthenaMinor: String = "textInverseAccentAthenaMinor" - - /** - * light text inverse textAccentBrandMinor - */ - public val textInverseAccentBrandMinor: String = "textInverseAccentBrandMinor" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryHover: String = "surfaceDefaultSolidPrimaryHover" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryActive: String = "surfaceDefaultSolidPrimaryActive" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimary: String = "surfaceDefaultSolidPrimary" - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidPrimaryBrightness: String = "surfaceDefaultSolidPrimaryBrightness" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondaryHover: String = "surfaceDefaultSolidSecondaryHover" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondaryActive: String = "surfaceDefaultSolidSecondaryActive" - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidSecondary: String = "surfaceDefaultSolidSecondary" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiaryHover: String = "surfaceDefaultSolidTertiaryHover" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiaryActive: String = "surfaceDefaultSolidTertiaryActive" - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultSolidTertiary: String = "surfaceDefaultSolidTertiary" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardHover: String = "surfaceDefaultSolidCardHover" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardActive: String = "surfaceDefaultSolidCardActive" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCard: String = "surfaceDefaultSolidCard" - - /** - * Основной фон для карточек - */ - public val surfaceDefaultSolidCardBrightness: String = "surfaceDefaultSolidCardBrightness" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefaultHover: String = "surfaceDefaultSolidDefaultHover" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefaultActive: String = "surfaceDefaultSolidDefaultActive" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceDefaultSolidDefault: String = "surfaceDefaultSolidDefault" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimaryHover: String = - "surfaceDefaultTransparentPrimaryHover" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimaryActive: String = - "surfaceDefaultTransparentPrimaryActive" - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentPrimary: String = "surfaceDefaultTransparentPrimary" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondaryHover: String = - "surfaceDefaultTransparentSecondaryHover" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondaryActive: String = - "surfaceDefaultTransparentSecondaryActive" - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentSecondary: String = "surfaceDefaultTransparentSecondary" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiaryHover: String = - "surfaceDefaultTransparentTertiaryHover" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiaryActive: String = - "surfaceDefaultTransparentTertiaryActive" - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentTertiary: String = "surfaceDefaultTransparentTertiary" - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentDeepHover: String = "surfaceDefaultTransparentDeepHover" - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentDeepActive: String = "surfaceDefaultTransparentDeepActive" - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val surfaceDefaultTransparentDeep: String = "surfaceDefaultTransparentDeep" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardHover: String = "surfaceDefaultTransparentCardHover" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardActive: String = "surfaceDefaultTransparentCardActive" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCard: String = "surfaceDefaultTransparentCard" - - /** - * Прозрачный фон для карточек - */ - public val surfaceDefaultTransparentCardBrightness: String = - "surfaceDefaultTransparentCardBrightness" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClearHover: String = "surfaceDefaultClearHover" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClearActive: String = "surfaceDefaultClearActive" - - /** - * Фон поверхности/контрола без заливки - */ - public val surfaceDefaultClear: String = "surfaceDefaultClear" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccentHover: String = "surfaceDefaultAccentHover" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccentActive: String = "surfaceDefaultAccentActive" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccent: String = "surfaceDefaultAccent" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultAccentMinorHover: String = "surfaceDefaultAccentMinorHover" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultAccentMinorActive: String = "surfaceDefaultAccentMinorActive" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceDefaultAccentMinor: String = "surfaceDefaultAccentMinor" - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val surfaceDefaultTransparentAccentHover: String = "surfaceDefaultTransparentAccentHover" - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val surfaceDefaultTransparentAccentActive: String = - "surfaceDefaultTransparentAccentActive" - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val surfaceDefaultTransparentAccent: String = "surfaceDefaultTransparentAccent" - - /** - * Промо фон поверхности/контрола - */ - public val surfaceDefaultPromoHover: String = "surfaceDefaultPromoHover" - - /** - * Промо фон поверхности/контрола - */ - public val surfaceDefaultPromoActive: String = "surfaceDefaultPromoActive" - - /** - * Промо фон поверхности/контрола - */ - public val surfaceDefaultPromo: String = "surfaceDefaultPromo" - - /** - * Минорный промо фон поверхности/контрола - */ - public val surfaceDefaultPromoMinorHover: String = "surfaceDefaultPromoMinorHover" - - /** - * Минорный промо фон поверхности/контрола - */ - public val surfaceDefaultPromoMinorActive: String = "surfaceDefaultPromoMinorActive" - - /** - * Минорный промо фон поверхности/контрола - */ - public val surfaceDefaultPromoMinor: String = "surfaceDefaultPromoMinor" - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val surfaceDefaultTransparentPromoHover: String = "surfaceDefaultTransparentPromoHover" - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val surfaceDefaultTransparentPromoActive: String = "surfaceDefaultTransparentPromoActive" - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val surfaceDefaultTransparentPromo: String = "surfaceDefaultTransparentPromo" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositiveHover: String = "surfaceDefaultPositiveHover" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositiveActive: String = "surfaceDefaultPositiveActive" - - /** - * Цвет успеха - */ - public val surfaceDefaultPositive: String = "surfaceDefaultPositive" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningHover: String = "surfaceDefaultWarningHover" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningActive: String = "surfaceDefaultWarningActive" - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarning: String = "surfaceDefaultWarning" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeHover: String = "surfaceDefaultNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeActive: String = "surfaceDefaultNegativeActive" - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegative: String = "surfaceDefaultNegative" - - /** - * Цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfoHover: String = "surfaceDefaultInfoHover" - - /** - * Цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfoActive: String = "surfaceDefaultInfoActive" - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultPositiveMinorHover: String = "surfaceDefaultPositiveMinorHover" - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultPositiveMinorActive: String = "surfaceDefaultPositiveMinorActive" - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningMinorHover: String = "surfaceDefaultWarningMinorHover" - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningMinorActive: String = "surfaceDefaultWarningMinorActive" - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeMinorHover: String = "surfaceDefaultNegativeMinorHover" - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeMinorActive: String = "surfaceDefaultNegativeMinorActive" - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfoMinorHover: String = "surfaceDefaultInfoMinorHover" - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfoMinorActive: String = "surfaceDefaultInfoMinorActive" - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultTransparentPositiveHover: String = - "surfaceDefaultTransparentPositiveHover" - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultTransparentPositiveActive: String = - "surfaceDefaultTransparentPositiveActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentWarningHover: String = - "surfaceDefaultTransparentWarningHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentWarningActive: String = - "surfaceDefaultTransparentWarningActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentNegativeHover: String = - "surfaceDefaultTransparentNegativeHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentNegativeActive: String = - "surfaceDefaultTransparentNegativeActive" - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultTransparentInfoHover: String = "surfaceDefaultTransparentInfoHover" - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultTransparentInfoActive: String = "surfaceDefaultTransparentInfoActive" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceDefaultAccentAthenaHover: String = "surfaceDefaultAccentAthenaHover" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceDefaultAccentAthenaActive: String = "surfaceDefaultAccentAthenaActive" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceDefaultAccentAthena: String = "surfaceDefaultAccentAthena" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceDefaultAccentJoyHover: String = "surfaceDefaultAccentJoyHover" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceDefaultAccentJoyActive: String = "surfaceDefaultAccentJoyActive" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceDefaultAccentJoy: String = "surfaceDefaultAccentJoy" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceDefaultAccentB2EHover: String = "surfaceDefaultAccentB2EHover" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceDefaultAccentB2EActive: String = "surfaceDefaultAccentB2EActive" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceDefaultAccentB2E: String = "surfaceDefaultAccentB2E" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceDefaultAccentBrandHover: String = "surfaceDefaultAccentBrandHover" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceDefaultAccentBrandActive: String = "surfaceDefaultAccentBrandActive" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceDefaultAccentBrand: String = "surfaceDefaultAccentBrand" - - /** - * Цвет баббла сообщения от пользователя - */ - public val surfaceDefaultSpeechBubbleSentHover: String = "surfaceDefaultSpeechBubbleSentHover" - - /** - * Цвет баббла сообщения от пользователя - */ - public val surfaceDefaultSpeechBubbleSentActive: String = "surfaceDefaultSpeechBubbleSentActive" - - /** - * Цвет баббла сообщения от пользователя - */ - public val surfaceDefaultSpeechBubbleSent: String = "surfaceDefaultSpeechBubbleSent" - - /** - * Цвет баббла сообщения от ассистента - */ - public val surfaceDefaultSpeechBubbleReceivedHover: String = - "surfaceDefaultSpeechBubbleReceivedHover" - - /** - * Цвет баббла сообщения от ассистента - */ - public val surfaceDefaultSpeechBubbleReceivedActive: String = - "surfaceDefaultSpeechBubbleReceivedActive" - - /** - * Цвет баббла сообщения от ассистента - */ - public val surfaceDefaultSpeechBubbleReceived: String = "surfaceDefaultSpeechBubbleReceived" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonHover: String = "surfaceDefaultSkeletonHover" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonActive: String = "surfaceDefaultSkeletonActive" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccentMainHover: String = "surfaceDefaultAccentMainHover" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccentMainActive: String = "surfaceDefaultAccentMainActive" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceDefaultAccentMain: String = "surfaceDefaultAccentMain" - - /** - * light surface default surfaceAccentMainMinorHover - */ - public val surfaceDefaultAccentMainMinorHover: String = "surfaceDefaultAccentMainMinorHover" - - /** - * light surface default surfaceAccentMainMinorActive - */ - public val surfaceDefaultAccentMainMinorActive: String = "surfaceDefaultAccentMainMinorActive" - - /** - * light surface default surfaceAccentAthenaMinorHover - */ - public val surfaceDefaultAccentAthenaMinorHover: String = "surfaceDefaultAccentAthenaMinorHover" - - /** - * light surface default surfaceAccentAthenaMinorActive - */ - public val surfaceDefaultAccentAthenaMinorActive: String = - "surfaceDefaultAccentAthenaMinorActive" - - /** - * light surface default surfaceAccentJoyMinorHover - */ - public val surfaceDefaultAccentJoyMinorHover: String = "surfaceDefaultAccentJoyMinorHover" - - /** - * light surface default surfaceAccentJoyMinorActive - */ - public val surfaceDefaultAccentJoyMinorActive: String = "surfaceDefaultAccentJoyMinorActive" - - /** - * light surface default surfaceAccentB2EMinorHover - */ - public val surfaceDefaultAccentB2EMinorHover: String = "surfaceDefaultAccentB2EMinorHover" - - /** - * light surface default surfaceAccentB2EMinorActive - */ - public val surfaceDefaultAccentB2EMinorActive: String = "surfaceDefaultAccentB2EMinorActive" - - /** - * light surface default surfaceAccentBrandMinorHover - */ - public val surfaceDefaultAccentBrandMinorHover: String = "surfaceDefaultAccentBrandMinorHover" - - /** - * light surface default surfaceAccentBrandMinorActive - */ - public val surfaceDefaultAccentBrandMinorActive: String = "surfaceDefaultAccentBrandMinorActive" - - /** - * light surface default surfacesurfaceTransparentAccentMainHover - */ - public val surfaceDefaultSurfaceTransparentAccentMainHover: String = - "surfaceDefaultSurfaceTransparentAccentMainHover" - - /** - * light surface default surfacesurfaceTransparentAccentMainActive - */ - public val surfaceDefaultSurfaceTransparentAccentMainActive: String = - "surfaceDefaultSurfaceTransparentAccentMainActive" - - /** - * light surface default surfaceTransparentAccentAthenaHover - */ - public val surfaceDefaultTransparentAccentAthenaHover: String = - "surfaceDefaultTransparentAccentAthenaHover" - - /** - * light surface default surfaceTransparentAccentAthenaActive - */ - public val surfaceDefaultTransparentAccentAthenaActive: String = - "surfaceDefaultTransparentAccentAthenaActive" - - /** - * light surface default surfaceTransparentAccentJoyHover - */ - public val surfaceDefaultTransparentAccentJoyHover: String = - "surfaceDefaultTransparentAccentJoyHover" - - /** - * light surface default surfaceTransparentAccentJoyActive - */ - public val surfaceDefaultTransparentAccentJoyActive: String = - "surfaceDefaultTransparentAccentJoyActive" - - /** - * light surface default surfaceTransparentAccentB2EHover - */ - public val surfaceDefaultTransparentAccentB2EHover: String = - "surfaceDefaultTransparentAccentB2EHover" - - /** - * light surface default surfaceTransparentAccentB2EActive - */ - public val surfaceDefaultTransparentAccentB2EActive: String = - "surfaceDefaultTransparentAccentB2EActive" - - /** - * light surface default surfaceTransparentAccentBrandHover - */ - public val surfaceDefaultTransparentAccentBrandHover: String = - "surfaceDefaultTransparentAccentBrandHover" - - /** - * light surface default surfaceTransparentAccentBrandActive - */ - public val surfaceDefaultTransparentAccentBrandActive: String = - "surfaceDefaultTransparentAccentBrandActive" - - /** - * light surface default surfaceTransparentAccentMainHover - */ - public val surfaceDefaultTransparentAccentMainHover: String = - "surfaceDefaultTransparentAccentMainHover" - - /** - * light surface default surfaceTransparentAccentMainActive - */ - public val surfaceDefaultTransparentAccentMainActive: String = - "surfaceDefaultTransparentAccentMainActive" - - /** - * Цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfo: String = "surfaceDefaultInfo" - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultPositiveMinor: String = "surfaceDefaultPositiveMinor" - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultWarningMinor: String = "surfaceDefaultWarningMinor" - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceDefaultNegativeMinor: String = "surfaceDefaultNegativeMinor" - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultInfoMinor: String = "surfaceDefaultInfoMinor" - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val surfaceDefaultTransparentPositive: String = "surfaceDefaultTransparentPositive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentWarning: String = "surfaceDefaultTransparentWarning" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val surfaceDefaultTransparentNegative: String = "surfaceDefaultTransparentNegative" - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val surfaceDefaultTransparentInfo: String = "surfaceDefaultTransparentInfo" - - /** - * light surface default surfaceAccentMainMinor - */ - public val surfaceDefaultAccentMainMinor: String = "surfaceDefaultAccentMainMinor" - - /** - * light surface default surfaceAccentAthenaMinor - */ - public val surfaceDefaultAccentAthenaMinor: String = "surfaceDefaultAccentAthenaMinor" - - /** - * light surface default surfaceAccentJoyMinor - */ - public val surfaceDefaultAccentJoyMinor: String = "surfaceDefaultAccentJoyMinor" - - /** - * light surface default surfaceAccentB2EMinor - */ - public val surfaceDefaultAccentB2EMinor: String = "surfaceDefaultAccentB2EMinor" - - /** - * light surface default surfaceAccentBrandMinor - */ - public val surfaceDefaultAccentBrandMinor: String = "surfaceDefaultAccentBrandMinor" - - /** - * light surface default surfaceTransparentAccentAthena - */ - public val surfaceDefaultTransparentAccentAthena: String = - "surfaceDefaultTransparentAccentAthena" - - /** - * light surface default surfaceTransparentAccentJoy - */ - public val surfaceDefaultTransparentAccentJoy: String = "surfaceDefaultTransparentAccentJoy" - - /** - * light surface default surfaceTransparentAccentB2E - */ - public val surfaceDefaultTransparentAccentB2E: String = "surfaceDefaultTransparentAccentB2E" - - /** - * light surface default surfaceTransparentAccentBrand - */ - public val surfaceDefaultTransparentAccentBrand: String = "surfaceDefaultTransparentAccentBrand" - - /** - * light surface default surfaceTransparentAccentMain - */ - public val surfaceDefaultTransparentAccentMain: String = "surfaceDefaultTransparentAccentMain" - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryHover: String = "surfaceOnDarkSolidPrimaryHover" - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryActive: String = "surfaceOnDarkSolidPrimaryActive" - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimary: String = "surfaceOnDarkSolidPrimary" - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidPrimaryBrightness: String = "surfaceOnDarkSolidPrimaryBrightness" - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val surfaceOnDarkSolidSecondaryHover: String = "surfaceOnDarkSolidSecondaryHover" - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val surfaceOnDarkSolidSecondaryActive: String = "surfaceOnDarkSolidSecondaryActive" - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val surfaceOnDarkSolidSecondary: String = "surfaceOnDarkSolidSecondary" - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiaryHover: String = "surfaceOnDarkSolidTertiaryHover" - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiaryActive: String = "surfaceOnDarkSolidTertiaryActive" - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkSolidTertiary: String = "surfaceOnDarkSolidTertiary" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardHover: String = "surfaceOnDarkSolidCardHover" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardActive: String = "surfaceOnDarkSolidCardActive" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCard: String = "surfaceOnDarkSolidCard" - - /** - * Основной фон для карточек на темном фоне - */ - public val surfaceOnDarkSolidCardBrightness: String = "surfaceOnDarkSolidCardBrightness" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefaultHover: String = "surfaceOnDarkSolidDefaultHover" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefaultActive: String = "surfaceOnDarkSolidDefaultActive" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val surfaceOnDarkSolidDefault: String = "surfaceOnDarkSolidDefault" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimaryHover: String = "surfaceOnDarkTransparentPrimaryHover" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimaryActive: String = - "surfaceOnDarkTransparentPrimaryActive" - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPrimary: String = "surfaceOnDarkTransparentPrimary" - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondaryHover: String = - "surfaceOnDarkTransparentSecondaryHover" - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondaryActive: String = - "surfaceOnDarkTransparentSecondaryActive" - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentSecondary: String = "surfaceOnDarkTransparentSecondary" - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiaryHover: String = - "surfaceOnDarkTransparentTertiaryHover" - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiaryActive: String = - "surfaceOnDarkTransparentTertiaryActive" - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentTertiary: String = "surfaceOnDarkTransparentTertiary" - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentDeepHover: String = "surfaceOnDarkTransparentDeepHover" - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentDeepActive: String = "surfaceOnDarkTransparentDeepActive" - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentDeep: String = "surfaceOnDarkTransparentDeep" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardHover: String = "surfaceOnDarkTransparentCardHover" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardActive: String = "surfaceOnDarkTransparentCardActive" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCard: String = "surfaceOnDarkTransparentCard" - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val surfaceOnDarkTransparentCardBrightness: String = - "surfaceOnDarkTransparentCardBrightness" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClearHover: String = "surfaceOnDarkClearHover" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClearActive: String = "surfaceOnDarkClearActive" - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val surfaceOnDarkClear: String = "surfaceOnDarkClear" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccentHover: String = "surfaceOnDarkAccentHover" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccentActive: String = "surfaceOnDarkAccentActive" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccent: String = "surfaceOnDarkAccent" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccentMinorHover: String = "surfaceOnDarkAccentMinorHover" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccentMinorActive: String = "surfaceOnDarkAccentMinorActive" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkAccentMinor: String = "surfaceOnDarkAccentMinor" - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentAccentHover: String = "surfaceOnDarkTransparentAccentHover" - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentAccentActive: String = "surfaceOnDarkTransparentAccentActive" - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentAccent: String = "surfaceOnDarkTransparentAccent" - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromoHover: String = "surfaceOnDarkPromoHover" - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromoActive: String = "surfaceOnDarkPromoActive" - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromo: String = "surfaceOnDarkPromo" - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromoMinorHover: String = "surfaceOnDarkPromoMinorHover" - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromoMinorActive: String = "surfaceOnDarkPromoMinorActive" - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkPromoMinor: String = "surfaceOnDarkPromoMinor" - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPromoHover: String = "surfaceOnDarkTransparentPromoHover" - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPromoActive: String = "surfaceOnDarkTransparentPromoActive" - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val surfaceOnDarkTransparentPromo: String = "surfaceOnDarkTransparentPromo" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositiveHover: String = "surfaceOnDarkPositiveHover" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositiveActive: String = "surfaceOnDarkPositiveActive" - - /** - * Цвет успеха на темном фоне - */ - public val surfaceOnDarkPositive: String = "surfaceOnDarkPositive" - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val surfaceOnDarkWarningHover: String = "surfaceOnDarkWarningHover" - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val surfaceOnDarkWarningActive: String = "surfaceOnDarkWarningActive" - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val surfaceOnDarkWarning: String = "surfaceOnDarkWarning" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeHover: String = "surfaceOnDarkNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeActive: String = "surfaceOnDarkNegativeActive" - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegative: String = "surfaceOnDarkNegative" - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfoHover: String = "surfaceOnDarkInfoHover" - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfoActive: String = "surfaceOnDarkInfoActive" - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkPositiveMinorHover: String = "surfaceOnDarkPositiveMinorHover" - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkPositiveMinorActive: String = "surfaceOnDarkPositiveMinorActive" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarningMinorHover: String = "surfaceOnDarkWarningMinorHover" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarningMinorActive: String = "surfaceOnDarkWarningMinorActive" - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeMinorHover: String = "surfaceOnDarkNegativeMinorHover" - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeMinorActive: String = "surfaceOnDarkNegativeMinorActive" - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfoMinorHover: String = "surfaceOnDarkInfoMinorHover" - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfoMinorActive: String = "surfaceOnDarkInfoMinorActive" - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkTransparentPositiveHover: String = - "surfaceOnDarkTransparentPositiveHover" - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkTransparentPositiveActive: String = - "surfaceOnDarkTransparentPositiveActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentWarningHover: String = "surfaceOnDarkTransparentWarningHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentWarningActive: String = - "surfaceOnDarkTransparentWarningActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentNegativeHover: String = - "surfaceOnDarkTransparentNegativeHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentNegativeActive: String = - "surfaceOnDarkTransparentNegativeActive" - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkTransparentInfoHover: String = "surfaceOnDarkTransparentInfoHover" - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkTransparentInfoActive: String = "surfaceOnDarkTransparentInfoActive" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceOnDarkAccentAthenaHover: String = "surfaceOnDarkAccentAthenaHover" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceOnDarkAccentAthenaActive: String = "surfaceOnDarkAccentAthenaActive" - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val surfaceOnDarkAccentAthena: String = "surfaceOnDarkAccentAthena" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceOnDarkAccentJoyHover: String = "surfaceOnDarkAccentJoyHover" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceOnDarkAccentJoyActive: String = "surfaceOnDarkAccentJoyActive" - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val surfaceOnDarkAccentJoy: String = "surfaceOnDarkAccentJoy" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceOnDarkAccentB2EHover: String = "surfaceOnDarkAccentB2EHover" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceOnDarkAccentB2EActive: String = "surfaceOnDarkAccentB2EActive" - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val surfaceOnDarkAccentB2E: String = "surfaceOnDarkAccentB2E" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceOnDarkAccentBrandHover: String = "surfaceOnDarkAccentBrandHover" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceOnDarkAccentBrandActive: String = "surfaceOnDarkAccentBrandActive" - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val surfaceOnDarkAccentBrand: String = "surfaceOnDarkAccentBrand" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccentMainHover: String = "surfaceOnDarkAccentMainHover" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccentMainActive: String = "surfaceOnDarkAccentMainActive" - - /** - * Акцентный цвет поверхности/контролла - */ - public val surfaceOnDarkAccentMain: String = "surfaceOnDarkAccentMain" - - /** - * light surface onDark surfaceAccentMainMinor - */ - public val surfaceOnDarkAccentMainMinor: String = "surfaceOnDarkAccentMainMinor" - - /** - * light surface onDark surfaceAccentMainMinorHover - */ - public val surfaceOnDarkAccentMainMinorHover: String = "surfaceOnDarkAccentMainMinorHover" - - /** - * light surface onDark surfaceAccentMainMinorActive - */ - public val surfaceOnDarkAccentMainMinorActive: String = "surfaceOnDarkAccentMainMinorActive" - - /** - * light surface onDark surfaceAccentAthenaMinor - */ - public val surfaceOnDarkAccentAthenaMinor: String = "surfaceOnDarkAccentAthenaMinor" - - /** - * light surface onDark surfaceAccentAthenaMinorHover - */ - public val surfaceOnDarkAccentAthenaMinorHover: String = "surfaceOnDarkAccentAthenaMinorHover" - - /** - * light surface onDark surfaceAccentAthenaMinorActive - */ - public val surfaceOnDarkAccentAthenaMinorActive: String = "surfaceOnDarkAccentAthenaMinorActive" - - /** - * light surface onDark surfaceAccentJoyMinor - */ - public val surfaceOnDarkAccentJoyMinor: String = "surfaceOnDarkAccentJoyMinor" - - /** - * light surface onDark surfaceAccentJoyMinorHover - */ - public val surfaceOnDarkAccentJoyMinorHover: String = "surfaceOnDarkAccentJoyMinorHover" - - /** - * light surface onDark surfaceAccentJoyMinorActive - */ - public val surfaceOnDarkAccentJoyMinorActive: String = "surfaceOnDarkAccentJoyMinorActive" - - /** - * light surface onDark surfaceAccentB2EMinor - */ - public val surfaceOnDarkAccentB2EMinor: String = "surfaceOnDarkAccentB2EMinor" - - /** - * light surface onDark surfaceAccentB2EMinorHover - */ - public val surfaceOnDarkAccentB2EMinorHover: String = "surfaceOnDarkAccentB2EMinorHover" - - /** - * light surface onDark surfaceAccentB2EMinorActive - */ - public val surfaceOnDarkAccentB2EMinorActive: String = "surfaceOnDarkAccentB2EMinorActive" - - /** - * light surface onDark surfaceAccentBrandMinor - */ - public val surfaceOnDarkAccentBrandMinor: String = "surfaceOnDarkAccentBrandMinor" - - /** - * light surface onDark surfaceAccentBrandMinorHover - */ - public val surfaceOnDarkAccentBrandMinorHover: String = "surfaceOnDarkAccentBrandMinorHover" - - /** - * light surface onDark surfaceAccentBrandMinorActive - */ - public val surfaceOnDarkAccentBrandMinorActive: String = "surfaceOnDarkAccentBrandMinorActive" - - /** - * light surface onDark surfaceTransparentAccentMain - */ - public val surfaceOnDarkTransparentAccentMain: String = "surfaceOnDarkTransparentAccentMain" - - /** - * light surface onDark surfaceTransparentAccentMainHover - */ - public val surfaceOnDarkTransparentAccentMainHover: String = - "surfaceOnDarkTransparentAccentMainHover" - - /** - * light surface onDark surfaceTransparentAccentMainActive - */ - public val surfaceOnDarkTransparentAccentMainActive: String = - "surfaceOnDarkTransparentAccentMainActive" - - /** - * light surface onDark surfaceTransparentAccentAthena - */ - public val surfaceOnDarkTransparentAccentAthena: String = "surfaceOnDarkTransparentAccentAthena" - - /** - * light surface onDark surfaceTransparentAccentAthenaHover - */ - public val surfaceOnDarkTransparentAccentAthenaHover: String = - "surfaceOnDarkTransparentAccentAthenaHover" - - /** - * light surface onDark surfaceTransparentAccentAthenaActive - */ - public val surfaceOnDarkTransparentAccentAthenaActive: String = - "surfaceOnDarkTransparentAccentAthenaActive" - - /** - * light surface onDark surfaceTransparentAccentJoy - */ - public val surfaceOnDarkTransparentAccentJoy: String = "surfaceOnDarkTransparentAccentJoy" - - /** - * light surface onDark surfaceTransparentAccentJoyHover - */ - public val surfaceOnDarkTransparentAccentJoyHover: String = - "surfaceOnDarkTransparentAccentJoyHover" - - /** - * light surface onDark surfaceTransparentAccentJoyActive - */ - public val surfaceOnDarkTransparentAccentJoyActive: String = - "surfaceOnDarkTransparentAccentJoyActive" - - /** - * light surface onDark surfaceTransparentAccentB2E - */ - public val surfaceOnDarkTransparentAccentB2E: String = "surfaceOnDarkTransparentAccentB2E" - - /** - * light surface onDark surfaceTransparentAccentB2EHover - */ - public val surfaceOnDarkTransparentAccentB2EHover: String = - "surfaceOnDarkTransparentAccentB2EHover" - - /** - * light surface onDark surfaceTransparentAccentB2EActive - */ - public val surfaceOnDarkTransparentAccentB2EActive: String = - "surfaceOnDarkTransparentAccentB2EActive" - - /** - * light surface onDark surfaceTransparentAccentBrand - */ - public val surfaceOnDarkTransparentAccentBrand: String = "surfaceOnDarkTransparentAccentBrand" - - /** - * light surface onDark surfaceTransparentAccentBrandHover - */ - public val surfaceOnDarkTransparentAccentBrandHover: String = - "surfaceOnDarkTransparentAccentBrandHover" - - /** - * light surface onDark surfaceTransparentAccentBrandActive - */ - public val surfaceOnDarkTransparentAccentBrandActive: String = - "surfaceOnDarkTransparentAccentBrandActive" - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfo: String = "surfaceOnDarkInfo" - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkPositiveMinor: String = "surfaceOnDarkPositiveMinor" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkWarningMinor: String = "surfaceOnDarkWarningMinor" - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val surfaceOnDarkNegativeMinor: String = "surfaceOnDarkNegativeMinor" - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkInfoMinor: String = "surfaceOnDarkInfoMinor" - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val surfaceOnDarkTransparentPositive: String = "surfaceOnDarkTransparentPositive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentWarning: String = "surfaceOnDarkTransparentWarning" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val surfaceOnDarkTransparentNegative: String = "surfaceOnDarkTransparentNegative" - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val surfaceOnDarkTransparentInfo: String = "surfaceOnDarkTransparentInfo" - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidPrimaryHover: String = "surfaceOnLightSolidPrimaryHover" - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidPrimaryActive: String = "surfaceOnLightSolidPrimaryActive" - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidPrimary: String = "surfaceOnLightSolidPrimary" - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidPrimaryBrightness: String = "surfaceOnLightSolidPrimaryBrightness" - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidSecondaryHover: String = "surfaceOnLightSolidSecondaryHover" - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidSecondaryActive: String = "surfaceOnLightSolidSecondaryActive" - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidSecondary: String = "surfaceOnLightSolidSecondary" - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidTertiaryHover: String = "surfaceOnLightSolidTertiaryHover" - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidTertiaryActive: String = "surfaceOnLightSolidTertiaryActive" - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightSolidTertiary: String = "surfaceOnLightSolidTertiary" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardHover: String = "surfaceOnLightSolidCardHover" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardActive: String = "surfaceOnLightSolidCardActive" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCard: String = "surfaceOnLightSolidCard" - - /** - * Основной фон для карточек на светлом фоне - */ - public val surfaceOnLightSolidCardBrightness: String = "surfaceOnLightSolidCardBrightness" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefaultHover: String = "surfaceOnLightSolidDefaultHover" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefaultActive: String = "surfaceOnLightSolidDefaultActive" - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val surfaceOnLightSolidDefault: String = "surfaceOnLightSolidDefault" - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightTransparentPrimaryHover: String = - "surfaceOnLightTransparentPrimaryHover" - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightTransparentPrimaryActive: String = - "surfaceOnLightTransparentPrimaryActive" - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val surfaceOnLightTransparentPrimary: String = "surfaceOnLightTransparentPrimary" - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondaryHover: String = - "surfaceOnLightTransparentSecondaryHover" - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondaryActive: String = - "surfaceOnLightTransparentSecondaryActive" - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentSecondary: String = "surfaceOnLightTransparentSecondary" - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiaryHover: String = - "surfaceOnLightTransparentTertiaryHover" - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiaryActive: String = - "surfaceOnLightTransparentTertiaryActive" - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentTertiary: String = "surfaceOnLightTransparentTertiary" - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightTransparentDeepHover: String = "surfaceOnLightTransparentDeepHover" - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightTransparentDeepActive: String = "surfaceOnLightTransparentDeepActive" - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightTransparentDeep: String = "surfaceOnLightTransparentDeep" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardHover: String = "surfaceOnLightTransparentCardHover" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardActive: String = "surfaceOnLightTransparentCardActive" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCard: String = "surfaceOnLightTransparentCard" - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val surfaceOnLightTransparentCardBrightness: String = - "surfaceOnLightTransparentCardBrightness" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClearHover: String = "surfaceOnLightClearHover" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClearActive: String = "surfaceOnLightClearActive" - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val surfaceOnLightClear: String = "surfaceOnLightClear" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccentHover: String = "surfaceOnLightAccentHover" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccentActive: String = "surfaceOnLightAccentActive" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccent: String = "surfaceOnLightAccent" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccentMinorHover: String = "surfaceOnLightAccentMinorHover" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccentMinorActive: String = "surfaceOnLightAccentMinorActive" - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightAccentMinor: String = "surfaceOnLightAccentMinor" - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentAccentHover: String = "surfaceOnLightTransparentAccentHover" - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentAccentActive: String = - "surfaceOnLightTransparentAccentActive" - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentAccent: String = "surfaceOnLightTransparentAccent" - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromoHover: String = "surfaceOnLightPromoHover" - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromoActive: String = "surfaceOnLightPromoActive" - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromo: String = "surfaceOnLightPromo" - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromoMinorHover: String = "surfaceOnLightPromoMinorHover" - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromoMinorActive: String = "surfaceOnLightPromoMinorActive" - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightPromoMinor: String = "surfaceOnLightPromoMinor" - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPromoHover: String = "surfaceOnLightTransparentPromoHover" - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPromoActive: String = "surfaceOnLightTransparentPromoActive" - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val surfaceOnLightTransparentPromo: String = "surfaceOnLightTransparentPromo" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositiveHover: String = "surfaceOnLightPositiveHover" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositiveActive: String = "surfaceOnLightPositiveActive" - - /** - * Цвет успеха на светлом фоне - */ - public val surfaceOnLightPositive: String = "surfaceOnLightPositive" - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val surfaceOnLightWarningHover: String = "surfaceOnLightWarningHover" - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val surfaceOnLightWarningActive: String = "surfaceOnLightWarningActive" - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val surfaceOnLightWarning: String = "surfaceOnLightWarning" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeHover: String = "surfaceOnLightNegativeHover" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeActive: String = "surfaceOnLightNegativeActive" - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegative: String = "surfaceOnLightNegative" - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfoHover: String = "surfaceOnLightInfoHover" - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfoActive: String = "surfaceOnLightInfoActive" - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightPositiveMinorHover: String = "surfaceOnLightPositiveMinorHover" - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightPositiveMinorActive: String = "surfaceOnLightPositiveMinorActive" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarningMinorHover: String = "surfaceOnLightWarningMinorHover" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarningMinorActive: String = "surfaceOnLightWarningMinorActive" - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeMinorHover: String = "surfaceOnLightNegativeMinorHover" - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeMinorActive: String = "surfaceOnLightNegativeMinorActive" - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfoMinorHover: String = "surfaceOnLightInfoMinorHover" - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfoMinorActive: String = "surfaceOnLightInfoMinorActive" - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightTransparentPositiveHover: String = - "surfaceOnLightTransparentPositiveHover" - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightTransparentPositiveActive: String = - "surfaceOnLightTransparentPositiveActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentWarningHover: String = - "surfaceOnLightTransparentWarningHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentWarningActive: String = - "surfaceOnLightTransparentWarningActive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentNegativeHover: String = - "surfaceOnLightTransparentNegativeHover" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentNegativeActive: String = - "surfaceOnLightTransparentNegativeActive" - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightTransparentInfoHover: String = "surfaceOnLightTransparentInfoHover" - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightTransparentInfoActive: String = "surfaceOnLightTransparentInfoActive" - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val surfaceOnLightAccentAthenaHover: String = "surfaceOnLightAccentAthenaHover" - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val surfaceOnLightAccentAthenaActive: String = "surfaceOnLightAccentAthenaActive" - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val surfaceOnLightAccentAthena: String = "surfaceOnLightAccentAthena" - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val surfaceOnLightAccentJoyHover: String = "surfaceOnLightAccentJoyHover" - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val surfaceOnLightAccentJoyActive: String = "surfaceOnLightAccentJoyActive" - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val surfaceOnLightAccentJoy: String = "surfaceOnLightAccentJoy" - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val surfaceOnLightAccentB2EHover: String = "surfaceOnLightAccentB2EHover" - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val surfaceOnLightAccentB2EActive: String = "surfaceOnLightAccentB2EActive" - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val surfaceOnLightAccentB2E: String = "surfaceOnLightAccentB2E" - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val surfaceOnLightAccentBrandHover: String = "surfaceOnLightAccentBrandHover" - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val surfaceOnLightAccentBrandActive: String = "surfaceOnLightAccentBrandActive" - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val surfaceOnLightAccentBrand: String = "surfaceOnLightAccentBrand" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccentMainHover: String = "surfaceOnLightAccentMainHover" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccentMainActive: String = "surfaceOnLightAccentMainActive" - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val surfaceOnLightAccentMain: String = "surfaceOnLightAccentMain" - - /** - * light surface onLight surfaceAccentMainMinor - */ - public val surfaceOnLightAccentMainMinor: String = "surfaceOnLightAccentMainMinor" - - /** - * light surface onLight surfaceAccentMainMinorHover - */ - public val surfaceOnLightAccentMainMinorHover: String = "surfaceOnLightAccentMainMinorHover" - - /** - * light surface onLight surfaceAccentMainMinorActive - */ - public val surfaceOnLightAccentMainMinorActive: String = "surfaceOnLightAccentMainMinorActive" - - /** - * light surface onLight surfaceAccentAthenaMinor - */ - public val surfaceOnLightAccentAthenaMinor: String = "surfaceOnLightAccentAthenaMinor" - - /** - * light surface onLight surfaceAccentAthenaMinorHover - */ - public val surfaceOnLightAccentAthenaMinorHover: String = "surfaceOnLightAccentAthenaMinorHover" - - /** - * light surface onLight surfaceAccentAthenaMinorActive - */ - public val surfaceOnLightAccentAthenaMinorActive: String = - "surfaceOnLightAccentAthenaMinorActive" - - /** - * light surface onLight surfaceAccentJoyMinor - */ - public val surfaceOnLightAccentJoyMinor: String = "surfaceOnLightAccentJoyMinor" - - /** - * light surface onLight surfaceAccentJoyMinorHover - */ - public val surfaceOnLightAccentJoyMinorHover: String = "surfaceOnLightAccentJoyMinorHover" - - /** - * light surface onLight surfaceAccentJoyMinorActive - */ - public val surfaceOnLightAccentJoyMinorActive: String = "surfaceOnLightAccentJoyMinorActive" - - /** - * light surface onLight surfaceAccentB2EMinor - */ - public val surfaceOnLightAccentB2EMinor: String = "surfaceOnLightAccentB2EMinor" - - /** - * light surface onLight surfaceAccentB2EMinorHover - */ - public val surfaceOnLightAccentB2EMinorHover: String = "surfaceOnLightAccentB2EMinorHover" - - /** - * light surface onLight surfaceAccentB2EMinorActive - */ - public val surfaceOnLightAccentB2EMinorActive: String = "surfaceOnLightAccentB2EMinorActive" - - /** - * light surface onLight surfaceAccentBrandMinor - */ - public val surfaceOnLightAccentBrandMinor: String = "surfaceOnLightAccentBrandMinor" - - /** - * light surface onLight surfaceAccentBrandMinorHover - */ - public val surfaceOnLightAccentBrandMinorHover: String = "surfaceOnLightAccentBrandMinorHover" - - /** - * light surface onLight surfaceAccentBrandMinorActive - */ - public val surfaceOnLightAccentBrandMinorActive: String = "surfaceOnLightAccentBrandMinorActive" - - /** - * light surface onLight surfaceTransparentAccentMain - */ - public val surfaceOnLightTransparentAccentMain: String = "surfaceOnLightTransparentAccentMain" - - /** - * light surface onLight surfaceTransparentAccentMainHover - */ - public val surfaceOnLightTransparentAccentMainHover: String = - "surfaceOnLightTransparentAccentMainHover" - - /** - * light surface onLight surfaceTransparentAccentMainActive - */ - public val surfaceOnLightTransparentAccentMainActive: String = - "surfaceOnLightTransparentAccentMainActive" - - /** - * light surface onLight surfaceTransparentAccentAthena - */ - public val surfaceOnLightTransparentAccentAthena: String = - "surfaceOnLightTransparentAccentAthena" - - /** - * light surface onLight surfaceTransparentAccentAthenaHover - */ - public val surfaceOnLightTransparentAccentAthenaHover: String = - "surfaceOnLightTransparentAccentAthenaHover" - - /** - * light surface onLight surfaceTransparentAccentAthenaActive - */ - public val surfaceOnLightTransparentAccentAthenaActive: String = - "surfaceOnLightTransparentAccentAthenaActive" - - /** - * light surface onLight surfaceTransparentAccentJoy - */ - public val surfaceOnLightTransparentAccentJoy: String = "surfaceOnLightTransparentAccentJoy" - - /** - * light surface onLight surfaceTransparentAccentJoyHover - */ - public val surfaceOnLightTransparentAccentJoyHover: String = - "surfaceOnLightTransparentAccentJoyHover" - - /** - * light surface onLight surfaceTransparentAccentJoyActive - */ - public val surfaceOnLightTransparentAccentJoyActive: String = - "surfaceOnLightTransparentAccentJoyActive" - - /** - * light surface onLight surfaceTransparentAccentB2E - */ - public val surfaceOnLightTransparentAccentB2E: String = "surfaceOnLightTransparentAccentB2E" - - /** - * light surface onLight surfaceTransparentAccentB2EHover - */ - public val surfaceOnLightTransparentAccentB2EHover: String = - "surfaceOnLightTransparentAccentB2EHover" - - /** - * light surface onLight surfaceTransparentAccentB2EActive - */ - public val surfaceOnLightTransparentAccentB2EActive: String = - "surfaceOnLightTransparentAccentB2EActive" - - /** - * light surface onLight surfaceTransparentAccentBrand - */ - public val surfaceOnLightTransparentAccentBrand: String = "surfaceOnLightTransparentAccentBrand" - - /** - * light surface onLight surfaceTransparentAccentBrandHover - */ - public val surfaceOnLightTransparentAccentBrandHover: String = - "surfaceOnLightTransparentAccentBrandHover" - - /** - * light surface onLight surfaceTransparentAccentBrandActive - */ - public val surfaceOnLightTransparentAccentBrandActive: String = - "surfaceOnLightTransparentAccentBrandActive" - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfo: String = "surfaceOnLightInfo" - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightPositiveMinor: String = "surfaceOnLightPositiveMinor" - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightWarningMinor: String = "surfaceOnLightWarningMinor" - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val surfaceOnLightNegativeMinor: String = "surfaceOnLightNegativeMinor" - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightInfoMinor: String = "surfaceOnLightInfoMinor" - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val surfaceOnLightTransparentPositive: String = "surfaceOnLightTransparentPositive" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentWarning: String = "surfaceOnLightTransparentWarning" - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val surfaceOnLightTransparentNegative: String = "surfaceOnLightTransparentNegative" - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val surfaceOnLightTransparentInfo: String = "surfaceOnLightTransparentInfo" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryHover: String = "surfaceInverseSolidPrimaryHover" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryActive: String = "surfaceInverseSolidPrimaryActive" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimaryBrightness: String = "surfaceInverseSolidPrimaryBrightness" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondaryHover: String = "surfaceInverseSolidSecondaryHover" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondaryActive: String = "surfaceInverseSolidSecondaryActive" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiaryHover: String = "surfaceInverseSolidTertiaryHover" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiaryActive: String = "surfaceInverseSolidTertiaryActive" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardHover: String = "surfaceInverseSolidCardHover" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardActive: String = "surfaceInverseSolidCardActive" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCardBrightness: String = "surfaceInverseSolidCardBrightness" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefaultHover: String = "surfaceInverseSolidDefaultHover" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefaultActive: String = "surfaceInverseSolidDefaultActive" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimaryHover: String = - "surfaceInverseTransparentPrimaryHover" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimaryActive: String = - "surfaceInverseTransparentPrimaryActive" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondaryHover: String = - "surfaceInverseTransparentSecondaryHover" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondaryActive: String = - "surfaceInverseTransparentSecondaryActive" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiaryHover: String = - "surfaceInverseTransparentTertiaryHover" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiaryActive: String = - "surfaceInverseTransparentTertiaryActive" - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentDeepHover: String = "surfaceInverseTransparentDeepHover" - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentDeepActive: String = "surfaceInverseTransparentDeepActive" - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentDeep: String = "surfaceInverseTransparentDeep" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardHover: String = "surfaceInverseTransparentCardHover" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardActive: String = "surfaceInverseTransparentCardActive" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCardBrightness: String = - "surfaceInverseTransparentCardBrightness" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClearHover: String = "surfaceInverseClearHover" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClearActive: String = "surfaceInverseClearActive" - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val surfaceInverseClear: String = "surfaceInverseClear" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccentHover: String = "surfaceInverseAccentHover" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccentActive: String = "surfaceInverseAccentActive" - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseAccent: String = "surfaceInverseAccent" - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseAccentMinorHover: String = "surfaceInverseAccentMinorHover" - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseAccentMinorActive: String = "surfaceInverseAccentMinorActive" - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseAccentMinor: String = "surfaceInverseAccentMinor" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseTransparentAccentHover: String = "surfaceInverseTransparentAccentHover" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseTransparentAccentActive: String = - "surfaceInverseTransparentAccentActive" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val surfaceInverseTransparentAccent: String = "surfaceInverseTransparentAccent" - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val surfaceInversePromoHover: String = "surfaceInversePromoHover" - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val surfaceInversePromoActive: String = "surfaceInversePromoActive" - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val surfaceInversePromo: String = "surfaceInversePromo" - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val surfaceInversePromoMinorHover: String = "surfaceInversePromoMinorHover" - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val surfaceInversePromoMinorActive: String = "surfaceInversePromoMinorActive" - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val surfaceInversePromoMinor: String = "surfaceInversePromoMinor" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val surfaceInverseTransparentPromoHover: String = "surfaceInverseTransparentPromoHover" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val surfaceInverseTransparentPromoActive: String = "surfaceInverseTransparentPromoActive" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val surfaceInverseTransparentPromo: String = "surfaceInverseTransparentPromo" - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositiveHover: String = "surfaceInversePositiveHover" - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositiveActive: String = "surfaceInversePositiveActive" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningHover: String = "surfaceInverseWarningHover" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningActive: String = "surfaceInverseWarningActive" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeHover: String = "surfaceInverseNegativeHover" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeActive: String = "surfaceInverseNegativeActive" - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfoHover: String = "surfaceInverseInfoHover" - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfoActive: String = "surfaceInverseInfoActive" - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositiveMinorHover: String = "surfaceInversePositiveMinorHover" - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositiveMinorActive: String = "surfaceInversePositiveMinorActive" - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningMinorHover: String = "surfaceInverseWarningMinorHover" - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningMinorActive: String = "surfaceInverseWarningMinorActive" - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeMinorHover: String = "surfaceInverseNegativeMinorHover" - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeMinorActive: String = "surfaceInverseNegativeMinorActive" - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfoMinorHover: String = "surfaceInverseInfoMinorHover" - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfoMinorActive: String = "surfaceInverseInfoMinorActive" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInverseTransparentPositiveHover: String = - "surfaceInverseTransparentPositiveHover" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInverseTransparentPositiveActive: String = - "surfaceInverseTransparentPositiveActive" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentWarningHover: String = - "surfaceInverseTransparentWarningHover" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentWarningActive: String = - "surfaceInverseTransparentWarningActive" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentNegativeHover: String = - "surfaceInverseTransparentNegativeHover" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentNegativeActive: String = - "surfaceInverseTransparentNegativeActive" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseTransparentInfoHover: String = "surfaceInverseTransparentInfoHover" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseTransparentInfoActive: String = "surfaceInverseTransparentInfoActive" - - /** - * light surface inverse surfaceAccentMain - */ - public val surfaceInverseAccentMain: String = "surfaceInverseAccentMain" - - /** - * light surface inverse surfaceAccentMainHover - */ - public val surfaceInverseAccentMainHover: String = "surfaceInverseAccentMainHover" - - /** - * light surface inverse surfaceAccentMainActive - */ - public val surfaceInverseAccentMainActive: String = "surfaceInverseAccentMainActive" - - /** - * light surface inverse surfaceAccentAthena - */ - public val surfaceInverseAccentAthena: String = "surfaceInverseAccentAthena" - - /** - * light surface inverse surfaceAccentAthenaHover - */ - public val surfaceInverseAccentAthenaHover: String = "surfaceInverseAccentAthenaHover" - - /** - * light surface inverse surfaceAccentAthenaActive - */ - public val surfaceInverseAccentAthenaActive: String = "surfaceInverseAccentAthenaActive" - - /** - * light surface inverse surfacesurfaceAccentJoy - */ - public val surfaceInverseSurfaceAccentJoy: String = "surfaceInverseSurfaceAccentJoy" - - /** - * light surface inverse surfacesurfaceAccentJoyHover - */ - public val surfaceInverseSurfaceAccentJoyHover: String = "surfaceInverseSurfaceAccentJoyHover" - - /** - * light surface inverse surfacesurfaceAccentJoyActive - */ - public val surfaceInverseSurfaceAccentJoyActive: String = "surfaceInverseSurfaceAccentJoyActive" - - /** - * light surface inverse surfaceAccentB2E - */ - public val surfaceInverseAccentB2E: String = "surfaceInverseAccentB2E" - - /** - * light surface inverse surfaceAccentB2EHover - */ - public val surfaceInverseAccentB2EHover: String = "surfaceInverseAccentB2EHover" - - /** - * light surface inverse surfaceAccentB2EActive - */ - public val surfaceInverseAccentB2EActive: String = "surfaceInverseAccentB2EActive" - - /** - * light surface inverse surfaceAccentBrand - */ - public val surfaceInverseAccentBrand: String = "surfaceInverseAccentBrand" - - /** - * light surface inverse surfaceAccentBrandHover - */ - public val surfaceInverseAccentBrandHover: String = "surfaceInverseAccentBrandHover" - - /** - * light surface inverse surfaceAccentBrandActive - */ - public val surfaceInverseAccentBrandActive: String = "surfaceInverseAccentBrandActive" - - /** - * light surface inverse surfaceAccentMainMinorHover - */ - public val surfaceInverseAccentMainMinorHover: String = "surfaceInverseAccentMainMinorHover" - - /** - * light surface inverse surfaceAccentMainMinorActive - */ - public val surfaceInverseAccentMainMinorActive: String = "surfaceInverseAccentMainMinorActive" - - /** - * light surface inverse surfaceAccentAthenaMinorHover - */ - public val surfaceInverseAccentAthenaMinorHover: String = "surfaceInverseAccentAthenaMinorHover" - - /** - * light surface inverse surfaceAccentAthenaMinorActive - */ - public val surfaceInverseAccentAthenaMinorActive: String = - "surfaceInverseAccentAthenaMinorActive" - - /** - * light surface inverse surfaceAccentJoyMinorHover - */ - public val surfaceInverseAccentJoyMinorHover: String = "surfaceInverseAccentJoyMinorHover" - - /** - * light surface inverse surfaceAccentJoyMinorActive - */ - public val surfaceInverseAccentJoyMinorActive: String = "surfaceInverseAccentJoyMinorActive" - - /** - * light surface inverse surfaceAccentB2EMinorHover - */ - public val surfaceInverseAccentB2EMinorHover: String = "surfaceInverseAccentB2EMinorHover" - - /** - * light surface inverse surfaceAccentB2EMinorActive - */ - public val surfaceInverseAccentB2EMinorActive: String = "surfaceInverseAccentB2EMinorActive" - - /** - * light surface inverse surfaceAccentBrandMinorHover - */ - public val surfaceInverseAccentBrandMinorHover: String = "surfaceInverseAccentBrandMinorHover" - - /** - * light surface inverse surfaceAccentBrandMinorActive - */ - public val surfaceInverseAccentBrandMinorActive: String = "surfaceInverseAccentBrandMinorActive" - - /** - * light surface inverse surfaceTransparentAccentMainHover - */ - public val surfaceInverseTransparentAccentMainHover: String = - "surfaceInverseTransparentAccentMainHover" - - /** - * light surface inverse surfaceTransparentAccentMainActive - */ - public val surfaceInverseTransparentAccentMainActive: String = - "surfaceInverseTransparentAccentMainActive" - - /** - * light surface inverse surfaceTransparentAccentAthenaHover - */ - public val surfaceInverseTransparentAccentAthenaHover: String = - "surfaceInverseTransparentAccentAthenaHover" - - /** - * light surface inverse surfaceTransparentAccentAthenaActive - */ - public val surfaceInverseTransparentAccentAthenaActive: String = - "surfaceInverseTransparentAccentAthenaActive" - - /** - * light surface inverse surfaceTransparentAccentJoyHover - */ - public val surfaceInverseTransparentAccentJoyHover: String = - "surfaceInverseTransparentAccentJoyHover" - - /** - * light surface inverse surfaceTransparentAccentJoyActive - */ - public val surfaceInverseTransparentAccentJoyActive: String = - "surfaceInverseTransparentAccentJoyActive" - - /** - * light surface inverse surfaceTransparentAccentB2EHover - */ - public val surfaceInverseTransparentAccentB2EHover: String = - "surfaceInverseTransparentAccentB2EHover" - - /** - * light surface inverse surfaceTransparentAccentB2EActive - */ - public val surfaceInverseTransparentAccentB2EActive: String = - "surfaceInverseTransparentAccentB2EActive" - - /** - * light surface inverse surfaceTransparentAccentBrandHover - */ - public val surfaceInverseTransparentAccentBrandHover: String = - "surfaceInverseTransparentAccentBrandHover" - - /** - * light surface inverse surfaceTransparentAccentBrandActive - */ - public val surfaceInverseTransparentAccentBrandActive: String = - "surfaceInverseTransparentAccentBrandActive" - - /** - * Инвертированный основной фон для карточек - */ - public val surfaceInverseSolidCard: String = "surfaceInverseSolidCard" - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidPrimary: String = "surfaceInverseSolidPrimary" - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidSecondary: String = "surfaceInverseSolidSecondary" - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val surfaceInverseSolidTertiary: String = "surfaceInverseSolidTertiary" - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val surfaceInverseSolidDefault: String = "surfaceInverseSolidDefault" - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentPrimary: String = "surfaceInverseTransparentPrimary" - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentSecondary: String = "surfaceInverseTransparentSecondary" - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val surfaceInverseTransparentTertiary: String = "surfaceInverseTransparentTertiary" - - /** - * Инвертированный прозрачный фон для карточек - */ - public val surfaceInverseTransparentCard: String = "surfaceInverseTransparentCard" - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositive: String = "surfaceInversePositive" - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarning: String = "surfaceInverseWarning" - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegative: String = "surfaceInverseNegative" - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfo: String = "surfaceInverseInfo" - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val surfaceInversePositiveMinor: String = "surfaceInversePositiveMinor" - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseWarningMinor: String = "surfaceInverseWarningMinor" - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val surfaceInverseNegativeMinor: String = "surfaceInverseNegativeMinor" - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val surfaceInverseInfoMinor: String = "surfaceInverseInfoMinor" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val surfaceInverseTransparentPositive: String = "surfaceInverseTransparentPositive" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentWarning: String = "surfaceInverseTransparentWarning" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val surfaceInverseTransparentNegative: String = "surfaceInverseTransparentNegative" - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val surfaceInverseTransparentInfo: String = "surfaceInverseTransparentInfo" - - /** - * light surface inverse surfaceAccentMainMinor - */ - public val surfaceInverseAccentMainMinor: String = "surfaceInverseAccentMainMinor" - - /** - * light surface inverse surfaceAccentAthenaMinor - */ - public val surfaceInverseAccentAthenaMinor: String = "surfaceInverseAccentAthenaMinor" - - /** - * light surface inverse surfaceAccentJoyMinor - */ - public val surfaceInverseAccentJoyMinor: String = "surfaceInverseAccentJoyMinor" - - /** - * light surface inverse surfaceAccentBrandMinor - */ - public val surfaceInverseAccentBrandMinor: String = "surfaceInverseAccentBrandMinor" - - /** - * light surface inverse surfaceAccentB2EMinor - */ - public val surfaceInverseAccentB2EMinor: String = "surfaceInverseAccentB2EMinor" - - /** - * light surface inverse surfaceTransparentAccentMain - */ - public val surfaceInverseTransparentAccentMain: String = "surfaceInverseTransparentAccentMain" - - /** - * light surface inverse surfaceTransparentAccentAthena - */ - public val surfaceInverseTransparentAccentAthena: String = - "surfaceInverseTransparentAccentAthena" - - /** - * light surface inverse surfaceTransparentAccentJoy - */ - public val surfaceInverseTransparentAccentJoy: String = "surfaceInverseTransparentAccentJoy" - - /** - * light surface inverse surfaceTransparentAccentB2E - */ - public val surfaceInverseTransparentAccentB2E: String = "surfaceInverseTransparentAccentB2E" - - /** - * light surface inverse surfaceTransparentAccentBrand - */ - public val surfaceInverseTransparentAccentBrand: String = "surfaceInverseTransparentAccentBrand" - - /** - * Основной фон - */ - public val backgroundDefaultPrimary: String = "backgroundDefaultPrimary" - - /** - * Основной фон - */ - public val backgroundDefaultPrimaryBrightness: String = "backgroundDefaultPrimaryBrightness" - - /** - * Вторичный фон - */ - public val backgroundDefaultSecondary: String = "backgroundDefaultSecondary" - - /** - * Третичный фон - */ - public val backgroundDefaultTertiary: String = "backgroundDefaultTertiary" - - /** - * Основной фон на темном фоне - */ - public val backgroundDarkPrimary: String = "backgroundDarkPrimary" - - /** - * Вторичный фон на темном фоне - */ - public val backgroundDarkSecondary: String = "backgroundDarkSecondary" - - /** - * Третичный фон на темном фоне - */ - public val backgroundDarkTertiary: String = "backgroundDarkTertiary" - - /** - * Основной фон на светлом фоне - */ - public val backgroundLightPrimary: String = "backgroundLightPrimary" - - /** - * Вторичный фон на светлом фоне - */ - public val backgroundLightSecondary: String = "backgroundLightSecondary" - - /** - * Третичный фон на светлом фоне - */ - public val backgroundLightTertiary: String = "backgroundLightTertiary" - - /** - * Инвертированный основной фон - */ - public val backgroundInversePrimaryBrightness: String = "backgroundInversePrimaryBrightness" - - /** - * Инвертированный третичный фон - */ - public val backgroundInverseTertiary: String = "backgroundInverseTertiary" - - /** - * Инвертированный основной фон - */ - public val backgroundInversePrimary: String = "backgroundInversePrimary" - - /** - * Инвертированный вторичный фон - */ - public val backgroundInverseSecondary: String = "backgroundInverseSecondary" - - /** - * Цвет фона паранжи светлый - */ - public val overlayDefaultSoft: String = "overlayDefaultSoft" - - /** - * Цвет фона паранжи темный - */ - public val overlayDefaultHard: String = "overlayDefaultHard" - - /** - * Цвет фона паранжи размытый - */ - public val overlayDefaultBlur: String = "overlayDefaultBlur" - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val overlayOnDarkSoft: String = "overlayOnDarkSoft" - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val overlayOnDarkHard: String = "overlayOnDarkHard" - - /** - * Оверлей с блюром - */ - public val overlayOnDarkBlur: String = "overlayOnDarkBlur" - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val overlayOnLightSoft: String = "overlayOnLightSoft" - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val overlayOnLightHard: String = "overlayOnLightHard" - - /** - * Цвет фона паранжи размытый на светлом фоне - */ - public val overlayOnLightBlur: String = "overlayOnLightBlur" - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val overlayInverseSoft: String = "overlayInverseSoft" - - /** - * Инвертированный цвет фона паранжи темный - */ - public val overlayInverseHard: String = "overlayInverseHard" - - /** - * Инвертированный цвет фона паранжи размытый - */ - public val overlayInverseBlur: String = "overlayInverseBlur" - - /** - * Основной непрозрачный цвет обводки - */ - public val outlineDefaultSolidPrimaryHover: String = "outlineDefaultSolidPrimaryHover" - - /** - * Основной непрозрачный цвет обводки - */ - public val outlineDefaultSolidPrimaryActive: String = "outlineDefaultSolidPrimaryActive" - - /** - * Вторичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidSecondaryHover: String = "outlineDefaultSolidSecondaryHover" - - /** - * Вторичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidSecondaryActive: String = "outlineDefaultSolidSecondaryActive" - - /** - * Третичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidTertiaryHover: String = "outlineDefaultSolidTertiaryHover" - - /** - * Третичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidTertiaryActive: String = "outlineDefaultSolidTertiaryActive" - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val outlineDefaultTransparentDefaultHover: String = - "outlineDefaultTransparentDefaultHover" - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val outlineDefaultTransparentDefaultActive: String = - "outlineDefaultTransparentDefaultActive" - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val outlineDefaultTransparentDefault: String = "outlineDefaultTransparentDefault" - - /** - * Основной прозрачный цвет обводки - */ - public val outlineDefaultTransparentPrimaryHover: String = - "outlineDefaultTransparentPrimaryHover" - - /** - * Основной прозрачный цвет обводки - */ - public val outlineDefaultTransparentPrimaryActive: String = - "outlineDefaultTransparentPrimaryActive" - - /** - * Вторичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentSecondaryHover: String = - "outlineDefaultTransparentSecondaryHover" - - /** - * Вторичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentSecondaryActive: String = - "outlineDefaultTransparentSecondaryActive" - - /** - * Третичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentTertiaryHover: String = - "outlineDefaultTransparentTertiaryHover" - - /** - * Третичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentTertiaryActive: String = - "outlineDefaultTransparentTertiaryActive" - - /** - * Бесцветная обводка - */ - public val outlineDefaultClearHover: String = "outlineDefaultClearHover" - - /** - * Бесцветная обводка - */ - public val outlineDefaultClearActive: String = "outlineDefaultClearActive" - - /** - * Акцентный цвет обводки - */ - public val outlineDefaultAccentHover: String = "outlineDefaultAccentHover" - - /** - * Акцентный цвет обводки - */ - public val outlineDefaultAccentActive: String = "outlineDefaultAccentActive" - - /** - * Акцентный цвет обводки - */ - public val outlineDefaultAccent: String = "outlineDefaultAccent" - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val outlineDefaultAccentMinorHover: String = "outlineDefaultAccentMinorHover" - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val outlineDefaultAccentMinorActive: String = "outlineDefaultAccentMinorActive" - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val outlineDefaultAccentMinor: String = "outlineDefaultAccentMinor" - - /** - * Прозрачный акцентный цвет обводки - */ - public val outlineDefaultTransparentAccentHover: String = "outlineDefaultTransparentAccentHover" - - /** - * Прозрачный акцентный цвет обводки - */ - public val outlineDefaultTransparentAccentActive: String = - "outlineDefaultTransparentAccentActive" - - /** - * Прозрачный акцентный цвет обводки - */ - public val outlineDefaultTransparentAccent: String = "outlineDefaultTransparentAccent" - - /** - * Промо цвет обводки - */ - public val outlineDefaultPromoHover: String = "outlineDefaultPromoHover" - - /** - * Промо цвет обводки - */ - public val outlineDefaultPromoActive: String = "outlineDefaultPromoActive" - - /** - * Промо цвет обводки - */ - public val outlineDefaultPromo: String = "outlineDefaultPromo" - - /** - * Минорный промо цвет обводки - */ - public val outlineDefaultPromoMinorHover: String = "outlineDefaultPromoMinorHover" - - /** - * Минорный промо цвет обводки - */ - public val outlineDefaultPromoMinorActive: String = "outlineDefaultPromoMinorActive" - - /** - * Минорный промо цвет обводки - */ - public val outlineDefaultPromoMinor: String = "outlineDefaultPromoMinor" - - /** - * Цвет обводки успех - */ - public val outlineDefaultPositiveHover: String = "outlineDefaultPositiveHover" - - /** - * Цвет обводки успех - */ - public val outlineDefaultPositiveActive: String = "outlineDefaultPositiveActive" - - /** - * Цвет обводки предупреждение - */ - public val outlineDefaultWarningHover: String = "outlineDefaultWarningHover" - - /** - * Цвет обводки предупреждение - */ - public val outlineDefaultWarningActive: String = "outlineDefaultWarningActive" - - /** - * Цвет обводки ошибка - */ - public val outlineDefaultNegativeHover: String = "outlineDefaultNegativeHover" - - /** - * Цвет обводки ошибка - */ - public val outlineDefaultNegativeActive: String = "outlineDefaultNegativeActive" - - /** - * Цвет обводки информация - */ - public val outlineDefaultInfoHover: String = "outlineDefaultInfoHover" - - /** - * Цвет обводки информация - */ - public val outlineDefaultInfoActive: String = "outlineDefaultInfoActive" - - /** - * Минорный цвет обводки успех - */ - public val outlineDefaultPositiveMinorHover: String = "outlineDefaultPositiveMinorHover" - - /** - * Минорный цвет обводки успех - */ - public val outlineDefaultPositiveMinorActive: String = "outlineDefaultPositiveMinorActive" - - /** - * Минорный цвет обводки предупреждение - */ - public val outlineDefaultWarningMinorHover: String = "outlineDefaultWarningMinorHover" - - /** - * Минорный цвет обводки предупреждение - */ - public val outlineDefaultWarningMinorActive: String = "outlineDefaultWarningMinorActive" - - /** - * Минорный цвет обводки ошибка - */ - public val outlineDefaultNegativeMinorHover: String = "outlineDefaultNegativeMinorHover" - - /** - * Минорный цвет обводки ошибка - */ - public val outlineDefaultNegativeMinorActive: String = "outlineDefaultNegativeMinorActive" - - /** - * Минорный цвет обводки информация - */ - public val outlineDefaultInfoMinorHover: String = "outlineDefaultInfoMinorHover" - - /** - * Минорный цвет обводки информация - */ - public val outlineDefaultInfoMinorActive: String = "outlineDefaultInfoMinorActive" - - /** - * Прозрачный цвет обводки успех - */ - public val outlineDefaultTransparentPositiveHover: String = - "outlineDefaultTransparentPositiveHover" - - /** - * Прозрачный цвет обводки успех - */ - public val outlineDefaultTransparentPositiveActive: String = - "outlineDefaultTransparentPositiveActive" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentWarningHover: String = - "outlineDefaultTransparentWarningHover" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentWarningActive: String = - "outlineDefaultTransparentWarningActive" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentNegativeHover: String = - "outlineDefaultTransparentNegativeHover" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentNegativeActive: String = - "outlineDefaultTransparentNegativeActive" - - /** - * Прозрачный цвет обводки информация - */ - public val outlineDefaultTransparentInfoHover: String = "outlineDefaultTransparentInfoHover" - - /** - * Прозрачный цвет обводки информация - */ - public val outlineDefaultTransparentInfoActive: String = "outlineDefaultTransparentInfoActive" - - /** - * light outline default outlineSolidDefaultHover - */ - public val outlineDefaultSolidDefaultHover: String = "outlineDefaultSolidDefaultHover" - - /** - * light outline default outlineSolidDefaultActive - */ - public val outlineDefaultSolidDefaultActive: String = "outlineDefaultSolidDefaultActive" - - /** - * light outline default outlineAccentMainHover - */ - public val outlineDefaultAccentMainHover: String = "outlineDefaultAccentMainHover" - - /** - * light outline default outlineAccentMainActive - */ - public val outlineDefaultAccentMainActive: String = "outlineDefaultAccentMainActive" - - /** - * light outline default outlineAccentAthenaHover - */ - public val outlineDefaultAccentAthenaHover: String = "outlineDefaultAccentAthenaHover" - - /** - * light outline default outlineAccentAthenaActive - */ - public val outlineDefaultAccentAthenaActive: String = "outlineDefaultAccentAthenaActive" - - /** - * light outline default outlineAccentJoyHover - */ - public val outlineDefaultAccentJoyHover: String = "outlineDefaultAccentJoyHover" - - /** - * light outline default outlineAccentJoyActive - */ - public val outlineDefaultAccentJoyActive: String = "outlineDefaultAccentJoyActive" - - /** - * light outline default outlineAccentB2EHover - */ - public val outlineDefaultAccentB2EHover: String = "outlineDefaultAccentB2EHover" - - /** - * light outline default outlineAccentB2EActive - */ - public val outlineDefaultAccentB2EActive: String = "outlineDefaultAccentB2EActive" - - /** - * light outline default outlineAccentBrandHover - */ - public val outlineDefaultAccentBrandHover: String = "outlineDefaultAccentBrandHover" - - /** - * light outline default outlineAccentBrandActive - */ - public val outlineDefaultAccentBrandActive: String = "outlineDefaultAccentBrandActive" - - /** - * light outline default outlineAccentMainMinorHover - */ - public val outlineDefaultAccentMainMinorHover: String = "outlineDefaultAccentMainMinorHover" - - /** - * light outline default outlineAccentMainMinorActive - */ - public val outlineDefaultAccentMainMinorActive: String = "outlineDefaultAccentMainMinorActive" - - /** - * light outline default outlineAccentAthenaMinorHover - */ - public val outlineDefaultAccentAthenaMinorHover: String = "outlineDefaultAccentAthenaMinorHover" - - /** - * light outline default outlineAccentAthenaMinorActive - */ - public val outlineDefaultAccentAthenaMinorActive: String = - "outlineDefaultAccentAthenaMinorActive" - - /** - * light outline default outlineAccentJoyMinorHover - */ - public val outlineDefaultAccentJoyMinorHover: String = "outlineDefaultAccentJoyMinorHover" - - /** - * light outline default outlineAccentJoyMinorActive - */ - public val outlineDefaultAccentJoyMinorActive: String = "outlineDefaultAccentJoyMinorActive" - - /** - * light outline default outlineAccentB2EMinorHover - */ - public val outlineDefaultAccentB2EMinorHover: String = "outlineDefaultAccentB2EMinorHover" - - /** - * light outline default outlineAccentB2EMinorActive - */ - public val outlineDefaultAccentB2EMinorActive: String = "outlineDefaultAccentB2EMinorActive" - - /** - * light outline default outlineAccentBrandMinorHover - */ - public val outlineDefaultAccentBrandMinorHover: String = "outlineDefaultAccentBrandMinorHover" - - /** - * light outline default outlineAccentBrandMinorActive - */ - public val outlineDefaultAccentBrandMinorActive: String = "outlineDefaultAccentBrandMinorActive" - - /** - * light outline default outlineTransparentAccentMainHover - */ - public val outlineDefaultTransparentAccentMainHover: String = - "outlineDefaultTransparentAccentMainHover" - - /** - * light outline default outlineTransparentAccentMainActive - */ - public val outlineDefaultTransparentAccentMainActive: String = - "outlineDefaultTransparentAccentMainActive" - - /** - * light outline default outlineTransparentAccentAthenaHover - */ - public val outlineDefaultTransparentAccentAthenaHover: String = - "outlineDefaultTransparentAccentAthenaHover" - - /** - * light outline default outlineTransparentAccentAthenaActive - */ - public val outlineDefaultTransparentAccentAthenaActive: String = - "outlineDefaultTransparentAccentAthenaActive" - - /** - * light outline default outlineTransparentAccentJoyHover - */ - public val outlineDefaultTransparentAccentJoyHover: String = - "outlineDefaultTransparentAccentJoyHover" - - /** - * light outline default outlineTransparentAccentJoyActive - */ - public val outlineDefaultTransparentAccentJoyActive: String = - "outlineDefaultTransparentAccentJoyActive" - - /** - * light outline default outlineTransparentAccentB2EHover - */ - public val outlineDefaultTransparentAccentB2EHover: String = - "outlineDefaultTransparentAccentB2EHover" - - /** - * light outline default outlineTransparentAccentB2EActive - */ - public val outlineDefaultTransparentAccentB2EActive: String = - "outlineDefaultTransparentAccentB2EActive" - - /** - * light outline default outlineTransparentAccentBrandHover - */ - public val outlineDefaultTransparentAccentBrandHover: String = - "outlineDefaultTransparentAccentBrandHover" - - /** - * light outline default outlineTransparentAccentBrandActive - */ - public val outlineDefaultTransparentAccentBrandActive: String = - "outlineDefaultTransparentAccentBrandActive" - - /** - * Основной непрозрачный цвет обводки - */ - public val outlineDefaultSolidPrimary: String = "outlineDefaultSolidPrimary" - - /** - * Вторичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidSecondary: String = "outlineDefaultSolidSecondary" - - /** - * Третичный непрозрачный цвет обводки - */ - public val outlineDefaultSolidTertiary: String = "outlineDefaultSolidTertiary" - - /** - * Основной прозрачный цвет обводки - */ - public val outlineDefaultTransparentPrimary: String = "outlineDefaultTransparentPrimary" - - /** - * Вторичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentSecondary: String = "outlineDefaultTransparentSecondary" - - /** - * Третичный прозрачный цвет обводки - */ - public val outlineDefaultTransparentTertiary: String = "outlineDefaultTransparentTertiary" - - /** - * Бесцветная обводка - */ - public val outlineDefaultClear: String = "outlineDefaultClear" - - /** - * light outline default outlineSolidDefault - */ - public val outlineDefaultSolidDefault: String = "outlineDefaultSolidDefault" - - /** - * Цвет обводки успех - */ - public val outlineDefaultPositive: String = "outlineDefaultPositive" - - /** - * Цвет обводки предупреждение - */ - public val outlineDefaultWarning: String = "outlineDefaultWarning" - - /** - * Цвет обводки ошибка - */ - public val outlineDefaultNegative: String = "outlineDefaultNegative" - - /** - * Цвет обводки информация - */ - public val outlineDefaultInfo: String = "outlineDefaultInfo" - - /** - * Минорный цвет обводки успех - */ - public val outlineDefaultPositiveMinor: String = "outlineDefaultPositiveMinor" - - /** - * Минорный цвет обводки предупреждение - */ - public val outlineDefaultWarningMinor: String = "outlineDefaultWarningMinor" - - /** - * Минорный цвет обводки ошибка - */ - public val outlineDefaultNegativeMinor: String = "outlineDefaultNegativeMinor" - - /** - * Минорный цвет обводки информация - */ - public val outlineDefaultInfoMinor: String = "outlineDefaultInfoMinor" - - /** - * Прозрачный цвет обводки успех - */ - public val outlineDefaultTransparentPositive: String = "outlineDefaultTransparentPositive" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentWarning: String = "outlineDefaultTransparentWarning" - - /** - * Прозрачный цвет обводки предупреждение - */ - public val outlineDefaultTransparentNegative: String = "outlineDefaultTransparentNegative" - - /** - * Прозрачный цвет обводки информация - */ - public val outlineDefaultTransparentInfo: String = "outlineDefaultTransparentInfo" - - /** - * light outline default outlineAccentMain - */ - public val outlineDefaultAccentMain: String = "outlineDefaultAccentMain" - - /** - * light outline default outlineAccentAthena - */ - public val outlineDefaultAccentAthena: String = "outlineDefaultAccentAthena" - - /** - * light outline default outlineAccentJoy - */ - public val outlineDefaultAccentJoy: String = "outlineDefaultAccentJoy" - - /** - * light outline default outlineAccentB2E - */ - public val outlineDefaultAccentB2E: String = "outlineDefaultAccentB2E" - - /** - * light outline default outlineAccentBrand - */ - public val outlineDefaultAccentBrand: String = "outlineDefaultAccentBrand" - - /** - * light outline default outlineAccentMainMinor - */ - public val outlineDefaultAccentMainMinor: String = "outlineDefaultAccentMainMinor" - - /** - * light outline default outlineAccentAthenaMinor - */ - public val outlineDefaultAccentAthenaMinor: String = "outlineDefaultAccentAthenaMinor" - - /** - * light outline default outlineAccentJoyMinor - */ - public val outlineDefaultAccentJoyMinor: String = "outlineDefaultAccentJoyMinor" - - /** - * light outline default outlineAccentB2EMinor - */ - public val outlineDefaultAccentB2EMinor: String = "outlineDefaultAccentB2EMinor" - - /** - * light outline default outlineAccentBrandMinor - */ - public val outlineDefaultAccentBrandMinor: String = "outlineDefaultAccentBrandMinor" - - /** - * light outline default outlineTransparentAccentMain - */ - public val outlineDefaultTransparentAccentMain: String = "outlineDefaultTransparentAccentMain" - - /** - * light outline default outlineTransparentAccentAthena - */ - public val outlineDefaultTransparentAccentAthena: String = - "outlineDefaultTransparentAccentAthena" - - /** - * light outline default outlineTransparentAccentJoy - */ - public val outlineDefaultTransparentAccentJoy: String = "outlineDefaultTransparentAccentJoy" - - /** - * light outline default outlineTransparentAccentB2E - */ - public val outlineDefaultTransparentAccentB2E: String = "outlineDefaultTransparentAccentB2E" - - /** - * light outline default outlineTransparentAccentBrand - */ - public val outlineDefaultTransparentAccentBrand: String = "outlineDefaultTransparentAccentBrand" - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidPrimaryHover: String = "outlineOnDarkSolidPrimaryHover" - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidPrimaryActive: String = "outlineOnDarkSolidPrimaryActive" - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidSecondaryHover: String = "outlineOnDarkSolidSecondaryHover" - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidSecondaryActive: String = "outlineOnDarkSolidSecondaryActive" - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidTertiaryHover: String = "outlineOnDarkSolidTertiaryHover" - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidTertiaryActive: String = "outlineOnDarkSolidTertiaryActive" - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val outlineOnDarkTransparentDefaultHover: String = "outlineOnDarkTransparentDefaultHover" - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val outlineOnDarkTransparentDefaultActive: String = - "outlineOnDarkTransparentDefaultActive" - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val outlineOnDarkTransparentDefault: String = "outlineOnDarkTransparentDefault" - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentPrimaryHover: String = "outlineOnDarkTransparentPrimaryHover" - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentPrimaryActive: String = - "outlineOnDarkTransparentPrimaryActive" - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentSecondaryHover: String = - "outlineOnDarkTransparentSecondaryHover" - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentSecondaryActive: String = - "outlineOnDarkTransparentSecondaryActive" - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentTertiaryHover: String = - "outlineOnDarkTransparentTertiaryHover" - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentTertiaryActive: String = - "outlineOnDarkTransparentTertiaryActive" - - /** - * Бесцветная обводка на темном фоне - */ - public val outlineOnDarkClearHover: String = "outlineOnDarkClearHover" - - /** - * Бесцветная обводка на темном фоне - */ - public val outlineOnDarkClearActive: String = "outlineOnDarkClearActive" - - /** - * Бесцветная обводка на темном фоне - */ - public val outlineOnDarkClear: String = "outlineOnDarkClear" - - /** - * Акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkAccentHover: String = "outlineOnDarkAccentHover" - - /** - * Акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkAccentActive: String = "outlineOnDarkAccentActive" - - /** - * Акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkAccent: String = "outlineOnDarkAccent" - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkAccentMinorHover: String = "outlineOnDarkAccentMinorHover" - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkAccentMinorActive: String = "outlineOnDarkAccentMinorActive" - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkAccentMinor: String = "outlineOnDarkAccentMinor" - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentAccentHover: String = "outlineOnDarkTransparentAccentHover" - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentAccentActive: String = "outlineOnDarkTransparentAccentActive" - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentAccent: String = "outlineOnDarkTransparentAccent" - - /** - * Промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromoHover: String = "outlineOnDarkPromoHover" - - /** - * Промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromoActive: String = "outlineOnDarkPromoActive" - - /** - * Промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromo: String = "outlineOnDarkPromo" - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromoMinorHover: String = "outlineOnDarkPromoMinorHover" - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromoMinorActive: String = "outlineOnDarkPromoMinorActive" - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val outlineOnDarkPromoMinor: String = "outlineOnDarkPromoMinor" - - /** - * Цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositiveHover: String = "outlineOnDarkPositiveHover" - - /** - * Цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositiveActive: String = "outlineOnDarkPositiveActive" - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarningHover: String = "outlineOnDarkWarningHover" - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarningActive: String = "outlineOnDarkWarningActive" - - /** - * Цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegativeHover: String = "outlineOnDarkNegativeHover" - - /** - * Цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegativeActive: String = "outlineOnDarkNegativeActive" - - /** - * Цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfoHover: String = "outlineOnDarkInfoHover" - - /** - * Цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfoActive: String = "outlineOnDarkInfoActive" - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositiveMinorHover: String = "outlineOnDarkPositiveMinorHover" - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositiveMinorActive: String = "outlineOnDarkPositiveMinorActive" - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarningMinorHover: String = "outlineOnDarkWarningMinorHover" - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarningMinorActive: String = "outlineOnDarkWarningMinorActive" - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegativeMinorHover: String = "outlineOnDarkNegativeMinorHover" - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegativeMinorActive: String = "outlineOnDarkNegativeMinorActive" - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfoMinorHover: String = "outlineOnDarkInfoMinorHover" - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfoMinorActive: String = "outlineOnDarkInfoMinorActive" - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val outlineOnDarkTransparentPositiveHover: String = - "outlineOnDarkTransparentPositiveHover" - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val outlineOnDarkTransparentPositiveActive: String = - "outlineOnDarkTransparentPositiveActive" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentWarningHover: String = "outlineOnDarkTransparentWarningHover" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentWarningActive: String = - "outlineOnDarkTransparentWarningActive" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentNegativeHover: String = - "outlineOnDarkTransparentNegativeHover" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentNegativeActive: String = - "outlineOnDarkTransparentNegativeActive" - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val outlineOnDarkTransparentInfoHover: String = "outlineOnDarkTransparentInfoHover" - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val outlineOnDarkTransparentInfoActive: String = "outlineOnDarkTransparentInfoActive" - - /** - * light outline onDark outlineSolidDefaultHover - */ - public val outlineOnDarkSolidDefaultHover: String = "outlineOnDarkSolidDefaultHover" - - /** - * light outline onDark outlineSolidDefaultActive - */ - public val outlineOnDarkSolidDefaultActive: String = "outlineOnDarkSolidDefaultActive" - - /** - * light outline onDark outlineAccentMain - */ - public val outlineOnDarkAccentMain: String = "outlineOnDarkAccentMain" - - /** - * light outline onDark outlineAccentMainHover - */ - public val outlineOnDarkAccentMainHover: String = "outlineOnDarkAccentMainHover" - - /** - * light outline onDark outlineAccentMainActive - */ - public val outlineOnDarkAccentMainActive: String = "outlineOnDarkAccentMainActive" - - /** - * light outline onDark outlineAccentAthena - */ - public val outlineOnDarkAccentAthena: String = "outlineOnDarkAccentAthena" - - /** - * light outline onDark outlineAccentAthenaHover - */ - public val outlineOnDarkAccentAthenaHover: String = "outlineOnDarkAccentAthenaHover" - - /** - * light outline onDark outlineAccentAthenaActive - */ - public val outlineOnDarkAccentAthenaActive: String = "outlineOnDarkAccentAthenaActive" - - /** - * light outline onDark outlineAccentJoy - */ - public val outlineOnDarkAccentJoy: String = "outlineOnDarkAccentJoy" - - /** - * light outline onDark outlineAccentJoyHover - */ - public val outlineOnDarkAccentJoyHover: String = "outlineOnDarkAccentJoyHover" - - /** - * light outline onDark outlineAccentJoyActive - */ - public val outlineOnDarkAccentJoyActive: String = "outlineOnDarkAccentJoyActive" - - /** - * light outline onDark outlineAccentB2E - */ - public val outlineOnDarkAccentB2E: String = "outlineOnDarkAccentB2E" - - /** - * light outline onDark outlineAccentB2EHover - */ - public val outlineOnDarkAccentB2EHover: String = "outlineOnDarkAccentB2EHover" - - /** - * light outline onDark outlineAccentB2EActive - */ - public val outlineOnDarkAccentB2EActive: String = "outlineOnDarkAccentB2EActive" - - /** - * light outline onDark outlineAccentBrand - */ - public val outlineOnDarkAccentBrand: String = "outlineOnDarkAccentBrand" - - /** - * light outline onDark outlineAccentBrandHover - */ - public val outlineOnDarkAccentBrandHover: String = "outlineOnDarkAccentBrandHover" - - /** - * light outline onDark outlineAccentBrandActive - */ - public val outlineOnDarkAccentBrandActive: String = "outlineOnDarkAccentBrandActive" - - /** - * light outline onDark outlineAccentMainMinor - */ - public val outlineOnDarkAccentMainMinor: String = "outlineOnDarkAccentMainMinor" - - /** - * light outline onDark outlineAccentMainMinorHover - */ - public val outlineOnDarkAccentMainMinorHover: String = "outlineOnDarkAccentMainMinorHover" - - /** - * light outline onDark outlineAccentMainMinorActive - */ - public val outlineOnDarkAccentMainMinorActive: String = "outlineOnDarkAccentMainMinorActive" - - /** - * light outline onDark outlineAccentAthenaMinor - */ - public val outlineOnDarkAccentAthenaMinor: String = "outlineOnDarkAccentAthenaMinor" - - /** - * light outline onDark outlineAccentAthenaMinorHover - */ - public val outlineOnDarkAccentAthenaMinorHover: String = "outlineOnDarkAccentAthenaMinorHover" - - /** - * light outline onDark outlineAccentAthenaMinorActive - */ - public val outlineOnDarkAccentAthenaMinorActive: String = "outlineOnDarkAccentAthenaMinorActive" - - /** - * light outline onDark outlineAccentJoyMinor - */ - public val outlineOnDarkAccentJoyMinor: String = "outlineOnDarkAccentJoyMinor" - - /** - * light outline onDark outlineAccentJoyMinorHover - */ - public val outlineOnDarkAccentJoyMinorHover: String = "outlineOnDarkAccentJoyMinorHover" - - /** - * light outline onDark outlineAccentJoyMinorActive - */ - public val outlineOnDarkAccentJoyMinorActive: String = "outlineOnDarkAccentJoyMinorActive" - - /** - * light outline onDark outlineAccentB2EMinor - */ - public val outlineOnDarkAccentB2EMinor: String = "outlineOnDarkAccentB2EMinor" - - /** - * light outline onDark outlineAccentB2EMinorHover - */ - public val outlineOnDarkAccentB2EMinorHover: String = "outlineOnDarkAccentB2EMinorHover" - - /** - * light outline onDark outlineAccentB2EMinorActive - */ - public val outlineOnDarkAccentB2EMinorActive: String = "outlineOnDarkAccentB2EMinorActive" - - /** - * light outline onDark outlineAccentBrandMinor - */ - public val outlineOnDarkAccentBrandMinor: String = "outlineOnDarkAccentBrandMinor" - - /** - * light outline onDark outlineAccentBrandMinorHover - */ - public val outlineOnDarkAccentBrandMinorHover: String = "outlineOnDarkAccentBrandMinorHover" - - /** - * light outline onDark outlineAccentBrandMinorActive - */ - public val outlineOnDarkAccentBrandMinorActive: String = "outlineOnDarkAccentBrandMinorActive" - - /** - * light outline onDark outlineTransparentAccentMain - */ - public val outlineOnDarkTransparentAccentMain: String = "outlineOnDarkTransparentAccentMain" - - /** - * light outline onDark outlineTransparentAccentMainHover - */ - public val outlineOnDarkTransparentAccentMainHover: String = - "outlineOnDarkTransparentAccentMainHover" - - /** - * light outline onDark outlineTransparentAccentMainActive - */ - public val outlineOnDarkTransparentAccentMainActive: String = - "outlineOnDarkTransparentAccentMainActive" - - /** - * light outline onDark outlineTransparentAccentAthena - */ - public val outlineOnDarkTransparentAccentAthena: String = "outlineOnDarkTransparentAccentAthena" - - /** - * light outline onDark outlineTransparentAccentAthenaHover - */ - public val outlineOnDarkTransparentAccentAthenaHover: String = - "outlineOnDarkTransparentAccentAthenaHover" - - /** - * light outline onDark outlineTransparentAccentAthenaActive - */ - public val outlineOnDarkTransparentAccentAthenaActive: String = - "outlineOnDarkTransparentAccentAthenaActive" - - /** - * light outline onDark outlineTransparentAccentJoy - */ - public val outlineOnDarkTransparentAccentJoy: String = "outlineOnDarkTransparentAccentJoy" - - /** - * light outline onDark outlineTransparentAccentJoyHover - */ - public val outlineOnDarkTransparentAccentJoyHover: String = - "outlineOnDarkTransparentAccentJoyHover" - - /** - * light outline onDark outlineTransparentAccentJoyActive - */ - public val outlineOnDarkTransparentAccentJoyActive: String = - "outlineOnDarkTransparentAccentJoyActive" - - /** - * light outline onDark outlineTransparentAccentB2E - */ - public val outlineOnDarkTransparentAccentB2E: String = "outlineOnDarkTransparentAccentB2E" - - /** - * light outline onDark outlineTransparentAccentB2EHover - */ - public val outlineOnDarkTransparentAccentB2EHover: String = - "outlineOnDarkTransparentAccentB2EHover" - - /** - * light outline onDark outlineTransparentAccentB2EActive - */ - public val outlineOnDarkTransparentAccentB2EActive: String = - "outlineOnDarkTransparentAccentB2EActive" - - /** - * light outline onDark outlineTransparentAccentBrand - */ - public val outlineOnDarkTransparentAccentBrand: String = "outlineOnDarkTransparentAccentBrand" - - /** - * light outline onDark outlineTransparentAccentBrandHover - */ - public val outlineOnDarkTransparentAccentBrandHover: String = - "outlineOnDarkTransparentAccentBrandHover" - - /** - * light outline onDark outlineTransparentAccentBrandActive - */ - public val outlineOnDarkTransparentAccentBrandActive: String = - "outlineOnDarkTransparentAccentBrandActive" - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidPrimary: String = "outlineOnDarkSolidPrimary" - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidSecondary: String = "outlineOnDarkSolidSecondary" - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkSolidTertiary: String = "outlineOnDarkSolidTertiary" - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentPrimary: String = "outlineOnDarkTransparentPrimary" - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentSecondary: String = "outlineOnDarkTransparentSecondary" - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val outlineOnDarkTransparentTertiary: String = "outlineOnDarkTransparentTertiary" - - /** - * light outline onDark outlineSolidDefault - */ - public val outlineOnDarkSolidDefault: String = "outlineOnDarkSolidDefault" - - /** - * Цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositive: String = "outlineOnDarkPositive" - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarning: String = "outlineOnDarkWarning" - - /** - * Цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegative: String = "outlineOnDarkNegative" - - /** - * Цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfo: String = "outlineOnDarkInfo" - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val outlineOnDarkPositiveMinor: String = "outlineOnDarkPositiveMinor" - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkWarningMinor: String = "outlineOnDarkWarningMinor" - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val outlineOnDarkNegativeMinor: String = "outlineOnDarkNegativeMinor" - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val outlineOnDarkInfoMinor: String = "outlineOnDarkInfoMinor" - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val outlineOnDarkTransparentPositive: String = "outlineOnDarkTransparentPositive" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentWarning: String = "outlineOnDarkTransparentWarning" - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val outlineOnDarkTransparentNegative: String = "outlineOnDarkTransparentNegative" - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val outlineOnDarkTransparentInfo: String = "outlineOnDarkTransparentInfo" - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidPrimaryHover: String = "outlineOnLightSolidPrimaryHover" - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidPrimaryActive: String = "outlineOnLightSolidPrimaryActive" - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidSecondaryHover: String = "outlineOnLightSolidSecondaryHover" - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidSecondaryActive: String = "outlineOnLightSolidSecondaryActive" - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidTertiaryHover: String = "outlineOnLightSolidTertiaryHover" - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidTertiaryActive: String = "outlineOnLightSolidTertiaryActive" - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val outlineOnLightTransparentDefaultHover: String = - "outlineOnLightTransparentDefaultHover" - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val outlineOnLightTransparentDefaultActive: String = - "outlineOnLightTransparentDefaultActive" - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val outlineOnLightTransparentDefault: String = "outlineOnLightTransparentDefault" - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentPrimaryHover: String = - "outlineOnLightTransparentPrimaryHover" - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentPrimaryActive: String = - "outlineOnLightTransparentPrimaryActive" - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentSecondaryHover: String = - "outlineOnLightTransparentSecondaryHover" - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentSecondaryActive: String = - "outlineOnLightTransparentSecondaryActive" - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentTertiaryHover: String = - "outlineOnLightTransparentTertiaryHover" - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentTertiaryActive: String = - "outlineOnLightTransparentTertiaryActive" - - /** - * Бесцветная обводка на светлом фоне - */ - public val outlineOnLightClearHover: String = "outlineOnLightClearHover" - - /** - * Бесцветная обводка на светлом фоне - */ - public val outlineOnLightClearActive: String = "outlineOnLightClearActive" - - /** - * Бесцветная обводка на светлом фоне - */ - public val outlineOnLightClear: String = "outlineOnLightClear" - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightAccentHover: String = "outlineOnLightAccentHover" - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightAccentActive: String = "outlineOnLightAccentActive" - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightAccent: String = "outlineOnLightAccent" - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightAccentMinorHover: String = "outlineOnLightAccentMinorHover" - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightAccentMinorActive: String = "outlineOnLightAccentMinorActive" - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightAccentMinor: String = "outlineOnLightAccentMinor" - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentAccentHover: String = "outlineOnLightTransparentAccentHover" - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentAccentActive: String = - "outlineOnLightTransparentAccentActive" - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentAccent: String = "outlineOnLightTransparentAccent" - - /** - * Промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromoHover: String = "outlineOnLightPromoHover" - - /** - * Промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromoActive: String = "outlineOnLightPromoActive" - - /** - * Промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromo: String = "outlineOnLightPromo" - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromoMinorHover: String = "outlineOnLightPromoMinorHover" - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromoMinorActive: String = "outlineOnLightPromoMinorActive" - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val outlineOnLightPromoMinor: String = "outlineOnLightPromoMinor" - - /** - * Цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositiveHover: String = "outlineOnLightPositiveHover" - - /** - * Цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositiveActive: String = "outlineOnLightPositiveActive" - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarningHover: String = "outlineOnLightWarningHover" - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarningActive: String = "outlineOnLightWarningActive" - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegativeHover: String = "outlineOnLightNegativeHover" - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegativeActive: String = "outlineOnLightNegativeActive" - - /** - * Цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfoHover: String = "outlineOnLightInfoHover" - - /** - * Цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfoActive: String = "outlineOnLightInfoActive" - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositiveMinorHover: String = "outlineOnLightPositiveMinorHover" - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositiveMinorActive: String = "outlineOnLightPositiveMinorActive" - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarningMinorHover: String = "outlineOnLightWarningMinorHover" - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarningMinorActive: String = "outlineOnLightWarningMinorActive" - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegativeMinorHover: String = "outlineOnLightNegativeMinorHover" - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegativeMinorActive: String = "outlineOnLightNegativeMinorActive" - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfoMinorHover: String = "outlineOnLightInfoMinorHover" - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfoMinorActive: String = "outlineOnLightInfoMinorActive" - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val outlineOnLightTransparentPositiveHover: String = - "outlineOnLightTransparentPositiveHover" - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val outlineOnLightTransparentPositiveActive: String = - "outlineOnLightTransparentPositiveActive" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentWarningHover: String = - "outlineOnLightTransparentWarningHover" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentWarningActive: String = - "outlineOnLightTransparentWarningActive" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentNegativeHover: String = - "outlineOnLightTransparentNegativeHover" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentNegativeActive: String = - "outlineOnLightTransparentNegativeActive" - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val outlineOnLightTransparentInfoHover: String = "outlineOnLightTransparentInfoHover" - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val outlineOnLightTransparentInfoActive: String = "outlineOnLightTransparentInfoActive" - - /** - * light outline onLight outlineSolidDefaultHover - */ - public val outlineOnLightSolidDefaultHover: String = "outlineOnLightSolidDefaultHover" - - /** - * light outline onLight outlineSolidDefaultActive - */ - public val outlineOnLightSolidDefaultActive: String = "outlineOnLightSolidDefaultActive" - - /** - * light outline onLight outlineAccentMain - */ - public val outlineOnLightAccentMain: String = "outlineOnLightAccentMain" - - /** - * light outline onLight outlineAccentMainHover - */ - public val outlineOnLightAccentMainHover: String = "outlineOnLightAccentMainHover" - - /** - * light outline onLight outlineAccentMainActive - */ - public val outlineOnLightAccentMainActive: String = "outlineOnLightAccentMainActive" - - /** - * light outline onLight outlineAccentAthena - */ - public val outlineOnLightAccentAthena: String = "outlineOnLightAccentAthena" - - /** - * light outline onLight outlineAccentAthenaHover - */ - public val outlineOnLightAccentAthenaHover: String = "outlineOnLightAccentAthenaHover" - - /** - * light outline onLight outlineAccentAthenaActive - */ - public val outlineOnLightAccentAthenaActive: String = "outlineOnLightAccentAthenaActive" - - /** - * light outline onLight outlineAccentJoy - */ - public val outlineOnLightAccentJoy: String = "outlineOnLightAccentJoy" - - /** - * light outline onLight outlineAccentJoyHover - */ - public val outlineOnLightAccentJoyHover: String = "outlineOnLightAccentJoyHover" - - /** - * light outline onLight outlineAccentJoyActive - */ - public val outlineOnLightAccentJoyActive: String = "outlineOnLightAccentJoyActive" - - /** - * light outline onLight outlineAccentB2E - */ - public val outlineOnLightAccentB2E: String = "outlineOnLightAccentB2E" - - /** - * light outline onLight outlineAccentB2EHover - */ - public val outlineOnLightAccentB2EHover: String = "outlineOnLightAccentB2EHover" - - /** - * light outline onLight outlineAccentB2EActive - */ - public val outlineOnLightAccentB2EActive: String = "outlineOnLightAccentB2EActive" - - /** - * light outline onLight outlineAccentBrand - */ - public val outlineOnLightAccentBrand: String = "outlineOnLightAccentBrand" - - /** - * light outline onLight outlineAccentBrandHover - */ - public val outlineOnLightAccentBrandHover: String = "outlineOnLightAccentBrandHover" - - /** - * light outline onLight outlineAccentBrandActive - */ - public val outlineOnLightAccentBrandActive: String = "outlineOnLightAccentBrandActive" - - /** - * light outline onLight outlineAccentMainMinor - */ - public val outlineOnLightAccentMainMinor: String = "outlineOnLightAccentMainMinor" - - /** - * light outline onLight outlineAccentMainMinorHover - */ - public val outlineOnLightAccentMainMinorHover: String = "outlineOnLightAccentMainMinorHover" - - /** - * light outline onLight outlineAccentMainMinorActive - */ - public val outlineOnLightAccentMainMinorActive: String = "outlineOnLightAccentMainMinorActive" - - /** - * light outline onLight outlineAccentAthenaMinor - */ - public val outlineOnLightAccentAthenaMinor: String = "outlineOnLightAccentAthenaMinor" - - /** - * light outline onLight outlineAccentAthenaMinorHover - */ - public val outlineOnLightAccentAthenaMinorHover: String = "outlineOnLightAccentAthenaMinorHover" - - /** - * light outline onLight outlineAccentAthenaMinorActive - */ - public val outlineOnLightAccentAthenaMinorActive: String = - "outlineOnLightAccentAthenaMinorActive" - - /** - * light outline onLight outlineAccentJoyMinor - */ - public val outlineOnLightAccentJoyMinor: String = "outlineOnLightAccentJoyMinor" - - /** - * light outline onLight outlineAccentJoyMinorHover - */ - public val outlineOnLightAccentJoyMinorHover: String = "outlineOnLightAccentJoyMinorHover" - - /** - * light outline onLight outlineAccentJoyMinorActive - */ - public val outlineOnLightAccentJoyMinorActive: String = "outlineOnLightAccentJoyMinorActive" - - /** - * light outline onLight outlineAccentB2EMinor - */ - public val outlineOnLightAccentB2EMinor: String = "outlineOnLightAccentB2EMinor" - - /** - * light outline onLight outlineAccentB2EMinorHover - */ - public val outlineOnLightAccentB2EMinorHover: String = "outlineOnLightAccentB2EMinorHover" - - /** - * light outline onLight outlineAccentB2EMinorActive - */ - public val outlineOnLightAccentB2EMinorActive: String = "outlineOnLightAccentB2EMinorActive" - - /** - * light outline onLight outlineAccentBrandMinor - */ - public val outlineOnLightAccentBrandMinor: String = "outlineOnLightAccentBrandMinor" - - /** - * light outline onLight outlineAccentBrandMinorHover - */ - public val outlineOnLightAccentBrandMinorHover: String = "outlineOnLightAccentBrandMinorHover" - - /** - * light outline onLight outlineAccentBrandMinorActive - */ - public val outlineOnLightAccentBrandMinorActive: String = "outlineOnLightAccentBrandMinorActive" - - /** - * light outline onLight outlineTransparentAccentMain - */ - public val outlineOnLightTransparentAccentMain: String = "outlineOnLightTransparentAccentMain" - - /** - * light outline onLight outlineTransparentAccentMainHover - */ - public val outlineOnLightTransparentAccentMainHover: String = - "outlineOnLightTransparentAccentMainHover" - - /** - * light outline onLight outlineTransparentAccentMainActive - */ - public val outlineOnLightTransparentAccentMainActive: String = - "outlineOnLightTransparentAccentMainActive" - - /** - * light outline onLight outlineTransparentAccentAthena - */ - public val outlineOnLightTransparentAccentAthena: String = - "outlineOnLightTransparentAccentAthena" - - /** - * light outline onLight outlineTransparentAccentAthenaHover - */ - public val outlineOnLightTransparentAccentAthenaHover: String = - "outlineOnLightTransparentAccentAthenaHover" - - /** - * light outline onLight outlineTransparentAccentAthenaActive - */ - public val outlineOnLightTransparentAccentAthenaActive: String = - "outlineOnLightTransparentAccentAthenaActive" - - /** - * light outline onLight outlineTransparentAccentJoy - */ - public val outlineOnLightTransparentAccentJoy: String = "outlineOnLightTransparentAccentJoy" - - /** - * light outline onLight outlineTransparentAccentJoyHover - */ - public val outlineOnLightTransparentAccentJoyHover: String = - "outlineOnLightTransparentAccentJoyHover" - - /** - * light outline onLight outlineTransparentAccentJoyActive - */ - public val outlineOnLightTransparentAccentJoyActive: String = - "outlineOnLightTransparentAccentJoyActive" - - /** - * light outline onLight outlineTransparentAccentB2E - */ - public val outlineOnLightTransparentAccentB2E: String = "outlineOnLightTransparentAccentB2E" - - /** - * light outline onLight outlineTransparentAccentB2EHover - */ - public val outlineOnLightTransparentAccentB2EHover: String = - "outlineOnLightTransparentAccentB2EHover" - - /** - * light outline onLight outlineTransparentAccentB2EActive - */ - public val outlineOnLightTransparentAccentB2EActive: String = - "outlineOnLightTransparentAccentB2EActive" - - /** - * light outline onLight outlineTransparentAccentBrand - */ - public val outlineOnLightTransparentAccentBrand: String = "outlineOnLightTransparentAccentBrand" - - /** - * light outline onLight outlineTransparentAccentBrandHover - */ - public val outlineOnLightTransparentAccentBrandHover: String = - "outlineOnLightTransparentAccentBrandHover" - - /** - * light outline onLight outlineTransparentAccentBrandActive - */ - public val outlineOnLightTransparentAccentBrandActive: String = - "outlineOnLightTransparentAccentBrandActive" - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidPrimary: String = "outlineOnLightSolidPrimary" - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidSecondary: String = "outlineOnLightSolidSecondary" - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightSolidTertiary: String = "outlineOnLightSolidTertiary" - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentPrimary: String = "outlineOnLightTransparentPrimary" - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentSecondary: String = "outlineOnLightTransparentSecondary" - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val outlineOnLightTransparentTertiary: String = "outlineOnLightTransparentTertiary" - - /** - * light outline onLight outlineSolidDefault - */ - public val outlineOnLightSolidDefault: String = "outlineOnLightSolidDefault" - - /** - * Цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositive: String = "outlineOnLightPositive" - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarning: String = "outlineOnLightWarning" - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegative: String = "outlineOnLightNegative" - - /** - * Цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfo: String = "outlineOnLightInfo" - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val outlineOnLightPositiveMinor: String = "outlineOnLightPositiveMinor" - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightWarningMinor: String = "outlineOnLightWarningMinor" - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val outlineOnLightNegativeMinor: String = "outlineOnLightNegativeMinor" - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val outlineOnLightInfoMinor: String = "outlineOnLightInfoMinor" - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val outlineOnLightTransparentPositive: String = "outlineOnLightTransparentPositive" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentWarning: String = "outlineOnLightTransparentWarning" - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val outlineOnLightTransparentNegative: String = "outlineOnLightTransparentNegative" - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val outlineOnLightTransparentInfo: String = "outlineOnLightTransparentInfo" - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val outlineInverseSolidPrimaryHover: String = "outlineInverseSolidPrimaryHover" - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val outlineInverseSolidPrimaryActive: String = "outlineInverseSolidPrimaryActive" - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val outlineInverseSolidSecondaryHover: String = "outlineInverseSolidSecondaryHover" - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val outlineInverseSolidSecondaryActive: String = "outlineInverseSolidSecondaryActive" - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val outlineInverseSolidTertiaryHover: String = "outlineInverseSolidTertiaryHover" - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val outlineInverseSolidTertiaryActive: String = "outlineInverseSolidTertiaryActive" - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val outlineInverseTransparentDefaultHover: String = - "outlineInverseTransparentDefaultHover" - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val outlineInverseTransparentDefaultActive: String = - "outlineInverseTransparentDefaultActive" - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val outlineInverseTransparentDefault: String = "outlineInverseTransparentDefault" - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val outlineInverseTransparentPrimaryHover: String = - "outlineInverseTransparentPrimaryHover" - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val outlineInverseTransparentPrimaryActive: String = - "outlineInverseTransparentPrimaryActive" - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val outlineInverseTransparentSecondaryHover: String = - "outlineInverseTransparentSecondaryHover" - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val outlineInverseTransparentSecondaryActive: String = - "outlineInverseTransparentSecondaryActive" - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val outlineInverseTransparentTertiaryHover: String = - "outlineInverseTransparentTertiaryHover" - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val outlineInverseTransparentTertiaryActive: String = - "outlineInverseTransparentTertiaryActive" - - /** - * Инвертированная бесцветная обводка - */ - public val outlineInverseClearHover: String = "outlineInverseClearHover" - - /** - * Инвертированная бесцветная обводка - */ - public val outlineInverseClearActive: String = "outlineInverseClearActive" - - /** - * Инвертированная бесцветная обводка - */ - public val outlineInverseClear: String = "outlineInverseClear" - - /** - * Инвертированный акцентный цвет обводки - */ - public val outlineInverseAccentHover: String = "outlineInverseAccentHover" - - /** - * Инвертированный акцентный цвет обводки - */ - public val outlineInverseAccentActive: String = "outlineInverseAccentActive" - - /** - * Инвертированный акцентный цвет обводки - */ - public val outlineInverseAccent: String = "outlineInverseAccent" - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val outlineInverseAccentMinorHover: String = "outlineInverseAccentMinorHover" - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val outlineInverseAccentMinorActive: String = "outlineInverseAccentMinorActive" - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val outlineInverseAccentMinor: String = "outlineInverseAccentMinor" - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val outlineInverseTransparentAccentHover: String = "outlineInverseTransparentAccentHover" - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val outlineInverseTransparentAccentActive: String = - "outlineInverseTransparentAccentActive" - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val outlineInverseTransparentAccent: String = "outlineInverseTransparentAccent" - - /** - * Инвертированный промо цвет обводки - */ - public val outlineInversePromoHover: String = "outlineInversePromoHover" - - /** - * Инвертированный промо цвет обводки - */ - public val outlineInversePromoActive: String = "outlineInversePromoActive" - - /** - * Инвертированный промо цвет обводки - */ - public val outlineInversePromo: String = "outlineInversePromo" - - /** - * Инвертированный минорный промо цвет обводки - */ - public val outlineInversePromoMinorHover: String = "outlineInversePromoMinorHover" - - /** - * Инвертированный минорный промо цвет обводки - */ - public val outlineInversePromoMinorActive: String = "outlineInversePromoMinorActive" - - /** - * Инвертированный минорный промо цвет обводки - */ - public val outlineInversePromoMinor: String = "outlineInversePromoMinor" - - /** - * Инвертированный цвет обводки успех - */ - public val outlineInversePositiveHover: String = "outlineInversePositiveHover" - - /** - * Инвертированный цвет обводки успех - */ - public val outlineInversePositiveActive: String = "outlineInversePositiveActive" - - /** - * Инвертированный цвет обводки предупреждение - */ - public val outlineInverseWarningHover: String = "outlineInverseWarningHover" - - /** - * Инвертированный цвет обводки предупреждение - */ - public val outlineInverseWarningActive: String = "outlineInverseWarningActive" - - /** - * Инвертированный цвет обводки ошибка - */ - public val outlineInverseNegativeHover: String = "outlineInverseNegativeHover" - - /** - * Инвертированный цвет обводки ошибка - */ - public val outlineInverseNegativeActive: String = "outlineInverseNegativeActive" - - /** - * Инвертированный цвет обводки информация - */ - public val outlineInverseInfoHover: String = "outlineInverseInfoHover" - - /** - * Инвертированный цвет обводки информация - */ - public val outlineInverseInfoActive: String = "outlineInverseInfoActive" - - /** - * Инвертированный минорный цвет обводки успех - */ - public val outlineInversePositiveMinorHover: String = "outlineInversePositiveMinorHover" - - /** - * Инвертированный минорный цвет обводки успех - */ - public val outlineInversePositiveMinorActive: String = "outlineInversePositiveMinorActive" - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val outlineInverseWarningMinorHover: String = "outlineInverseWarningMinorHover" - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val outlineInverseWarningMinorActive: String = "outlineInverseWarningMinorActive" - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val outlineInverseNegativeMinorHover: String = "outlineInverseNegativeMinorHover" - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val outlineInverseNegativeMinorActive: String = "outlineInverseNegativeMinorActive" - - /** - * Инвертированный минорный цвет обводки информация - */ - public val outlineInverseInfoMinorHover: String = "outlineInverseInfoMinorHover" - - /** - * Инвертированный минорный цвет обводки информация - */ - public val outlineInverseInfoMinorActive: String = "outlineInverseInfoMinorActive" - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val outlineInverseTransparentPositiveHover: String = - "outlineInverseTransparentPositiveHover" - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val outlineInverseTransparentPositiveActive: String = - "outlineInverseTransparentPositiveActive" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentWarningHover: String = - "outlineInverseTransparentWarningHover" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentWarningActive: String = - "outlineInverseTransparentWarningActive" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentNegativeHover: String = - "outlineInverseTransparentNegativeHover" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentNegativeActive: String = - "outlineInverseTransparentNegativeActive" - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val outlineInverseTransparentInfoHover: String = "outlineInverseTransparentInfoHover" - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val outlineInverseTransparentInfoActive: String = "outlineInverseTransparentInfoActive" - - /** - * light outline inverse outlineAccentMainHover - */ - public val outlineInverseAccentMainHover: String = "outlineInverseAccentMainHover" - - /** - * light outline inverse outlineAccentMainActive - */ - public val outlineInverseAccentMainActive: String = "outlineInverseAccentMainActive" - - /** - * light outline inverse outlineAccentAthenaHover - */ - public val outlineInverseAccentAthenaHover: String = "outlineInverseAccentAthenaHover" - - /** - * light outline inverse outlineAccentAthenaActive - */ - public val outlineInverseAccentAthenaActive: String = "outlineInverseAccentAthenaActive" - - /** - * light outline inverse outlineAccentJoyHover - */ - public val outlineInverseAccentJoyHover: String = "outlineInverseAccentJoyHover" - - /** - * light outline inverse outlineAccentJoyActive - */ - public val outlineInverseAccentJoyActive: String = "outlineInverseAccentJoyActive" - - /** - * light outline inverse outlineAccentB2EHover - */ - public val outlineInverseAccentB2EHover: String = "outlineInverseAccentB2EHover" - - /** - * light outline inverse outlineAccentB2EActive - */ - public val outlineInverseAccentB2EActive: String = "outlineInverseAccentB2EActive" - - /** - * light outline inverse outlineAccentBrandHover - */ - public val outlineInverseAccentBrandHover: String = "outlineInverseAccentBrandHover" - - /** - * light outline inverse outlineAccentBrandActive - */ - public val outlineInverseAccentBrandActive: String = "outlineInverseAccentBrandActive" - - /** - * light outline inverse outlineAccentMainMinorHover - */ - public val outlineInverseAccentMainMinorHover: String = "outlineInverseAccentMainMinorHover" - - /** - * light outline inverse outlineAccentMainMinorActive - */ - public val outlineInverseAccentMainMinorActive: String = "outlineInverseAccentMainMinorActive" - - /** - * light outline inverse outlineAccentAthenaMinorHover - */ - public val outlineInverseAccentAthenaMinorHover: String = "outlineInverseAccentAthenaMinorHover" - - /** - * light outline inverse outlineAccentAthenaMinorActive - */ - public val outlineInverseAccentAthenaMinorActive: String = - "outlineInverseAccentAthenaMinorActive" - - /** - * light outline inverse outlineAccentJoyMinorHover - */ - public val outlineInverseAccentJoyMinorHover: String = "outlineInverseAccentJoyMinorHover" - - /** - * light outline inverse outlineAccentJoyMinorActive - */ - public val outlineInverseAccentJoyMinorActive: String = "outlineInverseAccentJoyMinorActive" - - /** - * light outline inverse outlineAccentB2EMinorHover - */ - public val outlineInverseAccentB2EMinorHover: String = "outlineInverseAccentB2EMinorHover" - - /** - * light outline inverse outlineAccentB2EMinorActive - */ - public val outlineInverseAccentB2EMinorActive: String = "outlineInverseAccentB2EMinorActive" - - /** - * light outline inverse outlineAccentBrandMinorHover - */ - public val outlineInverseAccentBrandMinorHover: String = "outlineInverseAccentBrandMinorHover" - - /** - * light outline inverse outlineAccentBrandMinorActive - */ - public val outlineInverseAccentBrandMinorActive: String = "outlineInverseAccentBrandMinorActive" - - /** - * light outline inverse outlineTransparentAccentMainHover - */ - public val outlineInverseTransparentAccentMainHover: String = - "outlineInverseTransparentAccentMainHover" - - /** - * light outline inverse outlineTransparentAccentMainActive - */ - public val outlineInverseTransparentAccentMainActive: String = - "outlineInverseTransparentAccentMainActive" - - /** - * light outline inverse outlineTransparentAccentAthenaHover - */ - public val outlineInverseTransparentAccentAthenaHover: String = - "outlineInverseTransparentAccentAthenaHover" - - /** - * light outline inverse outlineTransparentAccentAthenaActive - */ - public val outlineInverseTransparentAccentAthenaActive: String = - "outlineInverseTransparentAccentAthenaActive" - - /** - * light outline inverse outlineTransparentAccentJoyHover - */ - public val outlineInverseTransparentAccentJoyHover: String = - "outlineInverseTransparentAccentJoyHover" - - /** - * light outline inverse outlineTransparentAccentJoyActive - */ - public val outlineInverseTransparentAccentJoyActive: String = - "outlineInverseTransparentAccentJoyActive" - - /** - * light outline inverse outlineTransparentAccentB2EHover - */ - public val outlineInverseTransparentAccentB2EHover: String = - "outlineInverseTransparentAccentB2EHover" - - /** - * light outline inverse outlineTransparentAccentB2EActive - */ - public val outlineInverseTransparentAccentB2EActive: String = - "outlineInverseTransparentAccentB2EActive" - - /** - * light outline inverse outlineTransparentAccentBrandHover - */ - public val outlineInverseTransparentAccentBrandHover: String = - "outlineInverseTransparentAccentBrandHover" - - /** - * light outline inverse outlineTransparentAccentBrandActive - */ - public val outlineInverseTransparentAccentBrandActive: String = - "outlineInverseTransparentAccentBrandActive" - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val outlineInverseSolidPrimary: String = "outlineInverseSolidPrimary" - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val outlineInverseSolidSecondary: String = "outlineInverseSolidSecondary" - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val outlineInverseSolidTertiary: String = "outlineInverseSolidTertiary" - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val outlineInverseTransparentPrimary: String = "outlineInverseTransparentPrimary" - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val outlineInverseTransparentSecondary: String = "outlineInverseTransparentSecondary" - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val outlineInverseTransparentTertiary: String = "outlineInverseTransparentTertiary" - - /** - * Инвертированный цвет обводки успех - */ - public val outlineInversePositive: String = "outlineInversePositive" - - /** - * Инвертированный цвет обводки предупреждение - */ - public val outlineInverseWarning: String = "outlineInverseWarning" - - /** - * Инвертированный цвет обводки ошибка - */ - public val outlineInverseNegative: String = "outlineInverseNegative" - - /** - * Инвертированный цвет обводки информация - */ - public val outlineInverseInfo: String = "outlineInverseInfo" - - /** - * Инвертированный минорный цвет обводки успех - */ - public val outlineInversePositiveMinor: String = "outlineInversePositiveMinor" - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val outlineInverseWarningMinor: String = "outlineInverseWarningMinor" - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val outlineInverseNegativeMinor: String = "outlineInverseNegativeMinor" - - /** - * Инвертированный минорный цвет обводки информация - */ - public val outlineInverseInfoMinor: String = "outlineInverseInfoMinor" - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val outlineInverseTransparentPositive: String = "outlineInverseTransparentPositive" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentWarning: String = "outlineInverseTransparentWarning" - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val outlineInverseTransparentNegative: String = "outlineInverseTransparentNegative" - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val outlineInverseTransparentInfo: String = "outlineInverseTransparentInfo" - - /** - * light outline inverse outlineAccentMain - */ - public val outlineInverseAccentMain: String = "outlineInverseAccentMain" - - /** - * light outline inverse outlineAccentAthena - */ - public val outlineInverseAccentAthena: String = "outlineInverseAccentAthena" - - /** - * light outline inverse outlineAccentJoy - */ - public val outlineInverseAccentJoy: String = "outlineInverseAccentJoy" - - /** - * light outline inverse outlineAccentB2E - */ - public val outlineInverseAccentB2E: String = "outlineInverseAccentB2E" - - /** - * light outline inverse outlineAccentBrand - */ - public val outlineInverseAccentBrand: String = "outlineInverseAccentBrand" - - /** - * light outline inverse outlineAccentMainMinor - */ - public val outlineInverseAccentMainMinor: String = "outlineInverseAccentMainMinor" - - /** - * light outline inverse outlineAccentAthenaMinor - */ - public val outlineInverseAccentAthenaMinor: String = "outlineInverseAccentAthenaMinor" - - /** - * light outline inverse outlineAccentJoyMinor - */ - public val outlineInverseAccentJoyMinor: String = "outlineInverseAccentJoyMinor" - - /** - * light outline inverse outlineAccentB2EMinor - */ - public val outlineInverseAccentB2EMinor: String = "outlineInverseAccentB2EMinor" - - /** - * light outline inverse outlineAccentBrandMinor - */ - public val outlineInverseAccentBrandMinor: String = "outlineInverseAccentBrandMinor" - - /** - * light outline inverse outlineTransparentAccentMain - */ - public val outlineInverseTransparentAccentMain: String = "outlineInverseTransparentAccentMain" - - /** - * light outline inverse outlineTransparentAccentAthena - */ - public val outlineInverseTransparentAccentAthena: String = - "outlineInverseTransparentAccentAthena" - - /** - * light outline inverse outlineTransparentAccentJoy - */ - public val outlineInverseTransparentAccentJoy: String = "outlineInverseTransparentAccentJoy" - - /** - * light outline inverse outlineTransparentAccentB2E - */ - public val outlineInverseTransparentAccentB2E: String = "outlineInverseTransparentAccentB2E" - - /** - * light outline inverse outlineTransparentAccentBrand - */ - public val outlineInverseTransparentAccentBrand: String = "outlineInverseTransparentAccentBrand" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellow: String = "dataDefaultYellow" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellowHover: String = "dataDefaultYellowHover" - - /** - * Желтый цвет для данных - */ - public val dataDefaultYellowActive: String = "dataDefaultYellowActive" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinor: String = "dataDefaultYellowMinor" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinorHover: String = "dataDefaultYellowMinorHover" - - /** - * Минорный желтый цвет для данных - */ - public val dataDefaultYellowMinorActive: String = "dataDefaultYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparent: String = "dataDefaultYellowTransparent" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparentHover: String = "dataDefaultYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных - */ - public val dataDefaultYellowTransparentActive: String = "dataDefaultYellowTransparentActive" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellow: String = "dataOnDarkYellow" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowHover: String = "dataOnDarkYellowHover" - - /** - * Желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowActive: String = "dataOnDarkYellowActive" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinor: String = "dataOnDarkYellowMinor" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinorHover: String = "dataOnDarkYellowMinorHover" - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowMinorActive: String = "dataOnDarkYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparent: String = "dataOnDarkYellowTransparent" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparentHover: String = "dataOnDarkYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val dataOnDarkYellowTransparentActive: String = "dataOnDarkYellowTransparentActive" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellow: String = "dataOnLightYellow" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowHover: String = "dataOnLightYellowHover" - - /** - * Желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowActive: String = "dataOnLightYellowActive" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinor: String = "dataOnLightYellowMinor" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinorHover: String = "dataOnLightYellowMinorHover" - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowMinorActive: String = "dataOnLightYellowMinorActive" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparent: String = "dataOnLightYellowTransparent" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparentHover: String = "dataOnLightYellowTransparentHover" - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val dataOnLightYellowTransparentActive: String = "dataOnLightYellowTransparentActive" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellow: String = "dataInverseYellow" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellowHover: String = "dataInverseYellowHover" - - /** - * Инвертированный желтый цвет для данных - */ - public val dataInverseYellowActive: String = "dataInverseYellowActive" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinor: String = "dataInverseYellowMinor" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinorHover: String = "dataInverseYellowMinorHover" - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val dataInverseYellowMinorActive: String = "dataInverseYellowMinorActive" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparent: String = "dataInverseYellowTransparent" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparentHover: String = "dataInverseYellowTransparentHover" - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val dataInverseYellowTransparentActive: String = "dataInverseYellowTransparentActive" - - /** - * dark surface inverse surfaceAccentJoy - */ - public val surfaceInverseAccentJoy: String = "surfaceInverseAccentJoy" - - /** - * dark surface inverse surfaceAccentJoyHover - */ - public val surfaceInverseAccentJoyHover: String = "surfaceInverseAccentJoyHover" - - /** - * dark surface inverse surfaceAccentJoyActive - */ - public val surfaceInverseAccentJoyActive: String = "surfaceInverseAccentJoyActive" - - /** - * Переопределяет аттрибут цвета. - */ - public infix fun String.overrideBy(color: Color) { - _overrideMap[this] = color - } -} - -internal val LocalStylesSaluteColors: ProvidableCompositionLocal = - staticCompositionLocalOf { - lightStylesSaluteColors() - } - -@Suppress("LongMethod") -internal fun StylesSaluteColors.updateColorsFrom(other: StylesSaluteColors) { - textDefaultPrimaryHover = other.textDefaultPrimaryHover - textDefaultPrimaryActive = other.textDefaultPrimaryActive - textDefaultPrimary = other.textDefaultPrimary - textDefaultPrimaryBrightness = other.textDefaultPrimaryBrightness - textDefaultSecondaryHover = other.textDefaultSecondaryHover - textDefaultSecondaryActive = other.textDefaultSecondaryActive - textDefaultSecondary = other.textDefaultSecondary - textDefaultTertiaryHover = other.textDefaultTertiaryHover - textDefaultTertiaryActive = other.textDefaultTertiaryActive - textDefaultTertiary = other.textDefaultTertiary - textDefaultParagraphHover = other.textDefaultParagraphHover - textDefaultParagraphActive = other.textDefaultParagraphActive - textDefaultParagraph = other.textDefaultParagraph - textDefaultAccentHover = other.textDefaultAccentHover - textDefaultAccentActive = other.textDefaultAccentActive - textDefaultAccent = other.textDefaultAccent - textDefaultAccentMinorHover = other.textDefaultAccentMinorHover - textDefaultAccentMinorActive = other.textDefaultAccentMinorActive - textDefaultAccentMinor = other.textDefaultAccentMinor - textDefaultPromoHover = other.textDefaultPromoHover - textDefaultPromoActive = other.textDefaultPromoActive - textDefaultPromo = other.textDefaultPromo - textDefaultPromoMinorHover = other.textDefaultPromoMinorHover - textDefaultPromoMinorActive = other.textDefaultPromoMinorActive - textDefaultPromoMinor = other.textDefaultPromoMinor - textDefaultPositiveHover = other.textDefaultPositiveHover - textDefaultPositiveActive = other.textDefaultPositiveActive - textDefaultPositive = other.textDefaultPositive - textDefaultWarningHover = other.textDefaultWarningHover - textDefaultWarningActive = other.textDefaultWarningActive - textDefaultWarning = other.textDefaultWarning - textDefaultNegativeHover = other.textDefaultNegativeHover - textDefaultNegativeActive = other.textDefaultNegativeActive - textDefaultNegative = other.textDefaultNegative - textDefaultInfoHover = other.textDefaultInfoHover - textDefaultInfoActive = other.textDefaultInfoActive - textDefaultPositiveMinorHover = other.textDefaultPositiveMinorHover - textDefaultPositiveMinorActive = other.textDefaultPositiveMinorActive - textDefaultWarningMinorHover = other.textDefaultWarningMinorHover - textDefaultWarningMinorActive = other.textDefaultWarningMinorActive - textDefaultNegativeMinorHover = other.textDefaultNegativeMinorHover - textDefaultNegativeMinorActive = other.textDefaultNegativeMinorActive - textDefaultInfoMinorHover = other.textDefaultInfoMinorHover - textDefaultInfoMinorActive = other.textDefaultInfoMinorActive - textDefaultAccentAthenaHover = other.textDefaultAccentAthenaHover - textDefaultAccentAthenaActive = other.textDefaultAccentAthenaActive - textDefaultAccentAthena = other.textDefaultAccentAthena - textDefaultAccentJoyHover = other.textDefaultAccentJoyHover - textDefaultAccentJoyActive = other.textDefaultAccentJoyActive - textDefaultAccentJoy = other.textDefaultAccentJoy - textDefaultAccentB2EHover = other.textDefaultAccentB2EHover - textDefaultAccentB2EActive = other.textDefaultAccentB2EActive - textDefaultAccentB2E = other.textDefaultAccentB2E - textDefaultAccentBrandHover = other.textDefaultAccentBrandHover - textDefaultAccentBrandActive = other.textDefaultAccentBrandActive - textDefaultAccentBrand = other.textDefaultAccentBrand - textDefaultAccentMainHover = other.textDefaultAccentMainHover - textDefaultAccentMainActive = other.textDefaultAccentMainActive - textDefaultAccentMain = other.textDefaultAccentMain - textDefaultAccentMainMinor = other.textDefaultAccentMainMinor - textDefaultAccentMainMinorHover = other.textDefaultAccentMainMinorHover - textDefaultAccentMainMinorActive = other.textDefaultAccentMainMinorActive - textDefaultAccentAthenaMinor = other.textDefaultAccentAthenaMinor - textDefaultAccentAthenaMinorHover = other.textDefaultAccentAthenaMinorHover - textDefaultAccentAthenaMinorActive = other.textDefaultAccentAthenaMinorActive - textDefaultAccentJoyMinor = other.textDefaultAccentJoyMinor - textDefaultAccentB2EMinor = other.textDefaultAccentB2EMinor - textDefaultAccentBrandMinor = other.textDefaultAccentBrandMinor - textDefaultAccentBrandMinorHover = other.textDefaultAccentBrandMinorHover - textDefaultAccentBrandMinorActive = other.textDefaultAccentBrandMinorActive - textDefaultInfo = other.textDefaultInfo - textDefaultPositiveMinor = other.textDefaultPositiveMinor - textDefaultWarningMinor = other.textDefaultWarningMinor - textDefaultNegativeMinor = other.textDefaultNegativeMinor - textDefaultInfoMinor = other.textDefaultInfoMinor - textDefaultAccentJoyMinorHover = other.textDefaultAccentJoyMinorHover - textDefaultAccentJoyMinorActive = other.textDefaultAccentJoyMinorActive - textDefaultAccentB2EMinorHover = other.textDefaultAccentB2EMinorHover - textDefaultAccentB2EMinorActive = other.textDefaultAccentB2EMinorActive - textOnDarkPrimaryHover = other.textOnDarkPrimaryHover - textOnDarkPrimaryActive = other.textOnDarkPrimaryActive - textOnDarkPrimary = other.textOnDarkPrimary - textOnDarkPrimaryBrightness = other.textOnDarkPrimaryBrightness - textOnDarkSecondaryHover = other.textOnDarkSecondaryHover - textOnDarkSecondaryActive = other.textOnDarkSecondaryActive - textOnDarkSecondary = other.textOnDarkSecondary - textOnDarkTertiaryHover = other.textOnDarkTertiaryHover - textOnDarkTertiaryActive = other.textOnDarkTertiaryActive - textOnDarkTertiary = other.textOnDarkTertiary - textOnDarkParagraphHover = other.textOnDarkParagraphHover - textOnDarkParagraphActive = other.textOnDarkParagraphActive - textOnDarkParagraph = other.textOnDarkParagraph - textOnDarkAccentHover = other.textOnDarkAccentHover - textOnDarkAccentActive = other.textOnDarkAccentActive - textOnDarkAccent = other.textOnDarkAccent - textOnDarkAccentMinorHover = other.textOnDarkAccentMinorHover - textOnDarkAccentMinorActive = other.textOnDarkAccentMinorActive - textOnDarkAccentMinor = other.textOnDarkAccentMinor - textOnDarkPromoHover = other.textOnDarkPromoHover - textOnDarkPromoActive = other.textOnDarkPromoActive - textOnDarkPromo = other.textOnDarkPromo - textOnDarkPromoMinorHover = other.textOnDarkPromoMinorHover - textOnDarkPromoMinorActive = other.textOnDarkPromoMinorActive - textOnDarkPromoMinor = other.textOnDarkPromoMinor - textOnDarkPositiveHover = other.textOnDarkPositiveHover - textOnDarkPositiveActive = other.textOnDarkPositiveActive - textOnDarkPositive = other.textOnDarkPositive - textOnDarkWarningHover = other.textOnDarkWarningHover - textOnDarkWarningActive = other.textOnDarkWarningActive - textOnDarkWarning = other.textOnDarkWarning - textOnDarkNegativeHover = other.textOnDarkNegativeHover - textOnDarkNegativeActive = other.textOnDarkNegativeActive - textOnDarkNegative = other.textOnDarkNegative - textOnDarkInfoHover = other.textOnDarkInfoHover - textOnDarkInfoActive = other.textOnDarkInfoActive - textOnDarkPositiveMinorHover = other.textOnDarkPositiveMinorHover - textOnDarkPositiveMinorActive = other.textOnDarkPositiveMinorActive - textOnDarkWarningMinorHover = other.textOnDarkWarningMinorHover - textOnDarkWarningMinorActive = other.textOnDarkWarningMinorActive - textOnDarkNegativeMinorHover = other.textOnDarkNegativeMinorHover - textOnDarkNegativeMinorActive = other.textOnDarkNegativeMinorActive - textOnDarkInfoMinorHover = other.textOnDarkInfoMinorHover - textOnDarkInfoMinorActive = other.textOnDarkInfoMinorActive - textOnDarkAccentAthenaHover = other.textOnDarkAccentAthenaHover - textOnDarkAccentAthenaActive = other.textOnDarkAccentAthenaActive - textOnDarkAccentAthena = other.textOnDarkAccentAthena - textOnDarkAccentJoyHover = other.textOnDarkAccentJoyHover - textOnDarkAccentJoyActive = other.textOnDarkAccentJoyActive - textOnDarkAccentJoy = other.textOnDarkAccentJoy - textOnDarkAccentB2EHover = other.textOnDarkAccentB2EHover - textOnDarkAccentB2EActive = other.textOnDarkAccentB2EActive - textOnDarkAccentB2E = other.textOnDarkAccentB2E - textOnDarkAccentBrandHover = other.textOnDarkAccentBrandHover - textOnDarkAccentBrandActive = other.textOnDarkAccentBrandActive - textOnDarkAccentBrand = other.textOnDarkAccentBrand - textOnDarkAccentMainHover = other.textOnDarkAccentMainHover - textOnDarkAccentMainActive = other.textOnDarkAccentMainActive - textOnDarkAccentMain = other.textOnDarkAccentMain - textOnDarkAccentMainMinor = other.textOnDarkAccentMainMinor - textOnDarkAccentMainMinorHover = other.textOnDarkAccentMainMinorHover - textOnDarkAccentMainMinorActive = other.textOnDarkAccentMainMinorActive - textOnDarkAccentAthenaMinor = other.textOnDarkAccentAthenaMinor - textOnDarkAccentAthenaMinorHover = other.textOnDarkAccentAthenaMinorHover - textOnDarkAccentAthenaMinorActive = other.textOnDarkAccentAthenaMinorActive - textOnDarkAccentB2EMinor = other.textOnDarkAccentB2EMinor - textOnDarkAccentB2EMinorHover = other.textOnDarkAccentB2EMinorHover - textOnDarkAccentB2EMinorActive = other.textOnDarkAccentB2EMinorActive - textOnDarkAccentBrandMinor = other.textOnDarkAccentBrandMinor - textOnDarkAccentBrandMinorHover = other.textOnDarkAccentBrandMinorHover - textOnDarkAccentBrandMinorActive = other.textOnDarkAccentBrandMinorActive - textOnDarkAccentJoyMinor = other.textOnDarkAccentJoyMinor - textOnDarkAccentJoyMinorHover = other.textOnDarkAccentJoyMinorHover - textOnDarkAccentJoyMinorActive = other.textOnDarkAccentJoyMinorActive - textOnDarkInfo = other.textOnDarkInfo - textOnDarkPositiveMinor = other.textOnDarkPositiveMinor - textOnDarkWarningMinor = other.textOnDarkWarningMinor - textOnDarkNegativeMinor = other.textOnDarkNegativeMinor - textOnDarkInfoMinor = other.textOnDarkInfoMinor - textOnLightPrimaryHover = other.textOnLightPrimaryHover - textOnLightPrimaryActive = other.textOnLightPrimaryActive - textOnLightPrimary = other.textOnLightPrimary - textOnLightPrimaryBrightness = other.textOnLightPrimaryBrightness - textOnLightSecondaryHover = other.textOnLightSecondaryHover - textOnLightSecondaryActive = other.textOnLightSecondaryActive - textOnLightSecondary = other.textOnLightSecondary - textOnLightTertiaryHover = other.textOnLightTertiaryHover - textOnLightTertiaryActive = other.textOnLightTertiaryActive - textOnLightTertiary = other.textOnLightTertiary - textOnLightParagraphHover = other.textOnLightParagraphHover - textOnLightParagraphActive = other.textOnLightParagraphActive - textOnLightParagraph = other.textOnLightParagraph - textOnLightAccentHover = other.textOnLightAccentHover - textOnLightAccentActive = other.textOnLightAccentActive - textOnLightAccent = other.textOnLightAccent - textOnLightAccentMinorHover = other.textOnLightAccentMinorHover - textOnLightAccentMinorActive = other.textOnLightAccentMinorActive - textOnLightAccentMinor = other.textOnLightAccentMinor - textOnLightPromoHover = other.textOnLightPromoHover - textOnLightPromoActive = other.textOnLightPromoActive - textOnLightPromo = other.textOnLightPromo - textOnLightPromoMinorHover = other.textOnLightPromoMinorHover - textOnLightPromoMinorActive = other.textOnLightPromoMinorActive - textOnLightPromoMinor = other.textOnLightPromoMinor - textOnLightPositiveHover = other.textOnLightPositiveHover - textOnLightPositiveActive = other.textOnLightPositiveActive - textOnLightPositive = other.textOnLightPositive - textOnLightWarningHover = other.textOnLightWarningHover - textOnLightWarningActive = other.textOnLightWarningActive - textOnLightWarning = other.textOnLightWarning - textOnLightNegativeHover = other.textOnLightNegativeHover - textOnLightNegativeActive = other.textOnLightNegativeActive - textOnLightNegative = other.textOnLightNegative - textOnLightInfoHover = other.textOnLightInfoHover - textOnLightInfoActive = other.textOnLightInfoActive - textOnLightPositiveMinorHover = other.textOnLightPositiveMinorHover - textOnLightPositiveMinorActive = other.textOnLightPositiveMinorActive - textOnLightWarningMinorHover = other.textOnLightWarningMinorHover - textOnLightWarningMinorActive = other.textOnLightWarningMinorActive - textOnLightNegativeMinorHover = other.textOnLightNegativeMinorHover - textOnLightNegativeMinorActive = other.textOnLightNegativeMinorActive - textOnLightInfoMinorHover = other.textOnLightInfoMinorHover - textOnLightInfoMinorActive = other.textOnLightInfoMinorActive - textOnLightAccentAthenaHover = other.textOnLightAccentAthenaHover - textOnLightAccentAthenaActive = other.textOnLightAccentAthenaActive - textOnLightAccentAthena = other.textOnLightAccentAthena - textOnLightAccentJoyHover = other.textOnLightAccentJoyHover - textOnLightAccentJoyActive = other.textOnLightAccentJoyActive - textOnLightAccentJoy = other.textOnLightAccentJoy - textOnLightAccentB2EHover = other.textOnLightAccentB2EHover - textOnLightAccentB2EActive = other.textOnLightAccentB2EActive - textOnLightAccentB2E = other.textOnLightAccentB2E - textOnLightAccentBrandHover = other.textOnLightAccentBrandHover - textOnLightAccentBrandActive = other.textOnLightAccentBrandActive - textOnLightAccentBrand = other.textOnLightAccentBrand - textOnLightAccentMainHover = other.textOnLightAccentMainHover - textOnLightAccentMainActive = other.textOnLightAccentMainActive - textOnLightAccentMain = other.textOnLightAccentMain - textOnLightAccentMainMinor = other.textOnLightAccentMainMinor - textOnLightAccentMainMinorHover = other.textOnLightAccentMainMinorHover - textOnLightAccentMainMinorActive = other.textOnLightAccentMainMinorActive - textOnLightAccentAthenaMinor = other.textOnLightAccentAthenaMinor - textOnLightAccentAthenaMinorHover = other.textOnLightAccentAthenaMinorHover - textOnLightAccentAthenaMinorActive = other.textOnLightAccentAthenaMinorActive - textOnLightAccentJoyMinor = other.textOnLightAccentJoyMinor - textOnLightAccentJoyMinorHover = other.textOnLightAccentJoyMinorHover - textOnLightAccentJoyMinorActive = other.textOnLightAccentJoyMinorActive - textOnLightAccentB2EMinor = other.textOnLightAccentB2EMinor - textOnLightAccentB2EMinorHover = other.textOnLightAccentB2EMinorHover - textOnLightAccentB2EMinorActive = other.textOnLightAccentB2EMinorActive - textOnLightAccentBrandMinor = other.textOnLightAccentBrandMinor - textOnLightAccentBrandMinorHover = other.textOnLightAccentBrandMinorHover - textOnLightAccentBrandMinorActive = other.textOnLightAccentBrandMinorActive - textOnLightInfo = other.textOnLightInfo - textOnLightPositiveMinor = other.textOnLightPositiveMinor - textOnLightWarningMinor = other.textOnLightWarningMinor - textOnLightNegativeMinor = other.textOnLightNegativeMinor - textOnLightInfoMinor = other.textOnLightInfoMinor - textInversePrimaryHover = other.textInversePrimaryHover - textInversePrimaryActive = other.textInversePrimaryActive - textInversePrimary = other.textInversePrimary - textInversePrimaryBrightness = other.textInversePrimaryBrightness - textInverseSecondaryHover = other.textInverseSecondaryHover - textInverseSecondaryActive = other.textInverseSecondaryActive - textInverseSecondary = other.textInverseSecondary - textInverseTertiaryHover = other.textInverseTertiaryHover - textInverseTertiaryActive = other.textInverseTertiaryActive - textInverseTertiary = other.textInverseTertiary - textInverseParagraphHover = other.textInverseParagraphHover - textInverseParagraphActive = other.textInverseParagraphActive - textInverseParagraph = other.textInverseParagraph - textInverseAccentHover = other.textInverseAccentHover - textInverseAccentActive = other.textInverseAccentActive - textInverseAccent = other.textInverseAccent - textInverseAccentMinorHover = other.textInverseAccentMinorHover - textInverseAccentMinorActive = other.textInverseAccentMinorActive - textInverseAccentMinor = other.textInverseAccentMinor - textInversePromoHover = other.textInversePromoHover - textInversePromoActive = other.textInversePromoActive - textInversePromo = other.textInversePromo - textInversePromoMinorHover = other.textInversePromoMinorHover - textInversePromoMinorActive = other.textInversePromoMinorActive - textInversePromoMinor = other.textInversePromoMinor - textInversePositiveHover = other.textInversePositiveHover - textInversePositiveActive = other.textInversePositiveActive - textInverseWarningHover = other.textInverseWarningHover - textInverseWarningActive = other.textInverseWarningActive - textInverseNegativeHover = other.textInverseNegativeHover - textInverseNegativeActive = other.textInverseNegativeActive - textInverseInfoHover = other.textInverseInfoHover - textInverseInfoActive = other.textInverseInfoActive - textInversePositiveMinorHover = other.textInversePositiveMinorHover - textInversePositiveMinorActive = other.textInversePositiveMinorActive - textInverseWarningMinorHover = other.textInverseWarningMinorHover - textInverseWarningMinorActive = other.textInverseWarningMinorActive - textInverseNegativeMinorHover = other.textInverseNegativeMinorHover - textInverseNegativeMinorActive = other.textInverseNegativeMinorActive - textInverseInfoMinorHover = other.textInverseInfoMinorHover - textInverseInfoMinorActive = other.textInverseInfoMinorActive - textInverseAccentMain = other.textInverseAccentMain - textInverseAccentMainHover = other.textInverseAccentMainHover - textInverseAccentMainActive = other.textInverseAccentMainActive - textInverseAccentAthena = other.textInverseAccentAthena - textInverseAccentAthenaHover = other.textInverseAccentAthenaHover - textInverseAccentAthenaActive = other.textInverseAccentAthenaActive - textInverseAccentJoy = other.textInverseAccentJoy - textInverseAccentJoyHover = other.textInverseAccentJoyHover - textInverseAccentJoyActive = other.textInverseAccentJoyActive - textInverseAccentBrand = other.textInverseAccentBrand - textInverseAccentBrandHover = other.textInverseAccentBrandHover - textInverseAccentBrandActive = other.textInverseAccentBrandActive - textInverseAccentMainMinorHover = other.textInverseAccentMainMinorHover - textInverseAccentMainMinorActive = other.textInverseAccentMainMinorActive - textInverseAccentAthenaMinorHover = other.textInverseAccentAthenaMinorHover - textInverseAccentAthenaMinorActive = other.textInverseAccentAthenaMinorActive - textInverseAccentJoyMinorHover = other.textInverseAccentJoyMinorHover - textInverseAccentJoyMinorActive = other.textInverseAccentJoyMinorActive - textInverseAccentB2EMinorHover = other.textInverseAccentB2EMinorHover - textInverseAccentB2EMinorActive = other.textInverseAccentB2EMinorActive - textInverseAccentBrandMinorHover = other.textInverseAccentBrandMinorHover - textInverseAccentBrandMinorActive = other.textInverseAccentBrandMinorActive - textInverseAccentB2E = other.textInverseAccentB2E - textInverseAccentB2EHover = other.textInverseAccentB2EHover - textInverseAccentB2EActive = other.textInverseAccentB2EActive - textInversePositive = other.textInversePositive - textInverseWarning = other.textInverseWarning - textInverseNegative = other.textInverseNegative - textInverseInfo = other.textInverseInfo - textInversePositiveMinor = other.textInversePositiveMinor - textInverseWarningMinor = other.textInverseWarningMinor - textInverseNegativeMinor = other.textInverseNegativeMinor - textInverseInfoMinor = other.textInverseInfoMinor - textInverseAccentMainMinor = other.textInverseAccentMainMinor - textInverseAccentJoyMinor = other.textInverseAccentJoyMinor - textInverseAccentB2EMinor = other.textInverseAccentB2EMinor - textInverseAccentAthenaMinor = other.textInverseAccentAthenaMinor - textInverseAccentBrandMinor = other.textInverseAccentBrandMinor - surfaceDefaultSolidPrimaryHover = other.surfaceDefaultSolidPrimaryHover - surfaceDefaultSolidPrimaryActive = other.surfaceDefaultSolidPrimaryActive - surfaceDefaultSolidPrimary = other.surfaceDefaultSolidPrimary - surfaceDefaultSolidPrimaryBrightness = other.surfaceDefaultSolidPrimaryBrightness - surfaceDefaultSolidSecondaryHover = other.surfaceDefaultSolidSecondaryHover - surfaceDefaultSolidSecondaryActive = other.surfaceDefaultSolidSecondaryActive - surfaceDefaultSolidSecondary = other.surfaceDefaultSolidSecondary - surfaceDefaultSolidTertiaryHover = other.surfaceDefaultSolidTertiaryHover - surfaceDefaultSolidTertiaryActive = other.surfaceDefaultSolidTertiaryActive - surfaceDefaultSolidTertiary = other.surfaceDefaultSolidTertiary - surfaceDefaultSolidCardHover = other.surfaceDefaultSolidCardHover - surfaceDefaultSolidCardActive = other.surfaceDefaultSolidCardActive - surfaceDefaultSolidCard = other.surfaceDefaultSolidCard - surfaceDefaultSolidCardBrightness = other.surfaceDefaultSolidCardBrightness - surfaceDefaultSolidDefaultHover = other.surfaceDefaultSolidDefaultHover - surfaceDefaultSolidDefaultActive = other.surfaceDefaultSolidDefaultActive - surfaceDefaultSolidDefault = other.surfaceDefaultSolidDefault - surfaceDefaultTransparentPrimaryHover = other.surfaceDefaultTransparentPrimaryHover - surfaceDefaultTransparentPrimaryActive = other.surfaceDefaultTransparentPrimaryActive - surfaceDefaultTransparentPrimary = other.surfaceDefaultTransparentPrimary - surfaceDefaultTransparentSecondaryHover = other.surfaceDefaultTransparentSecondaryHover - surfaceDefaultTransparentSecondaryActive = other.surfaceDefaultTransparentSecondaryActive - surfaceDefaultTransparentSecondary = other.surfaceDefaultTransparentSecondary - surfaceDefaultTransparentTertiaryHover = other.surfaceDefaultTransparentTertiaryHover - surfaceDefaultTransparentTertiaryActive = other.surfaceDefaultTransparentTertiaryActive - surfaceDefaultTransparentTertiary = other.surfaceDefaultTransparentTertiary - surfaceDefaultTransparentDeepHover = other.surfaceDefaultTransparentDeepHover - surfaceDefaultTransparentDeepActive = other.surfaceDefaultTransparentDeepActive - surfaceDefaultTransparentDeep = other.surfaceDefaultTransparentDeep - surfaceDefaultTransparentCardHover = other.surfaceDefaultTransparentCardHover - surfaceDefaultTransparentCardActive = other.surfaceDefaultTransparentCardActive - surfaceDefaultTransparentCard = other.surfaceDefaultTransparentCard - surfaceDefaultTransparentCardBrightness = other.surfaceDefaultTransparentCardBrightness - surfaceDefaultClearHover = other.surfaceDefaultClearHover - surfaceDefaultClearActive = other.surfaceDefaultClearActive - surfaceDefaultClear = other.surfaceDefaultClear - surfaceDefaultAccentHover = other.surfaceDefaultAccentHover - surfaceDefaultAccentActive = other.surfaceDefaultAccentActive - surfaceDefaultAccent = other.surfaceDefaultAccent - surfaceDefaultAccentMinorHover = other.surfaceDefaultAccentMinorHover - surfaceDefaultAccentMinorActive = other.surfaceDefaultAccentMinorActive - surfaceDefaultAccentMinor = other.surfaceDefaultAccentMinor - surfaceDefaultTransparentAccentHover = other.surfaceDefaultTransparentAccentHover - surfaceDefaultTransparentAccentActive = other.surfaceDefaultTransparentAccentActive - surfaceDefaultTransparentAccent = other.surfaceDefaultTransparentAccent - surfaceDefaultPromoHover = other.surfaceDefaultPromoHover - surfaceDefaultPromoActive = other.surfaceDefaultPromoActive - surfaceDefaultPromo = other.surfaceDefaultPromo - surfaceDefaultPromoMinorHover = other.surfaceDefaultPromoMinorHover - surfaceDefaultPromoMinorActive = other.surfaceDefaultPromoMinorActive - surfaceDefaultPromoMinor = other.surfaceDefaultPromoMinor - surfaceDefaultTransparentPromoHover = other.surfaceDefaultTransparentPromoHover - surfaceDefaultTransparentPromoActive = other.surfaceDefaultTransparentPromoActive - surfaceDefaultTransparentPromo = other.surfaceDefaultTransparentPromo - surfaceDefaultPositiveHover = other.surfaceDefaultPositiveHover - surfaceDefaultPositiveActive = other.surfaceDefaultPositiveActive - surfaceDefaultPositive = other.surfaceDefaultPositive - surfaceDefaultWarningHover = other.surfaceDefaultWarningHover - surfaceDefaultWarningActive = other.surfaceDefaultWarningActive - surfaceDefaultWarning = other.surfaceDefaultWarning - surfaceDefaultNegativeHover = other.surfaceDefaultNegativeHover - surfaceDefaultNegativeActive = other.surfaceDefaultNegativeActive - surfaceDefaultNegative = other.surfaceDefaultNegative - surfaceDefaultInfoHover = other.surfaceDefaultInfoHover - surfaceDefaultInfoActive = other.surfaceDefaultInfoActive - surfaceDefaultPositiveMinorHover = other.surfaceDefaultPositiveMinorHover - surfaceDefaultPositiveMinorActive = other.surfaceDefaultPositiveMinorActive - surfaceDefaultWarningMinorHover = other.surfaceDefaultWarningMinorHover - surfaceDefaultWarningMinorActive = other.surfaceDefaultWarningMinorActive - surfaceDefaultNegativeMinorHover = other.surfaceDefaultNegativeMinorHover - surfaceDefaultNegativeMinorActive = other.surfaceDefaultNegativeMinorActive - surfaceDefaultInfoMinorHover = other.surfaceDefaultInfoMinorHover - surfaceDefaultInfoMinorActive = other.surfaceDefaultInfoMinorActive - surfaceDefaultTransparentPositiveHover = other.surfaceDefaultTransparentPositiveHover - surfaceDefaultTransparentPositiveActive = other.surfaceDefaultTransparentPositiveActive - surfaceDefaultTransparentWarningHover = other.surfaceDefaultTransparentWarningHover - surfaceDefaultTransparentWarningActive = other.surfaceDefaultTransparentWarningActive - surfaceDefaultTransparentNegativeHover = other.surfaceDefaultTransparentNegativeHover - surfaceDefaultTransparentNegativeActive = other.surfaceDefaultTransparentNegativeActive - surfaceDefaultTransparentInfoHover = other.surfaceDefaultTransparentInfoHover - surfaceDefaultTransparentInfoActive = other.surfaceDefaultTransparentInfoActive - surfaceDefaultAccentAthenaHover = other.surfaceDefaultAccentAthenaHover - surfaceDefaultAccentAthenaActive = other.surfaceDefaultAccentAthenaActive - surfaceDefaultAccentAthena = other.surfaceDefaultAccentAthena - surfaceDefaultAccentJoyHover = other.surfaceDefaultAccentJoyHover - surfaceDefaultAccentJoyActive = other.surfaceDefaultAccentJoyActive - surfaceDefaultAccentJoy = other.surfaceDefaultAccentJoy - surfaceDefaultAccentB2EHover = other.surfaceDefaultAccentB2EHover - surfaceDefaultAccentB2EActive = other.surfaceDefaultAccentB2EActive - surfaceDefaultAccentB2E = other.surfaceDefaultAccentB2E - surfaceDefaultAccentBrandHover = other.surfaceDefaultAccentBrandHover - surfaceDefaultAccentBrandActive = other.surfaceDefaultAccentBrandActive - surfaceDefaultAccentBrand = other.surfaceDefaultAccentBrand - surfaceDefaultSpeechBubbleSentHover = other.surfaceDefaultSpeechBubbleSentHover - surfaceDefaultSpeechBubbleSentActive = other.surfaceDefaultSpeechBubbleSentActive - surfaceDefaultSpeechBubbleSent = other.surfaceDefaultSpeechBubbleSent - surfaceDefaultSpeechBubbleReceivedHover = other.surfaceDefaultSpeechBubbleReceivedHover - surfaceDefaultSpeechBubbleReceivedActive = other.surfaceDefaultSpeechBubbleReceivedActive - surfaceDefaultSpeechBubbleReceived = other.surfaceDefaultSpeechBubbleReceived - surfaceDefaultSkeletonHover = other.surfaceDefaultSkeletonHover - surfaceDefaultSkeletonActive = other.surfaceDefaultSkeletonActive - surfaceDefaultAccentMainHover = other.surfaceDefaultAccentMainHover - surfaceDefaultAccentMainActive = other.surfaceDefaultAccentMainActive - surfaceDefaultAccentMain = other.surfaceDefaultAccentMain - surfaceDefaultAccentMainMinorHover = other.surfaceDefaultAccentMainMinorHover - surfaceDefaultAccentMainMinorActive = other.surfaceDefaultAccentMainMinorActive - surfaceDefaultAccentAthenaMinorHover = other.surfaceDefaultAccentAthenaMinorHover - surfaceDefaultAccentAthenaMinorActive = other.surfaceDefaultAccentAthenaMinorActive - surfaceDefaultAccentJoyMinorHover = other.surfaceDefaultAccentJoyMinorHover - surfaceDefaultAccentJoyMinorActive = other.surfaceDefaultAccentJoyMinorActive - surfaceDefaultAccentB2EMinorHover = other.surfaceDefaultAccentB2EMinorHover - surfaceDefaultAccentB2EMinorActive = other.surfaceDefaultAccentB2EMinorActive - surfaceDefaultAccentBrandMinorHover = other.surfaceDefaultAccentBrandMinorHover - surfaceDefaultAccentBrandMinorActive = other.surfaceDefaultAccentBrandMinorActive - surfaceDefaultSurfaceTransparentAccentMainHover = - other.surfaceDefaultSurfaceTransparentAccentMainHover - surfaceDefaultSurfaceTransparentAccentMainActive = - other.surfaceDefaultSurfaceTransparentAccentMainActive - surfaceDefaultTransparentAccentAthenaHover = other.surfaceDefaultTransparentAccentAthenaHover - surfaceDefaultTransparentAccentAthenaActive = other.surfaceDefaultTransparentAccentAthenaActive - surfaceDefaultTransparentAccentJoyHover = other.surfaceDefaultTransparentAccentJoyHover - surfaceDefaultTransparentAccentJoyActive = other.surfaceDefaultTransparentAccentJoyActive - surfaceDefaultTransparentAccentB2EHover = other.surfaceDefaultTransparentAccentB2EHover - surfaceDefaultTransparentAccentB2EActive = other.surfaceDefaultTransparentAccentB2EActive - surfaceDefaultTransparentAccentBrandHover = other.surfaceDefaultTransparentAccentBrandHover - surfaceDefaultTransparentAccentBrandActive = other.surfaceDefaultTransparentAccentBrandActive - surfaceDefaultTransparentAccentMainHover = other.surfaceDefaultTransparentAccentMainHover - surfaceDefaultTransparentAccentMainActive = other.surfaceDefaultTransparentAccentMainActive - surfaceDefaultInfo = other.surfaceDefaultInfo - surfaceDefaultPositiveMinor = other.surfaceDefaultPositiveMinor - surfaceDefaultWarningMinor = other.surfaceDefaultWarningMinor - surfaceDefaultNegativeMinor = other.surfaceDefaultNegativeMinor - surfaceDefaultInfoMinor = other.surfaceDefaultInfoMinor - surfaceDefaultTransparentPositive = other.surfaceDefaultTransparentPositive - surfaceDefaultTransparentWarning = other.surfaceDefaultTransparentWarning - surfaceDefaultTransparentNegative = other.surfaceDefaultTransparentNegative - surfaceDefaultTransparentInfo = other.surfaceDefaultTransparentInfo - surfaceDefaultAccentMainMinor = other.surfaceDefaultAccentMainMinor - surfaceDefaultAccentAthenaMinor = other.surfaceDefaultAccentAthenaMinor - surfaceDefaultAccentJoyMinor = other.surfaceDefaultAccentJoyMinor - surfaceDefaultAccentB2EMinor = other.surfaceDefaultAccentB2EMinor - surfaceDefaultAccentBrandMinor = other.surfaceDefaultAccentBrandMinor - surfaceDefaultTransparentAccentAthena = other.surfaceDefaultTransparentAccentAthena - surfaceDefaultTransparentAccentJoy = other.surfaceDefaultTransparentAccentJoy - surfaceDefaultTransparentAccentB2E = other.surfaceDefaultTransparentAccentB2E - surfaceDefaultTransparentAccentBrand = other.surfaceDefaultTransparentAccentBrand - surfaceDefaultTransparentAccentMain = other.surfaceDefaultTransparentAccentMain - surfaceOnDarkSolidPrimaryHover = other.surfaceOnDarkSolidPrimaryHover - surfaceOnDarkSolidPrimaryActive = other.surfaceOnDarkSolidPrimaryActive - surfaceOnDarkSolidPrimary = other.surfaceOnDarkSolidPrimary - surfaceOnDarkSolidPrimaryBrightness = other.surfaceOnDarkSolidPrimaryBrightness - surfaceOnDarkSolidSecondaryHover = other.surfaceOnDarkSolidSecondaryHover - surfaceOnDarkSolidSecondaryActive = other.surfaceOnDarkSolidSecondaryActive - surfaceOnDarkSolidSecondary = other.surfaceOnDarkSolidSecondary - surfaceOnDarkSolidTertiaryHover = other.surfaceOnDarkSolidTertiaryHover - surfaceOnDarkSolidTertiaryActive = other.surfaceOnDarkSolidTertiaryActive - surfaceOnDarkSolidTertiary = other.surfaceOnDarkSolidTertiary - surfaceOnDarkSolidCardHover = other.surfaceOnDarkSolidCardHover - surfaceOnDarkSolidCardActive = other.surfaceOnDarkSolidCardActive - surfaceOnDarkSolidCard = other.surfaceOnDarkSolidCard - surfaceOnDarkSolidCardBrightness = other.surfaceOnDarkSolidCardBrightness - surfaceOnDarkSolidDefaultHover = other.surfaceOnDarkSolidDefaultHover - surfaceOnDarkSolidDefaultActive = other.surfaceOnDarkSolidDefaultActive - surfaceOnDarkSolidDefault = other.surfaceOnDarkSolidDefault - surfaceOnDarkTransparentPrimaryHover = other.surfaceOnDarkTransparentPrimaryHover - surfaceOnDarkTransparentPrimaryActive = other.surfaceOnDarkTransparentPrimaryActive - surfaceOnDarkTransparentPrimary = other.surfaceOnDarkTransparentPrimary - surfaceOnDarkTransparentSecondaryHover = other.surfaceOnDarkTransparentSecondaryHover - surfaceOnDarkTransparentSecondaryActive = other.surfaceOnDarkTransparentSecondaryActive - surfaceOnDarkTransparentSecondary = other.surfaceOnDarkTransparentSecondary - surfaceOnDarkTransparentTertiaryHover = other.surfaceOnDarkTransparentTertiaryHover - surfaceOnDarkTransparentTertiaryActive = other.surfaceOnDarkTransparentTertiaryActive - surfaceOnDarkTransparentTertiary = other.surfaceOnDarkTransparentTertiary - surfaceOnDarkTransparentDeepHover = other.surfaceOnDarkTransparentDeepHover - surfaceOnDarkTransparentDeepActive = other.surfaceOnDarkTransparentDeepActive - surfaceOnDarkTransparentDeep = other.surfaceOnDarkTransparentDeep - surfaceOnDarkTransparentCardHover = other.surfaceOnDarkTransparentCardHover - surfaceOnDarkTransparentCardActive = other.surfaceOnDarkTransparentCardActive - surfaceOnDarkTransparentCard = other.surfaceOnDarkTransparentCard - surfaceOnDarkTransparentCardBrightness = other.surfaceOnDarkTransparentCardBrightness - surfaceOnDarkClearHover = other.surfaceOnDarkClearHover - surfaceOnDarkClearActive = other.surfaceOnDarkClearActive - surfaceOnDarkClear = other.surfaceOnDarkClear - surfaceOnDarkAccentHover = other.surfaceOnDarkAccentHover - surfaceOnDarkAccentActive = other.surfaceOnDarkAccentActive - surfaceOnDarkAccent = other.surfaceOnDarkAccent - surfaceOnDarkAccentMinorHover = other.surfaceOnDarkAccentMinorHover - surfaceOnDarkAccentMinorActive = other.surfaceOnDarkAccentMinorActive - surfaceOnDarkAccentMinor = other.surfaceOnDarkAccentMinor - surfaceOnDarkTransparentAccentHover = other.surfaceOnDarkTransparentAccentHover - surfaceOnDarkTransparentAccentActive = other.surfaceOnDarkTransparentAccentActive - surfaceOnDarkTransparentAccent = other.surfaceOnDarkTransparentAccent - surfaceOnDarkPromoHover = other.surfaceOnDarkPromoHover - surfaceOnDarkPromoActive = other.surfaceOnDarkPromoActive - surfaceOnDarkPromo = other.surfaceOnDarkPromo - surfaceOnDarkPromoMinorHover = other.surfaceOnDarkPromoMinorHover - surfaceOnDarkPromoMinorActive = other.surfaceOnDarkPromoMinorActive - surfaceOnDarkPromoMinor = other.surfaceOnDarkPromoMinor - surfaceOnDarkTransparentPromoHover = other.surfaceOnDarkTransparentPromoHover - surfaceOnDarkTransparentPromoActive = other.surfaceOnDarkTransparentPromoActive - surfaceOnDarkTransparentPromo = other.surfaceOnDarkTransparentPromo - surfaceOnDarkPositiveHover = other.surfaceOnDarkPositiveHover - surfaceOnDarkPositiveActive = other.surfaceOnDarkPositiveActive - surfaceOnDarkPositive = other.surfaceOnDarkPositive - surfaceOnDarkWarningHover = other.surfaceOnDarkWarningHover - surfaceOnDarkWarningActive = other.surfaceOnDarkWarningActive - surfaceOnDarkWarning = other.surfaceOnDarkWarning - surfaceOnDarkNegativeHover = other.surfaceOnDarkNegativeHover - surfaceOnDarkNegativeActive = other.surfaceOnDarkNegativeActive - surfaceOnDarkNegative = other.surfaceOnDarkNegative - surfaceOnDarkInfoHover = other.surfaceOnDarkInfoHover - surfaceOnDarkInfoActive = other.surfaceOnDarkInfoActive - surfaceOnDarkPositiveMinorHover = other.surfaceOnDarkPositiveMinorHover - surfaceOnDarkPositiveMinorActive = other.surfaceOnDarkPositiveMinorActive - surfaceOnDarkWarningMinorHover = other.surfaceOnDarkWarningMinorHover - surfaceOnDarkWarningMinorActive = other.surfaceOnDarkWarningMinorActive - surfaceOnDarkNegativeMinorHover = other.surfaceOnDarkNegativeMinorHover - surfaceOnDarkNegativeMinorActive = other.surfaceOnDarkNegativeMinorActive - surfaceOnDarkInfoMinorHover = other.surfaceOnDarkInfoMinorHover - surfaceOnDarkInfoMinorActive = other.surfaceOnDarkInfoMinorActive - surfaceOnDarkTransparentPositiveHover = other.surfaceOnDarkTransparentPositiveHover - surfaceOnDarkTransparentPositiveActive = other.surfaceOnDarkTransparentPositiveActive - surfaceOnDarkTransparentWarningHover = other.surfaceOnDarkTransparentWarningHover - surfaceOnDarkTransparentWarningActive = other.surfaceOnDarkTransparentWarningActive - surfaceOnDarkTransparentNegativeHover = other.surfaceOnDarkTransparentNegativeHover - surfaceOnDarkTransparentNegativeActive = other.surfaceOnDarkTransparentNegativeActive - surfaceOnDarkTransparentInfoHover = other.surfaceOnDarkTransparentInfoHover - surfaceOnDarkTransparentInfoActive = other.surfaceOnDarkTransparentInfoActive - surfaceOnDarkAccentAthenaHover = other.surfaceOnDarkAccentAthenaHover - surfaceOnDarkAccentAthenaActive = other.surfaceOnDarkAccentAthenaActive - surfaceOnDarkAccentAthena = other.surfaceOnDarkAccentAthena - surfaceOnDarkAccentJoyHover = other.surfaceOnDarkAccentJoyHover - surfaceOnDarkAccentJoyActive = other.surfaceOnDarkAccentJoyActive - surfaceOnDarkAccentJoy = other.surfaceOnDarkAccentJoy - surfaceOnDarkAccentB2EHover = other.surfaceOnDarkAccentB2EHover - surfaceOnDarkAccentB2EActive = other.surfaceOnDarkAccentB2EActive - surfaceOnDarkAccentB2E = other.surfaceOnDarkAccentB2E - surfaceOnDarkAccentBrandHover = other.surfaceOnDarkAccentBrandHover - surfaceOnDarkAccentBrandActive = other.surfaceOnDarkAccentBrandActive - surfaceOnDarkAccentBrand = other.surfaceOnDarkAccentBrand - surfaceOnDarkAccentMainHover = other.surfaceOnDarkAccentMainHover - surfaceOnDarkAccentMainActive = other.surfaceOnDarkAccentMainActive - surfaceOnDarkAccentMain = other.surfaceOnDarkAccentMain - surfaceOnDarkAccentMainMinor = other.surfaceOnDarkAccentMainMinor - surfaceOnDarkAccentMainMinorHover = other.surfaceOnDarkAccentMainMinorHover - surfaceOnDarkAccentMainMinorActive = other.surfaceOnDarkAccentMainMinorActive - surfaceOnDarkAccentAthenaMinor = other.surfaceOnDarkAccentAthenaMinor - surfaceOnDarkAccentAthenaMinorHover = other.surfaceOnDarkAccentAthenaMinorHover - surfaceOnDarkAccentAthenaMinorActive = other.surfaceOnDarkAccentAthenaMinorActive - surfaceOnDarkAccentJoyMinor = other.surfaceOnDarkAccentJoyMinor - surfaceOnDarkAccentJoyMinorHover = other.surfaceOnDarkAccentJoyMinorHover - surfaceOnDarkAccentJoyMinorActive = other.surfaceOnDarkAccentJoyMinorActive - surfaceOnDarkAccentB2EMinor = other.surfaceOnDarkAccentB2EMinor - surfaceOnDarkAccentB2EMinorHover = other.surfaceOnDarkAccentB2EMinorHover - surfaceOnDarkAccentB2EMinorActive = other.surfaceOnDarkAccentB2EMinorActive - surfaceOnDarkAccentBrandMinor = other.surfaceOnDarkAccentBrandMinor - surfaceOnDarkAccentBrandMinorHover = other.surfaceOnDarkAccentBrandMinorHover - surfaceOnDarkAccentBrandMinorActive = other.surfaceOnDarkAccentBrandMinorActive - surfaceOnDarkTransparentAccentMain = other.surfaceOnDarkTransparentAccentMain - surfaceOnDarkTransparentAccentMainHover = other.surfaceOnDarkTransparentAccentMainHover - surfaceOnDarkTransparentAccentMainActive = other.surfaceOnDarkTransparentAccentMainActive - surfaceOnDarkTransparentAccentAthena = other.surfaceOnDarkTransparentAccentAthena - surfaceOnDarkTransparentAccentAthenaHover = other.surfaceOnDarkTransparentAccentAthenaHover - surfaceOnDarkTransparentAccentAthenaActive = other.surfaceOnDarkTransparentAccentAthenaActive - surfaceOnDarkTransparentAccentJoy = other.surfaceOnDarkTransparentAccentJoy - surfaceOnDarkTransparentAccentJoyHover = other.surfaceOnDarkTransparentAccentJoyHover - surfaceOnDarkTransparentAccentJoyActive = other.surfaceOnDarkTransparentAccentJoyActive - surfaceOnDarkTransparentAccentB2E = other.surfaceOnDarkTransparentAccentB2E - surfaceOnDarkTransparentAccentB2EHover = other.surfaceOnDarkTransparentAccentB2EHover - surfaceOnDarkTransparentAccentB2EActive = other.surfaceOnDarkTransparentAccentB2EActive - surfaceOnDarkTransparentAccentBrand = other.surfaceOnDarkTransparentAccentBrand - surfaceOnDarkTransparentAccentBrandHover = other.surfaceOnDarkTransparentAccentBrandHover - surfaceOnDarkTransparentAccentBrandActive = other.surfaceOnDarkTransparentAccentBrandActive - surfaceOnDarkInfo = other.surfaceOnDarkInfo - surfaceOnDarkPositiveMinor = other.surfaceOnDarkPositiveMinor - surfaceOnDarkWarningMinor = other.surfaceOnDarkWarningMinor - surfaceOnDarkNegativeMinor = other.surfaceOnDarkNegativeMinor - surfaceOnDarkInfoMinor = other.surfaceOnDarkInfoMinor - surfaceOnDarkTransparentPositive = other.surfaceOnDarkTransparentPositive - surfaceOnDarkTransparentWarning = other.surfaceOnDarkTransparentWarning - surfaceOnDarkTransparentNegative = other.surfaceOnDarkTransparentNegative - surfaceOnDarkTransparentInfo = other.surfaceOnDarkTransparentInfo - surfaceOnLightSolidPrimaryHover = other.surfaceOnLightSolidPrimaryHover - surfaceOnLightSolidPrimaryActive = other.surfaceOnLightSolidPrimaryActive - surfaceOnLightSolidPrimary = other.surfaceOnLightSolidPrimary - surfaceOnLightSolidPrimaryBrightness = other.surfaceOnLightSolidPrimaryBrightness - surfaceOnLightSolidSecondaryHover = other.surfaceOnLightSolidSecondaryHover - surfaceOnLightSolidSecondaryActive = other.surfaceOnLightSolidSecondaryActive - surfaceOnLightSolidSecondary = other.surfaceOnLightSolidSecondary - surfaceOnLightSolidTertiaryHover = other.surfaceOnLightSolidTertiaryHover - surfaceOnLightSolidTertiaryActive = other.surfaceOnLightSolidTertiaryActive - surfaceOnLightSolidTertiary = other.surfaceOnLightSolidTertiary - surfaceOnLightSolidCardHover = other.surfaceOnLightSolidCardHover - surfaceOnLightSolidCardActive = other.surfaceOnLightSolidCardActive - surfaceOnLightSolidCard = other.surfaceOnLightSolidCard - surfaceOnLightSolidCardBrightness = other.surfaceOnLightSolidCardBrightness - surfaceOnLightSolidDefaultHover = other.surfaceOnLightSolidDefaultHover - surfaceOnLightSolidDefaultActive = other.surfaceOnLightSolidDefaultActive - surfaceOnLightSolidDefault = other.surfaceOnLightSolidDefault - surfaceOnLightTransparentPrimaryHover = other.surfaceOnLightTransparentPrimaryHover - surfaceOnLightTransparentPrimaryActive = other.surfaceOnLightTransparentPrimaryActive - surfaceOnLightTransparentPrimary = other.surfaceOnLightTransparentPrimary - surfaceOnLightTransparentSecondaryHover = other.surfaceOnLightTransparentSecondaryHover - surfaceOnLightTransparentSecondaryActive = other.surfaceOnLightTransparentSecondaryActive - surfaceOnLightTransparentSecondary = other.surfaceOnLightTransparentSecondary - surfaceOnLightTransparentTertiaryHover = other.surfaceOnLightTransparentTertiaryHover - surfaceOnLightTransparentTertiaryActive = other.surfaceOnLightTransparentTertiaryActive - surfaceOnLightTransparentTertiary = other.surfaceOnLightTransparentTertiary - surfaceOnLightTransparentDeepHover = other.surfaceOnLightTransparentDeepHover - surfaceOnLightTransparentDeepActive = other.surfaceOnLightTransparentDeepActive - surfaceOnLightTransparentDeep = other.surfaceOnLightTransparentDeep - surfaceOnLightTransparentCardHover = other.surfaceOnLightTransparentCardHover - surfaceOnLightTransparentCardActive = other.surfaceOnLightTransparentCardActive - surfaceOnLightTransparentCard = other.surfaceOnLightTransparentCard - surfaceOnLightTransparentCardBrightness = other.surfaceOnLightTransparentCardBrightness - surfaceOnLightClearHover = other.surfaceOnLightClearHover - surfaceOnLightClearActive = other.surfaceOnLightClearActive - surfaceOnLightClear = other.surfaceOnLightClear - surfaceOnLightAccentHover = other.surfaceOnLightAccentHover - surfaceOnLightAccentActive = other.surfaceOnLightAccentActive - surfaceOnLightAccent = other.surfaceOnLightAccent - surfaceOnLightAccentMinorHover = other.surfaceOnLightAccentMinorHover - surfaceOnLightAccentMinorActive = other.surfaceOnLightAccentMinorActive - surfaceOnLightAccentMinor = other.surfaceOnLightAccentMinor - surfaceOnLightTransparentAccentHover = other.surfaceOnLightTransparentAccentHover - surfaceOnLightTransparentAccentActive = other.surfaceOnLightTransparentAccentActive - surfaceOnLightTransparentAccent = other.surfaceOnLightTransparentAccent - surfaceOnLightPromoHover = other.surfaceOnLightPromoHover - surfaceOnLightPromoActive = other.surfaceOnLightPromoActive - surfaceOnLightPromo = other.surfaceOnLightPromo - surfaceOnLightPromoMinorHover = other.surfaceOnLightPromoMinorHover - surfaceOnLightPromoMinorActive = other.surfaceOnLightPromoMinorActive - surfaceOnLightPromoMinor = other.surfaceOnLightPromoMinor - surfaceOnLightTransparentPromoHover = other.surfaceOnLightTransparentPromoHover - surfaceOnLightTransparentPromoActive = other.surfaceOnLightTransparentPromoActive - surfaceOnLightTransparentPromo = other.surfaceOnLightTransparentPromo - surfaceOnLightPositiveHover = other.surfaceOnLightPositiveHover - surfaceOnLightPositiveActive = other.surfaceOnLightPositiveActive - surfaceOnLightPositive = other.surfaceOnLightPositive - surfaceOnLightWarningHover = other.surfaceOnLightWarningHover - surfaceOnLightWarningActive = other.surfaceOnLightWarningActive - surfaceOnLightWarning = other.surfaceOnLightWarning - surfaceOnLightNegativeHover = other.surfaceOnLightNegativeHover - surfaceOnLightNegativeActive = other.surfaceOnLightNegativeActive - surfaceOnLightNegative = other.surfaceOnLightNegative - surfaceOnLightInfoHover = other.surfaceOnLightInfoHover - surfaceOnLightInfoActive = other.surfaceOnLightInfoActive - surfaceOnLightPositiveMinorHover = other.surfaceOnLightPositiveMinorHover - surfaceOnLightPositiveMinorActive = other.surfaceOnLightPositiveMinorActive - surfaceOnLightWarningMinorHover = other.surfaceOnLightWarningMinorHover - surfaceOnLightWarningMinorActive = other.surfaceOnLightWarningMinorActive - surfaceOnLightNegativeMinorHover = other.surfaceOnLightNegativeMinorHover - surfaceOnLightNegativeMinorActive = other.surfaceOnLightNegativeMinorActive - surfaceOnLightInfoMinorHover = other.surfaceOnLightInfoMinorHover - surfaceOnLightInfoMinorActive = other.surfaceOnLightInfoMinorActive - surfaceOnLightTransparentPositiveHover = other.surfaceOnLightTransparentPositiveHover - surfaceOnLightTransparentPositiveActive = other.surfaceOnLightTransparentPositiveActive - surfaceOnLightTransparentWarningHover = other.surfaceOnLightTransparentWarningHover - surfaceOnLightTransparentWarningActive = other.surfaceOnLightTransparentWarningActive - surfaceOnLightTransparentNegativeHover = other.surfaceOnLightTransparentNegativeHover - surfaceOnLightTransparentNegativeActive = other.surfaceOnLightTransparentNegativeActive - surfaceOnLightTransparentInfoHover = other.surfaceOnLightTransparentInfoHover - surfaceOnLightTransparentInfoActive = other.surfaceOnLightTransparentInfoActive - surfaceOnLightAccentAthenaHover = other.surfaceOnLightAccentAthenaHover - surfaceOnLightAccentAthenaActive = other.surfaceOnLightAccentAthenaActive - surfaceOnLightAccentAthena = other.surfaceOnLightAccentAthena - surfaceOnLightAccentJoyHover = other.surfaceOnLightAccentJoyHover - surfaceOnLightAccentJoyActive = other.surfaceOnLightAccentJoyActive - surfaceOnLightAccentJoy = other.surfaceOnLightAccentJoy - surfaceOnLightAccentB2EHover = other.surfaceOnLightAccentB2EHover - surfaceOnLightAccentB2EActive = other.surfaceOnLightAccentB2EActive - surfaceOnLightAccentB2E = other.surfaceOnLightAccentB2E - surfaceOnLightAccentBrandHover = other.surfaceOnLightAccentBrandHover - surfaceOnLightAccentBrandActive = other.surfaceOnLightAccentBrandActive - surfaceOnLightAccentBrand = other.surfaceOnLightAccentBrand - surfaceOnLightAccentMainHover = other.surfaceOnLightAccentMainHover - surfaceOnLightAccentMainActive = other.surfaceOnLightAccentMainActive - surfaceOnLightAccentMain = other.surfaceOnLightAccentMain - surfaceOnLightAccentMainMinor = other.surfaceOnLightAccentMainMinor - surfaceOnLightAccentMainMinorHover = other.surfaceOnLightAccentMainMinorHover - surfaceOnLightAccentMainMinorActive = other.surfaceOnLightAccentMainMinorActive - surfaceOnLightAccentAthenaMinor = other.surfaceOnLightAccentAthenaMinor - surfaceOnLightAccentAthenaMinorHover = other.surfaceOnLightAccentAthenaMinorHover - surfaceOnLightAccentAthenaMinorActive = other.surfaceOnLightAccentAthenaMinorActive - surfaceOnLightAccentJoyMinor = other.surfaceOnLightAccentJoyMinor - surfaceOnLightAccentJoyMinorHover = other.surfaceOnLightAccentJoyMinorHover - surfaceOnLightAccentJoyMinorActive = other.surfaceOnLightAccentJoyMinorActive - surfaceOnLightAccentB2EMinor = other.surfaceOnLightAccentB2EMinor - surfaceOnLightAccentB2EMinorHover = other.surfaceOnLightAccentB2EMinorHover - surfaceOnLightAccentB2EMinorActive = other.surfaceOnLightAccentB2EMinorActive - surfaceOnLightAccentBrandMinor = other.surfaceOnLightAccentBrandMinor - surfaceOnLightAccentBrandMinorHover = other.surfaceOnLightAccentBrandMinorHover - surfaceOnLightAccentBrandMinorActive = other.surfaceOnLightAccentBrandMinorActive - surfaceOnLightTransparentAccentMain = other.surfaceOnLightTransparentAccentMain - surfaceOnLightTransparentAccentMainHover = other.surfaceOnLightTransparentAccentMainHover - surfaceOnLightTransparentAccentMainActive = other.surfaceOnLightTransparentAccentMainActive - surfaceOnLightTransparentAccentAthena = other.surfaceOnLightTransparentAccentAthena - surfaceOnLightTransparentAccentAthenaHover = other.surfaceOnLightTransparentAccentAthenaHover - surfaceOnLightTransparentAccentAthenaActive = other.surfaceOnLightTransparentAccentAthenaActive - surfaceOnLightTransparentAccentJoy = other.surfaceOnLightTransparentAccentJoy - surfaceOnLightTransparentAccentJoyHover = other.surfaceOnLightTransparentAccentJoyHover - surfaceOnLightTransparentAccentJoyActive = other.surfaceOnLightTransparentAccentJoyActive - surfaceOnLightTransparentAccentB2E = other.surfaceOnLightTransparentAccentB2E - surfaceOnLightTransparentAccentB2EHover = other.surfaceOnLightTransparentAccentB2EHover - surfaceOnLightTransparentAccentB2EActive = other.surfaceOnLightTransparentAccentB2EActive - surfaceOnLightTransparentAccentBrand = other.surfaceOnLightTransparentAccentBrand - surfaceOnLightTransparentAccentBrandHover = other.surfaceOnLightTransparentAccentBrandHover - surfaceOnLightTransparentAccentBrandActive = other.surfaceOnLightTransparentAccentBrandActive - surfaceOnLightInfo = other.surfaceOnLightInfo - surfaceOnLightPositiveMinor = other.surfaceOnLightPositiveMinor - surfaceOnLightWarningMinor = other.surfaceOnLightWarningMinor - surfaceOnLightNegativeMinor = other.surfaceOnLightNegativeMinor - surfaceOnLightInfoMinor = other.surfaceOnLightInfoMinor - surfaceOnLightTransparentPositive = other.surfaceOnLightTransparentPositive - surfaceOnLightTransparentWarning = other.surfaceOnLightTransparentWarning - surfaceOnLightTransparentNegative = other.surfaceOnLightTransparentNegative - surfaceOnLightTransparentInfo = other.surfaceOnLightTransparentInfo - surfaceInverseSolidPrimaryHover = other.surfaceInverseSolidPrimaryHover - surfaceInverseSolidPrimaryActive = other.surfaceInverseSolidPrimaryActive - surfaceInverseSolidPrimaryBrightness = other.surfaceInverseSolidPrimaryBrightness - surfaceInverseSolidSecondaryHover = other.surfaceInverseSolidSecondaryHover - surfaceInverseSolidSecondaryActive = other.surfaceInverseSolidSecondaryActive - surfaceInverseSolidTertiaryHover = other.surfaceInverseSolidTertiaryHover - surfaceInverseSolidTertiaryActive = other.surfaceInverseSolidTertiaryActive - surfaceInverseSolidCardHover = other.surfaceInverseSolidCardHover - surfaceInverseSolidCardActive = other.surfaceInverseSolidCardActive - surfaceInverseSolidCardBrightness = other.surfaceInverseSolidCardBrightness - surfaceInverseSolidDefaultHover = other.surfaceInverseSolidDefaultHover - surfaceInverseSolidDefaultActive = other.surfaceInverseSolidDefaultActive - surfaceInverseTransparentPrimaryHover = other.surfaceInverseTransparentPrimaryHover - surfaceInverseTransparentPrimaryActive = other.surfaceInverseTransparentPrimaryActive - surfaceInverseTransparentSecondaryHover = other.surfaceInverseTransparentSecondaryHover - surfaceInverseTransparentSecondaryActive = other.surfaceInverseTransparentSecondaryActive - surfaceInverseTransparentTertiaryHover = other.surfaceInverseTransparentTertiaryHover - surfaceInverseTransparentTertiaryActive = other.surfaceInverseTransparentTertiaryActive - surfaceInverseTransparentDeepHover = other.surfaceInverseTransparentDeepHover - surfaceInverseTransparentDeepActive = other.surfaceInverseTransparentDeepActive - surfaceInverseTransparentDeep = other.surfaceInverseTransparentDeep - surfaceInverseTransparentCardHover = other.surfaceInverseTransparentCardHover - surfaceInverseTransparentCardActive = other.surfaceInverseTransparentCardActive - surfaceInverseTransparentCardBrightness = other.surfaceInverseTransparentCardBrightness - surfaceInverseClearHover = other.surfaceInverseClearHover - surfaceInverseClearActive = other.surfaceInverseClearActive - surfaceInverseClear = other.surfaceInverseClear - surfaceInverseAccentHover = other.surfaceInverseAccentHover - surfaceInverseAccentActive = other.surfaceInverseAccentActive - surfaceInverseAccent = other.surfaceInverseAccent - surfaceInverseAccentMinorHover = other.surfaceInverseAccentMinorHover - surfaceInverseAccentMinorActive = other.surfaceInverseAccentMinorActive - surfaceInverseAccentMinor = other.surfaceInverseAccentMinor - surfaceInverseTransparentAccentHover = other.surfaceInverseTransparentAccentHover - surfaceInverseTransparentAccentActive = other.surfaceInverseTransparentAccentActive - surfaceInverseTransparentAccent = other.surfaceInverseTransparentAccent - surfaceInversePromoHover = other.surfaceInversePromoHover - surfaceInversePromoActive = other.surfaceInversePromoActive - surfaceInversePromo = other.surfaceInversePromo - surfaceInversePromoMinorHover = other.surfaceInversePromoMinorHover - surfaceInversePromoMinorActive = other.surfaceInversePromoMinorActive - surfaceInversePromoMinor = other.surfaceInversePromoMinor - surfaceInverseTransparentPromoHover = other.surfaceInverseTransparentPromoHover - surfaceInverseTransparentPromoActive = other.surfaceInverseTransparentPromoActive - surfaceInverseTransparentPromo = other.surfaceInverseTransparentPromo - surfaceInversePositiveHover = other.surfaceInversePositiveHover - surfaceInversePositiveActive = other.surfaceInversePositiveActive - surfaceInverseWarningHover = other.surfaceInverseWarningHover - surfaceInverseWarningActive = other.surfaceInverseWarningActive - surfaceInverseNegativeHover = other.surfaceInverseNegativeHover - surfaceInverseNegativeActive = other.surfaceInverseNegativeActive - surfaceInverseInfoHover = other.surfaceInverseInfoHover - surfaceInverseInfoActive = other.surfaceInverseInfoActive - surfaceInversePositiveMinorHover = other.surfaceInversePositiveMinorHover - surfaceInversePositiveMinorActive = other.surfaceInversePositiveMinorActive - surfaceInverseWarningMinorHover = other.surfaceInverseWarningMinorHover - surfaceInverseWarningMinorActive = other.surfaceInverseWarningMinorActive - surfaceInverseNegativeMinorHover = other.surfaceInverseNegativeMinorHover - surfaceInverseNegativeMinorActive = other.surfaceInverseNegativeMinorActive - surfaceInverseInfoMinorHover = other.surfaceInverseInfoMinorHover - surfaceInverseInfoMinorActive = other.surfaceInverseInfoMinorActive - surfaceInverseTransparentPositiveHover = other.surfaceInverseTransparentPositiveHover - surfaceInverseTransparentPositiveActive = other.surfaceInverseTransparentPositiveActive - surfaceInverseTransparentWarningHover = other.surfaceInverseTransparentWarningHover - surfaceInverseTransparentWarningActive = other.surfaceInverseTransparentWarningActive - surfaceInverseTransparentNegativeHover = other.surfaceInverseTransparentNegativeHover - surfaceInverseTransparentNegativeActive = other.surfaceInverseTransparentNegativeActive - surfaceInverseTransparentInfoHover = other.surfaceInverseTransparentInfoHover - surfaceInverseTransparentInfoActive = other.surfaceInverseTransparentInfoActive - surfaceInverseAccentMain = other.surfaceInverseAccentMain - surfaceInverseAccentMainHover = other.surfaceInverseAccentMainHover - surfaceInverseAccentMainActive = other.surfaceInverseAccentMainActive - surfaceInverseAccentAthena = other.surfaceInverseAccentAthena - surfaceInverseAccentAthenaHover = other.surfaceInverseAccentAthenaHover - surfaceInverseAccentAthenaActive = other.surfaceInverseAccentAthenaActive - surfaceInverseSurfaceAccentJoy = other.surfaceInverseSurfaceAccentJoy - surfaceInverseSurfaceAccentJoyHover = other.surfaceInverseSurfaceAccentJoyHover - surfaceInverseSurfaceAccentJoyActive = other.surfaceInverseSurfaceAccentJoyActive - surfaceInverseAccentB2E = other.surfaceInverseAccentB2E - surfaceInverseAccentB2EHover = other.surfaceInverseAccentB2EHover - surfaceInverseAccentB2EActive = other.surfaceInverseAccentB2EActive - surfaceInverseAccentBrand = other.surfaceInverseAccentBrand - surfaceInverseAccentBrandHover = other.surfaceInverseAccentBrandHover - surfaceInverseAccentBrandActive = other.surfaceInverseAccentBrandActive - surfaceInverseAccentMainMinorHover = other.surfaceInverseAccentMainMinorHover - surfaceInverseAccentMainMinorActive = other.surfaceInverseAccentMainMinorActive - surfaceInverseAccentAthenaMinorHover = other.surfaceInverseAccentAthenaMinorHover - surfaceInverseAccentAthenaMinorActive = other.surfaceInverseAccentAthenaMinorActive - surfaceInverseAccentJoyMinorHover = other.surfaceInverseAccentJoyMinorHover - surfaceInverseAccentJoyMinorActive = other.surfaceInverseAccentJoyMinorActive - surfaceInverseAccentB2EMinorHover = other.surfaceInverseAccentB2EMinorHover - surfaceInverseAccentB2EMinorActive = other.surfaceInverseAccentB2EMinorActive - surfaceInverseAccentBrandMinorHover = other.surfaceInverseAccentBrandMinorHover - surfaceInverseAccentBrandMinorActive = other.surfaceInverseAccentBrandMinorActive - surfaceInverseTransparentAccentMainHover = other.surfaceInverseTransparentAccentMainHover - surfaceInverseTransparentAccentMainActive = other.surfaceInverseTransparentAccentMainActive - surfaceInverseTransparentAccentAthenaHover = other.surfaceInverseTransparentAccentAthenaHover - surfaceInverseTransparentAccentAthenaActive = other.surfaceInverseTransparentAccentAthenaActive - surfaceInverseTransparentAccentJoyHover = other.surfaceInverseTransparentAccentJoyHover - surfaceInverseTransparentAccentJoyActive = other.surfaceInverseTransparentAccentJoyActive - surfaceInverseTransparentAccentB2EHover = other.surfaceInverseTransparentAccentB2EHover - surfaceInverseTransparentAccentB2EActive = other.surfaceInverseTransparentAccentB2EActive - surfaceInverseTransparentAccentBrandHover = other.surfaceInverseTransparentAccentBrandHover - surfaceInverseTransparentAccentBrandActive = other.surfaceInverseTransparentAccentBrandActive - surfaceInverseSolidCard = other.surfaceInverseSolidCard - surfaceInverseSolidPrimary = other.surfaceInverseSolidPrimary - surfaceInverseSolidSecondary = other.surfaceInverseSolidSecondary - surfaceInverseSolidTertiary = other.surfaceInverseSolidTertiary - surfaceInverseSolidDefault = other.surfaceInverseSolidDefault - surfaceInverseTransparentPrimary = other.surfaceInverseTransparentPrimary - surfaceInverseTransparentSecondary = other.surfaceInverseTransparentSecondary - surfaceInverseTransparentTertiary = other.surfaceInverseTransparentTertiary - surfaceInverseTransparentCard = other.surfaceInverseTransparentCard - surfaceInversePositive = other.surfaceInversePositive - surfaceInverseWarning = other.surfaceInverseWarning - surfaceInverseNegative = other.surfaceInverseNegative - surfaceInverseInfo = other.surfaceInverseInfo - surfaceInversePositiveMinor = other.surfaceInversePositiveMinor - surfaceInverseWarningMinor = other.surfaceInverseWarningMinor - surfaceInverseNegativeMinor = other.surfaceInverseNegativeMinor - surfaceInverseInfoMinor = other.surfaceInverseInfoMinor - surfaceInverseTransparentPositive = other.surfaceInverseTransparentPositive - surfaceInverseTransparentWarning = other.surfaceInverseTransparentWarning - surfaceInverseTransparentNegative = other.surfaceInverseTransparentNegative - surfaceInverseTransparentInfo = other.surfaceInverseTransparentInfo - surfaceInverseAccentMainMinor = other.surfaceInverseAccentMainMinor - surfaceInverseAccentAthenaMinor = other.surfaceInverseAccentAthenaMinor - surfaceInverseAccentJoyMinor = other.surfaceInverseAccentJoyMinor - surfaceInverseAccentBrandMinor = other.surfaceInverseAccentBrandMinor - surfaceInverseAccentB2EMinor = other.surfaceInverseAccentB2EMinor - surfaceInverseTransparentAccentMain = other.surfaceInverseTransparentAccentMain - surfaceInverseTransparentAccentAthena = other.surfaceInverseTransparentAccentAthena - surfaceInverseTransparentAccentJoy = other.surfaceInverseTransparentAccentJoy - surfaceInverseTransparentAccentB2E = other.surfaceInverseTransparentAccentB2E - surfaceInverseTransparentAccentBrand = other.surfaceInverseTransparentAccentBrand - backgroundDefaultPrimary = other.backgroundDefaultPrimary - backgroundDefaultPrimaryBrightness = other.backgroundDefaultPrimaryBrightness - backgroundDefaultSecondary = other.backgroundDefaultSecondary - backgroundDefaultTertiary = other.backgroundDefaultTertiary - backgroundDarkPrimary = other.backgroundDarkPrimary - backgroundDarkSecondary = other.backgroundDarkSecondary - backgroundDarkTertiary = other.backgroundDarkTertiary - backgroundLightPrimary = other.backgroundLightPrimary - backgroundLightSecondary = other.backgroundLightSecondary - backgroundLightTertiary = other.backgroundLightTertiary - backgroundInversePrimaryBrightness = other.backgroundInversePrimaryBrightness - backgroundInverseTertiary = other.backgroundInverseTertiary - backgroundInversePrimary = other.backgroundInversePrimary - backgroundInverseSecondary = other.backgroundInverseSecondary - overlayDefaultSoft = other.overlayDefaultSoft - overlayDefaultHard = other.overlayDefaultHard - overlayDefaultBlur = other.overlayDefaultBlur - overlayOnDarkSoft = other.overlayOnDarkSoft - overlayOnDarkHard = other.overlayOnDarkHard - overlayOnDarkBlur = other.overlayOnDarkBlur - overlayOnLightSoft = other.overlayOnLightSoft - overlayOnLightHard = other.overlayOnLightHard - overlayOnLightBlur = other.overlayOnLightBlur - overlayInverseSoft = other.overlayInverseSoft - overlayInverseHard = other.overlayInverseHard - overlayInverseBlur = other.overlayInverseBlur - outlineDefaultSolidPrimaryHover = other.outlineDefaultSolidPrimaryHover - outlineDefaultSolidPrimaryActive = other.outlineDefaultSolidPrimaryActive - outlineDefaultSolidSecondaryHover = other.outlineDefaultSolidSecondaryHover - outlineDefaultSolidSecondaryActive = other.outlineDefaultSolidSecondaryActive - outlineDefaultSolidTertiaryHover = other.outlineDefaultSolidTertiaryHover - outlineDefaultSolidTertiaryActive = other.outlineDefaultSolidTertiaryActive - outlineDefaultTransparentDefaultHover = other.outlineDefaultTransparentDefaultHover - outlineDefaultTransparentDefaultActive = other.outlineDefaultTransparentDefaultActive - outlineDefaultTransparentDefault = other.outlineDefaultTransparentDefault - outlineDefaultTransparentPrimaryHover = other.outlineDefaultTransparentPrimaryHover - outlineDefaultTransparentPrimaryActive = other.outlineDefaultTransparentPrimaryActive - outlineDefaultTransparentSecondaryHover = other.outlineDefaultTransparentSecondaryHover - outlineDefaultTransparentSecondaryActive = other.outlineDefaultTransparentSecondaryActive - outlineDefaultTransparentTertiaryHover = other.outlineDefaultTransparentTertiaryHover - outlineDefaultTransparentTertiaryActive = other.outlineDefaultTransparentTertiaryActive - outlineDefaultClearHover = other.outlineDefaultClearHover - outlineDefaultClearActive = other.outlineDefaultClearActive - outlineDefaultAccentHover = other.outlineDefaultAccentHover - outlineDefaultAccentActive = other.outlineDefaultAccentActive - outlineDefaultAccent = other.outlineDefaultAccent - outlineDefaultAccentMinorHover = other.outlineDefaultAccentMinorHover - outlineDefaultAccentMinorActive = other.outlineDefaultAccentMinorActive - outlineDefaultAccentMinor = other.outlineDefaultAccentMinor - outlineDefaultTransparentAccentHover = other.outlineDefaultTransparentAccentHover - outlineDefaultTransparentAccentActive = other.outlineDefaultTransparentAccentActive - outlineDefaultTransparentAccent = other.outlineDefaultTransparentAccent - outlineDefaultPromoHover = other.outlineDefaultPromoHover - outlineDefaultPromoActive = other.outlineDefaultPromoActive - outlineDefaultPromo = other.outlineDefaultPromo - outlineDefaultPromoMinorHover = other.outlineDefaultPromoMinorHover - outlineDefaultPromoMinorActive = other.outlineDefaultPromoMinorActive - outlineDefaultPromoMinor = other.outlineDefaultPromoMinor - outlineDefaultPositiveHover = other.outlineDefaultPositiveHover - outlineDefaultPositiveActive = other.outlineDefaultPositiveActive - outlineDefaultWarningHover = other.outlineDefaultWarningHover - outlineDefaultWarningActive = other.outlineDefaultWarningActive - outlineDefaultNegativeHover = other.outlineDefaultNegativeHover - outlineDefaultNegativeActive = other.outlineDefaultNegativeActive - outlineDefaultInfoHover = other.outlineDefaultInfoHover - outlineDefaultInfoActive = other.outlineDefaultInfoActive - outlineDefaultPositiveMinorHover = other.outlineDefaultPositiveMinorHover - outlineDefaultPositiveMinorActive = other.outlineDefaultPositiveMinorActive - outlineDefaultWarningMinorHover = other.outlineDefaultWarningMinorHover - outlineDefaultWarningMinorActive = other.outlineDefaultWarningMinorActive - outlineDefaultNegativeMinorHover = other.outlineDefaultNegativeMinorHover - outlineDefaultNegativeMinorActive = other.outlineDefaultNegativeMinorActive - outlineDefaultInfoMinorHover = other.outlineDefaultInfoMinorHover - outlineDefaultInfoMinorActive = other.outlineDefaultInfoMinorActive - outlineDefaultTransparentPositiveHover = other.outlineDefaultTransparentPositiveHover - outlineDefaultTransparentPositiveActive = other.outlineDefaultTransparentPositiveActive - outlineDefaultTransparentWarningHover = other.outlineDefaultTransparentWarningHover - outlineDefaultTransparentWarningActive = other.outlineDefaultTransparentWarningActive - outlineDefaultTransparentNegativeHover = other.outlineDefaultTransparentNegativeHover - outlineDefaultTransparentNegativeActive = other.outlineDefaultTransparentNegativeActive - outlineDefaultTransparentInfoHover = other.outlineDefaultTransparentInfoHover - outlineDefaultTransparentInfoActive = other.outlineDefaultTransparentInfoActive - outlineDefaultSolidDefaultHover = other.outlineDefaultSolidDefaultHover - outlineDefaultSolidDefaultActive = other.outlineDefaultSolidDefaultActive - outlineDefaultAccentMainHover = other.outlineDefaultAccentMainHover - outlineDefaultAccentMainActive = other.outlineDefaultAccentMainActive - outlineDefaultAccentAthenaHover = other.outlineDefaultAccentAthenaHover - outlineDefaultAccentAthenaActive = other.outlineDefaultAccentAthenaActive - outlineDefaultAccentJoyHover = other.outlineDefaultAccentJoyHover - outlineDefaultAccentJoyActive = other.outlineDefaultAccentJoyActive - outlineDefaultAccentB2EHover = other.outlineDefaultAccentB2EHover - outlineDefaultAccentB2EActive = other.outlineDefaultAccentB2EActive - outlineDefaultAccentBrandHover = other.outlineDefaultAccentBrandHover - outlineDefaultAccentBrandActive = other.outlineDefaultAccentBrandActive - outlineDefaultAccentMainMinorHover = other.outlineDefaultAccentMainMinorHover - outlineDefaultAccentMainMinorActive = other.outlineDefaultAccentMainMinorActive - outlineDefaultAccentAthenaMinorHover = other.outlineDefaultAccentAthenaMinorHover - outlineDefaultAccentAthenaMinorActive = other.outlineDefaultAccentAthenaMinorActive - outlineDefaultAccentJoyMinorHover = other.outlineDefaultAccentJoyMinorHover - outlineDefaultAccentJoyMinorActive = other.outlineDefaultAccentJoyMinorActive - outlineDefaultAccentB2EMinorHover = other.outlineDefaultAccentB2EMinorHover - outlineDefaultAccentB2EMinorActive = other.outlineDefaultAccentB2EMinorActive - outlineDefaultAccentBrandMinorHover = other.outlineDefaultAccentBrandMinorHover - outlineDefaultAccentBrandMinorActive = other.outlineDefaultAccentBrandMinorActive - outlineDefaultTransparentAccentMainHover = other.outlineDefaultTransparentAccentMainHover - outlineDefaultTransparentAccentMainActive = other.outlineDefaultTransparentAccentMainActive - outlineDefaultTransparentAccentAthenaHover = other.outlineDefaultTransparentAccentAthenaHover - outlineDefaultTransparentAccentAthenaActive = other.outlineDefaultTransparentAccentAthenaActive - outlineDefaultTransparentAccentJoyHover = other.outlineDefaultTransparentAccentJoyHover - outlineDefaultTransparentAccentJoyActive = other.outlineDefaultTransparentAccentJoyActive - outlineDefaultTransparentAccentB2EHover = other.outlineDefaultTransparentAccentB2EHover - outlineDefaultTransparentAccentB2EActive = other.outlineDefaultTransparentAccentB2EActive - outlineDefaultTransparentAccentBrandHover = other.outlineDefaultTransparentAccentBrandHover - outlineDefaultTransparentAccentBrandActive = other.outlineDefaultTransparentAccentBrandActive - outlineDefaultSolidPrimary = other.outlineDefaultSolidPrimary - outlineDefaultSolidSecondary = other.outlineDefaultSolidSecondary - outlineDefaultSolidTertiary = other.outlineDefaultSolidTertiary - outlineDefaultTransparentPrimary = other.outlineDefaultTransparentPrimary - outlineDefaultTransparentSecondary = other.outlineDefaultTransparentSecondary - outlineDefaultTransparentTertiary = other.outlineDefaultTransparentTertiary - outlineDefaultClear = other.outlineDefaultClear - outlineDefaultSolidDefault = other.outlineDefaultSolidDefault - outlineDefaultPositive = other.outlineDefaultPositive - outlineDefaultWarning = other.outlineDefaultWarning - outlineDefaultNegative = other.outlineDefaultNegative - outlineDefaultInfo = other.outlineDefaultInfo - outlineDefaultPositiveMinor = other.outlineDefaultPositiveMinor - outlineDefaultWarningMinor = other.outlineDefaultWarningMinor - outlineDefaultNegativeMinor = other.outlineDefaultNegativeMinor - outlineDefaultInfoMinor = other.outlineDefaultInfoMinor - outlineDefaultTransparentPositive = other.outlineDefaultTransparentPositive - outlineDefaultTransparentWarning = other.outlineDefaultTransparentWarning - outlineDefaultTransparentNegative = other.outlineDefaultTransparentNegative - outlineDefaultTransparentInfo = other.outlineDefaultTransparentInfo - outlineDefaultAccentMain = other.outlineDefaultAccentMain - outlineDefaultAccentAthena = other.outlineDefaultAccentAthena - outlineDefaultAccentJoy = other.outlineDefaultAccentJoy - outlineDefaultAccentB2E = other.outlineDefaultAccentB2E - outlineDefaultAccentBrand = other.outlineDefaultAccentBrand - outlineDefaultAccentMainMinor = other.outlineDefaultAccentMainMinor - outlineDefaultAccentAthenaMinor = other.outlineDefaultAccentAthenaMinor - outlineDefaultAccentJoyMinor = other.outlineDefaultAccentJoyMinor - outlineDefaultAccentB2EMinor = other.outlineDefaultAccentB2EMinor - outlineDefaultAccentBrandMinor = other.outlineDefaultAccentBrandMinor - outlineDefaultTransparentAccentMain = other.outlineDefaultTransparentAccentMain - outlineDefaultTransparentAccentAthena = other.outlineDefaultTransparentAccentAthena - outlineDefaultTransparentAccentJoy = other.outlineDefaultTransparentAccentJoy - outlineDefaultTransparentAccentB2E = other.outlineDefaultTransparentAccentB2E - outlineDefaultTransparentAccentBrand = other.outlineDefaultTransparentAccentBrand - outlineOnDarkSolidPrimaryHover = other.outlineOnDarkSolidPrimaryHover - outlineOnDarkSolidPrimaryActive = other.outlineOnDarkSolidPrimaryActive - outlineOnDarkSolidSecondaryHover = other.outlineOnDarkSolidSecondaryHover - outlineOnDarkSolidSecondaryActive = other.outlineOnDarkSolidSecondaryActive - outlineOnDarkSolidTertiaryHover = other.outlineOnDarkSolidTertiaryHover - outlineOnDarkSolidTertiaryActive = other.outlineOnDarkSolidTertiaryActive - outlineOnDarkTransparentDefaultHover = other.outlineOnDarkTransparentDefaultHover - outlineOnDarkTransparentDefaultActive = other.outlineOnDarkTransparentDefaultActive - outlineOnDarkTransparentDefault = other.outlineOnDarkTransparentDefault - outlineOnDarkTransparentPrimaryHover = other.outlineOnDarkTransparentPrimaryHover - outlineOnDarkTransparentPrimaryActive = other.outlineOnDarkTransparentPrimaryActive - outlineOnDarkTransparentSecondaryHover = other.outlineOnDarkTransparentSecondaryHover - outlineOnDarkTransparentSecondaryActive = other.outlineOnDarkTransparentSecondaryActive - outlineOnDarkTransparentTertiaryHover = other.outlineOnDarkTransparentTertiaryHover - outlineOnDarkTransparentTertiaryActive = other.outlineOnDarkTransparentTertiaryActive - outlineOnDarkClearHover = other.outlineOnDarkClearHover - outlineOnDarkClearActive = other.outlineOnDarkClearActive - outlineOnDarkClear = other.outlineOnDarkClear - outlineOnDarkAccentHover = other.outlineOnDarkAccentHover - outlineOnDarkAccentActive = other.outlineOnDarkAccentActive - outlineOnDarkAccent = other.outlineOnDarkAccent - outlineOnDarkAccentMinorHover = other.outlineOnDarkAccentMinorHover - outlineOnDarkAccentMinorActive = other.outlineOnDarkAccentMinorActive - outlineOnDarkAccentMinor = other.outlineOnDarkAccentMinor - outlineOnDarkTransparentAccentHover = other.outlineOnDarkTransparentAccentHover - outlineOnDarkTransparentAccentActive = other.outlineOnDarkTransparentAccentActive - outlineOnDarkTransparentAccent = other.outlineOnDarkTransparentAccent - outlineOnDarkPromoHover = other.outlineOnDarkPromoHover - outlineOnDarkPromoActive = other.outlineOnDarkPromoActive - outlineOnDarkPromo = other.outlineOnDarkPromo - outlineOnDarkPromoMinorHover = other.outlineOnDarkPromoMinorHover - outlineOnDarkPromoMinorActive = other.outlineOnDarkPromoMinorActive - outlineOnDarkPromoMinor = other.outlineOnDarkPromoMinor - outlineOnDarkPositiveHover = other.outlineOnDarkPositiveHover - outlineOnDarkPositiveActive = other.outlineOnDarkPositiveActive - outlineOnDarkWarningHover = other.outlineOnDarkWarningHover - outlineOnDarkWarningActive = other.outlineOnDarkWarningActive - outlineOnDarkNegativeHover = other.outlineOnDarkNegativeHover - outlineOnDarkNegativeActive = other.outlineOnDarkNegativeActive - outlineOnDarkInfoHover = other.outlineOnDarkInfoHover - outlineOnDarkInfoActive = other.outlineOnDarkInfoActive - outlineOnDarkPositiveMinorHover = other.outlineOnDarkPositiveMinorHover - outlineOnDarkPositiveMinorActive = other.outlineOnDarkPositiveMinorActive - outlineOnDarkWarningMinorHover = other.outlineOnDarkWarningMinorHover - outlineOnDarkWarningMinorActive = other.outlineOnDarkWarningMinorActive - outlineOnDarkNegativeMinorHover = other.outlineOnDarkNegativeMinorHover - outlineOnDarkNegativeMinorActive = other.outlineOnDarkNegativeMinorActive - outlineOnDarkInfoMinorHover = other.outlineOnDarkInfoMinorHover - outlineOnDarkInfoMinorActive = other.outlineOnDarkInfoMinorActive - outlineOnDarkTransparentPositiveHover = other.outlineOnDarkTransparentPositiveHover - outlineOnDarkTransparentPositiveActive = other.outlineOnDarkTransparentPositiveActive - outlineOnDarkTransparentWarningHover = other.outlineOnDarkTransparentWarningHover - outlineOnDarkTransparentWarningActive = other.outlineOnDarkTransparentWarningActive - outlineOnDarkTransparentNegativeHover = other.outlineOnDarkTransparentNegativeHover - outlineOnDarkTransparentNegativeActive = other.outlineOnDarkTransparentNegativeActive - outlineOnDarkTransparentInfoHover = other.outlineOnDarkTransparentInfoHover - outlineOnDarkTransparentInfoActive = other.outlineOnDarkTransparentInfoActive - outlineOnDarkSolidDefaultHover = other.outlineOnDarkSolidDefaultHover - outlineOnDarkSolidDefaultActive = other.outlineOnDarkSolidDefaultActive - outlineOnDarkAccentMain = other.outlineOnDarkAccentMain - outlineOnDarkAccentMainHover = other.outlineOnDarkAccentMainHover - outlineOnDarkAccentMainActive = other.outlineOnDarkAccentMainActive - outlineOnDarkAccentAthena = other.outlineOnDarkAccentAthena - outlineOnDarkAccentAthenaHover = other.outlineOnDarkAccentAthenaHover - outlineOnDarkAccentAthenaActive = other.outlineOnDarkAccentAthenaActive - outlineOnDarkAccentJoy = other.outlineOnDarkAccentJoy - outlineOnDarkAccentJoyHover = other.outlineOnDarkAccentJoyHover - outlineOnDarkAccentJoyActive = other.outlineOnDarkAccentJoyActive - outlineOnDarkAccentB2E = other.outlineOnDarkAccentB2E - outlineOnDarkAccentB2EHover = other.outlineOnDarkAccentB2EHover - outlineOnDarkAccentB2EActive = other.outlineOnDarkAccentB2EActive - outlineOnDarkAccentBrand = other.outlineOnDarkAccentBrand - outlineOnDarkAccentBrandHover = other.outlineOnDarkAccentBrandHover - outlineOnDarkAccentBrandActive = other.outlineOnDarkAccentBrandActive - outlineOnDarkAccentMainMinor = other.outlineOnDarkAccentMainMinor - outlineOnDarkAccentMainMinorHover = other.outlineOnDarkAccentMainMinorHover - outlineOnDarkAccentMainMinorActive = other.outlineOnDarkAccentMainMinorActive - outlineOnDarkAccentAthenaMinor = other.outlineOnDarkAccentAthenaMinor - outlineOnDarkAccentAthenaMinorHover = other.outlineOnDarkAccentAthenaMinorHover - outlineOnDarkAccentAthenaMinorActive = other.outlineOnDarkAccentAthenaMinorActive - outlineOnDarkAccentJoyMinor = other.outlineOnDarkAccentJoyMinor - outlineOnDarkAccentJoyMinorHover = other.outlineOnDarkAccentJoyMinorHover - outlineOnDarkAccentJoyMinorActive = other.outlineOnDarkAccentJoyMinorActive - outlineOnDarkAccentB2EMinor = other.outlineOnDarkAccentB2EMinor - outlineOnDarkAccentB2EMinorHover = other.outlineOnDarkAccentB2EMinorHover - outlineOnDarkAccentB2EMinorActive = other.outlineOnDarkAccentB2EMinorActive - outlineOnDarkAccentBrandMinor = other.outlineOnDarkAccentBrandMinor - outlineOnDarkAccentBrandMinorHover = other.outlineOnDarkAccentBrandMinorHover - outlineOnDarkAccentBrandMinorActive = other.outlineOnDarkAccentBrandMinorActive - outlineOnDarkTransparentAccentMain = other.outlineOnDarkTransparentAccentMain - outlineOnDarkTransparentAccentMainHover = other.outlineOnDarkTransparentAccentMainHover - outlineOnDarkTransparentAccentMainActive = other.outlineOnDarkTransparentAccentMainActive - outlineOnDarkTransparentAccentAthena = other.outlineOnDarkTransparentAccentAthena - outlineOnDarkTransparentAccentAthenaHover = other.outlineOnDarkTransparentAccentAthenaHover - outlineOnDarkTransparentAccentAthenaActive = other.outlineOnDarkTransparentAccentAthenaActive - outlineOnDarkTransparentAccentJoy = other.outlineOnDarkTransparentAccentJoy - outlineOnDarkTransparentAccentJoyHover = other.outlineOnDarkTransparentAccentJoyHover - outlineOnDarkTransparentAccentJoyActive = other.outlineOnDarkTransparentAccentJoyActive - outlineOnDarkTransparentAccentB2E = other.outlineOnDarkTransparentAccentB2E - outlineOnDarkTransparentAccentB2EHover = other.outlineOnDarkTransparentAccentB2EHover - outlineOnDarkTransparentAccentB2EActive = other.outlineOnDarkTransparentAccentB2EActive - outlineOnDarkTransparentAccentBrand = other.outlineOnDarkTransparentAccentBrand - outlineOnDarkTransparentAccentBrandHover = other.outlineOnDarkTransparentAccentBrandHover - outlineOnDarkTransparentAccentBrandActive = other.outlineOnDarkTransparentAccentBrandActive - outlineOnDarkSolidPrimary = other.outlineOnDarkSolidPrimary - outlineOnDarkSolidSecondary = other.outlineOnDarkSolidSecondary - outlineOnDarkSolidTertiary = other.outlineOnDarkSolidTertiary - outlineOnDarkTransparentPrimary = other.outlineOnDarkTransparentPrimary - outlineOnDarkTransparentSecondary = other.outlineOnDarkTransparentSecondary - outlineOnDarkTransparentTertiary = other.outlineOnDarkTransparentTertiary - outlineOnDarkSolidDefault = other.outlineOnDarkSolidDefault - outlineOnDarkPositive = other.outlineOnDarkPositive - outlineOnDarkWarning = other.outlineOnDarkWarning - outlineOnDarkNegative = other.outlineOnDarkNegative - outlineOnDarkInfo = other.outlineOnDarkInfo - outlineOnDarkPositiveMinor = other.outlineOnDarkPositiveMinor - outlineOnDarkWarningMinor = other.outlineOnDarkWarningMinor - outlineOnDarkNegativeMinor = other.outlineOnDarkNegativeMinor - outlineOnDarkInfoMinor = other.outlineOnDarkInfoMinor - outlineOnDarkTransparentPositive = other.outlineOnDarkTransparentPositive - outlineOnDarkTransparentWarning = other.outlineOnDarkTransparentWarning - outlineOnDarkTransparentNegative = other.outlineOnDarkTransparentNegative - outlineOnDarkTransparentInfo = other.outlineOnDarkTransparentInfo - outlineOnLightSolidPrimaryHover = other.outlineOnLightSolidPrimaryHover - outlineOnLightSolidPrimaryActive = other.outlineOnLightSolidPrimaryActive - outlineOnLightSolidSecondaryHover = other.outlineOnLightSolidSecondaryHover - outlineOnLightSolidSecondaryActive = other.outlineOnLightSolidSecondaryActive - outlineOnLightSolidTertiaryHover = other.outlineOnLightSolidTertiaryHover - outlineOnLightSolidTertiaryActive = other.outlineOnLightSolidTertiaryActive - outlineOnLightTransparentDefaultHover = other.outlineOnLightTransparentDefaultHover - outlineOnLightTransparentDefaultActive = other.outlineOnLightTransparentDefaultActive - outlineOnLightTransparentDefault = other.outlineOnLightTransparentDefault - outlineOnLightTransparentPrimaryHover = other.outlineOnLightTransparentPrimaryHover - outlineOnLightTransparentPrimaryActive = other.outlineOnLightTransparentPrimaryActive - outlineOnLightTransparentSecondaryHover = other.outlineOnLightTransparentSecondaryHover - outlineOnLightTransparentSecondaryActive = other.outlineOnLightTransparentSecondaryActive - outlineOnLightTransparentTertiaryHover = other.outlineOnLightTransparentTertiaryHover - outlineOnLightTransparentTertiaryActive = other.outlineOnLightTransparentTertiaryActive - outlineOnLightClearHover = other.outlineOnLightClearHover - outlineOnLightClearActive = other.outlineOnLightClearActive - outlineOnLightClear = other.outlineOnLightClear - outlineOnLightAccentHover = other.outlineOnLightAccentHover - outlineOnLightAccentActive = other.outlineOnLightAccentActive - outlineOnLightAccent = other.outlineOnLightAccent - outlineOnLightAccentMinorHover = other.outlineOnLightAccentMinorHover - outlineOnLightAccentMinorActive = other.outlineOnLightAccentMinorActive - outlineOnLightAccentMinor = other.outlineOnLightAccentMinor - outlineOnLightTransparentAccentHover = other.outlineOnLightTransparentAccentHover - outlineOnLightTransparentAccentActive = other.outlineOnLightTransparentAccentActive - outlineOnLightTransparentAccent = other.outlineOnLightTransparentAccent - outlineOnLightPromoHover = other.outlineOnLightPromoHover - outlineOnLightPromoActive = other.outlineOnLightPromoActive - outlineOnLightPromo = other.outlineOnLightPromo - outlineOnLightPromoMinorHover = other.outlineOnLightPromoMinorHover - outlineOnLightPromoMinorActive = other.outlineOnLightPromoMinorActive - outlineOnLightPromoMinor = other.outlineOnLightPromoMinor - outlineOnLightPositiveHover = other.outlineOnLightPositiveHover - outlineOnLightPositiveActive = other.outlineOnLightPositiveActive - outlineOnLightWarningHover = other.outlineOnLightWarningHover - outlineOnLightWarningActive = other.outlineOnLightWarningActive - outlineOnLightNegativeHover = other.outlineOnLightNegativeHover - outlineOnLightNegativeActive = other.outlineOnLightNegativeActive - outlineOnLightInfoHover = other.outlineOnLightInfoHover - outlineOnLightInfoActive = other.outlineOnLightInfoActive - outlineOnLightPositiveMinorHover = other.outlineOnLightPositiveMinorHover - outlineOnLightPositiveMinorActive = other.outlineOnLightPositiveMinorActive - outlineOnLightWarningMinorHover = other.outlineOnLightWarningMinorHover - outlineOnLightWarningMinorActive = other.outlineOnLightWarningMinorActive - outlineOnLightNegativeMinorHover = other.outlineOnLightNegativeMinorHover - outlineOnLightNegativeMinorActive = other.outlineOnLightNegativeMinorActive - outlineOnLightInfoMinorHover = other.outlineOnLightInfoMinorHover - outlineOnLightInfoMinorActive = other.outlineOnLightInfoMinorActive - outlineOnLightTransparentPositiveHover = other.outlineOnLightTransparentPositiveHover - outlineOnLightTransparentPositiveActive = other.outlineOnLightTransparentPositiveActive - outlineOnLightTransparentWarningHover = other.outlineOnLightTransparentWarningHover - outlineOnLightTransparentWarningActive = other.outlineOnLightTransparentWarningActive - outlineOnLightTransparentNegativeHover = other.outlineOnLightTransparentNegativeHover - outlineOnLightTransparentNegativeActive = other.outlineOnLightTransparentNegativeActive - outlineOnLightTransparentInfoHover = other.outlineOnLightTransparentInfoHover - outlineOnLightTransparentInfoActive = other.outlineOnLightTransparentInfoActive - outlineOnLightSolidDefaultHover = other.outlineOnLightSolidDefaultHover - outlineOnLightSolidDefaultActive = other.outlineOnLightSolidDefaultActive - outlineOnLightAccentMain = other.outlineOnLightAccentMain - outlineOnLightAccentMainHover = other.outlineOnLightAccentMainHover - outlineOnLightAccentMainActive = other.outlineOnLightAccentMainActive - outlineOnLightAccentAthena = other.outlineOnLightAccentAthena - outlineOnLightAccentAthenaHover = other.outlineOnLightAccentAthenaHover - outlineOnLightAccentAthenaActive = other.outlineOnLightAccentAthenaActive - outlineOnLightAccentJoy = other.outlineOnLightAccentJoy - outlineOnLightAccentJoyHover = other.outlineOnLightAccentJoyHover - outlineOnLightAccentJoyActive = other.outlineOnLightAccentJoyActive - outlineOnLightAccentB2E = other.outlineOnLightAccentB2E - outlineOnLightAccentB2EHover = other.outlineOnLightAccentB2EHover - outlineOnLightAccentB2EActive = other.outlineOnLightAccentB2EActive - outlineOnLightAccentBrand = other.outlineOnLightAccentBrand - outlineOnLightAccentBrandHover = other.outlineOnLightAccentBrandHover - outlineOnLightAccentBrandActive = other.outlineOnLightAccentBrandActive - outlineOnLightAccentMainMinor = other.outlineOnLightAccentMainMinor - outlineOnLightAccentMainMinorHover = other.outlineOnLightAccentMainMinorHover - outlineOnLightAccentMainMinorActive = other.outlineOnLightAccentMainMinorActive - outlineOnLightAccentAthenaMinor = other.outlineOnLightAccentAthenaMinor - outlineOnLightAccentAthenaMinorHover = other.outlineOnLightAccentAthenaMinorHover - outlineOnLightAccentAthenaMinorActive = other.outlineOnLightAccentAthenaMinorActive - outlineOnLightAccentJoyMinor = other.outlineOnLightAccentJoyMinor - outlineOnLightAccentJoyMinorHover = other.outlineOnLightAccentJoyMinorHover - outlineOnLightAccentJoyMinorActive = other.outlineOnLightAccentJoyMinorActive - outlineOnLightAccentB2EMinor = other.outlineOnLightAccentB2EMinor - outlineOnLightAccentB2EMinorHover = other.outlineOnLightAccentB2EMinorHover - outlineOnLightAccentB2EMinorActive = other.outlineOnLightAccentB2EMinorActive - outlineOnLightAccentBrandMinor = other.outlineOnLightAccentBrandMinor - outlineOnLightAccentBrandMinorHover = other.outlineOnLightAccentBrandMinorHover - outlineOnLightAccentBrandMinorActive = other.outlineOnLightAccentBrandMinorActive - outlineOnLightTransparentAccentMain = other.outlineOnLightTransparentAccentMain - outlineOnLightTransparentAccentMainHover = other.outlineOnLightTransparentAccentMainHover - outlineOnLightTransparentAccentMainActive = other.outlineOnLightTransparentAccentMainActive - outlineOnLightTransparentAccentAthena = other.outlineOnLightTransparentAccentAthena - outlineOnLightTransparentAccentAthenaHover = other.outlineOnLightTransparentAccentAthenaHover - outlineOnLightTransparentAccentAthenaActive = other.outlineOnLightTransparentAccentAthenaActive - outlineOnLightTransparentAccentJoy = other.outlineOnLightTransparentAccentJoy - outlineOnLightTransparentAccentJoyHover = other.outlineOnLightTransparentAccentJoyHover - outlineOnLightTransparentAccentJoyActive = other.outlineOnLightTransparentAccentJoyActive - outlineOnLightTransparentAccentB2E = other.outlineOnLightTransparentAccentB2E - outlineOnLightTransparentAccentB2EHover = other.outlineOnLightTransparentAccentB2EHover - outlineOnLightTransparentAccentB2EActive = other.outlineOnLightTransparentAccentB2EActive - outlineOnLightTransparentAccentBrand = other.outlineOnLightTransparentAccentBrand - outlineOnLightTransparentAccentBrandHover = other.outlineOnLightTransparentAccentBrandHover - outlineOnLightTransparentAccentBrandActive = other.outlineOnLightTransparentAccentBrandActive - outlineOnLightSolidPrimary = other.outlineOnLightSolidPrimary - outlineOnLightSolidSecondary = other.outlineOnLightSolidSecondary - outlineOnLightSolidTertiary = other.outlineOnLightSolidTertiary - outlineOnLightTransparentPrimary = other.outlineOnLightTransparentPrimary - outlineOnLightTransparentSecondary = other.outlineOnLightTransparentSecondary - outlineOnLightTransparentTertiary = other.outlineOnLightTransparentTertiary - outlineOnLightSolidDefault = other.outlineOnLightSolidDefault - outlineOnLightPositive = other.outlineOnLightPositive - outlineOnLightWarning = other.outlineOnLightWarning - outlineOnLightNegative = other.outlineOnLightNegative - outlineOnLightInfo = other.outlineOnLightInfo - outlineOnLightPositiveMinor = other.outlineOnLightPositiveMinor - outlineOnLightWarningMinor = other.outlineOnLightWarningMinor - outlineOnLightNegativeMinor = other.outlineOnLightNegativeMinor - outlineOnLightInfoMinor = other.outlineOnLightInfoMinor - outlineOnLightTransparentPositive = other.outlineOnLightTransparentPositive - outlineOnLightTransparentWarning = other.outlineOnLightTransparentWarning - outlineOnLightTransparentNegative = other.outlineOnLightTransparentNegative - outlineOnLightTransparentInfo = other.outlineOnLightTransparentInfo - outlineInverseSolidPrimaryHover = other.outlineInverseSolidPrimaryHover - outlineInverseSolidPrimaryActive = other.outlineInverseSolidPrimaryActive - outlineInverseSolidSecondaryHover = other.outlineInverseSolidSecondaryHover - outlineInverseSolidSecondaryActive = other.outlineInverseSolidSecondaryActive - outlineInverseSolidTertiaryHover = other.outlineInverseSolidTertiaryHover - outlineInverseSolidTertiaryActive = other.outlineInverseSolidTertiaryActive - outlineInverseTransparentDefaultHover = other.outlineInverseTransparentDefaultHover - outlineInverseTransparentDefaultActive = other.outlineInverseTransparentDefaultActive - outlineInverseTransparentDefault = other.outlineInverseTransparentDefault - outlineInverseTransparentPrimaryHover = other.outlineInverseTransparentPrimaryHover - outlineInverseTransparentPrimaryActive = other.outlineInverseTransparentPrimaryActive - outlineInverseTransparentSecondaryHover = other.outlineInverseTransparentSecondaryHover - outlineInverseTransparentSecondaryActive = other.outlineInverseTransparentSecondaryActive - outlineInverseTransparentTertiaryHover = other.outlineInverseTransparentTertiaryHover - outlineInverseTransparentTertiaryActive = other.outlineInverseTransparentTertiaryActive - outlineInverseClearHover = other.outlineInverseClearHover - outlineInverseClearActive = other.outlineInverseClearActive - outlineInverseClear = other.outlineInverseClear - outlineInverseAccentHover = other.outlineInverseAccentHover - outlineInverseAccentActive = other.outlineInverseAccentActive - outlineInverseAccent = other.outlineInverseAccent - outlineInverseAccentMinorHover = other.outlineInverseAccentMinorHover - outlineInverseAccentMinorActive = other.outlineInverseAccentMinorActive - outlineInverseAccentMinor = other.outlineInverseAccentMinor - outlineInverseTransparentAccentHover = other.outlineInverseTransparentAccentHover - outlineInverseTransparentAccentActive = other.outlineInverseTransparentAccentActive - outlineInverseTransparentAccent = other.outlineInverseTransparentAccent - outlineInversePromoHover = other.outlineInversePromoHover - outlineInversePromoActive = other.outlineInversePromoActive - outlineInversePromo = other.outlineInversePromo - outlineInversePromoMinorHover = other.outlineInversePromoMinorHover - outlineInversePromoMinorActive = other.outlineInversePromoMinorActive - outlineInversePromoMinor = other.outlineInversePromoMinor - outlineInversePositiveHover = other.outlineInversePositiveHover - outlineInversePositiveActive = other.outlineInversePositiveActive - outlineInverseWarningHover = other.outlineInverseWarningHover - outlineInverseWarningActive = other.outlineInverseWarningActive - outlineInverseNegativeHover = other.outlineInverseNegativeHover - outlineInverseNegativeActive = other.outlineInverseNegativeActive - outlineInverseInfoHover = other.outlineInverseInfoHover - outlineInverseInfoActive = other.outlineInverseInfoActive - outlineInversePositiveMinorHover = other.outlineInversePositiveMinorHover - outlineInversePositiveMinorActive = other.outlineInversePositiveMinorActive - outlineInverseWarningMinorHover = other.outlineInverseWarningMinorHover - outlineInverseWarningMinorActive = other.outlineInverseWarningMinorActive - outlineInverseNegativeMinorHover = other.outlineInverseNegativeMinorHover - outlineInverseNegativeMinorActive = other.outlineInverseNegativeMinorActive - outlineInverseInfoMinorHover = other.outlineInverseInfoMinorHover - outlineInverseInfoMinorActive = other.outlineInverseInfoMinorActive - outlineInverseTransparentPositiveHover = other.outlineInverseTransparentPositiveHover - outlineInverseTransparentPositiveActive = other.outlineInverseTransparentPositiveActive - outlineInverseTransparentWarningHover = other.outlineInverseTransparentWarningHover - outlineInverseTransparentWarningActive = other.outlineInverseTransparentWarningActive - outlineInverseTransparentNegativeHover = other.outlineInverseTransparentNegativeHover - outlineInverseTransparentNegativeActive = other.outlineInverseTransparentNegativeActive - outlineInverseTransparentInfoHover = other.outlineInverseTransparentInfoHover - outlineInverseTransparentInfoActive = other.outlineInverseTransparentInfoActive - outlineInverseAccentMainHover = other.outlineInverseAccentMainHover - outlineInverseAccentMainActive = other.outlineInverseAccentMainActive - outlineInverseAccentAthenaHover = other.outlineInverseAccentAthenaHover - outlineInverseAccentAthenaActive = other.outlineInverseAccentAthenaActive - outlineInverseAccentJoyHover = other.outlineInverseAccentJoyHover - outlineInverseAccentJoyActive = other.outlineInverseAccentJoyActive - outlineInverseAccentB2EHover = other.outlineInverseAccentB2EHover - outlineInverseAccentB2EActive = other.outlineInverseAccentB2EActive - outlineInverseAccentBrandHover = other.outlineInverseAccentBrandHover - outlineInverseAccentBrandActive = other.outlineInverseAccentBrandActive - outlineInverseAccentMainMinorHover = other.outlineInverseAccentMainMinorHover - outlineInverseAccentMainMinorActive = other.outlineInverseAccentMainMinorActive - outlineInverseAccentAthenaMinorHover = other.outlineInverseAccentAthenaMinorHover - outlineInverseAccentAthenaMinorActive = other.outlineInverseAccentAthenaMinorActive - outlineInverseAccentJoyMinorHover = other.outlineInverseAccentJoyMinorHover - outlineInverseAccentJoyMinorActive = other.outlineInverseAccentJoyMinorActive - outlineInverseAccentB2EMinorHover = other.outlineInverseAccentB2EMinorHover - outlineInverseAccentB2EMinorActive = other.outlineInverseAccentB2EMinorActive - outlineInverseAccentBrandMinorHover = other.outlineInverseAccentBrandMinorHover - outlineInverseAccentBrandMinorActive = other.outlineInverseAccentBrandMinorActive - outlineInverseTransparentAccentMainHover = other.outlineInverseTransparentAccentMainHover - outlineInverseTransparentAccentMainActive = other.outlineInverseTransparentAccentMainActive - outlineInverseTransparentAccentAthenaHover = other.outlineInverseTransparentAccentAthenaHover - outlineInverseTransparentAccentAthenaActive = other.outlineInverseTransparentAccentAthenaActive - outlineInverseTransparentAccentJoyHover = other.outlineInverseTransparentAccentJoyHover - outlineInverseTransparentAccentJoyActive = other.outlineInverseTransparentAccentJoyActive - outlineInverseTransparentAccentB2EHover = other.outlineInverseTransparentAccentB2EHover - outlineInverseTransparentAccentB2EActive = other.outlineInverseTransparentAccentB2EActive - outlineInverseTransparentAccentBrandHover = other.outlineInverseTransparentAccentBrandHover - outlineInverseTransparentAccentBrandActive = other.outlineInverseTransparentAccentBrandActive - outlineInverseSolidPrimary = other.outlineInverseSolidPrimary - outlineInverseSolidSecondary = other.outlineInverseSolidSecondary - outlineInverseSolidTertiary = other.outlineInverseSolidTertiary - outlineInverseTransparentPrimary = other.outlineInverseTransparentPrimary - outlineInverseTransparentSecondary = other.outlineInverseTransparentSecondary - outlineInverseTransparentTertiary = other.outlineInverseTransparentTertiary - outlineInversePositive = other.outlineInversePositive - outlineInverseWarning = other.outlineInverseWarning - outlineInverseNegative = other.outlineInverseNegative - outlineInverseInfo = other.outlineInverseInfo - outlineInversePositiveMinor = other.outlineInversePositiveMinor - outlineInverseWarningMinor = other.outlineInverseWarningMinor - outlineInverseNegativeMinor = other.outlineInverseNegativeMinor - outlineInverseInfoMinor = other.outlineInverseInfoMinor - outlineInverseTransparentPositive = other.outlineInverseTransparentPositive - outlineInverseTransparentWarning = other.outlineInverseTransparentWarning - outlineInverseTransparentNegative = other.outlineInverseTransparentNegative - outlineInverseTransparentInfo = other.outlineInverseTransparentInfo - outlineInverseAccentMain = other.outlineInverseAccentMain - outlineInverseAccentAthena = other.outlineInverseAccentAthena - outlineInverseAccentJoy = other.outlineInverseAccentJoy - outlineInverseAccentB2E = other.outlineInverseAccentB2E - outlineInverseAccentBrand = other.outlineInverseAccentBrand - outlineInverseAccentMainMinor = other.outlineInverseAccentMainMinor - outlineInverseAccentAthenaMinor = other.outlineInverseAccentAthenaMinor - outlineInverseAccentJoyMinor = other.outlineInverseAccentJoyMinor - outlineInverseAccentB2EMinor = other.outlineInverseAccentB2EMinor - outlineInverseAccentBrandMinor = other.outlineInverseAccentBrandMinor - outlineInverseTransparentAccentMain = other.outlineInverseTransparentAccentMain - outlineInverseTransparentAccentAthena = other.outlineInverseTransparentAccentAthena - outlineInverseTransparentAccentJoy = other.outlineInverseTransparentAccentJoy - outlineInverseTransparentAccentB2E = other.outlineInverseTransparentAccentB2E - outlineInverseTransparentAccentBrand = other.outlineInverseTransparentAccentBrand - dataDefaultYellow = other.dataDefaultYellow - dataDefaultYellowHover = other.dataDefaultYellowHover - dataDefaultYellowActive = other.dataDefaultYellowActive - dataDefaultYellowMinor = other.dataDefaultYellowMinor - dataDefaultYellowMinorHover = other.dataDefaultYellowMinorHover - dataDefaultYellowMinorActive = other.dataDefaultYellowMinorActive - dataDefaultYellowTransparent = other.dataDefaultYellowTransparent - dataDefaultYellowTransparentHover = other.dataDefaultYellowTransparentHover - dataDefaultYellowTransparentActive = other.dataDefaultYellowTransparentActive - dataOnDarkYellow = other.dataOnDarkYellow - dataOnDarkYellowHover = other.dataOnDarkYellowHover - dataOnDarkYellowActive = other.dataOnDarkYellowActive - dataOnDarkYellowMinor = other.dataOnDarkYellowMinor - dataOnDarkYellowMinorHover = other.dataOnDarkYellowMinorHover - dataOnDarkYellowMinorActive = other.dataOnDarkYellowMinorActive - dataOnDarkYellowTransparent = other.dataOnDarkYellowTransparent - dataOnDarkYellowTransparentHover = other.dataOnDarkYellowTransparentHover - dataOnDarkYellowTransparentActive = other.dataOnDarkYellowTransparentActive - dataOnLightYellow = other.dataOnLightYellow - dataOnLightYellowHover = other.dataOnLightYellowHover - dataOnLightYellowActive = other.dataOnLightYellowActive - dataOnLightYellowMinor = other.dataOnLightYellowMinor - dataOnLightYellowMinorHover = other.dataOnLightYellowMinorHover - dataOnLightYellowMinorActive = other.dataOnLightYellowMinorActive - dataOnLightYellowTransparent = other.dataOnLightYellowTransparent - dataOnLightYellowTransparentHover = other.dataOnLightYellowTransparentHover - dataOnLightYellowTransparentActive = other.dataOnLightYellowTransparentActive - dataInverseYellow = other.dataInverseYellow - dataInverseYellowHover = other.dataInverseYellowHover - dataInverseYellowActive = other.dataInverseYellowActive - dataInverseYellowMinor = other.dataInverseYellowMinor - dataInverseYellowMinorHover = other.dataInverseYellowMinorHover - dataInverseYellowMinorActive = other.dataInverseYellowMinorActive - dataInverseYellowTransparent = other.dataInverseYellowTransparent - dataInverseYellowTransparentHover = other.dataInverseYellowTransparentHover - dataInverseYellowTransparentActive = other.dataInverseYellowTransparentActive - surfaceInverseAccentJoy = other.surfaceInverseAccentJoy - surfaceInverseAccentJoyHover = other.surfaceInverseAccentJoyHover - surfaceInverseAccentJoyActive = other.surfaceInverseAccentJoyActive -} - -private fun MutableMap.add( - attribute: String, - defaultTokenValue: Color, - overwriteMap: Map, -) { - this[attribute] = overwriteMap[attribute] ?: defaultTokenValue -} - -/** - * Цвета [StylesSaluteColors] для светлой темы - */ -@Suppress("LongMethod") -public fun lightStylesSaluteColors(overrideColors: ColorOverrideScope.() -> Unit = {}): StylesSaluteColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overwrite = colorOverrideScope.overrideMap - val initial = mutableMapOf() - initial.add("textDefaultPrimaryHover", LightColorTokens.TextDefaultPrimaryHover, overwrite) - initial.add("textDefaultPrimaryActive", LightColorTokens.TextDefaultPrimaryActive, overwrite) - initial.add("textDefaultPrimary", LightColorTokens.TextDefaultPrimary, overwrite) - initial.add( - "textDefaultPrimaryBrightness", - LightColorTokens.TextDefaultPrimaryBrightness, - overwrite, - ) - initial.add("textDefaultSecondaryHover", LightColorTokens.TextDefaultSecondaryHover, overwrite) - initial.add( - "textDefaultSecondaryActive", - LightColorTokens.TextDefaultSecondaryActive, - overwrite, - ) - initial.add("textDefaultSecondary", LightColorTokens.TextDefaultSecondary, overwrite) - initial.add("textDefaultTertiaryHover", LightColorTokens.TextDefaultTertiaryHover, overwrite) - initial.add("textDefaultTertiaryActive", LightColorTokens.TextDefaultTertiaryActive, overwrite) - initial.add("textDefaultTertiary", LightColorTokens.TextDefaultTertiary, overwrite) - initial.add("textDefaultParagraphHover", LightColorTokens.TextDefaultParagraphHover, overwrite) - initial.add( - "textDefaultParagraphActive", - LightColorTokens.TextDefaultParagraphActive, - overwrite, - ) - initial.add("textDefaultParagraph", LightColorTokens.TextDefaultParagraph, overwrite) - initial.add("textDefaultAccentHover", LightColorTokens.TextDefaultAccentHover, overwrite) - initial.add("textDefaultAccentActive", LightColorTokens.TextDefaultAccentActive, overwrite) - initial.add("textDefaultAccent", LightColorTokens.TextDefaultAccent, overwrite) - initial.add( - "textDefaultAccentMinorHover", - LightColorTokens.TextDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMinorActive", - LightColorTokens.TextDefaultAccentMinorActive, - overwrite, - ) - initial.add("textDefaultAccentMinor", LightColorTokens.TextDefaultAccentMinor, overwrite) - initial.add("textDefaultPromoHover", LightColorTokens.TextDefaultPromoHover, overwrite) - initial.add("textDefaultPromoActive", LightColorTokens.TextDefaultPromoActive, overwrite) - initial.add("textDefaultPromo", LightColorTokens.TextDefaultPromo, overwrite) - initial.add( - "textDefaultPromoMinorHover", - LightColorTokens.TextDefaultPromoMinorHover, - overwrite, - ) - initial.add( - "textDefaultPromoMinorActive", - LightColorTokens.TextDefaultPromoMinorActive, - overwrite, - ) - initial.add("textDefaultPromoMinor", LightColorTokens.TextDefaultPromoMinor, overwrite) - initial.add("textDefaultPositiveHover", LightColorTokens.TextDefaultPositiveHover, overwrite) - initial.add("textDefaultPositiveActive", LightColorTokens.TextDefaultPositiveActive, overwrite) - initial.add("textDefaultPositive", LightColorTokens.TextDefaultPositive, overwrite) - initial.add("textDefaultWarningHover", LightColorTokens.TextDefaultWarningHover, overwrite) - initial.add("textDefaultWarningActive", LightColorTokens.TextDefaultWarningActive, overwrite) - initial.add("textDefaultWarning", LightColorTokens.TextDefaultWarning, overwrite) - initial.add("textDefaultNegativeHover", LightColorTokens.TextDefaultNegativeHover, overwrite) - initial.add("textDefaultNegativeActive", LightColorTokens.TextDefaultNegativeActive, overwrite) - initial.add("textDefaultNegative", LightColorTokens.TextDefaultNegative, overwrite) - initial.add("textDefaultInfoHover", LightColorTokens.TextDefaultInfoHover, overwrite) - initial.add("textDefaultInfoActive", LightColorTokens.TextDefaultInfoActive, overwrite) - initial.add( - "textDefaultPositiveMinorHover", - LightColorTokens.TextDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "textDefaultPositiveMinorActive", - LightColorTokens.TextDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "textDefaultWarningMinorHover", - LightColorTokens.TextDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "textDefaultWarningMinorActive", - LightColorTokens.TextDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorHover", - LightColorTokens.TextDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorActive", - LightColorTokens.TextDefaultNegativeMinorActive, - overwrite, - ) - initial.add("textDefaultInfoMinorHover", LightColorTokens.TextDefaultInfoMinorHover, overwrite) - initial.add( - "textDefaultInfoMinorActive", - LightColorTokens.TextDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaHover", - LightColorTokens.TextDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaActive", - LightColorTokens.TextDefaultAccentAthenaActive, - overwrite, - ) - initial.add("textDefaultAccentAthena", LightColorTokens.TextDefaultAccentAthena, overwrite) - initial.add("textDefaultAccentJoyHover", LightColorTokens.TextDefaultAccentJoyHover, overwrite) - initial.add( - "textDefaultAccentJoyActive", - LightColorTokens.TextDefaultAccentJoyActive, - overwrite, - ) - initial.add("textDefaultAccentJoy", LightColorTokens.TextDefaultAccentJoy, overwrite) - initial.add("textDefaultAccentB2EHover", LightColorTokens.TextDefaultAccentB2EHover, overwrite) - initial.add( - "textDefaultAccentB2EActive", - LightColorTokens.TextDefaultAccentB2EActive, - overwrite, - ) - initial.add("textDefaultAccentB2E", LightColorTokens.TextDefaultAccentB2E, overwrite) - initial.add( - "textDefaultAccentBrandHover", - LightColorTokens.TextDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "textDefaultAccentBrandActive", - LightColorTokens.TextDefaultAccentBrandActive, - overwrite, - ) - initial.add("textDefaultAccentBrand", LightColorTokens.TextDefaultAccentBrand, overwrite) - initial.add( - "textDefaultAccentMainHover", - LightColorTokens.TextDefaultAccentMainHover, - overwrite, - ) - initial.add( - "textDefaultAccentMainActive", - LightColorTokens.TextDefaultAccentMainActive, - overwrite, - ) - initial.add("textDefaultAccentMain", LightColorTokens.TextDefaultAccentMain, overwrite) - initial.add( - "textDefaultAccentMainMinor", - LightColorTokens.TextDefaultAccentMainMinor, - overwrite, - ) - initial.add( - "textDefaultAccentMainMinorHover", - LightColorTokens.TextDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMainMinorActive", - LightColorTokens.TextDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinor", - LightColorTokens.TextDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinorHover", - LightColorTokens.TextDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinorActive", - LightColorTokens.TextDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add("textDefaultAccentJoyMinor", LightColorTokens.TextDefaultAccentJoyMinor, overwrite) - initial.add("textDefaultAccentB2EMinor", LightColorTokens.TextDefaultAccentB2EMinor, overwrite) - initial.add( - "textDefaultAccentBrandMinor", - LightColorTokens.TextDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "textDefaultAccentBrandMinorHover", - LightColorTokens.TextDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentBrandMinorActive", - LightColorTokens.TextDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add("textDefaultInfo", LightColorTokens.TextDefaultInfo, overwrite) - initial.add("textDefaultPositiveMinor", LightColorTokens.TextDefaultPositiveMinor, overwrite) - initial.add("textDefaultWarningMinor", LightColorTokens.TextDefaultWarningMinor, overwrite) - initial.add("textDefaultNegativeMinor", LightColorTokens.TextDefaultNegativeMinor, overwrite) - initial.add("textDefaultInfoMinor", LightColorTokens.TextDefaultInfoMinor, overwrite) - initial.add( - "textDefaultAccentJoyMinorHover", - LightColorTokens.TextDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentJoyMinorActive", - LightColorTokens.TextDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "textDefaultAccentB2EMinorHover", - LightColorTokens.TextDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentB2EMinorActive", - LightColorTokens.TextDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add("textOnDarkPrimaryHover", LightColorTokens.TextOnDarkPrimaryHover, overwrite) - initial.add("textOnDarkPrimaryActive", LightColorTokens.TextOnDarkPrimaryActive, overwrite) - initial.add("textOnDarkPrimary", LightColorTokens.TextOnDarkPrimary, overwrite) - initial.add( - "textOnDarkPrimaryBrightness", - LightColorTokens.TextOnDarkPrimaryBrightness, - overwrite, - ) - initial.add("textOnDarkSecondaryHover", LightColorTokens.TextOnDarkSecondaryHover, overwrite) - initial.add("textOnDarkSecondaryActive", LightColorTokens.TextOnDarkSecondaryActive, overwrite) - initial.add("textOnDarkSecondary", LightColorTokens.TextOnDarkSecondary, overwrite) - initial.add("textOnDarkTertiaryHover", LightColorTokens.TextOnDarkTertiaryHover, overwrite) - initial.add("textOnDarkTertiaryActive", LightColorTokens.TextOnDarkTertiaryActive, overwrite) - initial.add("textOnDarkTertiary", LightColorTokens.TextOnDarkTertiary, overwrite) - initial.add("textOnDarkParagraphHover", LightColorTokens.TextOnDarkParagraphHover, overwrite) - initial.add("textOnDarkParagraphActive", LightColorTokens.TextOnDarkParagraphActive, overwrite) - initial.add("textOnDarkParagraph", LightColorTokens.TextOnDarkParagraph, overwrite) - initial.add("textOnDarkAccentHover", LightColorTokens.TextOnDarkAccentHover, overwrite) - initial.add("textOnDarkAccentActive", LightColorTokens.TextOnDarkAccentActive, overwrite) - initial.add("textOnDarkAccent", LightColorTokens.TextOnDarkAccent, overwrite) - initial.add( - "textOnDarkAccentMinorHover", - LightColorTokens.TextOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentMinorActive", - LightColorTokens.TextOnDarkAccentMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentMinor", LightColorTokens.TextOnDarkAccentMinor, overwrite) - initial.add("textOnDarkPromoHover", LightColorTokens.TextOnDarkPromoHover, overwrite) - initial.add("textOnDarkPromoActive", LightColorTokens.TextOnDarkPromoActive, overwrite) - initial.add("textOnDarkPromo", LightColorTokens.TextOnDarkPromo, overwrite) - initial.add("textOnDarkPromoMinorHover", LightColorTokens.TextOnDarkPromoMinorHover, overwrite) - initial.add( - "textOnDarkPromoMinorActive", - LightColorTokens.TextOnDarkPromoMinorActive, - overwrite, - ) - initial.add("textOnDarkPromoMinor", LightColorTokens.TextOnDarkPromoMinor, overwrite) - initial.add("textOnDarkPositiveHover", LightColorTokens.TextOnDarkPositiveHover, overwrite) - initial.add("textOnDarkPositiveActive", LightColorTokens.TextOnDarkPositiveActive, overwrite) - initial.add("textOnDarkPositive", LightColorTokens.TextOnDarkPositive, overwrite) - initial.add("textOnDarkWarningHover", LightColorTokens.TextOnDarkWarningHover, overwrite) - initial.add("textOnDarkWarningActive", LightColorTokens.TextOnDarkWarningActive, overwrite) - initial.add("textOnDarkWarning", LightColorTokens.TextOnDarkWarning, overwrite) - initial.add("textOnDarkNegativeHover", LightColorTokens.TextOnDarkNegativeHover, overwrite) - initial.add("textOnDarkNegativeActive", LightColorTokens.TextOnDarkNegativeActive, overwrite) - initial.add("textOnDarkNegative", LightColorTokens.TextOnDarkNegative, overwrite) - initial.add("textOnDarkInfoHover", LightColorTokens.TextOnDarkInfoHover, overwrite) - initial.add("textOnDarkInfoActive", LightColorTokens.TextOnDarkInfoActive, overwrite) - initial.add( - "textOnDarkPositiveMinorHover", - LightColorTokens.TextOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnDarkPositiveMinorActive", - LightColorTokens.TextOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorHover", - LightColorTokens.TextOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorActive", - LightColorTokens.TextOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorHover", - LightColorTokens.TextOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorActive", - LightColorTokens.TextOnDarkNegativeMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoMinorHover", LightColorTokens.TextOnDarkInfoMinorHover, overwrite) - initial.add("textOnDarkInfoMinorActive", LightColorTokens.TextOnDarkInfoMinorActive, overwrite) - initial.add( - "textOnDarkAccentAthenaHover", - LightColorTokens.TextOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaActive", - LightColorTokens.TextOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("textOnDarkAccentAthena", LightColorTokens.TextOnDarkAccentAthena, overwrite) - initial.add("textOnDarkAccentJoyHover", LightColorTokens.TextOnDarkAccentJoyHover, overwrite) - initial.add("textOnDarkAccentJoyActive", LightColorTokens.TextOnDarkAccentJoyActive, overwrite) - initial.add("textOnDarkAccentJoy", LightColorTokens.TextOnDarkAccentJoy, overwrite) - initial.add("textOnDarkAccentB2EHover", LightColorTokens.TextOnDarkAccentB2EHover, overwrite) - initial.add("textOnDarkAccentB2EActive", LightColorTokens.TextOnDarkAccentB2EActive, overwrite) - initial.add("textOnDarkAccentB2E", LightColorTokens.TextOnDarkAccentB2E, overwrite) - initial.add( - "textOnDarkAccentBrandHover", - LightColorTokens.TextOnDarkAccentBrandHover, - overwrite, - ) - initial.add( - "textOnDarkAccentBrandActive", - LightColorTokens.TextOnDarkAccentBrandActive, - overwrite, - ) - initial.add("textOnDarkAccentBrand", LightColorTokens.TextOnDarkAccentBrand, overwrite) - initial.add("textOnDarkAccentMainHover", LightColorTokens.TextOnDarkAccentMainHover, overwrite) - initial.add( - "textOnDarkAccentMainActive", - LightColorTokens.TextOnDarkAccentMainActive, - overwrite, - ) - initial.add("textOnDarkAccentMain", LightColorTokens.TextOnDarkAccentMain, overwrite) - initial.add("textOnDarkAccentMainMinor", LightColorTokens.TextOnDarkAccentMainMinor, overwrite) - initial.add( - "textOnDarkAccentMainMinorHover", - LightColorTokens.TextOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentMainMinorActive", - LightColorTokens.TextOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinor", - LightColorTokens.TextOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinorHover", - LightColorTokens.TextOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinorActive", - LightColorTokens.TextOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentB2EMinor", LightColorTokens.TextOnDarkAccentB2EMinor, overwrite) - initial.add( - "textOnDarkAccentB2EMinorHover", - LightColorTokens.TextOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentB2EMinorActive", - LightColorTokens.TextOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add( - "textOnDarkAccentBrandMinor", - LightColorTokens.TextOnDarkAccentBrandMinor, - overwrite, - ) - initial.add( - "textOnDarkAccentBrandMinorHover", - LightColorTokens.TextOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentBrandMinorActive", - LightColorTokens.TextOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentJoyMinor", LightColorTokens.TextOnDarkAccentJoyMinor, overwrite) - initial.add( - "textOnDarkAccentJoyMinorHover", - LightColorTokens.TextOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentJoyMinorActive", - LightColorTokens.TextOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add("textOnDarkInfo", LightColorTokens.TextOnDarkInfo, overwrite) - initial.add("textOnDarkPositiveMinor", LightColorTokens.TextOnDarkPositiveMinor, overwrite) - initial.add("textOnDarkWarningMinor", LightColorTokens.TextOnDarkWarningMinor, overwrite) - initial.add("textOnDarkNegativeMinor", LightColorTokens.TextOnDarkNegativeMinor, overwrite) - initial.add("textOnDarkInfoMinor", LightColorTokens.TextOnDarkInfoMinor, overwrite) - initial.add("textOnLightPrimaryHover", LightColorTokens.TextOnLightPrimaryHover, overwrite) - initial.add("textOnLightPrimaryActive", LightColorTokens.TextOnLightPrimaryActive, overwrite) - initial.add("textOnLightPrimary", LightColorTokens.TextOnLightPrimary, overwrite) - initial.add( - "textOnLightPrimaryBrightness", - LightColorTokens.TextOnLightPrimaryBrightness, - overwrite, - ) - initial.add("textOnLightSecondaryHover", LightColorTokens.TextOnLightSecondaryHover, overwrite) - initial.add( - "textOnLightSecondaryActive", - LightColorTokens.TextOnLightSecondaryActive, - overwrite, - ) - initial.add("textOnLightSecondary", LightColorTokens.TextOnLightSecondary, overwrite) - initial.add("textOnLightTertiaryHover", LightColorTokens.TextOnLightTertiaryHover, overwrite) - initial.add("textOnLightTertiaryActive", LightColorTokens.TextOnLightTertiaryActive, overwrite) - initial.add("textOnLightTertiary", LightColorTokens.TextOnLightTertiary, overwrite) - initial.add("textOnLightParagraphHover", LightColorTokens.TextOnLightParagraphHover, overwrite) - initial.add( - "textOnLightParagraphActive", - LightColorTokens.TextOnLightParagraphActive, - overwrite, - ) - initial.add("textOnLightParagraph", LightColorTokens.TextOnLightParagraph, overwrite) - initial.add("textOnLightAccentHover", LightColorTokens.TextOnLightAccentHover, overwrite) - initial.add("textOnLightAccentActive", LightColorTokens.TextOnLightAccentActive, overwrite) - initial.add("textOnLightAccent", LightColorTokens.TextOnLightAccent, overwrite) - initial.add( - "textOnLightAccentMinorHover", - LightColorTokens.TextOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMinorActive", - LightColorTokens.TextOnLightAccentMinorActive, - overwrite, - ) - initial.add("textOnLightAccentMinor", LightColorTokens.TextOnLightAccentMinor, overwrite) - initial.add("textOnLightPromoHover", LightColorTokens.TextOnLightPromoHover, overwrite) - initial.add("textOnLightPromoActive", LightColorTokens.TextOnLightPromoActive, overwrite) - initial.add("textOnLightPromo", LightColorTokens.TextOnLightPromo, overwrite) - initial.add( - "textOnLightPromoMinorHover", - LightColorTokens.TextOnLightPromoMinorHover, - overwrite, - ) - initial.add( - "textOnLightPromoMinorActive", - LightColorTokens.TextOnLightPromoMinorActive, - overwrite, - ) - initial.add("textOnLightPromoMinor", LightColorTokens.TextOnLightPromoMinor, overwrite) - initial.add("textOnLightPositiveHover", LightColorTokens.TextOnLightPositiveHover, overwrite) - initial.add("textOnLightPositiveActive", LightColorTokens.TextOnLightPositiveActive, overwrite) - initial.add("textOnLightPositive", LightColorTokens.TextOnLightPositive, overwrite) - initial.add("textOnLightWarningHover", LightColorTokens.TextOnLightWarningHover, overwrite) - initial.add("textOnLightWarningActive", LightColorTokens.TextOnLightWarningActive, overwrite) - initial.add("textOnLightWarning", LightColorTokens.TextOnLightWarning, overwrite) - initial.add("textOnLightNegativeHover", LightColorTokens.TextOnLightNegativeHover, overwrite) - initial.add("textOnLightNegativeActive", LightColorTokens.TextOnLightNegativeActive, overwrite) - initial.add("textOnLightNegative", LightColorTokens.TextOnLightNegative, overwrite) - initial.add("textOnLightInfoHover", LightColorTokens.TextOnLightInfoHover, overwrite) - initial.add("textOnLightInfoActive", LightColorTokens.TextOnLightInfoActive, overwrite) - initial.add( - "textOnLightPositiveMinorHover", - LightColorTokens.TextOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnLightPositiveMinorActive", - LightColorTokens.TextOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "textOnLightWarningMinorHover", - LightColorTokens.TextOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "textOnLightWarningMinorActive", - LightColorTokens.TextOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorHover", - LightColorTokens.TextOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorActive", - LightColorTokens.TextOnLightNegativeMinorActive, - overwrite, - ) - initial.add("textOnLightInfoMinorHover", LightColorTokens.TextOnLightInfoMinorHover, overwrite) - initial.add( - "textOnLightInfoMinorActive", - LightColorTokens.TextOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaHover", - LightColorTokens.TextOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaActive", - LightColorTokens.TextOnLightAccentAthenaActive, - overwrite, - ) - initial.add("textOnLightAccentAthena", LightColorTokens.TextOnLightAccentAthena, overwrite) - initial.add("textOnLightAccentJoyHover", LightColorTokens.TextOnLightAccentJoyHover, overwrite) - initial.add( - "textOnLightAccentJoyActive", - LightColorTokens.TextOnLightAccentJoyActive, - overwrite, - ) - initial.add("textOnLightAccentJoy", LightColorTokens.TextOnLightAccentJoy, overwrite) - initial.add("textOnLightAccentB2EHover", LightColorTokens.TextOnLightAccentB2EHover, overwrite) - initial.add( - "textOnLightAccentB2EActive", - LightColorTokens.TextOnLightAccentB2EActive, - overwrite, - ) - initial.add("textOnLightAccentB2E", LightColorTokens.TextOnLightAccentB2E, overwrite) - initial.add( - "textOnLightAccentBrandHover", - LightColorTokens.TextOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "textOnLightAccentBrandActive", - LightColorTokens.TextOnLightAccentBrandActive, - overwrite, - ) - initial.add("textOnLightAccentBrand", LightColorTokens.TextOnLightAccentBrand, overwrite) - initial.add( - "textOnLightAccentMainHover", - LightColorTokens.TextOnLightAccentMainHover, - overwrite, - ) - initial.add( - "textOnLightAccentMainActive", - LightColorTokens.TextOnLightAccentMainActive, - overwrite, - ) - initial.add("textOnLightAccentMain", LightColorTokens.TextOnLightAccentMain, overwrite) - initial.add( - "textOnLightAccentMainMinor", - LightColorTokens.TextOnLightAccentMainMinor, - overwrite, - ) - initial.add( - "textOnLightAccentMainMinorHover", - LightColorTokens.TextOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMainMinorActive", - LightColorTokens.TextOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinor", - LightColorTokens.TextOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinorHover", - LightColorTokens.TextOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinorActive", - LightColorTokens.TextOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add("textOnLightAccentJoyMinor", LightColorTokens.TextOnLightAccentJoyMinor, overwrite) - initial.add( - "textOnLightAccentJoyMinorHover", - LightColorTokens.TextOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentJoyMinorActive", - LightColorTokens.TextOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add("textOnLightAccentB2EMinor", LightColorTokens.TextOnLightAccentB2EMinor, overwrite) - initial.add( - "textOnLightAccentB2EMinorHover", - LightColorTokens.TextOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentB2EMinorActive", - LightColorTokens.TextOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinor", - LightColorTokens.TextOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinorHover", - LightColorTokens.TextOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinorActive", - LightColorTokens.TextOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add("textOnLightInfo", LightColorTokens.TextOnLightInfo, overwrite) - initial.add("textOnLightPositiveMinor", LightColorTokens.TextOnLightPositiveMinor, overwrite) - initial.add("textOnLightWarningMinor", LightColorTokens.TextOnLightWarningMinor, overwrite) - initial.add("textOnLightNegativeMinor", LightColorTokens.TextOnLightNegativeMinor, overwrite) - initial.add("textOnLightInfoMinor", LightColorTokens.TextOnLightInfoMinor, overwrite) - initial.add("textInversePrimaryHover", LightColorTokens.TextInversePrimaryHover, overwrite) - initial.add("textInversePrimaryActive", LightColorTokens.TextInversePrimaryActive, overwrite) - initial.add("textInversePrimary", LightColorTokens.TextInversePrimary, overwrite) - initial.add( - "textInversePrimaryBrightness", - LightColorTokens.TextInversePrimaryBrightness, - overwrite, - ) - initial.add("textInverseSecondaryHover", LightColorTokens.TextInverseSecondaryHover, overwrite) - initial.add( - "textInverseSecondaryActive", - LightColorTokens.TextInverseSecondaryActive, - overwrite, - ) - initial.add("textInverseSecondary", LightColorTokens.TextInverseSecondary, overwrite) - initial.add("textInverseTertiaryHover", LightColorTokens.TextInverseTertiaryHover, overwrite) - initial.add("textInverseTertiaryActive", LightColorTokens.TextInverseTertiaryActive, overwrite) - initial.add("textInverseTertiary", LightColorTokens.TextInverseTertiary, overwrite) - initial.add("textInverseParagraphHover", LightColorTokens.TextInverseParagraphHover, overwrite) - initial.add( - "textInverseParagraphActive", - LightColorTokens.TextInverseParagraphActive, - overwrite, - ) - initial.add("textInverseParagraph", LightColorTokens.TextInverseParagraph, overwrite) - initial.add("textInverseAccentHover", LightColorTokens.TextInverseAccentHover, overwrite) - initial.add("textInverseAccentActive", LightColorTokens.TextInverseAccentActive, overwrite) - initial.add("textInverseAccent", LightColorTokens.TextInverseAccent, overwrite) - initial.add( - "textInverseAccentMinorHover", - LightColorTokens.TextInverseAccentMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMinorActive", - LightColorTokens.TextInverseAccentMinorActive, - overwrite, - ) - initial.add("textInverseAccentMinor", LightColorTokens.TextInverseAccentMinor, overwrite) - initial.add("textInversePromoHover", LightColorTokens.TextInversePromoHover, overwrite) - initial.add("textInversePromoActive", LightColorTokens.TextInversePromoActive, overwrite) - initial.add("textInversePromo", LightColorTokens.TextInversePromo, overwrite) - initial.add( - "textInversePromoMinorHover", - LightColorTokens.TextInversePromoMinorHover, - overwrite, - ) - initial.add( - "textInversePromoMinorActive", - LightColorTokens.TextInversePromoMinorActive, - overwrite, - ) - initial.add("textInversePromoMinor", LightColorTokens.TextInversePromoMinor, overwrite) - initial.add("textInversePositiveHover", LightColorTokens.TextInversePositiveHover, overwrite) - initial.add("textInversePositiveActive", LightColorTokens.TextInversePositiveActive, overwrite) - initial.add("textInverseWarningHover", LightColorTokens.TextInverseWarningHover, overwrite) - initial.add("textInverseWarningActive", LightColorTokens.TextInverseWarningActive, overwrite) - initial.add("textInverseNegativeHover", LightColorTokens.TextInverseNegativeHover, overwrite) - initial.add("textInverseNegativeActive", LightColorTokens.TextInverseNegativeActive, overwrite) - initial.add("textInverseInfoHover", LightColorTokens.TextInverseInfoHover, overwrite) - initial.add("textInverseInfoActive", LightColorTokens.TextInverseInfoActive, overwrite) - initial.add( - "textInversePositiveMinorHover", - LightColorTokens.TextInversePositiveMinorHover, - overwrite, - ) - initial.add( - "textInversePositiveMinorActive", - LightColorTokens.TextInversePositiveMinorActive, - overwrite, - ) - initial.add( - "textInverseWarningMinorHover", - LightColorTokens.TextInverseWarningMinorHover, - overwrite, - ) - initial.add( - "textInverseWarningMinorActive", - LightColorTokens.TextInverseWarningMinorActive, - overwrite, - ) - initial.add( - "textInverseNegativeMinorHover", - LightColorTokens.TextInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "textInverseNegativeMinorActive", - LightColorTokens.TextInverseNegativeMinorActive, - overwrite, - ) - initial.add("textInverseInfoMinorHover", LightColorTokens.TextInverseInfoMinorHover, overwrite) - initial.add( - "textInverseInfoMinorActive", - LightColorTokens.TextInverseInfoMinorActive, - overwrite, - ) - initial.add("textInverseAccentMain", LightColorTokens.TextInverseAccentMain, overwrite) - initial.add( - "textInverseAccentMainHover", - LightColorTokens.TextInverseAccentMainHover, - overwrite, - ) - initial.add( - "textInverseAccentMainActive", - LightColorTokens.TextInverseAccentMainActive, - overwrite, - ) - initial.add("textInverseAccentAthena", LightColorTokens.TextInverseAccentAthena, overwrite) - initial.add( - "textInverseAccentAthenaHover", - LightColorTokens.TextInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "textInverseAccentAthenaActive", - LightColorTokens.TextInverseAccentAthenaActive, - overwrite, - ) - initial.add("textInverseAccentJoy", LightColorTokens.TextInverseAccentJoy, overwrite) - initial.add("textInverseAccentJoyHover", LightColorTokens.TextInverseAccentJoyHover, overwrite) - initial.add( - "textInverseAccentJoyActive", - LightColorTokens.TextInverseAccentJoyActive, - overwrite, - ) - initial.add("textInverseAccentBrand", LightColorTokens.TextInverseAccentBrand, overwrite) - initial.add( - "textInverseAccentBrandHover", - LightColorTokens.TextInverseAccentBrandHover, - overwrite, - ) - initial.add( - "textInverseAccentBrandActive", - LightColorTokens.TextInverseAccentBrandActive, - overwrite, - ) - initial.add( - "textInverseAccentMainMinorHover", - LightColorTokens.TextInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMainMinorActive", - LightColorTokens.TextInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentAthenaMinorHover", - LightColorTokens.TextInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentAthenaMinorActive", - LightColorTokens.TextInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentJoyMinorHover", - LightColorTokens.TextInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentJoyMinorActive", - LightColorTokens.TextInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentB2EMinorHover", - LightColorTokens.TextInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentB2EMinorActive", - LightColorTokens.TextInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinorHover", - LightColorTokens.TextInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinorActive", - LightColorTokens.TextInverseAccentBrandMinorActive, - overwrite, - ) - initial.add("textInverseAccentB2E", LightColorTokens.TextInverseAccentB2E, overwrite) - initial.add("textInverseAccentB2EHover", LightColorTokens.TextInverseAccentB2EHover, overwrite) - initial.add( - "textInverseAccentB2EActive", - LightColorTokens.TextInverseAccentB2EActive, - overwrite, - ) - initial.add("textInversePositive", LightColorTokens.TextInversePositive, overwrite) - initial.add("textInverseWarning", LightColorTokens.TextInverseWarning, overwrite) - initial.add("textInverseNegative", LightColorTokens.TextInverseNegative, overwrite) - initial.add("textInverseInfo", LightColorTokens.TextInverseInfo, overwrite) - initial.add("textInversePositiveMinor", LightColorTokens.TextInversePositiveMinor, overwrite) - initial.add("textInverseWarningMinor", LightColorTokens.TextInverseWarningMinor, overwrite) - initial.add("textInverseNegativeMinor", LightColorTokens.TextInverseNegativeMinor, overwrite) - initial.add("textInverseInfoMinor", LightColorTokens.TextInverseInfoMinor, overwrite) - initial.add( - "textInverseAccentMainMinor", - LightColorTokens.TextInverseAccentMainMinor, - overwrite, - ) - initial.add("textInverseAccentJoyMinor", LightColorTokens.TextInverseAccentJoyMinor, overwrite) - initial.add("textInverseAccentB2EMinor", LightColorTokens.TextInverseAccentB2EMinor, overwrite) - initial.add( - "textInverseAccentAthenaMinor", - LightColorTokens.TextInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinor", - LightColorTokens.TextInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryHover", - LightColorTokens.SurfaceDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryActive", - LightColorTokens.SurfaceDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimary", - LightColorTokens.SurfaceDefaultSolidPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryBrightness", - LightColorTokens.SurfaceDefaultSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryHover", - LightColorTokens.SurfaceDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryActive", - LightColorTokens.SurfaceDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondary", - LightColorTokens.SurfaceDefaultSolidSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryHover", - LightColorTokens.SurfaceDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryActive", - LightColorTokens.SurfaceDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiary", - LightColorTokens.SurfaceDefaultSolidTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardHover", - LightColorTokens.SurfaceDefaultSolidCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardActive", - LightColorTokens.SurfaceDefaultSolidCardActive, - overwrite, - ) - initial.add("surfaceDefaultSolidCard", LightColorTokens.SurfaceDefaultSolidCard, overwrite) - initial.add( - "surfaceDefaultSolidCardBrightness", - LightColorTokens.SurfaceDefaultSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultHover", - LightColorTokens.SurfaceDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultActive", - LightColorTokens.SurfaceDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefault", - LightColorTokens.SurfaceDefaultSolidDefault, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryHover", - LightColorTokens.SurfaceDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryActive", - LightColorTokens.SurfaceDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimary", - LightColorTokens.SurfaceDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryHover", - LightColorTokens.SurfaceDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryActive", - LightColorTokens.SurfaceDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondary", - LightColorTokens.SurfaceDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryHover", - LightColorTokens.SurfaceDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryActive", - LightColorTokens.SurfaceDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiary", - LightColorTokens.SurfaceDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepHover", - LightColorTokens.SurfaceDefaultTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepActive", - LightColorTokens.SurfaceDefaultTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeep", - LightColorTokens.SurfaceDefaultTransparentDeep, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardHover", - LightColorTokens.SurfaceDefaultTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardActive", - LightColorTokens.SurfaceDefaultTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCard", - LightColorTokens.SurfaceDefaultTransparentCard, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardBrightness", - LightColorTokens.SurfaceDefaultTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceDefaultClearHover", LightColorTokens.SurfaceDefaultClearHover, overwrite) - initial.add("surfaceDefaultClearActive", LightColorTokens.SurfaceDefaultClearActive, overwrite) - initial.add("surfaceDefaultClear", LightColorTokens.SurfaceDefaultClear, overwrite) - initial.add("surfaceDefaultAccentHover", LightColorTokens.SurfaceDefaultAccentHover, overwrite) - initial.add( - "surfaceDefaultAccentActive", - LightColorTokens.SurfaceDefaultAccentActive, - overwrite, - ) - initial.add("surfaceDefaultAccent", LightColorTokens.SurfaceDefaultAccent, overwrite) - initial.add( - "surfaceDefaultAccentMinorHover", - LightColorTokens.SurfaceDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorActive", - LightColorTokens.SurfaceDefaultAccentMinorActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMinor", LightColorTokens.SurfaceDefaultAccentMinor, overwrite) - initial.add( - "surfaceDefaultTransparentAccentHover", - LightColorTokens.SurfaceDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentActive", - LightColorTokens.SurfaceDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccent", - LightColorTokens.SurfaceDefaultTransparentAccent, - overwrite, - ) - initial.add("surfaceDefaultPromoHover", LightColorTokens.SurfaceDefaultPromoHover, overwrite) - initial.add("surfaceDefaultPromoActive", LightColorTokens.SurfaceDefaultPromoActive, overwrite) - initial.add("surfaceDefaultPromo", LightColorTokens.SurfaceDefaultPromo, overwrite) - initial.add( - "surfaceDefaultPromoMinorHover", - LightColorTokens.SurfaceDefaultPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorActive", - LightColorTokens.SurfaceDefaultPromoMinorActive, - overwrite, - ) - initial.add("surfaceDefaultPromoMinor", LightColorTokens.SurfaceDefaultPromoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentPromoHover", - LightColorTokens.SurfaceDefaultTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoActive", - LightColorTokens.SurfaceDefaultTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromo", - LightColorTokens.SurfaceDefaultTransparentPromo, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveHover", - LightColorTokens.SurfaceDefaultPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveActive", - LightColorTokens.SurfaceDefaultPositiveActive, - overwrite, - ) - initial.add("surfaceDefaultPositive", LightColorTokens.SurfaceDefaultPositive, overwrite) - initial.add( - "surfaceDefaultWarningHover", - LightColorTokens.SurfaceDefaultWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningActive", - LightColorTokens.SurfaceDefaultWarningActive, - overwrite, - ) - initial.add("surfaceDefaultWarning", LightColorTokens.SurfaceDefaultWarning, overwrite) - initial.add( - "surfaceDefaultNegativeHover", - LightColorTokens.SurfaceDefaultNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeActive", - LightColorTokens.SurfaceDefaultNegativeActive, - overwrite, - ) - initial.add("surfaceDefaultNegative", LightColorTokens.SurfaceDefaultNegative, overwrite) - initial.add("surfaceDefaultInfoHover", LightColorTokens.SurfaceDefaultInfoHover, overwrite) - initial.add("surfaceDefaultInfoActive", LightColorTokens.SurfaceDefaultInfoActive, overwrite) - initial.add( - "surfaceDefaultPositiveMinorHover", - LightColorTokens.SurfaceDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinorActive", - LightColorTokens.SurfaceDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorHover", - LightColorTokens.SurfaceDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorActive", - LightColorTokens.SurfaceDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorHover", - LightColorTokens.SurfaceDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorActive", - LightColorTokens.SurfaceDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorHover", - LightColorTokens.SurfaceDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorActive", - LightColorTokens.SurfaceDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveHover", - LightColorTokens.SurfaceDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveActive", - LightColorTokens.SurfaceDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningHover", - LightColorTokens.SurfaceDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningActive", - LightColorTokens.SurfaceDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeHover", - LightColorTokens.SurfaceDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeActive", - LightColorTokens.SurfaceDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoHover", - LightColorTokens.SurfaceDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoActive", - LightColorTokens.SurfaceDefaultTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaHover", - LightColorTokens.SurfaceDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaActive", - LightColorTokens.SurfaceDefaultAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthena", - LightColorTokens.SurfaceDefaultAccentAthena, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyHover", - LightColorTokens.SurfaceDefaultAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyActive", - LightColorTokens.SurfaceDefaultAccentJoyActive, - overwrite, - ) - initial.add("surfaceDefaultAccentJoy", LightColorTokens.SurfaceDefaultAccentJoy, overwrite) - initial.add( - "surfaceDefaultAccentB2EHover", - LightColorTokens.SurfaceDefaultAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EActive", - LightColorTokens.SurfaceDefaultAccentB2EActive, - overwrite, - ) - initial.add("surfaceDefaultAccentB2E", LightColorTokens.SurfaceDefaultAccentB2E, overwrite) - initial.add( - "surfaceDefaultAccentBrandHover", - LightColorTokens.SurfaceDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandActive", - LightColorTokens.SurfaceDefaultAccentBrandActive, - overwrite, - ) - initial.add("surfaceDefaultAccentBrand", LightColorTokens.SurfaceDefaultAccentBrand, overwrite) - initial.add( - "surfaceDefaultSpeechBubbleSentHover", - LightColorTokens.SurfaceDefaultSpeechBubbleSentHover, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleSentActive", - LightColorTokens.SurfaceDefaultSpeechBubbleSentActive, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleSent", - LightColorTokens.SurfaceDefaultSpeechBubbleSent, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceivedHover", - LightColorTokens.SurfaceDefaultSpeechBubbleReceivedHover, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceivedActive", - LightColorTokens.SurfaceDefaultSpeechBubbleReceivedActive, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceived", - LightColorTokens.SurfaceDefaultSpeechBubbleReceived, - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonHover", - LightColorTokens.SurfaceDefaultSkeletonHover, - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonActive", - LightColorTokens.SurfaceDefaultSkeletonActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainHover", - LightColorTokens.SurfaceDefaultAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainActive", - LightColorTokens.SurfaceDefaultAccentMainActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMain", LightColorTokens.SurfaceDefaultAccentMain, overwrite) - initial.add( - "surfaceDefaultAccentMainMinorHover", - LightColorTokens.SurfaceDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainMinorActive", - LightColorTokens.SurfaceDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinorHover", - LightColorTokens.SurfaceDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinorActive", - LightColorTokens.SurfaceDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinorHover", - LightColorTokens.SurfaceDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinorActive", - LightColorTokens.SurfaceDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinorHover", - LightColorTokens.SurfaceDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinorActive", - LightColorTokens.SurfaceDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinorHover", - LightColorTokens.SurfaceDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinorActive", - LightColorTokens.SurfaceDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultSurfaceTransparentAccentMainHover", - LightColorTokens.SurfaceDefaultSurfaceTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultSurfaceTransparentAccentMainActive", - LightColorTokens.SurfaceDefaultSurfaceTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthenaHover", - LightColorTokens.SurfaceDefaultTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthenaActive", - LightColorTokens.SurfaceDefaultTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoyHover", - LightColorTokens.SurfaceDefaultTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoyActive", - LightColorTokens.SurfaceDefaultTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2EHover", - LightColorTokens.SurfaceDefaultTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2EActive", - LightColorTokens.SurfaceDefaultTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrandHover", - LightColorTokens.SurfaceDefaultTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrandActive", - LightColorTokens.SurfaceDefaultTransparentAccentBrandActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMainHover", - LightColorTokens.SurfaceDefaultTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMainActive", - LightColorTokens.SurfaceDefaultTransparentAccentMainActive, - overwrite, - ) - initial.add("surfaceDefaultInfo", LightColorTokens.SurfaceDefaultInfo, overwrite) - initial.add( - "surfaceDefaultPositiveMinor", - LightColorTokens.SurfaceDefaultPositiveMinor, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinor", - LightColorTokens.SurfaceDefaultWarningMinor, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinor", - LightColorTokens.SurfaceDefaultNegativeMinor, - overwrite, - ) - initial.add("surfaceDefaultInfoMinor", LightColorTokens.SurfaceDefaultInfoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentPositive", - LightColorTokens.SurfaceDefaultTransparentPositive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarning", - LightColorTokens.SurfaceDefaultTransparentWarning, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegative", - LightColorTokens.SurfaceDefaultTransparentNegative, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfo", - LightColorTokens.SurfaceDefaultTransparentInfo, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainMinor", - LightColorTokens.SurfaceDefaultAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinor", - LightColorTokens.SurfaceDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinor", - LightColorTokens.SurfaceDefaultAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinor", - LightColorTokens.SurfaceDefaultAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinor", - LightColorTokens.SurfaceDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthena", - LightColorTokens.SurfaceDefaultTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoy", - LightColorTokens.SurfaceDefaultTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2E", - LightColorTokens.SurfaceDefaultTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrand", - LightColorTokens.SurfaceDefaultTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMain", - LightColorTokens.SurfaceDefaultTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryHover", - LightColorTokens.SurfaceOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryActive", - LightColorTokens.SurfaceOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidPrimary", LightColorTokens.SurfaceOnDarkSolidPrimary, overwrite) - initial.add( - "surfaceOnDarkSolidPrimaryBrightness", - LightColorTokens.SurfaceOnDarkSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryHover", - LightColorTokens.SurfaceOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryActive", - LightColorTokens.SurfaceOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondary", - LightColorTokens.SurfaceOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryHover", - LightColorTokens.SurfaceOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryActive", - LightColorTokens.SurfaceOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiary", - LightColorTokens.SurfaceOnDarkSolidTertiary, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardHover", - LightColorTokens.SurfaceOnDarkSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardActive", - LightColorTokens.SurfaceOnDarkSolidCardActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidCard", LightColorTokens.SurfaceOnDarkSolidCard, overwrite) - initial.add( - "surfaceOnDarkSolidCardBrightness", - LightColorTokens.SurfaceOnDarkSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultHover", - LightColorTokens.SurfaceOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultActive", - LightColorTokens.SurfaceOnDarkSolidDefaultActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidDefault", LightColorTokens.SurfaceOnDarkSolidDefault, overwrite) - initial.add( - "surfaceOnDarkTransparentPrimaryHover", - LightColorTokens.SurfaceOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryActive", - LightColorTokens.SurfaceOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimary", - LightColorTokens.SurfaceOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryHover", - LightColorTokens.SurfaceOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryActive", - LightColorTokens.SurfaceOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondary", - LightColorTokens.SurfaceOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryHover", - LightColorTokens.SurfaceOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryActive", - LightColorTokens.SurfaceOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiary", - LightColorTokens.SurfaceOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepHover", - LightColorTokens.SurfaceOnDarkTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepActive", - LightColorTokens.SurfaceOnDarkTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeep", - LightColorTokens.SurfaceOnDarkTransparentDeep, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardHover", - LightColorTokens.SurfaceOnDarkTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardActive", - LightColorTokens.SurfaceOnDarkTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCard", - LightColorTokens.SurfaceOnDarkTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardBrightness", - LightColorTokens.SurfaceOnDarkTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnDarkClearHover", LightColorTokens.SurfaceOnDarkClearHover, overwrite) - initial.add("surfaceOnDarkClearActive", LightColorTokens.SurfaceOnDarkClearActive, overwrite) - initial.add("surfaceOnDarkClear", LightColorTokens.SurfaceOnDarkClear, overwrite) - initial.add("surfaceOnDarkAccentHover", LightColorTokens.SurfaceOnDarkAccentHover, overwrite) - initial.add("surfaceOnDarkAccentActive", LightColorTokens.SurfaceOnDarkAccentActive, overwrite) - initial.add("surfaceOnDarkAccent", LightColorTokens.SurfaceOnDarkAccent, overwrite) - initial.add( - "surfaceOnDarkAccentMinorHover", - LightColorTokens.SurfaceOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorActive", - LightColorTokens.SurfaceOnDarkAccentMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentMinor", LightColorTokens.SurfaceOnDarkAccentMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentAccentHover", - LightColorTokens.SurfaceOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentActive", - LightColorTokens.SurfaceOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccent", - LightColorTokens.SurfaceOnDarkTransparentAccent, - overwrite, - ) - initial.add("surfaceOnDarkPromoHover", LightColorTokens.SurfaceOnDarkPromoHover, overwrite) - initial.add("surfaceOnDarkPromoActive", LightColorTokens.SurfaceOnDarkPromoActive, overwrite) - initial.add("surfaceOnDarkPromo", LightColorTokens.SurfaceOnDarkPromo, overwrite) - initial.add( - "surfaceOnDarkPromoMinorHover", - LightColorTokens.SurfaceOnDarkPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorActive", - LightColorTokens.SurfaceOnDarkPromoMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkPromoMinor", LightColorTokens.SurfaceOnDarkPromoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentPromoHover", - LightColorTokens.SurfaceOnDarkTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoActive", - LightColorTokens.SurfaceOnDarkTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromo", - LightColorTokens.SurfaceOnDarkTransparentPromo, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveHover", - LightColorTokens.SurfaceOnDarkPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveActive", - LightColorTokens.SurfaceOnDarkPositiveActive, - overwrite, - ) - initial.add("surfaceOnDarkPositive", LightColorTokens.SurfaceOnDarkPositive, overwrite) - initial.add("surfaceOnDarkWarningHover", LightColorTokens.SurfaceOnDarkWarningHover, overwrite) - initial.add( - "surfaceOnDarkWarningActive", - LightColorTokens.SurfaceOnDarkWarningActive, - overwrite, - ) - initial.add("surfaceOnDarkWarning", LightColorTokens.SurfaceOnDarkWarning, overwrite) - initial.add( - "surfaceOnDarkNegativeHover", - LightColorTokens.SurfaceOnDarkNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeActive", - LightColorTokens.SurfaceOnDarkNegativeActive, - overwrite, - ) - initial.add("surfaceOnDarkNegative", LightColorTokens.SurfaceOnDarkNegative, overwrite) - initial.add("surfaceOnDarkInfoHover", LightColorTokens.SurfaceOnDarkInfoHover, overwrite) - initial.add("surfaceOnDarkInfoActive", LightColorTokens.SurfaceOnDarkInfoActive, overwrite) - initial.add( - "surfaceOnDarkPositiveMinorHover", - LightColorTokens.SurfaceOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinorActive", - LightColorTokens.SurfaceOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorHover", - LightColorTokens.SurfaceOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorActive", - LightColorTokens.SurfaceOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorHover", - LightColorTokens.SurfaceOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorActive", - LightColorTokens.SurfaceOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorHover", - LightColorTokens.SurfaceOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorActive", - LightColorTokens.SurfaceOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveHover", - LightColorTokens.SurfaceOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveActive", - LightColorTokens.SurfaceOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningHover", - LightColorTokens.SurfaceOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningActive", - LightColorTokens.SurfaceOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeHover", - LightColorTokens.SurfaceOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeActive", - LightColorTokens.SurfaceOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoHover", - LightColorTokens.SurfaceOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoActive", - LightColorTokens.SurfaceOnDarkTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaHover", - LightColorTokens.SurfaceOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaActive", - LightColorTokens.SurfaceOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentAthena", LightColorTokens.SurfaceOnDarkAccentAthena, overwrite) - initial.add( - "surfaceOnDarkAccentJoyHover", - LightColorTokens.SurfaceOnDarkAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyActive", - LightColorTokens.SurfaceOnDarkAccentJoyActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentJoy", LightColorTokens.SurfaceOnDarkAccentJoy, overwrite) - initial.add( - "surfaceOnDarkAccentB2EHover", - LightColorTokens.SurfaceOnDarkAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EActive", - LightColorTokens.SurfaceOnDarkAccentB2EActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentB2E", LightColorTokens.SurfaceOnDarkAccentB2E, overwrite) - initial.add( - "surfaceOnDarkAccentBrandHover", - LightColorTokens.SurfaceOnDarkAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandActive", - LightColorTokens.SurfaceOnDarkAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentBrand", LightColorTokens.SurfaceOnDarkAccentBrand, overwrite) - initial.add( - "surfaceOnDarkAccentMainHover", - LightColorTokens.SurfaceOnDarkAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainActive", - LightColorTokens.SurfaceOnDarkAccentMainActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentMain", LightColorTokens.SurfaceOnDarkAccentMain, overwrite) - initial.add( - "surfaceOnDarkAccentMainMinor", - LightColorTokens.SurfaceOnDarkAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainMinorHover", - LightColorTokens.SurfaceOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainMinorActive", - LightColorTokens.SurfaceOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinor", - LightColorTokens.SurfaceOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinorHover", - LightColorTokens.SurfaceOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinorActive", - LightColorTokens.SurfaceOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinor", - LightColorTokens.SurfaceOnDarkAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinorHover", - LightColorTokens.SurfaceOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinorActive", - LightColorTokens.SurfaceOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinor", - LightColorTokens.SurfaceOnDarkAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinorHover", - LightColorTokens.SurfaceOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinorActive", - LightColorTokens.SurfaceOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinor", - LightColorTokens.SurfaceOnDarkAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinorHover", - LightColorTokens.SurfaceOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinorActive", - LightColorTokens.SurfaceOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMain", - LightColorTokens.SurfaceOnDarkTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMainHover", - LightColorTokens.SurfaceOnDarkTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMainActive", - LightColorTokens.SurfaceOnDarkTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthena", - LightColorTokens.SurfaceOnDarkTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthenaHover", - LightColorTokens.SurfaceOnDarkTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthenaActive", - LightColorTokens.SurfaceOnDarkTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoy", - LightColorTokens.SurfaceOnDarkTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoyHover", - LightColorTokens.SurfaceOnDarkTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoyActive", - LightColorTokens.SurfaceOnDarkTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2E", - LightColorTokens.SurfaceOnDarkTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2EHover", - LightColorTokens.SurfaceOnDarkTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2EActive", - LightColorTokens.SurfaceOnDarkTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrand", - LightColorTokens.SurfaceOnDarkTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrandHover", - LightColorTokens.SurfaceOnDarkTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrandActive", - LightColorTokens.SurfaceOnDarkTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnDarkInfo", LightColorTokens.SurfaceOnDarkInfo, overwrite) - initial.add( - "surfaceOnDarkPositiveMinor", - LightColorTokens.SurfaceOnDarkPositiveMinor, - overwrite, - ) - initial.add("surfaceOnDarkWarningMinor", LightColorTokens.SurfaceOnDarkWarningMinor, overwrite) - initial.add( - "surfaceOnDarkNegativeMinor", - LightColorTokens.SurfaceOnDarkNegativeMinor, - overwrite, - ) - initial.add("surfaceOnDarkInfoMinor", LightColorTokens.SurfaceOnDarkInfoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentPositive", - LightColorTokens.SurfaceOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarning", - LightColorTokens.SurfaceOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegative", - LightColorTokens.SurfaceOnDarkTransparentNegative, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfo", - LightColorTokens.SurfaceOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryHover", - LightColorTokens.SurfaceOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryActive", - LightColorTokens.SurfaceOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimary", - LightColorTokens.SurfaceOnLightSolidPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryBrightness", - LightColorTokens.SurfaceOnLightSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryHover", - LightColorTokens.SurfaceOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryActive", - LightColorTokens.SurfaceOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondary", - LightColorTokens.SurfaceOnLightSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryHover", - LightColorTokens.SurfaceOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryActive", - LightColorTokens.SurfaceOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiary", - LightColorTokens.SurfaceOnLightSolidTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardHover", - LightColorTokens.SurfaceOnLightSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardActive", - LightColorTokens.SurfaceOnLightSolidCardActive, - overwrite, - ) - initial.add("surfaceOnLightSolidCard", LightColorTokens.SurfaceOnLightSolidCard, overwrite) - initial.add( - "surfaceOnLightSolidCardBrightness", - LightColorTokens.SurfaceOnLightSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultHover", - LightColorTokens.SurfaceOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultActive", - LightColorTokens.SurfaceOnLightSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefault", - LightColorTokens.SurfaceOnLightSolidDefault, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryHover", - LightColorTokens.SurfaceOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryActive", - LightColorTokens.SurfaceOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimary", - LightColorTokens.SurfaceOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryHover", - LightColorTokens.SurfaceOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryActive", - LightColorTokens.SurfaceOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondary", - LightColorTokens.SurfaceOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryHover", - LightColorTokens.SurfaceOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryActive", - LightColorTokens.SurfaceOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiary", - LightColorTokens.SurfaceOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepHover", - LightColorTokens.SurfaceOnLightTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepActive", - LightColorTokens.SurfaceOnLightTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeep", - LightColorTokens.SurfaceOnLightTransparentDeep, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardHover", - LightColorTokens.SurfaceOnLightTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardActive", - LightColorTokens.SurfaceOnLightTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCard", - LightColorTokens.SurfaceOnLightTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardBrightness", - LightColorTokens.SurfaceOnLightTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnLightClearHover", LightColorTokens.SurfaceOnLightClearHover, overwrite) - initial.add("surfaceOnLightClearActive", LightColorTokens.SurfaceOnLightClearActive, overwrite) - initial.add("surfaceOnLightClear", LightColorTokens.SurfaceOnLightClear, overwrite) - initial.add("surfaceOnLightAccentHover", LightColorTokens.SurfaceOnLightAccentHover, overwrite) - initial.add( - "surfaceOnLightAccentActive", - LightColorTokens.SurfaceOnLightAccentActive, - overwrite, - ) - initial.add("surfaceOnLightAccent", LightColorTokens.SurfaceOnLightAccent, overwrite) - initial.add( - "surfaceOnLightAccentMinorHover", - LightColorTokens.SurfaceOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorActive", - LightColorTokens.SurfaceOnLightAccentMinorActive, - overwrite, - ) - initial.add("surfaceOnLightAccentMinor", LightColorTokens.SurfaceOnLightAccentMinor, overwrite) - initial.add( - "surfaceOnLightTransparentAccentHover", - LightColorTokens.SurfaceOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentActive", - LightColorTokens.SurfaceOnLightTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccent", - LightColorTokens.SurfaceOnLightTransparentAccent, - overwrite, - ) - initial.add("surfaceOnLightPromoHover", LightColorTokens.SurfaceOnLightPromoHover, overwrite) - initial.add("surfaceOnLightPromoActive", LightColorTokens.SurfaceOnLightPromoActive, overwrite) - initial.add("surfaceOnLightPromo", LightColorTokens.SurfaceOnLightPromo, overwrite) - initial.add( - "surfaceOnLightPromoMinorHover", - LightColorTokens.SurfaceOnLightPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorActive", - LightColorTokens.SurfaceOnLightPromoMinorActive, - overwrite, - ) - initial.add("surfaceOnLightPromoMinor", LightColorTokens.SurfaceOnLightPromoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentPromoHover", - LightColorTokens.SurfaceOnLightTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoActive", - LightColorTokens.SurfaceOnLightTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromo", - LightColorTokens.SurfaceOnLightTransparentPromo, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveHover", - LightColorTokens.SurfaceOnLightPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveActive", - LightColorTokens.SurfaceOnLightPositiveActive, - overwrite, - ) - initial.add("surfaceOnLightPositive", LightColorTokens.SurfaceOnLightPositive, overwrite) - initial.add( - "surfaceOnLightWarningHover", - LightColorTokens.SurfaceOnLightWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningActive", - LightColorTokens.SurfaceOnLightWarningActive, - overwrite, - ) - initial.add("surfaceOnLightWarning", LightColorTokens.SurfaceOnLightWarning, overwrite) - initial.add( - "surfaceOnLightNegativeHover", - LightColorTokens.SurfaceOnLightNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeActive", - LightColorTokens.SurfaceOnLightNegativeActive, - overwrite, - ) - initial.add("surfaceOnLightNegative", LightColorTokens.SurfaceOnLightNegative, overwrite) - initial.add("surfaceOnLightInfoHover", LightColorTokens.SurfaceOnLightInfoHover, overwrite) - initial.add("surfaceOnLightInfoActive", LightColorTokens.SurfaceOnLightInfoActive, overwrite) - initial.add( - "surfaceOnLightPositiveMinorHover", - LightColorTokens.SurfaceOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorActive", - LightColorTokens.SurfaceOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorHover", - LightColorTokens.SurfaceOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorActive", - LightColorTokens.SurfaceOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorHover", - LightColorTokens.SurfaceOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorActive", - LightColorTokens.SurfaceOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorHover", - LightColorTokens.SurfaceOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorActive", - LightColorTokens.SurfaceOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveHover", - LightColorTokens.SurfaceOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveActive", - LightColorTokens.SurfaceOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningHover", - LightColorTokens.SurfaceOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningActive", - LightColorTokens.SurfaceOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeHover", - LightColorTokens.SurfaceOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeActive", - LightColorTokens.SurfaceOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoHover", - LightColorTokens.SurfaceOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoActive", - LightColorTokens.SurfaceOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaHover", - LightColorTokens.SurfaceOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaActive", - LightColorTokens.SurfaceOnLightAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthena", - LightColorTokens.SurfaceOnLightAccentAthena, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyHover", - LightColorTokens.SurfaceOnLightAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyActive", - LightColorTokens.SurfaceOnLightAccentJoyActive, - overwrite, - ) - initial.add("surfaceOnLightAccentJoy", LightColorTokens.SurfaceOnLightAccentJoy, overwrite) - initial.add( - "surfaceOnLightAccentB2EHover", - LightColorTokens.SurfaceOnLightAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EActive", - LightColorTokens.SurfaceOnLightAccentB2EActive, - overwrite, - ) - initial.add("surfaceOnLightAccentB2E", LightColorTokens.SurfaceOnLightAccentB2E, overwrite) - initial.add( - "surfaceOnLightAccentBrandHover", - LightColorTokens.SurfaceOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandActive", - LightColorTokens.SurfaceOnLightAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnLightAccentBrand", LightColorTokens.SurfaceOnLightAccentBrand, overwrite) - initial.add( - "surfaceOnLightAccentMainHover", - LightColorTokens.SurfaceOnLightAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainActive", - LightColorTokens.SurfaceOnLightAccentMainActive, - overwrite, - ) - initial.add("surfaceOnLightAccentMain", LightColorTokens.SurfaceOnLightAccentMain, overwrite) - initial.add( - "surfaceOnLightAccentMainMinor", - LightColorTokens.SurfaceOnLightAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainMinorHover", - LightColorTokens.SurfaceOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainMinorActive", - LightColorTokens.SurfaceOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinor", - LightColorTokens.SurfaceOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinorHover", - LightColorTokens.SurfaceOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinorActive", - LightColorTokens.SurfaceOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinor", - LightColorTokens.SurfaceOnLightAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinorHover", - LightColorTokens.SurfaceOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinorActive", - LightColorTokens.SurfaceOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinor", - LightColorTokens.SurfaceOnLightAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinorHover", - LightColorTokens.SurfaceOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinorActive", - LightColorTokens.SurfaceOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinor", - LightColorTokens.SurfaceOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinorHover", - LightColorTokens.SurfaceOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinorActive", - LightColorTokens.SurfaceOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMain", - LightColorTokens.SurfaceOnLightTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMainHover", - LightColorTokens.SurfaceOnLightTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMainActive", - LightColorTokens.SurfaceOnLightTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthena", - LightColorTokens.SurfaceOnLightTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthenaHover", - LightColorTokens.SurfaceOnLightTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthenaActive", - LightColorTokens.SurfaceOnLightTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoy", - LightColorTokens.SurfaceOnLightTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoyHover", - LightColorTokens.SurfaceOnLightTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoyActive", - LightColorTokens.SurfaceOnLightTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2E", - LightColorTokens.SurfaceOnLightTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2EHover", - LightColorTokens.SurfaceOnLightTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2EActive", - LightColorTokens.SurfaceOnLightTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrand", - LightColorTokens.SurfaceOnLightTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrandHover", - LightColorTokens.SurfaceOnLightTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrandActive", - LightColorTokens.SurfaceOnLightTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnLightInfo", LightColorTokens.SurfaceOnLightInfo, overwrite) - initial.add( - "surfaceOnLightPositiveMinor", - LightColorTokens.SurfaceOnLightPositiveMinor, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinor", - LightColorTokens.SurfaceOnLightWarningMinor, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinor", - LightColorTokens.SurfaceOnLightNegativeMinor, - overwrite, - ) - initial.add("surfaceOnLightInfoMinor", LightColorTokens.SurfaceOnLightInfoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentPositive", - LightColorTokens.SurfaceOnLightTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarning", - LightColorTokens.SurfaceOnLightTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegative", - LightColorTokens.SurfaceOnLightTransparentNegative, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfo", - LightColorTokens.SurfaceOnLightTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryHover", - LightColorTokens.SurfaceInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryActive", - LightColorTokens.SurfaceInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryBrightness", - LightColorTokens.SurfaceInverseSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryHover", - LightColorTokens.SurfaceInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryActive", - LightColorTokens.SurfaceInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryHover", - LightColorTokens.SurfaceInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryActive", - LightColorTokens.SurfaceInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardHover", - LightColorTokens.SurfaceInverseSolidCardHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardActive", - LightColorTokens.SurfaceInverseSolidCardActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardBrightness", - LightColorTokens.SurfaceInverseSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultHover", - LightColorTokens.SurfaceInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultActive", - LightColorTokens.SurfaceInverseSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryHover", - LightColorTokens.SurfaceInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryActive", - LightColorTokens.SurfaceInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryHover", - LightColorTokens.SurfaceInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryActive", - LightColorTokens.SurfaceInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryHover", - LightColorTokens.SurfaceInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryActive", - LightColorTokens.SurfaceInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepHover", - LightColorTokens.SurfaceInverseTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepActive", - LightColorTokens.SurfaceInverseTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeep", - LightColorTokens.SurfaceInverseTransparentDeep, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardHover", - LightColorTokens.SurfaceInverseTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardActive", - LightColorTokens.SurfaceInverseTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardBrightness", - LightColorTokens.SurfaceInverseTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceInverseClearHover", LightColorTokens.SurfaceInverseClearHover, overwrite) - initial.add("surfaceInverseClearActive", LightColorTokens.SurfaceInverseClearActive, overwrite) - initial.add("surfaceInverseClear", LightColorTokens.SurfaceInverseClear, overwrite) - initial.add("surfaceInverseAccentHover", LightColorTokens.SurfaceInverseAccentHover, overwrite) - initial.add( - "surfaceInverseAccentActive", - LightColorTokens.SurfaceInverseAccentActive, - overwrite, - ) - initial.add("surfaceInverseAccent", LightColorTokens.SurfaceInverseAccent, overwrite) - initial.add( - "surfaceInverseAccentMinorHover", - LightColorTokens.SurfaceInverseAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorActive", - LightColorTokens.SurfaceInverseAccentMinorActive, - overwrite, - ) - initial.add("surfaceInverseAccentMinor", LightColorTokens.SurfaceInverseAccentMinor, overwrite) - initial.add( - "surfaceInverseTransparentAccentHover", - LightColorTokens.SurfaceInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentActive", - LightColorTokens.SurfaceInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccent", - LightColorTokens.SurfaceInverseTransparentAccent, - overwrite, - ) - initial.add("surfaceInversePromoHover", LightColorTokens.SurfaceInversePromoHover, overwrite) - initial.add("surfaceInversePromoActive", LightColorTokens.SurfaceInversePromoActive, overwrite) - initial.add("surfaceInversePromo", LightColorTokens.SurfaceInversePromo, overwrite) - initial.add( - "surfaceInversePromoMinorHover", - LightColorTokens.SurfaceInversePromoMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePromoMinorActive", - LightColorTokens.SurfaceInversePromoMinorActive, - overwrite, - ) - initial.add("surfaceInversePromoMinor", LightColorTokens.SurfaceInversePromoMinor, overwrite) - initial.add( - "surfaceInverseTransparentPromoHover", - LightColorTokens.SurfaceInverseTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoActive", - LightColorTokens.SurfaceInverseTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromo", - LightColorTokens.SurfaceInverseTransparentPromo, - overwrite, - ) - initial.add( - "surfaceInversePositiveHover", - LightColorTokens.SurfaceInversePositiveHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveActive", - LightColorTokens.SurfaceInversePositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseWarningHover", - LightColorTokens.SurfaceInverseWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningActive", - LightColorTokens.SurfaceInverseWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeHover", - LightColorTokens.SurfaceInverseNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeActive", - LightColorTokens.SurfaceInverseNegativeActive, - overwrite, - ) - initial.add("surfaceInverseInfoHover", LightColorTokens.SurfaceInverseInfoHover, overwrite) - initial.add("surfaceInverseInfoActive", LightColorTokens.SurfaceInverseInfoActive, overwrite) - initial.add( - "surfaceInversePositiveMinorHover", - LightColorTokens.SurfaceInversePositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorActive", - LightColorTokens.SurfaceInversePositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorHover", - LightColorTokens.SurfaceInverseWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorActive", - LightColorTokens.SurfaceInverseWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorHover", - LightColorTokens.SurfaceInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorActive", - LightColorTokens.SurfaceInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorHover", - LightColorTokens.SurfaceInverseInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorActive", - LightColorTokens.SurfaceInverseInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveHover", - LightColorTokens.SurfaceInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveActive", - LightColorTokens.SurfaceInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningHover", - LightColorTokens.SurfaceInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningActive", - LightColorTokens.SurfaceInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeHover", - LightColorTokens.SurfaceInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeActive", - LightColorTokens.SurfaceInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoHover", - LightColorTokens.SurfaceInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoActive", - LightColorTokens.SurfaceInverseTransparentInfoActive, - overwrite, - ) - initial.add("surfaceInverseAccentMain", LightColorTokens.SurfaceInverseAccentMain, overwrite) - initial.add( - "surfaceInverseAccentMainHover", - LightColorTokens.SurfaceInverseAccentMainHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainActive", - LightColorTokens.SurfaceInverseAccentMainActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthena", - LightColorTokens.SurfaceInverseAccentAthena, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaHover", - LightColorTokens.SurfaceInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaActive", - LightColorTokens.SurfaceInverseAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoy", - LightColorTokens.SurfaceInverseSurfaceAccentJoy, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoyHover", - LightColorTokens.SurfaceInverseSurfaceAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoyActive", - LightColorTokens.SurfaceInverseSurfaceAccentJoyActive, - overwrite, - ) - initial.add("surfaceInverseAccentB2E", LightColorTokens.SurfaceInverseAccentB2E, overwrite) - initial.add( - "surfaceInverseAccentB2EHover", - LightColorTokens.SurfaceInverseAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EActive", - LightColorTokens.SurfaceInverseAccentB2EActive, - overwrite, - ) - initial.add("surfaceInverseAccentBrand", LightColorTokens.SurfaceInverseAccentBrand, overwrite) - initial.add( - "surfaceInverseAccentBrandHover", - LightColorTokens.SurfaceInverseAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandActive", - LightColorTokens.SurfaceInverseAccentBrandActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinorHover", - LightColorTokens.SurfaceInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinorActive", - LightColorTokens.SurfaceInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinorHover", - LightColorTokens.SurfaceInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinorActive", - LightColorTokens.SurfaceInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinorHover", - LightColorTokens.SurfaceInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinorActive", - LightColorTokens.SurfaceInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinorHover", - LightColorTokens.SurfaceInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinorActive", - LightColorTokens.SurfaceInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinorHover", - LightColorTokens.SurfaceInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinorActive", - LightColorTokens.SurfaceInverseAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMainHover", - LightColorTokens.SurfaceInverseTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMainActive", - LightColorTokens.SurfaceInverseTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthenaHover", - LightColorTokens.SurfaceInverseTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthenaActive", - LightColorTokens.SurfaceInverseTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoyHover", - LightColorTokens.SurfaceInverseTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoyActive", - LightColorTokens.SurfaceInverseTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2EHover", - LightColorTokens.SurfaceInverseTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2EActive", - LightColorTokens.SurfaceInverseTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrandHover", - LightColorTokens.SurfaceInverseTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrandActive", - LightColorTokens.SurfaceInverseTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceInverseSolidCard", LightColorTokens.SurfaceInverseSolidCard, overwrite) - initial.add( - "surfaceInverseSolidPrimary", - LightColorTokens.SurfaceInverseSolidPrimary, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondary", - LightColorTokens.SurfaceInverseSolidSecondary, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiary", - LightColorTokens.SurfaceInverseSolidTertiary, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefault", - LightColorTokens.SurfaceInverseSolidDefault, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimary", - LightColorTokens.SurfaceInverseTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondary", - LightColorTokens.SurfaceInverseTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiary", - LightColorTokens.SurfaceInverseTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCard", - LightColorTokens.SurfaceInverseTransparentCard, - overwrite, - ) - initial.add("surfaceInversePositive", LightColorTokens.SurfaceInversePositive, overwrite) - initial.add("surfaceInverseWarning", LightColorTokens.SurfaceInverseWarning, overwrite) - initial.add("surfaceInverseNegative", LightColorTokens.SurfaceInverseNegative, overwrite) - initial.add("surfaceInverseInfo", LightColorTokens.SurfaceInverseInfo, overwrite) - initial.add( - "surfaceInversePositiveMinor", - LightColorTokens.SurfaceInversePositiveMinor, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinor", - LightColorTokens.SurfaceInverseWarningMinor, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinor", - LightColorTokens.SurfaceInverseNegativeMinor, - overwrite, - ) - initial.add("surfaceInverseInfoMinor", LightColorTokens.SurfaceInverseInfoMinor, overwrite) - initial.add( - "surfaceInverseTransparentPositive", - LightColorTokens.SurfaceInverseTransparentPositive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarning", - LightColorTokens.SurfaceInverseTransparentWarning, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegative", - LightColorTokens.SurfaceInverseTransparentNegative, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfo", - LightColorTokens.SurfaceInverseTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinor", - LightColorTokens.SurfaceInverseAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinor", - LightColorTokens.SurfaceInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinor", - LightColorTokens.SurfaceInverseAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinor", - LightColorTokens.SurfaceInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinor", - LightColorTokens.SurfaceInverseAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMain", - LightColorTokens.SurfaceInverseTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthena", - LightColorTokens.SurfaceInverseTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoy", - LightColorTokens.SurfaceInverseTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2E", - LightColorTokens.SurfaceInverseTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrand", - LightColorTokens.SurfaceInverseTransparentAccentBrand, - overwrite, - ) - initial.add("backgroundDefaultPrimary", LightColorTokens.BackgroundDefaultPrimary, overwrite) - initial.add( - "backgroundDefaultPrimaryBrightness", - LightColorTokens.BackgroundDefaultPrimaryBrightness, - overwrite, - ) - initial.add( - "backgroundDefaultSecondary", - LightColorTokens.BackgroundDefaultSecondary, - overwrite, - ) - initial.add("backgroundDefaultTertiary", LightColorTokens.BackgroundDefaultTertiary, overwrite) - initial.add("backgroundDarkPrimary", LightColorTokens.BackgroundDarkPrimary, overwrite) - initial.add("backgroundDarkSecondary", LightColorTokens.BackgroundDarkSecondary, overwrite) - initial.add("backgroundDarkTertiary", LightColorTokens.BackgroundDarkTertiary, overwrite) - initial.add("backgroundLightPrimary", LightColorTokens.BackgroundLightPrimary, overwrite) - initial.add("backgroundLightSecondary", LightColorTokens.BackgroundLightSecondary, overwrite) - initial.add("backgroundLightTertiary", LightColorTokens.BackgroundLightTertiary, overwrite) - initial.add( - "backgroundInversePrimaryBrightness", - LightColorTokens.BackgroundInversePrimaryBrightness, - overwrite, - ) - initial.add("backgroundInverseTertiary", LightColorTokens.BackgroundInverseTertiary, overwrite) - initial.add("backgroundInversePrimary", LightColorTokens.BackgroundInversePrimary, overwrite) - initial.add( - "backgroundInverseSecondary", - LightColorTokens.BackgroundInverseSecondary, - overwrite, - ) - initial.add("overlayDefaultSoft", LightColorTokens.OverlayDefaultSoft, overwrite) - initial.add("overlayDefaultHard", LightColorTokens.OverlayDefaultHard, overwrite) - initial.add("overlayDefaultBlur", LightColorTokens.OverlayDefaultBlur, overwrite) - initial.add("overlayOnDarkSoft", LightColorTokens.OverlayOnDarkSoft, overwrite) - initial.add("overlayOnDarkHard", LightColorTokens.OverlayOnDarkHard, overwrite) - initial.add("overlayOnDarkBlur", LightColorTokens.OverlayOnDarkBlur, overwrite) - initial.add("overlayOnLightSoft", LightColorTokens.OverlayOnLightSoft, overwrite) - initial.add("overlayOnLightHard", LightColorTokens.OverlayOnLightHard, overwrite) - initial.add("overlayOnLightBlur", LightColorTokens.OverlayOnLightBlur, overwrite) - initial.add("overlayInverseSoft", LightColorTokens.OverlayInverseSoft, overwrite) - initial.add("overlayInverseHard", LightColorTokens.OverlayInverseHard, overwrite) - initial.add("overlayInverseBlur", LightColorTokens.OverlayInverseBlur, overwrite) - initial.add( - "outlineDefaultSolidPrimaryHover", - LightColorTokens.OutlineDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryActive", - LightColorTokens.OutlineDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryHover", - LightColorTokens.OutlineDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryActive", - LightColorTokens.OutlineDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryHover", - LightColorTokens.OutlineDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryActive", - LightColorTokens.OutlineDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefaultHover", - LightColorTokens.OutlineDefaultTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefaultActive", - LightColorTokens.OutlineDefaultTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefault", - LightColorTokens.OutlineDefaultTransparentDefault, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryHover", - LightColorTokens.OutlineDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryActive", - LightColorTokens.OutlineDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryHover", - LightColorTokens.OutlineDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryActive", - LightColorTokens.OutlineDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryHover", - LightColorTokens.OutlineDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryActive", - LightColorTokens.OutlineDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineDefaultClearHover", LightColorTokens.OutlineDefaultClearHover, overwrite) - initial.add("outlineDefaultClearActive", LightColorTokens.OutlineDefaultClearActive, overwrite) - initial.add("outlineDefaultAccentHover", LightColorTokens.OutlineDefaultAccentHover, overwrite) - initial.add( - "outlineDefaultAccentActive", - LightColorTokens.OutlineDefaultAccentActive, - overwrite, - ) - initial.add("outlineDefaultAccent", LightColorTokens.OutlineDefaultAccent, overwrite) - initial.add( - "outlineDefaultAccentMinorHover", - LightColorTokens.OutlineDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorActive", - LightColorTokens.OutlineDefaultAccentMinorActive, - overwrite, - ) - initial.add("outlineDefaultAccentMinor", LightColorTokens.OutlineDefaultAccentMinor, overwrite) - initial.add( - "outlineDefaultTransparentAccentHover", - LightColorTokens.OutlineDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentActive", - LightColorTokens.OutlineDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccent", - LightColorTokens.OutlineDefaultTransparentAccent, - overwrite, - ) - initial.add("outlineDefaultPromoHover", LightColorTokens.OutlineDefaultPromoHover, overwrite) - initial.add("outlineDefaultPromoActive", LightColorTokens.OutlineDefaultPromoActive, overwrite) - initial.add("outlineDefaultPromo", LightColorTokens.OutlineDefaultPromo, overwrite) - initial.add( - "outlineDefaultPromoMinorHover", - LightColorTokens.OutlineDefaultPromoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorActive", - LightColorTokens.OutlineDefaultPromoMinorActive, - overwrite, - ) - initial.add("outlineDefaultPromoMinor", LightColorTokens.OutlineDefaultPromoMinor, overwrite) - initial.add( - "outlineDefaultPositiveHover", - LightColorTokens.OutlineDefaultPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveActive", - LightColorTokens.OutlineDefaultPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningHover", - LightColorTokens.OutlineDefaultWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningActive", - LightColorTokens.OutlineDefaultWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeHover", - LightColorTokens.OutlineDefaultNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeActive", - LightColorTokens.OutlineDefaultNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfoHover", LightColorTokens.OutlineDefaultInfoHover, overwrite) - initial.add("outlineDefaultInfoActive", LightColorTokens.OutlineDefaultInfoActive, overwrite) - initial.add( - "outlineDefaultPositiveMinorHover", - LightColorTokens.OutlineDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveMinorActive", - LightColorTokens.OutlineDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorHover", - LightColorTokens.OutlineDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorActive", - LightColorTokens.OutlineDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorHover", - LightColorTokens.OutlineDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorActive", - LightColorTokens.OutlineDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorHover", - LightColorTokens.OutlineDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorActive", - LightColorTokens.OutlineDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveHover", - LightColorTokens.OutlineDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveActive", - LightColorTokens.OutlineDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningHover", - LightColorTokens.OutlineDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningActive", - LightColorTokens.OutlineDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeHover", - LightColorTokens.OutlineDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeActive", - LightColorTokens.OutlineDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoHover", - LightColorTokens.OutlineDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoActive", - LightColorTokens.OutlineDefaultTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultHover", - LightColorTokens.OutlineDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultActive", - LightColorTokens.OutlineDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainHover", - LightColorTokens.OutlineDefaultAccentMainHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainActive", - LightColorTokens.OutlineDefaultAccentMainActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaHover", - LightColorTokens.OutlineDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaActive", - LightColorTokens.OutlineDefaultAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyHover", - LightColorTokens.OutlineDefaultAccentJoyHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyActive", - LightColorTokens.OutlineDefaultAccentJoyActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EHover", - LightColorTokens.OutlineDefaultAccentB2EHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EActive", - LightColorTokens.OutlineDefaultAccentB2EActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandHover", - LightColorTokens.OutlineDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandActive", - LightColorTokens.OutlineDefaultAccentBrandActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainMinorHover", - LightColorTokens.OutlineDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainMinorActive", - LightColorTokens.OutlineDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinorHover", - LightColorTokens.OutlineDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinorActive", - LightColorTokens.OutlineDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinorHover", - LightColorTokens.OutlineDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinorActive", - LightColorTokens.OutlineDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinorHover", - LightColorTokens.OutlineDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinorActive", - LightColorTokens.OutlineDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinorHover", - LightColorTokens.OutlineDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinorActive", - LightColorTokens.OutlineDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMainHover", - LightColorTokens.OutlineDefaultTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMainActive", - LightColorTokens.OutlineDefaultTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthenaHover", - LightColorTokens.OutlineDefaultTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthenaActive", - LightColorTokens.OutlineDefaultTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoyHover", - LightColorTokens.OutlineDefaultTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoyActive", - LightColorTokens.OutlineDefaultTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2EHover", - LightColorTokens.OutlineDefaultTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2EActive", - LightColorTokens.OutlineDefaultTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrandHover", - LightColorTokens.OutlineDefaultTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrandActive", - LightColorTokens.OutlineDefaultTransparentAccentBrandActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimary", - LightColorTokens.OutlineDefaultSolidPrimary, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondary", - LightColorTokens.OutlineDefaultSolidSecondary, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiary", - LightColorTokens.OutlineDefaultSolidTertiary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimary", - LightColorTokens.OutlineDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondary", - LightColorTokens.OutlineDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiary", - LightColorTokens.OutlineDefaultTransparentTertiary, - overwrite, - ) - initial.add("outlineDefaultClear", LightColorTokens.OutlineDefaultClear, overwrite) - initial.add( - "outlineDefaultSolidDefault", - LightColorTokens.OutlineDefaultSolidDefault, - overwrite, - ) - initial.add("outlineDefaultPositive", LightColorTokens.OutlineDefaultPositive, overwrite) - initial.add("outlineDefaultWarning", LightColorTokens.OutlineDefaultWarning, overwrite) - initial.add("outlineDefaultNegative", LightColorTokens.OutlineDefaultNegative, overwrite) - initial.add("outlineDefaultInfo", LightColorTokens.OutlineDefaultInfo, overwrite) - initial.add( - "outlineDefaultPositiveMinor", - LightColorTokens.OutlineDefaultPositiveMinor, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinor", - LightColorTokens.OutlineDefaultWarningMinor, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinor", - LightColorTokens.OutlineDefaultNegativeMinor, - overwrite, - ) - initial.add("outlineDefaultInfoMinor", LightColorTokens.OutlineDefaultInfoMinor, overwrite) - initial.add( - "outlineDefaultTransparentPositive", - LightColorTokens.OutlineDefaultTransparentPositive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarning", - LightColorTokens.OutlineDefaultTransparentWarning, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegative", - LightColorTokens.OutlineDefaultTransparentNegative, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfo", - LightColorTokens.OutlineDefaultTransparentInfo, - overwrite, - ) - initial.add("outlineDefaultAccentMain", LightColorTokens.OutlineDefaultAccentMain, overwrite) - initial.add( - "outlineDefaultAccentAthena", - LightColorTokens.OutlineDefaultAccentAthena, - overwrite, - ) - initial.add("outlineDefaultAccentJoy", LightColorTokens.OutlineDefaultAccentJoy, overwrite) - initial.add("outlineDefaultAccentB2E", LightColorTokens.OutlineDefaultAccentB2E, overwrite) - initial.add("outlineDefaultAccentBrand", LightColorTokens.OutlineDefaultAccentBrand, overwrite) - initial.add( - "outlineDefaultAccentMainMinor", - LightColorTokens.OutlineDefaultAccentMainMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinor", - LightColorTokens.OutlineDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinor", - LightColorTokens.OutlineDefaultAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinor", - LightColorTokens.OutlineDefaultAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinor", - LightColorTokens.OutlineDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMain", - LightColorTokens.OutlineDefaultTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthena", - LightColorTokens.OutlineDefaultTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoy", - LightColorTokens.OutlineDefaultTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2E", - LightColorTokens.OutlineDefaultTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrand", - LightColorTokens.OutlineDefaultTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryHover", - LightColorTokens.OutlineOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryActive", - LightColorTokens.OutlineOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryHover", - LightColorTokens.OutlineOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryActive", - LightColorTokens.OutlineOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryHover", - LightColorTokens.OutlineOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryActive", - LightColorTokens.OutlineOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefaultHover", - LightColorTokens.OutlineOnDarkTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefaultActive", - LightColorTokens.OutlineOnDarkTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefault", - LightColorTokens.OutlineOnDarkTransparentDefault, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryHover", - LightColorTokens.OutlineOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryActive", - LightColorTokens.OutlineOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryHover", - LightColorTokens.OutlineOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryActive", - LightColorTokens.OutlineOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryHover", - LightColorTokens.OutlineOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryActive", - LightColorTokens.OutlineOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkClearHover", LightColorTokens.OutlineOnDarkClearHover, overwrite) - initial.add("outlineOnDarkClearActive", LightColorTokens.OutlineOnDarkClearActive, overwrite) - initial.add("outlineOnDarkClear", LightColorTokens.OutlineOnDarkClear, overwrite) - initial.add("outlineOnDarkAccentHover", LightColorTokens.OutlineOnDarkAccentHover, overwrite) - initial.add("outlineOnDarkAccentActive", LightColorTokens.OutlineOnDarkAccentActive, overwrite) - initial.add("outlineOnDarkAccent", LightColorTokens.OutlineOnDarkAccent, overwrite) - initial.add( - "outlineOnDarkAccentMinorHover", - LightColorTokens.OutlineOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorActive", - LightColorTokens.OutlineOnDarkAccentMinorActive, - overwrite, - ) - initial.add("outlineOnDarkAccentMinor", LightColorTokens.OutlineOnDarkAccentMinor, overwrite) - initial.add( - "outlineOnDarkTransparentAccentHover", - LightColorTokens.OutlineOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentActive", - LightColorTokens.OutlineOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccent", - LightColorTokens.OutlineOnDarkTransparentAccent, - overwrite, - ) - initial.add("outlineOnDarkPromoHover", LightColorTokens.OutlineOnDarkPromoHover, overwrite) - initial.add("outlineOnDarkPromoActive", LightColorTokens.OutlineOnDarkPromoActive, overwrite) - initial.add("outlineOnDarkPromo", LightColorTokens.OutlineOnDarkPromo, overwrite) - initial.add( - "outlineOnDarkPromoMinorHover", - LightColorTokens.OutlineOnDarkPromoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorActive", - LightColorTokens.OutlineOnDarkPromoMinorActive, - overwrite, - ) - initial.add("outlineOnDarkPromoMinor", LightColorTokens.OutlineOnDarkPromoMinor, overwrite) - initial.add( - "outlineOnDarkPositiveHover", - LightColorTokens.OutlineOnDarkPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveActive", - LightColorTokens.OutlineOnDarkPositiveActive, - overwrite, - ) - initial.add("outlineOnDarkWarningHover", LightColorTokens.OutlineOnDarkWarningHover, overwrite) - initial.add( - "outlineOnDarkWarningActive", - LightColorTokens.OutlineOnDarkWarningActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeHover", - LightColorTokens.OutlineOnDarkNegativeHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeActive", - LightColorTokens.OutlineOnDarkNegativeActive, - overwrite, - ) - initial.add("outlineOnDarkInfoHover", LightColorTokens.OutlineOnDarkInfoHover, overwrite) - initial.add("outlineOnDarkInfoActive", LightColorTokens.OutlineOnDarkInfoActive, overwrite) - initial.add( - "outlineOnDarkPositiveMinorHover", - LightColorTokens.OutlineOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveMinorActive", - LightColorTokens.OutlineOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorHover", - LightColorTokens.OutlineOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorActive", - LightColorTokens.OutlineOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorHover", - LightColorTokens.OutlineOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorActive", - LightColorTokens.OutlineOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorHover", - LightColorTokens.OutlineOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorActive", - LightColorTokens.OutlineOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveHover", - LightColorTokens.OutlineOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveActive", - LightColorTokens.OutlineOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningHover", - LightColorTokens.OutlineOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningActive", - LightColorTokens.OutlineOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegativeHover", - LightColorTokens.OutlineOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegativeActive", - LightColorTokens.OutlineOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoHover", - LightColorTokens.OutlineOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoActive", - LightColorTokens.OutlineOnDarkTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultHover", - LightColorTokens.OutlineOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultActive", - LightColorTokens.OutlineOnDarkSolidDefaultActive, - overwrite, - ) - initial.add("outlineOnDarkAccentMain", LightColorTokens.OutlineOnDarkAccentMain, overwrite) - initial.add( - "outlineOnDarkAccentMainHover", - LightColorTokens.OutlineOnDarkAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainActive", - LightColorTokens.OutlineOnDarkAccentMainActive, - overwrite, - ) - initial.add("outlineOnDarkAccentAthena", LightColorTokens.OutlineOnDarkAccentAthena, overwrite) - initial.add( - "outlineOnDarkAccentAthenaHover", - LightColorTokens.OutlineOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaActive", - LightColorTokens.OutlineOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("outlineOnDarkAccentJoy", LightColorTokens.OutlineOnDarkAccentJoy, overwrite) - initial.add( - "outlineOnDarkAccentJoyHover", - LightColorTokens.OutlineOnDarkAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyActive", - LightColorTokens.OutlineOnDarkAccentJoyActive, - overwrite, - ) - initial.add("outlineOnDarkAccentB2E", LightColorTokens.OutlineOnDarkAccentB2E, overwrite) - initial.add( - "outlineOnDarkAccentB2EHover", - LightColorTokens.OutlineOnDarkAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EActive", - LightColorTokens.OutlineOnDarkAccentB2EActive, - overwrite, - ) - initial.add("outlineOnDarkAccentBrand", LightColorTokens.OutlineOnDarkAccentBrand, overwrite) - initial.add( - "outlineOnDarkAccentBrandHover", - LightColorTokens.OutlineOnDarkAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandActive", - LightColorTokens.OutlineOnDarkAccentBrandActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinor", - LightColorTokens.OutlineOnDarkAccentMainMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinorHover", - LightColorTokens.OutlineOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinorActive", - LightColorTokens.OutlineOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinor", - LightColorTokens.OutlineOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinorHover", - LightColorTokens.OutlineOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinorActive", - LightColorTokens.OutlineOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinor", - LightColorTokens.OutlineOnDarkAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinorHover", - LightColorTokens.OutlineOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinorActive", - LightColorTokens.OutlineOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinor", - LightColorTokens.OutlineOnDarkAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinorHover", - LightColorTokens.OutlineOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinorActive", - LightColorTokens.OutlineOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinor", - LightColorTokens.OutlineOnDarkAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinorHover", - LightColorTokens.OutlineOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinorActive", - LightColorTokens.OutlineOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMain", - LightColorTokens.OutlineOnDarkTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMainHover", - LightColorTokens.OutlineOnDarkTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMainActive", - LightColorTokens.OutlineOnDarkTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthena", - LightColorTokens.OutlineOnDarkTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthenaHover", - LightColorTokens.OutlineOnDarkTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthenaActive", - LightColorTokens.OutlineOnDarkTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoy", - LightColorTokens.OutlineOnDarkTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoyHover", - LightColorTokens.OutlineOnDarkTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoyActive", - LightColorTokens.OutlineOnDarkTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2E", - LightColorTokens.OutlineOnDarkTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2EHover", - LightColorTokens.OutlineOnDarkTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2EActive", - LightColorTokens.OutlineOnDarkTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrand", - LightColorTokens.OutlineOnDarkTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrandHover", - LightColorTokens.OutlineOnDarkTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrandActive", - LightColorTokens.OutlineOnDarkTransparentAccentBrandActive, - overwrite, - ) - initial.add("outlineOnDarkSolidPrimary", LightColorTokens.OutlineOnDarkSolidPrimary, overwrite) - initial.add( - "outlineOnDarkSolidSecondary", - LightColorTokens.OutlineOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiary", - LightColorTokens.OutlineOnDarkSolidTertiary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimary", - LightColorTokens.OutlineOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondary", - LightColorTokens.OutlineOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiary", - LightColorTokens.OutlineOnDarkTransparentTertiary, - overwrite, - ) - initial.add("outlineOnDarkSolidDefault", LightColorTokens.OutlineOnDarkSolidDefault, overwrite) - initial.add("outlineOnDarkPositive", LightColorTokens.OutlineOnDarkPositive, overwrite) - initial.add("outlineOnDarkWarning", LightColorTokens.OutlineOnDarkWarning, overwrite) - initial.add("outlineOnDarkNegative", LightColorTokens.OutlineOnDarkNegative, overwrite) - initial.add("outlineOnDarkInfo", LightColorTokens.OutlineOnDarkInfo, overwrite) - initial.add( - "outlineOnDarkPositiveMinor", - LightColorTokens.OutlineOnDarkPositiveMinor, - overwrite, - ) - initial.add("outlineOnDarkWarningMinor", LightColorTokens.OutlineOnDarkWarningMinor, overwrite) - initial.add( - "outlineOnDarkNegativeMinor", - LightColorTokens.OutlineOnDarkNegativeMinor, - overwrite, - ) - initial.add("outlineOnDarkInfoMinor", LightColorTokens.OutlineOnDarkInfoMinor, overwrite) - initial.add( - "outlineOnDarkTransparentPositive", - LightColorTokens.OutlineOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarning", - LightColorTokens.OutlineOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegative", - LightColorTokens.OutlineOnDarkTransparentNegative, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfo", - LightColorTokens.OutlineOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryHover", - LightColorTokens.OutlineOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryActive", - LightColorTokens.OutlineOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryHover", - LightColorTokens.OutlineOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryActive", - LightColorTokens.OutlineOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryHover", - LightColorTokens.OutlineOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryActive", - LightColorTokens.OutlineOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefaultHover", - LightColorTokens.OutlineOnLightTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefaultActive", - LightColorTokens.OutlineOnLightTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefault", - LightColorTokens.OutlineOnLightTransparentDefault, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryHover", - LightColorTokens.OutlineOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryActive", - LightColorTokens.OutlineOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryHover", - LightColorTokens.OutlineOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryActive", - LightColorTokens.OutlineOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryHover", - LightColorTokens.OutlineOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryActive", - LightColorTokens.OutlineOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnLightClearHover", LightColorTokens.OutlineOnLightClearHover, overwrite) - initial.add("outlineOnLightClearActive", LightColorTokens.OutlineOnLightClearActive, overwrite) - initial.add("outlineOnLightClear", LightColorTokens.OutlineOnLightClear, overwrite) - initial.add("outlineOnLightAccentHover", LightColorTokens.OutlineOnLightAccentHover, overwrite) - initial.add( - "outlineOnLightAccentActive", - LightColorTokens.OutlineOnLightAccentActive, - overwrite, - ) - initial.add("outlineOnLightAccent", LightColorTokens.OutlineOnLightAccent, overwrite) - initial.add( - "outlineOnLightAccentMinorHover", - LightColorTokens.OutlineOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorActive", - LightColorTokens.OutlineOnLightAccentMinorActive, - overwrite, - ) - initial.add("outlineOnLightAccentMinor", LightColorTokens.OutlineOnLightAccentMinor, overwrite) - initial.add( - "outlineOnLightTransparentAccentHover", - LightColorTokens.OutlineOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentActive", - LightColorTokens.OutlineOnLightTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccent", - LightColorTokens.OutlineOnLightTransparentAccent, - overwrite, - ) - initial.add("outlineOnLightPromoHover", LightColorTokens.OutlineOnLightPromoHover, overwrite) - initial.add("outlineOnLightPromoActive", LightColorTokens.OutlineOnLightPromoActive, overwrite) - initial.add("outlineOnLightPromo", LightColorTokens.OutlineOnLightPromo, overwrite) - initial.add( - "outlineOnLightPromoMinorHover", - LightColorTokens.OutlineOnLightPromoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorActive", - LightColorTokens.OutlineOnLightPromoMinorActive, - overwrite, - ) - initial.add("outlineOnLightPromoMinor", LightColorTokens.OutlineOnLightPromoMinor, overwrite) - initial.add( - "outlineOnLightPositiveHover", - LightColorTokens.OutlineOnLightPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveActive", - LightColorTokens.OutlineOnLightPositiveActive, - overwrite, - ) - initial.add( - "outlineOnLightWarningHover", - LightColorTokens.OutlineOnLightWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningActive", - LightColorTokens.OutlineOnLightWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeHover", - LightColorTokens.OutlineOnLightNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeActive", - LightColorTokens.OutlineOnLightNegativeActive, - overwrite, - ) - initial.add("outlineOnLightInfoHover", LightColorTokens.OutlineOnLightInfoHover, overwrite) - initial.add("outlineOnLightInfoActive", LightColorTokens.OutlineOnLightInfoActive, overwrite) - initial.add( - "outlineOnLightPositiveMinorHover", - LightColorTokens.OutlineOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorActive", - LightColorTokens.OutlineOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorHover", - LightColorTokens.OutlineOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorActive", - LightColorTokens.OutlineOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorHover", - LightColorTokens.OutlineOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorActive", - LightColorTokens.OutlineOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorHover", - LightColorTokens.OutlineOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorActive", - LightColorTokens.OutlineOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveHover", - LightColorTokens.OutlineOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveActive", - LightColorTokens.OutlineOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningHover", - LightColorTokens.OutlineOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningActive", - LightColorTokens.OutlineOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegativeHover", - LightColorTokens.OutlineOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegativeActive", - LightColorTokens.OutlineOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoHover", - LightColorTokens.OutlineOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoActive", - LightColorTokens.OutlineOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultHover", - LightColorTokens.OutlineOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultActive", - LightColorTokens.OutlineOnLightSolidDefaultActive, - overwrite, - ) - initial.add("outlineOnLightAccentMain", LightColorTokens.OutlineOnLightAccentMain, overwrite) - initial.add( - "outlineOnLightAccentMainHover", - LightColorTokens.OutlineOnLightAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainActive", - LightColorTokens.OutlineOnLightAccentMainActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthena", - LightColorTokens.OutlineOnLightAccentAthena, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaHover", - LightColorTokens.OutlineOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaActive", - LightColorTokens.OutlineOnLightAccentAthenaActive, - overwrite, - ) - initial.add("outlineOnLightAccentJoy", LightColorTokens.OutlineOnLightAccentJoy, overwrite) - initial.add( - "outlineOnLightAccentJoyHover", - LightColorTokens.OutlineOnLightAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyActive", - LightColorTokens.OutlineOnLightAccentJoyActive, - overwrite, - ) - initial.add("outlineOnLightAccentB2E", LightColorTokens.OutlineOnLightAccentB2E, overwrite) - initial.add( - "outlineOnLightAccentB2EHover", - LightColorTokens.OutlineOnLightAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EActive", - LightColorTokens.OutlineOnLightAccentB2EActive, - overwrite, - ) - initial.add("outlineOnLightAccentBrand", LightColorTokens.OutlineOnLightAccentBrand, overwrite) - initial.add( - "outlineOnLightAccentBrandHover", - LightColorTokens.OutlineOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandActive", - LightColorTokens.OutlineOnLightAccentBrandActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinor", - LightColorTokens.OutlineOnLightAccentMainMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinorHover", - LightColorTokens.OutlineOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinorActive", - LightColorTokens.OutlineOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinor", - LightColorTokens.OutlineOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinorHover", - LightColorTokens.OutlineOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinorActive", - LightColorTokens.OutlineOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinor", - LightColorTokens.OutlineOnLightAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinorHover", - LightColorTokens.OutlineOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinorActive", - LightColorTokens.OutlineOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinor", - LightColorTokens.OutlineOnLightAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinorHover", - LightColorTokens.OutlineOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinorActive", - LightColorTokens.OutlineOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinor", - LightColorTokens.OutlineOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinorHover", - LightColorTokens.OutlineOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinorActive", - LightColorTokens.OutlineOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMain", - LightColorTokens.OutlineOnLightTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMainHover", - LightColorTokens.OutlineOnLightTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMainActive", - LightColorTokens.OutlineOnLightTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthena", - LightColorTokens.OutlineOnLightTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthenaHover", - LightColorTokens.OutlineOnLightTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthenaActive", - LightColorTokens.OutlineOnLightTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoy", - LightColorTokens.OutlineOnLightTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoyHover", - LightColorTokens.OutlineOnLightTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoyActive", - LightColorTokens.OutlineOnLightTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2E", - LightColorTokens.OutlineOnLightTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2EHover", - LightColorTokens.OutlineOnLightTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2EActive", - LightColorTokens.OutlineOnLightTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrand", - LightColorTokens.OutlineOnLightTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrandHover", - LightColorTokens.OutlineOnLightTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrandActive", - LightColorTokens.OutlineOnLightTransparentAccentBrandActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimary", - LightColorTokens.OutlineOnLightSolidPrimary, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondary", - LightColorTokens.OutlineOnLightSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiary", - LightColorTokens.OutlineOnLightSolidTertiary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimary", - LightColorTokens.OutlineOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondary", - LightColorTokens.OutlineOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiary", - LightColorTokens.OutlineOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefault", - LightColorTokens.OutlineOnLightSolidDefault, - overwrite, - ) - initial.add("outlineOnLightPositive", LightColorTokens.OutlineOnLightPositive, overwrite) - initial.add("outlineOnLightWarning", LightColorTokens.OutlineOnLightWarning, overwrite) - initial.add("outlineOnLightNegative", LightColorTokens.OutlineOnLightNegative, overwrite) - initial.add("outlineOnLightInfo", LightColorTokens.OutlineOnLightInfo, overwrite) - initial.add( - "outlineOnLightPositiveMinor", - LightColorTokens.OutlineOnLightPositiveMinor, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinor", - LightColorTokens.OutlineOnLightWarningMinor, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinor", - LightColorTokens.OutlineOnLightNegativeMinor, - overwrite, - ) - initial.add("outlineOnLightInfoMinor", LightColorTokens.OutlineOnLightInfoMinor, overwrite) - initial.add( - "outlineOnLightTransparentPositive", - LightColorTokens.OutlineOnLightTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarning", - LightColorTokens.OutlineOnLightTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegative", - LightColorTokens.OutlineOnLightTransparentNegative, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfo", - LightColorTokens.OutlineOnLightTransparentInfo, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryHover", - LightColorTokens.OutlineInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryActive", - LightColorTokens.OutlineInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryHover", - LightColorTokens.OutlineInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryActive", - LightColorTokens.OutlineInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryHover", - LightColorTokens.OutlineInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryActive", - LightColorTokens.OutlineInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefaultHover", - LightColorTokens.OutlineInverseTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefaultActive", - LightColorTokens.OutlineInverseTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefault", - LightColorTokens.OutlineInverseTransparentDefault, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryHover", - LightColorTokens.OutlineInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryActive", - LightColorTokens.OutlineInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryHover", - LightColorTokens.OutlineInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryActive", - LightColorTokens.OutlineInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryHover", - LightColorTokens.OutlineInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryActive", - LightColorTokens.OutlineInverseTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineInverseClearHover", LightColorTokens.OutlineInverseClearHover, overwrite) - initial.add("outlineInverseClearActive", LightColorTokens.OutlineInverseClearActive, overwrite) - initial.add("outlineInverseClear", LightColorTokens.OutlineInverseClear, overwrite) - initial.add("outlineInverseAccentHover", LightColorTokens.OutlineInverseAccentHover, overwrite) - initial.add( - "outlineInverseAccentActive", - LightColorTokens.OutlineInverseAccentActive, - overwrite, - ) - initial.add("outlineInverseAccent", LightColorTokens.OutlineInverseAccent, overwrite) - initial.add( - "outlineInverseAccentMinorHover", - LightColorTokens.OutlineInverseAccentMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMinorActive", - LightColorTokens.OutlineInverseAccentMinorActive, - overwrite, - ) - initial.add("outlineInverseAccentMinor", LightColorTokens.OutlineInverseAccentMinor, overwrite) - initial.add( - "outlineInverseTransparentAccentHover", - LightColorTokens.OutlineInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentActive", - LightColorTokens.OutlineInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccent", - LightColorTokens.OutlineInverseTransparentAccent, - overwrite, - ) - initial.add("outlineInversePromoHover", LightColorTokens.OutlineInversePromoHover, overwrite) - initial.add("outlineInversePromoActive", LightColorTokens.OutlineInversePromoActive, overwrite) - initial.add("outlineInversePromo", LightColorTokens.OutlineInversePromo, overwrite) - initial.add( - "outlineInversePromoMinorHover", - LightColorTokens.OutlineInversePromoMinorHover, - overwrite, - ) - initial.add( - "outlineInversePromoMinorActive", - LightColorTokens.OutlineInversePromoMinorActive, - overwrite, - ) - initial.add("outlineInversePromoMinor", LightColorTokens.OutlineInversePromoMinor, overwrite) - initial.add( - "outlineInversePositiveHover", - LightColorTokens.OutlineInversePositiveHover, - overwrite, - ) - initial.add( - "outlineInversePositiveActive", - LightColorTokens.OutlineInversePositiveActive, - overwrite, - ) - initial.add( - "outlineInverseWarningHover", - LightColorTokens.OutlineInverseWarningHover, - overwrite, - ) - initial.add( - "outlineInverseWarningActive", - LightColorTokens.OutlineInverseWarningActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeHover", - LightColorTokens.OutlineInverseNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeActive", - LightColorTokens.OutlineInverseNegativeActive, - overwrite, - ) - initial.add("outlineInverseInfoHover", LightColorTokens.OutlineInverseInfoHover, overwrite) - initial.add("outlineInverseInfoActive", LightColorTokens.OutlineInverseInfoActive, overwrite) - initial.add( - "outlineInversePositiveMinorHover", - LightColorTokens.OutlineInversePositiveMinorHover, - overwrite, - ) - initial.add( - "outlineInversePositiveMinorActive", - LightColorTokens.OutlineInversePositiveMinorActive, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorHover", - LightColorTokens.OutlineInverseWarningMinorHover, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorActive", - LightColorTokens.OutlineInverseWarningMinorActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorHover", - LightColorTokens.OutlineInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorActive", - LightColorTokens.OutlineInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorHover", - LightColorTokens.OutlineInverseInfoMinorHover, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorActive", - LightColorTokens.OutlineInverseInfoMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveHover", - LightColorTokens.OutlineInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveActive", - LightColorTokens.OutlineInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningHover", - LightColorTokens.OutlineInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningActive", - LightColorTokens.OutlineInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeHover", - LightColorTokens.OutlineInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeActive", - LightColorTokens.OutlineInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoHover", - LightColorTokens.OutlineInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoActive", - LightColorTokens.OutlineInverseTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineInverseAccentMainHover", - LightColorTokens.OutlineInverseAccentMainHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMainActive", - LightColorTokens.OutlineInverseAccentMainActive, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaHover", - LightColorTokens.OutlineInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaActive", - LightColorTokens.OutlineInverseAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyHover", - LightColorTokens.OutlineInverseAccentJoyHover, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyActive", - LightColorTokens.OutlineInverseAccentJoyActive, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EHover", - LightColorTokens.OutlineInverseAccentB2EHover, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EActive", - LightColorTokens.OutlineInverseAccentB2EActive, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandHover", - LightColorTokens.OutlineInverseAccentBrandHover, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandActive", - LightColorTokens.OutlineInverseAccentBrandActive, - overwrite, - ) - initial.add( - "outlineInverseAccentMainMinorHover", - LightColorTokens.OutlineInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMainMinorActive", - LightColorTokens.OutlineInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinorHover", - LightColorTokens.OutlineInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinorActive", - LightColorTokens.OutlineInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinorHover", - LightColorTokens.OutlineInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinorActive", - LightColorTokens.OutlineInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinorHover", - LightColorTokens.OutlineInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinorActive", - LightColorTokens.OutlineInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinorHover", - LightColorTokens.OutlineInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinorActive", - LightColorTokens.OutlineInverseAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMainHover", - LightColorTokens.OutlineInverseTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMainActive", - LightColorTokens.OutlineInverseTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthenaHover", - LightColorTokens.OutlineInverseTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthenaActive", - LightColorTokens.OutlineInverseTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoyHover", - LightColorTokens.OutlineInverseTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoyActive", - LightColorTokens.OutlineInverseTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2EHover", - LightColorTokens.OutlineInverseTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2EActive", - LightColorTokens.OutlineInverseTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrandHover", - LightColorTokens.OutlineInverseTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrandActive", - LightColorTokens.OutlineInverseTransparentAccentBrandActive, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimary", - LightColorTokens.OutlineInverseSolidPrimary, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondary", - LightColorTokens.OutlineInverseSolidSecondary, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiary", - LightColorTokens.OutlineInverseSolidTertiary, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimary", - LightColorTokens.OutlineInverseTransparentPrimary, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondary", - LightColorTokens.OutlineInverseTransparentSecondary, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiary", - LightColorTokens.OutlineInverseTransparentTertiary, - overwrite, - ) - initial.add("outlineInversePositive", LightColorTokens.OutlineInversePositive, overwrite) - initial.add("outlineInverseWarning", LightColorTokens.OutlineInverseWarning, overwrite) - initial.add("outlineInverseNegative", LightColorTokens.OutlineInverseNegative, overwrite) - initial.add("outlineInverseInfo", LightColorTokens.OutlineInverseInfo, overwrite) - initial.add( - "outlineInversePositiveMinor", - LightColorTokens.OutlineInversePositiveMinor, - overwrite, - ) - initial.add( - "outlineInverseWarningMinor", - LightColorTokens.OutlineInverseWarningMinor, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinor", - LightColorTokens.OutlineInverseNegativeMinor, - overwrite, - ) - initial.add("outlineInverseInfoMinor", LightColorTokens.OutlineInverseInfoMinor, overwrite) - initial.add( - "outlineInverseTransparentPositive", - LightColorTokens.OutlineInverseTransparentPositive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarning", - LightColorTokens.OutlineInverseTransparentWarning, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegative", - LightColorTokens.OutlineInverseTransparentNegative, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfo", - LightColorTokens.OutlineInverseTransparentInfo, - overwrite, - ) - initial.add("outlineInverseAccentMain", LightColorTokens.OutlineInverseAccentMain, overwrite) - initial.add( - "outlineInverseAccentAthena", - LightColorTokens.OutlineInverseAccentAthena, - overwrite, - ) - initial.add("outlineInverseAccentJoy", LightColorTokens.OutlineInverseAccentJoy, overwrite) - initial.add("outlineInverseAccentB2E", LightColorTokens.OutlineInverseAccentB2E, overwrite) - initial.add("outlineInverseAccentBrand", LightColorTokens.OutlineInverseAccentBrand, overwrite) - initial.add( - "outlineInverseAccentMainMinor", - LightColorTokens.OutlineInverseAccentMainMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinor", - LightColorTokens.OutlineInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinor", - LightColorTokens.OutlineInverseAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinor", - LightColorTokens.OutlineInverseAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinor", - LightColorTokens.OutlineInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMain", - LightColorTokens.OutlineInverseTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthena", - LightColorTokens.OutlineInverseTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoy", - LightColorTokens.OutlineInverseTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2E", - LightColorTokens.OutlineInverseTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrand", - LightColorTokens.OutlineInverseTransparentAccentBrand, - overwrite, - ) - initial.add("dataDefaultYellow", LightColorTokens.DataDefaultYellow, overwrite) - initial.add("dataDefaultYellowHover", LightColorTokens.DataDefaultYellowHover, overwrite) - initial.add("dataDefaultYellowActive", LightColorTokens.DataDefaultYellowActive, overwrite) - initial.add("dataDefaultYellowMinor", LightColorTokens.DataDefaultYellowMinor, overwrite) - initial.add( - "dataDefaultYellowMinorHover", - LightColorTokens.DataDefaultYellowMinorHover, - overwrite, - ) - initial.add( - "dataDefaultYellowMinorActive", - LightColorTokens.DataDefaultYellowMinorActive, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparent", - LightColorTokens.DataDefaultYellowTransparent, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentHover", - LightColorTokens.DataDefaultYellowTransparentHover, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentActive", - LightColorTokens.DataDefaultYellowTransparentActive, - overwrite, - ) - initial.add("dataOnDarkYellow", LightColorTokens.DataOnDarkYellow, overwrite) - initial.add("dataOnDarkYellowHover", LightColorTokens.DataOnDarkYellowHover, overwrite) - initial.add("dataOnDarkYellowActive", LightColorTokens.DataOnDarkYellowActive, overwrite) - initial.add("dataOnDarkYellowMinor", LightColorTokens.DataOnDarkYellowMinor, overwrite) - initial.add( - "dataOnDarkYellowMinorHover", - LightColorTokens.DataOnDarkYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowMinorActive", - LightColorTokens.DataOnDarkYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparent", - LightColorTokens.DataOnDarkYellowTransparent, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentHover", - LightColorTokens.DataOnDarkYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentActive", - LightColorTokens.DataOnDarkYellowTransparentActive, - overwrite, - ) - initial.add("dataOnLightYellow", LightColorTokens.DataOnLightYellow, overwrite) - initial.add("dataOnLightYellowHover", LightColorTokens.DataOnLightYellowHover, overwrite) - initial.add("dataOnLightYellowActive", LightColorTokens.DataOnLightYellowActive, overwrite) - initial.add("dataOnLightYellowMinor", LightColorTokens.DataOnLightYellowMinor, overwrite) - initial.add( - "dataOnLightYellowMinorHover", - LightColorTokens.DataOnLightYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnLightYellowMinorActive", - LightColorTokens.DataOnLightYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparent", - LightColorTokens.DataOnLightYellowTransparent, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentHover", - LightColorTokens.DataOnLightYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentActive", - LightColorTokens.DataOnLightYellowTransparentActive, - overwrite, - ) - initial.add("dataInverseYellow", LightColorTokens.DataInverseYellow, overwrite) - initial.add("dataInverseYellowHover", LightColorTokens.DataInverseYellowHover, overwrite) - initial.add("dataInverseYellowActive", LightColorTokens.DataInverseYellowActive, overwrite) - initial.add("dataInverseYellowMinor", LightColorTokens.DataInverseYellowMinor, overwrite) - initial.add( - "dataInverseYellowMinorHover", - LightColorTokens.DataInverseYellowMinorHover, - overwrite, - ) - initial.add( - "dataInverseYellowMinorActive", - LightColorTokens.DataInverseYellowMinorActive, - overwrite, - ) - initial.add( - "dataInverseYellowTransparent", - LightColorTokens.DataInverseYellowTransparent, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentHover", - LightColorTokens.DataInverseYellowTransparentHover, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentActive", - LightColorTokens.DataInverseYellowTransparentActive, - overwrite, - ) - initial.add("surfaceInverseAccentJoy", DarkColorTokens.SurfaceInverseAccentJoy, overwrite) - initial.add( - "surfaceInverseAccentJoyHover", - DarkColorTokens.SurfaceInverseAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyActive", - DarkColorTokens.SurfaceInverseAccentJoyActive, - overwrite, - ) - return StylesSaluteColors(initial) -} - -/** - * Цвета [StylesSaluteColors] для темной темы - */ -@Suppress("LongMethod") -public fun darkStylesSaluteColors(overrideColors: ColorOverrideScope.() -> Unit = {}): StylesSaluteColors { - val colorOverrideScope = ColorOverrideScope() - overrideColors.invoke(colorOverrideScope) - val overwrite = colorOverrideScope.overrideMap - val initial = mutableMapOf() - initial.add("textDefaultPrimaryHover", DarkColorTokens.TextDefaultPrimaryHover, overwrite) - initial.add("textDefaultPrimaryActive", DarkColorTokens.TextDefaultPrimaryActive, overwrite) - initial.add("textDefaultPrimary", DarkColorTokens.TextDefaultPrimary, overwrite) - initial.add( - "textDefaultPrimaryBrightness", - DarkColorTokens.TextDefaultPrimaryBrightness, - overwrite, - ) - initial.add("textDefaultSecondaryHover", DarkColorTokens.TextDefaultSecondaryHover, overwrite) - initial.add("textDefaultSecondaryActive", DarkColorTokens.TextDefaultSecondaryActive, overwrite) - initial.add("textDefaultSecondary", DarkColorTokens.TextDefaultSecondary, overwrite) - initial.add("textDefaultTertiaryHover", DarkColorTokens.TextDefaultTertiaryHover, overwrite) - initial.add("textDefaultTertiaryActive", DarkColorTokens.TextDefaultTertiaryActive, overwrite) - initial.add("textDefaultTertiary", DarkColorTokens.TextDefaultTertiary, overwrite) - initial.add("textDefaultParagraphHover", DarkColorTokens.TextDefaultParagraphHover, overwrite) - initial.add("textDefaultParagraphActive", DarkColorTokens.TextDefaultParagraphActive, overwrite) - initial.add("textDefaultParagraph", DarkColorTokens.TextDefaultParagraph, overwrite) - initial.add("textDefaultAccentHover", DarkColorTokens.TextDefaultAccentHover, overwrite) - initial.add("textDefaultAccentActive", DarkColorTokens.TextDefaultAccentActive, overwrite) - initial.add("textDefaultAccent", DarkColorTokens.TextDefaultAccent, overwrite) - initial.add( - "textDefaultAccentMinorHover", - DarkColorTokens.TextDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMinorActive", - DarkColorTokens.TextDefaultAccentMinorActive, - overwrite, - ) - initial.add("textDefaultAccentMinor", DarkColorTokens.TextDefaultAccentMinor, overwrite) - initial.add("textDefaultPromoHover", DarkColorTokens.TextDefaultPromoHover, overwrite) - initial.add("textDefaultPromoActive", DarkColorTokens.TextDefaultPromoActive, overwrite) - initial.add("textDefaultPromo", DarkColorTokens.TextDefaultPromo, overwrite) - initial.add("textDefaultPromoMinorHover", DarkColorTokens.TextDefaultPromoMinorHover, overwrite) - initial.add( - "textDefaultPromoMinorActive", - DarkColorTokens.TextDefaultPromoMinorActive, - overwrite, - ) - initial.add("textDefaultPromoMinor", DarkColorTokens.TextDefaultPromoMinor, overwrite) - initial.add("textDefaultPositiveHover", DarkColorTokens.TextDefaultPositiveHover, overwrite) - initial.add("textDefaultPositiveActive", DarkColorTokens.TextDefaultPositiveActive, overwrite) - initial.add("textDefaultPositive", DarkColorTokens.TextDefaultPositive, overwrite) - initial.add("textDefaultWarningHover", DarkColorTokens.TextDefaultWarningHover, overwrite) - initial.add("textDefaultWarningActive", DarkColorTokens.TextDefaultWarningActive, overwrite) - initial.add("textDefaultWarning", DarkColorTokens.TextDefaultWarning, overwrite) - initial.add("textDefaultNegativeHover", DarkColorTokens.TextDefaultNegativeHover, overwrite) - initial.add("textDefaultNegativeActive", DarkColorTokens.TextDefaultNegativeActive, overwrite) - initial.add("textDefaultNegative", DarkColorTokens.TextDefaultNegative, overwrite) - initial.add("textDefaultInfoHover", DarkColorTokens.TextDefaultInfoHover, overwrite) - initial.add("textDefaultInfoActive", DarkColorTokens.TextDefaultInfoActive, overwrite) - initial.add( - "textDefaultPositiveMinorHover", - DarkColorTokens.TextDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "textDefaultPositiveMinorActive", - DarkColorTokens.TextDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "textDefaultWarningMinorHover", - DarkColorTokens.TextDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "textDefaultWarningMinorActive", - DarkColorTokens.TextDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorHover", - DarkColorTokens.TextDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "textDefaultNegativeMinorActive", - DarkColorTokens.TextDefaultNegativeMinorActive, - overwrite, - ) - initial.add("textDefaultInfoMinorHover", DarkColorTokens.TextDefaultInfoMinorHover, overwrite) - initial.add("textDefaultInfoMinorActive", DarkColorTokens.TextDefaultInfoMinorActive, overwrite) - initial.add( - "textDefaultAccentAthenaHover", - DarkColorTokens.TextDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaActive", - DarkColorTokens.TextDefaultAccentAthenaActive, - overwrite, - ) - initial.add("textDefaultAccentAthena", DarkColorTokens.TextDefaultAccentAthena, overwrite) - initial.add("textDefaultAccentJoyHover", DarkColorTokens.TextDefaultAccentJoyHover, overwrite) - initial.add("textDefaultAccentJoyActive", DarkColorTokens.TextDefaultAccentJoyActive, overwrite) - initial.add("textDefaultAccentJoy", DarkColorTokens.TextDefaultAccentJoy, overwrite) - initial.add("textDefaultAccentB2EHover", DarkColorTokens.TextDefaultAccentB2EHover, overwrite) - initial.add("textDefaultAccentB2EActive", DarkColorTokens.TextDefaultAccentB2EActive, overwrite) - initial.add("textDefaultAccentB2E", DarkColorTokens.TextDefaultAccentB2E, overwrite) - initial.add( - "textDefaultAccentBrandHover", - DarkColorTokens.TextDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "textDefaultAccentBrandActive", - DarkColorTokens.TextDefaultAccentBrandActive, - overwrite, - ) - initial.add("textDefaultAccentBrand", DarkColorTokens.TextDefaultAccentBrand, overwrite) - initial.add("textDefaultAccentMainHover", DarkColorTokens.TextDefaultAccentMainHover, overwrite) - initial.add( - "textDefaultAccentMainActive", - DarkColorTokens.TextDefaultAccentMainActive, - overwrite, - ) - initial.add("textDefaultAccentMain", DarkColorTokens.TextDefaultAccentMain, overwrite) - initial.add("textDefaultAccentMainMinor", DarkColorTokens.TextDefaultAccentMainMinor, overwrite) - initial.add( - "textDefaultAccentMainMinorHover", - DarkColorTokens.TextDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentMainMinorActive", - DarkColorTokens.TextDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinor", - DarkColorTokens.TextDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinorHover", - DarkColorTokens.TextDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentAthenaMinorActive", - DarkColorTokens.TextDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add("textDefaultAccentJoyMinor", DarkColorTokens.TextDefaultAccentJoyMinor, overwrite) - initial.add("textDefaultAccentB2EMinor", DarkColorTokens.TextDefaultAccentB2EMinor, overwrite) - initial.add( - "textDefaultAccentBrandMinor", - DarkColorTokens.TextDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "textDefaultAccentBrandMinorHover", - DarkColorTokens.TextDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentBrandMinorActive", - DarkColorTokens.TextDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add("textDefaultInfo", DarkColorTokens.TextDefaultInfo, overwrite) - initial.add("textDefaultPositiveMinor", DarkColorTokens.TextDefaultPositiveMinor, overwrite) - initial.add("textDefaultWarningMinor", DarkColorTokens.TextDefaultWarningMinor, overwrite) - initial.add("textDefaultNegativeMinor", DarkColorTokens.TextDefaultNegativeMinor, overwrite) - initial.add("textDefaultInfoMinor", DarkColorTokens.TextDefaultInfoMinor, overwrite) - initial.add( - "textDefaultAccentJoyMinorHover", - DarkColorTokens.TextDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentJoyMinorActive", - DarkColorTokens.TextDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "textDefaultAccentB2EMinorHover", - DarkColorTokens.TextDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textDefaultAccentB2EMinorActive", - DarkColorTokens.TextDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add("textOnDarkPrimaryHover", DarkColorTokens.TextOnDarkPrimaryHover, overwrite) - initial.add("textOnDarkPrimaryActive", DarkColorTokens.TextOnDarkPrimaryActive, overwrite) - initial.add("textOnDarkPrimary", DarkColorTokens.TextOnDarkPrimary, overwrite) - initial.add( - "textOnDarkPrimaryBrightness", - DarkColorTokens.TextOnDarkPrimaryBrightness, - overwrite, - ) - initial.add("textOnDarkSecondaryHover", DarkColorTokens.TextOnDarkSecondaryHover, overwrite) - initial.add("textOnDarkSecondaryActive", DarkColorTokens.TextOnDarkSecondaryActive, overwrite) - initial.add("textOnDarkSecondary", DarkColorTokens.TextOnDarkSecondary, overwrite) - initial.add("textOnDarkTertiaryHover", DarkColorTokens.TextOnDarkTertiaryHover, overwrite) - initial.add("textOnDarkTertiaryActive", DarkColorTokens.TextOnDarkTertiaryActive, overwrite) - initial.add("textOnDarkTertiary", DarkColorTokens.TextOnDarkTertiary, overwrite) - initial.add("textOnDarkParagraphHover", DarkColorTokens.TextOnDarkParagraphHover, overwrite) - initial.add("textOnDarkParagraphActive", DarkColorTokens.TextOnDarkParagraphActive, overwrite) - initial.add("textOnDarkParagraph", DarkColorTokens.TextOnDarkParagraph, overwrite) - initial.add("textOnDarkAccentHover", DarkColorTokens.TextOnDarkAccentHover, overwrite) - initial.add("textOnDarkAccentActive", DarkColorTokens.TextOnDarkAccentActive, overwrite) - initial.add("textOnDarkAccent", DarkColorTokens.TextOnDarkAccent, overwrite) - initial.add("textOnDarkAccentMinorHover", DarkColorTokens.TextOnDarkAccentMinorHover, overwrite) - initial.add( - "textOnDarkAccentMinorActive", - DarkColorTokens.TextOnDarkAccentMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentMinor", DarkColorTokens.TextOnDarkAccentMinor, overwrite) - initial.add("textOnDarkPromoHover", DarkColorTokens.TextOnDarkPromoHover, overwrite) - initial.add("textOnDarkPromoActive", DarkColorTokens.TextOnDarkPromoActive, overwrite) - initial.add("textOnDarkPromo", DarkColorTokens.TextOnDarkPromo, overwrite) - initial.add("textOnDarkPromoMinorHover", DarkColorTokens.TextOnDarkPromoMinorHover, overwrite) - initial.add("textOnDarkPromoMinorActive", DarkColorTokens.TextOnDarkPromoMinorActive, overwrite) - initial.add("textOnDarkPromoMinor", DarkColorTokens.TextOnDarkPromoMinor, overwrite) - initial.add("textOnDarkPositiveHover", DarkColorTokens.TextOnDarkPositiveHover, overwrite) - initial.add("textOnDarkPositiveActive", DarkColorTokens.TextOnDarkPositiveActive, overwrite) - initial.add("textOnDarkPositive", DarkColorTokens.TextOnDarkPositive, overwrite) - initial.add("textOnDarkWarningHover", DarkColorTokens.TextOnDarkWarningHover, overwrite) - initial.add("textOnDarkWarningActive", DarkColorTokens.TextOnDarkWarningActive, overwrite) - initial.add("textOnDarkWarning", DarkColorTokens.TextOnDarkWarning, overwrite) - initial.add("textOnDarkNegativeHover", DarkColorTokens.TextOnDarkNegativeHover, overwrite) - initial.add("textOnDarkNegativeActive", DarkColorTokens.TextOnDarkNegativeActive, overwrite) - initial.add("textOnDarkNegative", DarkColorTokens.TextOnDarkNegative, overwrite) - initial.add("textOnDarkInfoHover", DarkColorTokens.TextOnDarkInfoHover, overwrite) - initial.add("textOnDarkInfoActive", DarkColorTokens.TextOnDarkInfoActive, overwrite) - initial.add( - "textOnDarkPositiveMinorHover", - DarkColorTokens.TextOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnDarkPositiveMinorActive", - DarkColorTokens.TextOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorHover", - DarkColorTokens.TextOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "textOnDarkWarningMinorActive", - DarkColorTokens.TextOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorHover", - DarkColorTokens.TextOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnDarkNegativeMinorActive", - DarkColorTokens.TextOnDarkNegativeMinorActive, - overwrite, - ) - initial.add("textOnDarkInfoMinorHover", DarkColorTokens.TextOnDarkInfoMinorHover, overwrite) - initial.add("textOnDarkInfoMinorActive", DarkColorTokens.TextOnDarkInfoMinorActive, overwrite) - initial.add( - "textOnDarkAccentAthenaHover", - DarkColorTokens.TextOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaActive", - DarkColorTokens.TextOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("textOnDarkAccentAthena", DarkColorTokens.TextOnDarkAccentAthena, overwrite) - initial.add("textOnDarkAccentJoyHover", DarkColorTokens.TextOnDarkAccentJoyHover, overwrite) - initial.add("textOnDarkAccentJoyActive", DarkColorTokens.TextOnDarkAccentJoyActive, overwrite) - initial.add("textOnDarkAccentJoy", DarkColorTokens.TextOnDarkAccentJoy, overwrite) - initial.add("textOnDarkAccentB2EHover", DarkColorTokens.TextOnDarkAccentB2EHover, overwrite) - initial.add("textOnDarkAccentB2EActive", DarkColorTokens.TextOnDarkAccentB2EActive, overwrite) - initial.add("textOnDarkAccentB2E", DarkColorTokens.TextOnDarkAccentB2E, overwrite) - initial.add("textOnDarkAccentBrandHover", DarkColorTokens.TextOnDarkAccentBrandHover, overwrite) - initial.add( - "textOnDarkAccentBrandActive", - DarkColorTokens.TextOnDarkAccentBrandActive, - overwrite, - ) - initial.add("textOnDarkAccentBrand", DarkColorTokens.TextOnDarkAccentBrand, overwrite) - initial.add("textOnDarkAccentMainHover", DarkColorTokens.TextOnDarkAccentMainHover, overwrite) - initial.add("textOnDarkAccentMainActive", DarkColorTokens.TextOnDarkAccentMainActive, overwrite) - initial.add("textOnDarkAccentMain", DarkColorTokens.TextOnDarkAccentMain, overwrite) - initial.add("textOnDarkAccentMainMinor", DarkColorTokens.TextOnDarkAccentMainMinor, overwrite) - initial.add( - "textOnDarkAccentMainMinorHover", - DarkColorTokens.TextOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentMainMinorActive", - DarkColorTokens.TextOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinor", - DarkColorTokens.TextOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinorHover", - DarkColorTokens.TextOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentAthenaMinorActive", - DarkColorTokens.TextOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentB2EMinor", DarkColorTokens.TextOnDarkAccentB2EMinor, overwrite) - initial.add( - "textOnDarkAccentB2EMinorHover", - DarkColorTokens.TextOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentB2EMinorActive", - DarkColorTokens.TextOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentBrandMinor", DarkColorTokens.TextOnDarkAccentBrandMinor, overwrite) - initial.add( - "textOnDarkAccentBrandMinorHover", - DarkColorTokens.TextOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentBrandMinorActive", - DarkColorTokens.TextOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add("textOnDarkAccentJoyMinor", DarkColorTokens.TextOnDarkAccentJoyMinor, overwrite) - initial.add( - "textOnDarkAccentJoyMinorHover", - DarkColorTokens.TextOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textOnDarkAccentJoyMinorActive", - DarkColorTokens.TextOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add("textOnDarkInfo", DarkColorTokens.TextOnDarkInfo, overwrite) - initial.add("textOnDarkPositiveMinor", DarkColorTokens.TextOnDarkPositiveMinor, overwrite) - initial.add("textOnDarkWarningMinor", DarkColorTokens.TextOnDarkWarningMinor, overwrite) - initial.add("textOnDarkNegativeMinor", DarkColorTokens.TextOnDarkNegativeMinor, overwrite) - initial.add("textOnDarkInfoMinor", DarkColorTokens.TextOnDarkInfoMinor, overwrite) - initial.add("textOnLightPrimaryHover", DarkColorTokens.TextOnLightPrimaryHover, overwrite) - initial.add("textOnLightPrimaryActive", DarkColorTokens.TextOnLightPrimaryActive, overwrite) - initial.add("textOnLightPrimary", DarkColorTokens.TextOnLightPrimary, overwrite) - initial.add( - "textOnLightPrimaryBrightness", - DarkColorTokens.TextOnLightPrimaryBrightness, - overwrite, - ) - initial.add("textOnLightSecondaryHover", DarkColorTokens.TextOnLightSecondaryHover, overwrite) - initial.add("textOnLightSecondaryActive", DarkColorTokens.TextOnLightSecondaryActive, overwrite) - initial.add("textOnLightSecondary", DarkColorTokens.TextOnLightSecondary, overwrite) - initial.add("textOnLightTertiaryHover", DarkColorTokens.TextOnLightTertiaryHover, overwrite) - initial.add("textOnLightTertiaryActive", DarkColorTokens.TextOnLightTertiaryActive, overwrite) - initial.add("textOnLightTertiary", DarkColorTokens.TextOnLightTertiary, overwrite) - initial.add("textOnLightParagraphHover", DarkColorTokens.TextOnLightParagraphHover, overwrite) - initial.add("textOnLightParagraphActive", DarkColorTokens.TextOnLightParagraphActive, overwrite) - initial.add("textOnLightParagraph", DarkColorTokens.TextOnLightParagraph, overwrite) - initial.add("textOnLightAccentHover", DarkColorTokens.TextOnLightAccentHover, overwrite) - initial.add("textOnLightAccentActive", DarkColorTokens.TextOnLightAccentActive, overwrite) - initial.add("textOnLightAccent", DarkColorTokens.TextOnLightAccent, overwrite) - initial.add( - "textOnLightAccentMinorHover", - DarkColorTokens.TextOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMinorActive", - DarkColorTokens.TextOnLightAccentMinorActive, - overwrite, - ) - initial.add("textOnLightAccentMinor", DarkColorTokens.TextOnLightAccentMinor, overwrite) - initial.add("textOnLightPromoHover", DarkColorTokens.TextOnLightPromoHover, overwrite) - initial.add("textOnLightPromoActive", DarkColorTokens.TextOnLightPromoActive, overwrite) - initial.add("textOnLightPromo", DarkColorTokens.TextOnLightPromo, overwrite) - initial.add("textOnLightPromoMinorHover", DarkColorTokens.TextOnLightPromoMinorHover, overwrite) - initial.add( - "textOnLightPromoMinorActive", - DarkColorTokens.TextOnLightPromoMinorActive, - overwrite, - ) - initial.add("textOnLightPromoMinor", DarkColorTokens.TextOnLightPromoMinor, overwrite) - initial.add("textOnLightPositiveHover", DarkColorTokens.TextOnLightPositiveHover, overwrite) - initial.add("textOnLightPositiveActive", DarkColorTokens.TextOnLightPositiveActive, overwrite) - initial.add("textOnLightPositive", DarkColorTokens.TextOnLightPositive, overwrite) - initial.add("textOnLightWarningHover", DarkColorTokens.TextOnLightWarningHover, overwrite) - initial.add("textOnLightWarningActive", DarkColorTokens.TextOnLightWarningActive, overwrite) - initial.add("textOnLightWarning", DarkColorTokens.TextOnLightWarning, overwrite) - initial.add("textOnLightNegativeHover", DarkColorTokens.TextOnLightNegativeHover, overwrite) - initial.add("textOnLightNegativeActive", DarkColorTokens.TextOnLightNegativeActive, overwrite) - initial.add("textOnLightNegative", DarkColorTokens.TextOnLightNegative, overwrite) - initial.add("textOnLightInfoHover", DarkColorTokens.TextOnLightInfoHover, overwrite) - initial.add("textOnLightInfoActive", DarkColorTokens.TextOnLightInfoActive, overwrite) - initial.add( - "textOnLightPositiveMinorHover", - DarkColorTokens.TextOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "textOnLightPositiveMinorActive", - DarkColorTokens.TextOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "textOnLightWarningMinorHover", - DarkColorTokens.TextOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "textOnLightWarningMinorActive", - DarkColorTokens.TextOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorHover", - DarkColorTokens.TextOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "textOnLightNegativeMinorActive", - DarkColorTokens.TextOnLightNegativeMinorActive, - overwrite, - ) - initial.add("textOnLightInfoMinorHover", DarkColorTokens.TextOnLightInfoMinorHover, overwrite) - initial.add("textOnLightInfoMinorActive", DarkColorTokens.TextOnLightInfoMinorActive, overwrite) - initial.add( - "textOnLightAccentAthenaHover", - DarkColorTokens.TextOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaActive", - DarkColorTokens.TextOnLightAccentAthenaActive, - overwrite, - ) - initial.add("textOnLightAccentAthena", DarkColorTokens.TextOnLightAccentAthena, overwrite) - initial.add("textOnLightAccentJoyHover", DarkColorTokens.TextOnLightAccentJoyHover, overwrite) - initial.add("textOnLightAccentJoyActive", DarkColorTokens.TextOnLightAccentJoyActive, overwrite) - initial.add("textOnLightAccentJoy", DarkColorTokens.TextOnLightAccentJoy, overwrite) - initial.add("textOnLightAccentB2EHover", DarkColorTokens.TextOnLightAccentB2EHover, overwrite) - initial.add("textOnLightAccentB2EActive", DarkColorTokens.TextOnLightAccentB2EActive, overwrite) - initial.add("textOnLightAccentB2E", DarkColorTokens.TextOnLightAccentB2E, overwrite) - initial.add( - "textOnLightAccentBrandHover", - DarkColorTokens.TextOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "textOnLightAccentBrandActive", - DarkColorTokens.TextOnLightAccentBrandActive, - overwrite, - ) - initial.add("textOnLightAccentBrand", DarkColorTokens.TextOnLightAccentBrand, overwrite) - initial.add("textOnLightAccentMainHover", DarkColorTokens.TextOnLightAccentMainHover, overwrite) - initial.add( - "textOnLightAccentMainActive", - DarkColorTokens.TextOnLightAccentMainActive, - overwrite, - ) - initial.add("textOnLightAccentMain", DarkColorTokens.TextOnLightAccentMain, overwrite) - initial.add("textOnLightAccentMainMinor", DarkColorTokens.TextOnLightAccentMainMinor, overwrite) - initial.add( - "textOnLightAccentMainMinorHover", - DarkColorTokens.TextOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentMainMinorActive", - DarkColorTokens.TextOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinor", - DarkColorTokens.TextOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinorHover", - DarkColorTokens.TextOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentAthenaMinorActive", - DarkColorTokens.TextOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add("textOnLightAccentJoyMinor", DarkColorTokens.TextOnLightAccentJoyMinor, overwrite) - initial.add( - "textOnLightAccentJoyMinorHover", - DarkColorTokens.TextOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentJoyMinorActive", - DarkColorTokens.TextOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add("textOnLightAccentB2EMinor", DarkColorTokens.TextOnLightAccentB2EMinor, overwrite) - initial.add( - "textOnLightAccentB2EMinorHover", - DarkColorTokens.TextOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentB2EMinorActive", - DarkColorTokens.TextOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinor", - DarkColorTokens.TextOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinorHover", - DarkColorTokens.TextOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textOnLightAccentBrandMinorActive", - DarkColorTokens.TextOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add("textOnLightInfo", DarkColorTokens.TextOnLightInfo, overwrite) - initial.add("textOnLightPositiveMinor", DarkColorTokens.TextOnLightPositiveMinor, overwrite) - initial.add("textOnLightWarningMinor", DarkColorTokens.TextOnLightWarningMinor, overwrite) - initial.add("textOnLightNegativeMinor", DarkColorTokens.TextOnLightNegativeMinor, overwrite) - initial.add("textOnLightInfoMinor", DarkColorTokens.TextOnLightInfoMinor, overwrite) - initial.add("textInversePrimaryHover", DarkColorTokens.TextInversePrimaryHover, overwrite) - initial.add("textInversePrimaryActive", DarkColorTokens.TextInversePrimaryActive, overwrite) - initial.add("textInversePrimary", DarkColorTokens.TextInversePrimary, overwrite) - initial.add( - "textInversePrimaryBrightness", - DarkColorTokens.TextInversePrimaryBrightness, - overwrite, - ) - initial.add("textInverseSecondaryHover", DarkColorTokens.TextInverseSecondaryHover, overwrite) - initial.add("textInverseSecondaryActive", DarkColorTokens.TextInverseSecondaryActive, overwrite) - initial.add("textInverseSecondary", DarkColorTokens.TextInverseSecondary, overwrite) - initial.add("textInverseTertiaryHover", DarkColorTokens.TextInverseTertiaryHover, overwrite) - initial.add("textInverseTertiaryActive", DarkColorTokens.TextInverseTertiaryActive, overwrite) - initial.add("textInverseTertiary", DarkColorTokens.TextInverseTertiary, overwrite) - initial.add("textInverseParagraphHover", DarkColorTokens.TextInverseParagraphHover, overwrite) - initial.add("textInverseParagraphActive", DarkColorTokens.TextInverseParagraphActive, overwrite) - initial.add("textInverseParagraph", DarkColorTokens.TextInverseParagraph, overwrite) - initial.add("textInverseAccentHover", DarkColorTokens.TextInverseAccentHover, overwrite) - initial.add("textInverseAccentActive", DarkColorTokens.TextInverseAccentActive, overwrite) - initial.add("textInverseAccent", DarkColorTokens.TextInverseAccent, overwrite) - initial.add( - "textInverseAccentMinorHover", - DarkColorTokens.TextInverseAccentMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMinorActive", - DarkColorTokens.TextInverseAccentMinorActive, - overwrite, - ) - initial.add("textInverseAccentMinor", DarkColorTokens.TextInverseAccentMinor, overwrite) - initial.add("textInversePromoHover", DarkColorTokens.TextInversePromoHover, overwrite) - initial.add("textInversePromoActive", DarkColorTokens.TextInversePromoActive, overwrite) - initial.add("textInversePromo", DarkColorTokens.TextInversePromo, overwrite) - initial.add("textInversePromoMinorHover", DarkColorTokens.TextInversePromoMinorHover, overwrite) - initial.add( - "textInversePromoMinorActive", - DarkColorTokens.TextInversePromoMinorActive, - overwrite, - ) - initial.add("textInversePromoMinor", DarkColorTokens.TextInversePromoMinor, overwrite) - initial.add("textInversePositiveHover", DarkColorTokens.TextInversePositiveHover, overwrite) - initial.add("textInversePositiveActive", DarkColorTokens.TextInversePositiveActive, overwrite) - initial.add("textInverseWarningHover", DarkColorTokens.TextInverseWarningHover, overwrite) - initial.add("textInverseWarningActive", DarkColorTokens.TextInverseWarningActive, overwrite) - initial.add("textInverseNegativeHover", DarkColorTokens.TextInverseNegativeHover, overwrite) - initial.add("textInverseNegativeActive", DarkColorTokens.TextInverseNegativeActive, overwrite) - initial.add("textInverseInfoHover", DarkColorTokens.TextInverseInfoHover, overwrite) - initial.add("textInverseInfoActive", DarkColorTokens.TextInverseInfoActive, overwrite) - initial.add( - "textInversePositiveMinorHover", - DarkColorTokens.TextInversePositiveMinorHover, - overwrite, - ) - initial.add( - "textInversePositiveMinorActive", - DarkColorTokens.TextInversePositiveMinorActive, - overwrite, - ) - initial.add( - "textInverseWarningMinorHover", - DarkColorTokens.TextInverseWarningMinorHover, - overwrite, - ) - initial.add( - "textInverseWarningMinorActive", - DarkColorTokens.TextInverseWarningMinorActive, - overwrite, - ) - initial.add( - "textInverseNegativeMinorHover", - DarkColorTokens.TextInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "textInverseNegativeMinorActive", - DarkColorTokens.TextInverseNegativeMinorActive, - overwrite, - ) - initial.add("textInverseInfoMinorHover", DarkColorTokens.TextInverseInfoMinorHover, overwrite) - initial.add("textInverseInfoMinorActive", DarkColorTokens.TextInverseInfoMinorActive, overwrite) - initial.add("textInverseAccentMain", DarkColorTokens.TextInverseAccentMain, overwrite) - initial.add("textInverseAccentMainHover", DarkColorTokens.TextInverseAccentMainHover, overwrite) - initial.add( - "textInverseAccentMainActive", - DarkColorTokens.TextInverseAccentMainActive, - overwrite, - ) - initial.add("textInverseAccentAthena", DarkColorTokens.TextInverseAccentAthena, overwrite) - initial.add( - "textInverseAccentAthenaHover", - DarkColorTokens.TextInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "textInverseAccentAthenaActive", - DarkColorTokens.TextInverseAccentAthenaActive, - overwrite, - ) - initial.add("textInverseAccentJoy", DarkColorTokens.TextInverseAccentJoy, overwrite) - initial.add("textInverseAccentJoyHover", DarkColorTokens.TextInverseAccentJoyHover, overwrite) - initial.add("textInverseAccentJoyActive", DarkColorTokens.TextInverseAccentJoyActive, overwrite) - initial.add("textInverseAccentBrand", DarkColorTokens.TextInverseAccentBrand, overwrite) - initial.add( - "textInverseAccentBrandHover", - DarkColorTokens.TextInverseAccentBrandHover, - overwrite, - ) - initial.add( - "textInverseAccentBrandActive", - DarkColorTokens.TextInverseAccentBrandActive, - overwrite, - ) - initial.add( - "textInverseAccentMainMinorHover", - DarkColorTokens.TextInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentMainMinorActive", - DarkColorTokens.TextInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentAthenaMinorHover", - DarkColorTokens.TextInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentAthenaMinorActive", - DarkColorTokens.TextInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentJoyMinorHover", - DarkColorTokens.TextInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentJoyMinorActive", - DarkColorTokens.TextInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentB2EMinorHover", - DarkColorTokens.TextInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentB2EMinorActive", - DarkColorTokens.TextInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinorHover", - DarkColorTokens.TextInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinorActive", - DarkColorTokens.TextInverseAccentBrandMinorActive, - overwrite, - ) - initial.add("textInverseAccentB2E", DarkColorTokens.TextInverseAccentB2E, overwrite) - initial.add("textInverseAccentB2EHover", DarkColorTokens.TextInverseAccentB2EHover, overwrite) - initial.add("textInverseAccentB2EActive", DarkColorTokens.TextInverseAccentB2EActive, overwrite) - initial.add("textInversePositive", DarkColorTokens.TextInversePositive, overwrite) - initial.add("textInverseWarning", DarkColorTokens.TextInverseWarning, overwrite) - initial.add("textInverseNegative", DarkColorTokens.TextInverseNegative, overwrite) - initial.add("textInverseInfo", DarkColorTokens.TextInverseInfo, overwrite) - initial.add("textInversePositiveMinor", DarkColorTokens.TextInversePositiveMinor, overwrite) - initial.add("textInverseWarningMinor", DarkColorTokens.TextInverseWarningMinor, overwrite) - initial.add("textInverseNegativeMinor", DarkColorTokens.TextInverseNegativeMinor, overwrite) - initial.add("textInverseInfoMinor", DarkColorTokens.TextInverseInfoMinor, overwrite) - initial.add("textInverseAccentMainMinor", DarkColorTokens.TextInverseAccentMainMinor, overwrite) - initial.add("textInverseAccentJoyMinor", DarkColorTokens.TextInverseAccentJoyMinor, overwrite) - initial.add("textInverseAccentB2EMinor", DarkColorTokens.TextInverseAccentB2EMinor, overwrite) - initial.add( - "textInverseAccentAthenaMinor", - DarkColorTokens.TextInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "textInverseAccentBrandMinor", - DarkColorTokens.TextInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryHover", - DarkColorTokens.SurfaceDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidPrimaryActive", - DarkColorTokens.SurfaceDefaultSolidPrimaryActive, - overwrite, - ) - initial.add("surfaceDefaultSolidPrimary", DarkColorTokens.SurfaceDefaultSolidPrimary, overwrite) - initial.add( - "surfaceDefaultSolidPrimaryBrightness", - DarkColorTokens.SurfaceDefaultSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryHover", - DarkColorTokens.SurfaceDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondaryActive", - DarkColorTokens.SurfaceDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidSecondary", - DarkColorTokens.SurfaceDefaultSolidSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryHover", - DarkColorTokens.SurfaceDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiaryActive", - DarkColorTokens.SurfaceDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultSolidTertiary", - DarkColorTokens.SurfaceDefaultSolidTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardHover", - DarkColorTokens.SurfaceDefaultSolidCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidCardActive", - DarkColorTokens.SurfaceDefaultSolidCardActive, - overwrite, - ) - initial.add("surfaceDefaultSolidCard", DarkColorTokens.SurfaceDefaultSolidCard, overwrite) - initial.add( - "surfaceDefaultSolidCardBrightness", - DarkColorTokens.SurfaceDefaultSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultHover", - DarkColorTokens.SurfaceDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceDefaultSolidDefaultActive", - DarkColorTokens.SurfaceDefaultSolidDefaultActive, - overwrite, - ) - initial.add("surfaceDefaultSolidDefault", DarkColorTokens.SurfaceDefaultSolidDefault, overwrite) - initial.add( - "surfaceDefaultTransparentPrimaryHover", - DarkColorTokens.SurfaceDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimaryActive", - DarkColorTokens.SurfaceDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPrimary", - DarkColorTokens.SurfaceDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryHover", - DarkColorTokens.SurfaceDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondaryActive", - DarkColorTokens.SurfaceDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentSecondary", - DarkColorTokens.SurfaceDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryHover", - DarkColorTokens.SurfaceDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiaryActive", - DarkColorTokens.SurfaceDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentTertiary", - DarkColorTokens.SurfaceDefaultTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepHover", - DarkColorTokens.SurfaceDefaultTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeepActive", - DarkColorTokens.SurfaceDefaultTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentDeep", - DarkColorTokens.SurfaceDefaultTransparentDeep, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardHover", - DarkColorTokens.SurfaceDefaultTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardActive", - DarkColorTokens.SurfaceDefaultTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCard", - DarkColorTokens.SurfaceDefaultTransparentCard, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentCardBrightness", - DarkColorTokens.SurfaceDefaultTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceDefaultClearHover", DarkColorTokens.SurfaceDefaultClearHover, overwrite) - initial.add("surfaceDefaultClearActive", DarkColorTokens.SurfaceDefaultClearActive, overwrite) - initial.add("surfaceDefaultClear", DarkColorTokens.SurfaceDefaultClear, overwrite) - initial.add("surfaceDefaultAccentHover", DarkColorTokens.SurfaceDefaultAccentHover, overwrite) - initial.add("surfaceDefaultAccentActive", DarkColorTokens.SurfaceDefaultAccentActive, overwrite) - initial.add("surfaceDefaultAccent", DarkColorTokens.SurfaceDefaultAccent, overwrite) - initial.add( - "surfaceDefaultAccentMinorHover", - DarkColorTokens.SurfaceDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorActive", - DarkColorTokens.SurfaceDefaultAccentMinorActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMinor", DarkColorTokens.SurfaceDefaultAccentMinor, overwrite) - initial.add( - "surfaceDefaultTransparentAccentHover", - DarkColorTokens.SurfaceDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentActive", - DarkColorTokens.SurfaceDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccent", - DarkColorTokens.SurfaceDefaultTransparentAccent, - overwrite, - ) - initial.add("surfaceDefaultPromoHover", DarkColorTokens.SurfaceDefaultPromoHover, overwrite) - initial.add("surfaceDefaultPromoActive", DarkColorTokens.SurfaceDefaultPromoActive, overwrite) - initial.add("surfaceDefaultPromo", DarkColorTokens.SurfaceDefaultPromo, overwrite) - initial.add( - "surfaceDefaultPromoMinorHover", - DarkColorTokens.SurfaceDefaultPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorActive", - DarkColorTokens.SurfaceDefaultPromoMinorActive, - overwrite, - ) - initial.add("surfaceDefaultPromoMinor", DarkColorTokens.SurfaceDefaultPromoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentPromoHover", - DarkColorTokens.SurfaceDefaultTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoActive", - DarkColorTokens.SurfaceDefaultTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromo", - DarkColorTokens.SurfaceDefaultTransparentPromo, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveHover", - DarkColorTokens.SurfaceDefaultPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveActive", - DarkColorTokens.SurfaceDefaultPositiveActive, - overwrite, - ) - initial.add("surfaceDefaultPositive", DarkColorTokens.SurfaceDefaultPositive, overwrite) - initial.add("surfaceDefaultWarningHover", DarkColorTokens.SurfaceDefaultWarningHover, overwrite) - initial.add( - "surfaceDefaultWarningActive", - DarkColorTokens.SurfaceDefaultWarningActive, - overwrite, - ) - initial.add("surfaceDefaultWarning", DarkColorTokens.SurfaceDefaultWarning, overwrite) - initial.add( - "surfaceDefaultNegativeHover", - DarkColorTokens.SurfaceDefaultNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeActive", - DarkColorTokens.SurfaceDefaultNegativeActive, - overwrite, - ) - initial.add("surfaceDefaultNegative", DarkColorTokens.SurfaceDefaultNegative, overwrite) - initial.add("surfaceDefaultInfoHover", DarkColorTokens.SurfaceDefaultInfoHover, overwrite) - initial.add("surfaceDefaultInfoActive", DarkColorTokens.SurfaceDefaultInfoActive, overwrite) - initial.add( - "surfaceDefaultPositiveMinorHover", - DarkColorTokens.SurfaceDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultPositiveMinorActive", - DarkColorTokens.SurfaceDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorHover", - DarkColorTokens.SurfaceDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultWarningMinorActive", - DarkColorTokens.SurfaceDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorHover", - DarkColorTokens.SurfaceDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultNegativeMinorActive", - DarkColorTokens.SurfaceDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorHover", - DarkColorTokens.SurfaceDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultInfoMinorActive", - DarkColorTokens.SurfaceDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveHover", - DarkColorTokens.SurfaceDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPositiveActive", - DarkColorTokens.SurfaceDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningHover", - DarkColorTokens.SurfaceDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarningActive", - DarkColorTokens.SurfaceDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeHover", - DarkColorTokens.SurfaceDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegativeActive", - DarkColorTokens.SurfaceDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoHover", - DarkColorTokens.SurfaceDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfoActive", - DarkColorTokens.SurfaceDefaultTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaHover", - DarkColorTokens.SurfaceDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaActive", - DarkColorTokens.SurfaceDefaultAccentAthenaActive, - overwrite, - ) - initial.add("surfaceDefaultAccentAthena", DarkColorTokens.SurfaceDefaultAccentAthena, overwrite) - initial.add( - "surfaceDefaultAccentJoyHover", - DarkColorTokens.SurfaceDefaultAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyActive", - DarkColorTokens.SurfaceDefaultAccentJoyActive, - overwrite, - ) - initial.add("surfaceDefaultAccentJoy", DarkColorTokens.SurfaceDefaultAccentJoy, overwrite) - initial.add( - "surfaceDefaultAccentB2EHover", - DarkColorTokens.SurfaceDefaultAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EActive", - DarkColorTokens.SurfaceDefaultAccentB2EActive, - overwrite, - ) - initial.add("surfaceDefaultAccentB2E", DarkColorTokens.SurfaceDefaultAccentB2E, overwrite) - initial.add( - "surfaceDefaultAccentBrandHover", - DarkColorTokens.SurfaceDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandActive", - DarkColorTokens.SurfaceDefaultAccentBrandActive, - overwrite, - ) - initial.add("surfaceDefaultAccentBrand", DarkColorTokens.SurfaceDefaultAccentBrand, overwrite) - initial.add( - "surfaceDefaultSpeechBubbleSentHover", - DarkColorTokens.SurfaceDefaultSpeechBubbleSentHover, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleSentActive", - DarkColorTokens.SurfaceDefaultSpeechBubbleSentActive, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleSent", - DarkColorTokens.SurfaceDefaultSpeechBubbleSent, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceivedHover", - DarkColorTokens.SurfaceDefaultSpeechBubbleReceivedHover, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceivedActive", - DarkColorTokens.SurfaceDefaultSpeechBubbleReceivedActive, - overwrite, - ) - initial.add( - "surfaceDefaultSpeechBubbleReceived", - DarkColorTokens.SurfaceDefaultSpeechBubbleReceived, - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonHover", - DarkColorTokens.SurfaceDefaultSkeletonHover, - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonActive", - DarkColorTokens.SurfaceDefaultSkeletonActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainHover", - DarkColorTokens.SurfaceDefaultAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainActive", - DarkColorTokens.SurfaceDefaultAccentMainActive, - overwrite, - ) - initial.add("surfaceDefaultAccentMain", DarkColorTokens.SurfaceDefaultAccentMain, overwrite) - initial.add( - "surfaceDefaultAccentMainMinorHover", - DarkColorTokens.SurfaceDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainMinorActive", - DarkColorTokens.SurfaceDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinorHover", - DarkColorTokens.SurfaceDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinorActive", - DarkColorTokens.SurfaceDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinorHover", - DarkColorTokens.SurfaceDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinorActive", - DarkColorTokens.SurfaceDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinorHover", - DarkColorTokens.SurfaceDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinorActive", - DarkColorTokens.SurfaceDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinorHover", - DarkColorTokens.SurfaceDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinorActive", - DarkColorTokens.SurfaceDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceDefaultSurfaceTransparentAccentMainHover", - LightColorTokens.SurfaceDefaultSurfaceTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultSurfaceTransparentAccentMainActive", - LightColorTokens.SurfaceDefaultSurfaceTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthenaHover", - DarkColorTokens.SurfaceDefaultTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthenaActive", - DarkColorTokens.SurfaceDefaultTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoyHover", - DarkColorTokens.SurfaceDefaultTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoyActive", - DarkColorTokens.SurfaceDefaultTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2EHover", - DarkColorTokens.SurfaceDefaultTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2EActive", - DarkColorTokens.SurfaceDefaultTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrandHover", - DarkColorTokens.SurfaceDefaultTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrandActive", - DarkColorTokens.SurfaceDefaultTransparentAccentBrandActive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMainHover", - DarkColorTokens.SurfaceDefaultTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMainActive", - DarkColorTokens.SurfaceDefaultTransparentAccentMainActive, - overwrite, - ) - initial.add("surfaceDefaultInfo", DarkColorTokens.SurfaceDefaultInfo, overwrite) - initial.add( - "surfaceDefaultPositiveMinor", - DarkColorTokens.SurfaceDefaultPositiveMinor, - overwrite, - ) - initial.add("surfaceDefaultWarningMinor", DarkColorTokens.SurfaceDefaultWarningMinor, overwrite) - initial.add( - "surfaceDefaultNegativeMinor", - DarkColorTokens.SurfaceDefaultNegativeMinor, - overwrite, - ) - initial.add("surfaceDefaultInfoMinor", DarkColorTokens.SurfaceDefaultInfoMinor, overwrite) - initial.add( - "surfaceDefaultTransparentPositive", - DarkColorTokens.SurfaceDefaultTransparentPositive, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentWarning", - DarkColorTokens.SurfaceDefaultTransparentWarning, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentNegative", - DarkColorTokens.SurfaceDefaultTransparentNegative, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentInfo", - DarkColorTokens.SurfaceDefaultTransparentInfo, - overwrite, - ) - initial.add( - "surfaceDefaultAccentMainMinor", - DarkColorTokens.SurfaceDefaultAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentAthenaMinor", - DarkColorTokens.SurfaceDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentJoyMinor", - DarkColorTokens.SurfaceDefaultAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentB2EMinor", - DarkColorTokens.SurfaceDefaultAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceDefaultAccentBrandMinor", - DarkColorTokens.SurfaceDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentAthena", - DarkColorTokens.SurfaceDefaultTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentJoy", - DarkColorTokens.SurfaceDefaultTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentB2E", - DarkColorTokens.SurfaceDefaultTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentBrand", - DarkColorTokens.SurfaceDefaultTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentMain", - DarkColorTokens.SurfaceDefaultTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryHover", - DarkColorTokens.SurfaceOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidPrimaryActive", - DarkColorTokens.SurfaceOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidPrimary", DarkColorTokens.SurfaceOnDarkSolidPrimary, overwrite) - initial.add( - "surfaceOnDarkSolidPrimaryBrightness", - DarkColorTokens.SurfaceOnDarkSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryHover", - DarkColorTokens.SurfaceOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondaryActive", - DarkColorTokens.SurfaceOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidSecondary", - DarkColorTokens.SurfaceOnDarkSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryHover", - DarkColorTokens.SurfaceOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidTertiaryActive", - DarkColorTokens.SurfaceOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidTertiary", DarkColorTokens.SurfaceOnDarkSolidTertiary, overwrite) - initial.add( - "surfaceOnDarkSolidCardHover", - DarkColorTokens.SurfaceOnDarkSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidCardActive", - DarkColorTokens.SurfaceOnDarkSolidCardActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidCard", DarkColorTokens.SurfaceOnDarkSolidCard, overwrite) - initial.add( - "surfaceOnDarkSolidCardBrightness", - DarkColorTokens.SurfaceOnDarkSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultHover", - DarkColorTokens.SurfaceOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnDarkSolidDefaultActive", - DarkColorTokens.SurfaceOnDarkSolidDefaultActive, - overwrite, - ) - initial.add("surfaceOnDarkSolidDefault", DarkColorTokens.SurfaceOnDarkSolidDefault, overwrite) - initial.add( - "surfaceOnDarkTransparentPrimaryHover", - DarkColorTokens.SurfaceOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimaryActive", - DarkColorTokens.SurfaceOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPrimary", - DarkColorTokens.SurfaceOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryHover", - DarkColorTokens.SurfaceOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondaryActive", - DarkColorTokens.SurfaceOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentSecondary", - DarkColorTokens.SurfaceOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryHover", - DarkColorTokens.SurfaceOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiaryActive", - DarkColorTokens.SurfaceOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentTertiary", - DarkColorTokens.SurfaceOnDarkTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepHover", - DarkColorTokens.SurfaceOnDarkTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeepActive", - DarkColorTokens.SurfaceOnDarkTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentDeep", - DarkColorTokens.SurfaceOnDarkTransparentDeep, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardHover", - DarkColorTokens.SurfaceOnDarkTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardActive", - DarkColorTokens.SurfaceOnDarkTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCard", - DarkColorTokens.SurfaceOnDarkTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentCardBrightness", - DarkColorTokens.SurfaceOnDarkTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnDarkClearHover", DarkColorTokens.SurfaceOnDarkClearHover, overwrite) - initial.add("surfaceOnDarkClearActive", DarkColorTokens.SurfaceOnDarkClearActive, overwrite) - initial.add("surfaceOnDarkClear", DarkColorTokens.SurfaceOnDarkClear, overwrite) - initial.add("surfaceOnDarkAccentHover", DarkColorTokens.SurfaceOnDarkAccentHover, overwrite) - initial.add("surfaceOnDarkAccentActive", DarkColorTokens.SurfaceOnDarkAccentActive, overwrite) - initial.add("surfaceOnDarkAccent", DarkColorTokens.SurfaceOnDarkAccent, overwrite) - initial.add( - "surfaceOnDarkAccentMinorHover", - DarkColorTokens.SurfaceOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorActive", - DarkColorTokens.SurfaceOnDarkAccentMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentMinor", DarkColorTokens.SurfaceOnDarkAccentMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentAccentHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccent", - DarkColorTokens.SurfaceOnDarkTransparentAccent, - overwrite, - ) - initial.add("surfaceOnDarkPromoHover", DarkColorTokens.SurfaceOnDarkPromoHover, overwrite) - initial.add("surfaceOnDarkPromoActive", DarkColorTokens.SurfaceOnDarkPromoActive, overwrite) - initial.add("surfaceOnDarkPromo", DarkColorTokens.SurfaceOnDarkPromo, overwrite) - initial.add( - "surfaceOnDarkPromoMinorHover", - DarkColorTokens.SurfaceOnDarkPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorActive", - DarkColorTokens.SurfaceOnDarkPromoMinorActive, - overwrite, - ) - initial.add("surfaceOnDarkPromoMinor", DarkColorTokens.SurfaceOnDarkPromoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentPromoHover", - DarkColorTokens.SurfaceOnDarkTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoActive", - DarkColorTokens.SurfaceOnDarkTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromo", - DarkColorTokens.SurfaceOnDarkTransparentPromo, - overwrite, - ) - initial.add("surfaceOnDarkPositiveHover", DarkColorTokens.SurfaceOnDarkPositiveHover, overwrite) - initial.add( - "surfaceOnDarkPositiveActive", - DarkColorTokens.SurfaceOnDarkPositiveActive, - overwrite, - ) - initial.add("surfaceOnDarkPositive", DarkColorTokens.SurfaceOnDarkPositive, overwrite) - initial.add("surfaceOnDarkWarningHover", DarkColorTokens.SurfaceOnDarkWarningHover, overwrite) - initial.add("surfaceOnDarkWarningActive", DarkColorTokens.SurfaceOnDarkWarningActive, overwrite) - initial.add("surfaceOnDarkWarning", DarkColorTokens.SurfaceOnDarkWarning, overwrite) - initial.add("surfaceOnDarkNegativeHover", DarkColorTokens.SurfaceOnDarkNegativeHover, overwrite) - initial.add( - "surfaceOnDarkNegativeActive", - DarkColorTokens.SurfaceOnDarkNegativeActive, - overwrite, - ) - initial.add("surfaceOnDarkNegative", DarkColorTokens.SurfaceOnDarkNegative, overwrite) - initial.add("surfaceOnDarkInfoHover", DarkColorTokens.SurfaceOnDarkInfoHover, overwrite) - initial.add("surfaceOnDarkInfoActive", DarkColorTokens.SurfaceOnDarkInfoActive, overwrite) - initial.add( - "surfaceOnDarkPositiveMinorHover", - DarkColorTokens.SurfaceOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkPositiveMinorActive", - DarkColorTokens.SurfaceOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorHover", - DarkColorTokens.SurfaceOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkWarningMinorActive", - DarkColorTokens.SurfaceOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorHover", - DarkColorTokens.SurfaceOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkNegativeMinorActive", - DarkColorTokens.SurfaceOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorHover", - DarkColorTokens.SurfaceOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkInfoMinorActive", - DarkColorTokens.SurfaceOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveHover", - DarkColorTokens.SurfaceOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPositiveActive", - DarkColorTokens.SurfaceOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningHover", - DarkColorTokens.SurfaceOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarningActive", - DarkColorTokens.SurfaceOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeHover", - DarkColorTokens.SurfaceOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegativeActive", - DarkColorTokens.SurfaceOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoHover", - DarkColorTokens.SurfaceOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfoActive", - DarkColorTokens.SurfaceOnDarkTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaHover", - DarkColorTokens.SurfaceOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaActive", - DarkColorTokens.SurfaceOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentAthena", DarkColorTokens.SurfaceOnDarkAccentAthena, overwrite) - initial.add( - "surfaceOnDarkAccentJoyHover", - DarkColorTokens.SurfaceOnDarkAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyActive", - DarkColorTokens.SurfaceOnDarkAccentJoyActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentJoy", DarkColorTokens.SurfaceOnDarkAccentJoy, overwrite) - initial.add( - "surfaceOnDarkAccentB2EHover", - DarkColorTokens.SurfaceOnDarkAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EActive", - DarkColorTokens.SurfaceOnDarkAccentB2EActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentB2E", DarkColorTokens.SurfaceOnDarkAccentB2E, overwrite) - initial.add( - "surfaceOnDarkAccentBrandHover", - DarkColorTokens.SurfaceOnDarkAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandActive", - DarkColorTokens.SurfaceOnDarkAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentBrand", DarkColorTokens.SurfaceOnDarkAccentBrand, overwrite) - initial.add( - "surfaceOnDarkAccentMainHover", - DarkColorTokens.SurfaceOnDarkAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainActive", - DarkColorTokens.SurfaceOnDarkAccentMainActive, - overwrite, - ) - initial.add("surfaceOnDarkAccentMain", DarkColorTokens.SurfaceOnDarkAccentMain, overwrite) - initial.add( - "surfaceOnDarkAccentMainMinor", - DarkColorTokens.SurfaceOnDarkAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainMinorHover", - DarkColorTokens.SurfaceOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMainMinorActive", - DarkColorTokens.SurfaceOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinor", - DarkColorTokens.SurfaceOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinorHover", - DarkColorTokens.SurfaceOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentAthenaMinorActive", - DarkColorTokens.SurfaceOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinor", - DarkColorTokens.SurfaceOnDarkAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinorHover", - DarkColorTokens.SurfaceOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentJoyMinorActive", - DarkColorTokens.SurfaceOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinor", - DarkColorTokens.SurfaceOnDarkAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinorHover", - DarkColorTokens.SurfaceOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentB2EMinorActive", - DarkColorTokens.SurfaceOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinor", - DarkColorTokens.SurfaceOnDarkAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinorHover", - DarkColorTokens.SurfaceOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceOnDarkAccentBrandMinorActive", - DarkColorTokens.SurfaceOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMain", - DarkColorTokens.SurfaceOnDarkTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMainHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentMainActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthena", - DarkColorTokens.SurfaceOnDarkTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthenaHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentAthenaActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoy", - DarkColorTokens.SurfaceOnDarkTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoyHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentJoyActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2E", - DarkColorTokens.SurfaceOnDarkTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2EHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentB2EActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrand", - DarkColorTokens.SurfaceOnDarkTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrandHover", - DarkColorTokens.SurfaceOnDarkTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentBrandActive", - DarkColorTokens.SurfaceOnDarkTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnDarkInfo", DarkColorTokens.SurfaceOnDarkInfo, overwrite) - initial.add("surfaceOnDarkPositiveMinor", DarkColorTokens.SurfaceOnDarkPositiveMinor, overwrite) - initial.add("surfaceOnDarkWarningMinor", DarkColorTokens.SurfaceOnDarkWarningMinor, overwrite) - initial.add("surfaceOnDarkNegativeMinor", DarkColorTokens.SurfaceOnDarkNegativeMinor, overwrite) - initial.add("surfaceOnDarkInfoMinor", DarkColorTokens.SurfaceOnDarkInfoMinor, overwrite) - initial.add( - "surfaceOnDarkTransparentPositive", - DarkColorTokens.SurfaceOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentWarning", - DarkColorTokens.SurfaceOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentNegative", - DarkColorTokens.SurfaceOnDarkTransparentNegative, - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentInfo", - DarkColorTokens.SurfaceOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryHover", - DarkColorTokens.SurfaceOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidPrimaryActive", - DarkColorTokens.SurfaceOnLightSolidPrimaryActive, - overwrite, - ) - initial.add("surfaceOnLightSolidPrimary", DarkColorTokens.SurfaceOnLightSolidPrimary, overwrite) - initial.add( - "surfaceOnLightSolidPrimaryBrightness", - DarkColorTokens.SurfaceOnLightSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryHover", - DarkColorTokens.SurfaceOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondaryActive", - DarkColorTokens.SurfaceOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidSecondary", - DarkColorTokens.SurfaceOnLightSolidSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryHover", - DarkColorTokens.SurfaceOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiaryActive", - DarkColorTokens.SurfaceOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightSolidTertiary", - DarkColorTokens.SurfaceOnLightSolidTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardHover", - DarkColorTokens.SurfaceOnLightSolidCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidCardActive", - DarkColorTokens.SurfaceOnLightSolidCardActive, - overwrite, - ) - initial.add("surfaceOnLightSolidCard", DarkColorTokens.SurfaceOnLightSolidCard, overwrite) - initial.add( - "surfaceOnLightSolidCardBrightness", - DarkColorTokens.SurfaceOnLightSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultHover", - DarkColorTokens.SurfaceOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceOnLightSolidDefaultActive", - DarkColorTokens.SurfaceOnLightSolidDefaultActive, - overwrite, - ) - initial.add("surfaceOnLightSolidDefault", DarkColorTokens.SurfaceOnLightSolidDefault, overwrite) - initial.add( - "surfaceOnLightTransparentPrimaryHover", - DarkColorTokens.SurfaceOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimaryActive", - DarkColorTokens.SurfaceOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPrimary", - DarkColorTokens.SurfaceOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryHover", - DarkColorTokens.SurfaceOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondaryActive", - DarkColorTokens.SurfaceOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentSecondary", - DarkColorTokens.SurfaceOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryHover", - DarkColorTokens.SurfaceOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiaryActive", - DarkColorTokens.SurfaceOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentTertiary", - DarkColorTokens.SurfaceOnLightTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepHover", - DarkColorTokens.SurfaceOnLightTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeepActive", - DarkColorTokens.SurfaceOnLightTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentDeep", - DarkColorTokens.SurfaceOnLightTransparentDeep, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardHover", - DarkColorTokens.SurfaceOnLightTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardActive", - DarkColorTokens.SurfaceOnLightTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCard", - DarkColorTokens.SurfaceOnLightTransparentCard, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentCardBrightness", - DarkColorTokens.SurfaceOnLightTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceOnLightClearHover", DarkColorTokens.SurfaceOnLightClearHover, overwrite) - initial.add("surfaceOnLightClearActive", DarkColorTokens.SurfaceOnLightClearActive, overwrite) - initial.add("surfaceOnLightClear", DarkColorTokens.SurfaceOnLightClear, overwrite) - initial.add("surfaceOnLightAccentHover", DarkColorTokens.SurfaceOnLightAccentHover, overwrite) - initial.add("surfaceOnLightAccentActive", DarkColorTokens.SurfaceOnLightAccentActive, overwrite) - initial.add("surfaceOnLightAccent", DarkColorTokens.SurfaceOnLightAccent, overwrite) - initial.add( - "surfaceOnLightAccentMinorHover", - DarkColorTokens.SurfaceOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorActive", - DarkColorTokens.SurfaceOnLightAccentMinorActive, - overwrite, - ) - initial.add("surfaceOnLightAccentMinor", DarkColorTokens.SurfaceOnLightAccentMinor, overwrite) - initial.add( - "surfaceOnLightTransparentAccentHover", - DarkColorTokens.SurfaceOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentActive", - DarkColorTokens.SurfaceOnLightTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccent", - DarkColorTokens.SurfaceOnLightTransparentAccent, - overwrite, - ) - initial.add("surfaceOnLightPromoHover", DarkColorTokens.SurfaceOnLightPromoHover, overwrite) - initial.add("surfaceOnLightPromoActive", DarkColorTokens.SurfaceOnLightPromoActive, overwrite) - initial.add("surfaceOnLightPromo", DarkColorTokens.SurfaceOnLightPromo, overwrite) - initial.add( - "surfaceOnLightPromoMinorHover", - DarkColorTokens.SurfaceOnLightPromoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorActive", - DarkColorTokens.SurfaceOnLightPromoMinorActive, - overwrite, - ) - initial.add("surfaceOnLightPromoMinor", DarkColorTokens.SurfaceOnLightPromoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentPromoHover", - DarkColorTokens.SurfaceOnLightTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoActive", - DarkColorTokens.SurfaceOnLightTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromo", - DarkColorTokens.SurfaceOnLightTransparentPromo, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveHover", - DarkColorTokens.SurfaceOnLightPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveActive", - DarkColorTokens.SurfaceOnLightPositiveActive, - overwrite, - ) - initial.add("surfaceOnLightPositive", DarkColorTokens.SurfaceOnLightPositive, overwrite) - initial.add("surfaceOnLightWarningHover", DarkColorTokens.SurfaceOnLightWarningHover, overwrite) - initial.add( - "surfaceOnLightWarningActive", - DarkColorTokens.SurfaceOnLightWarningActive, - overwrite, - ) - initial.add("surfaceOnLightWarning", DarkColorTokens.SurfaceOnLightWarning, overwrite) - initial.add( - "surfaceOnLightNegativeHover", - DarkColorTokens.SurfaceOnLightNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeActive", - DarkColorTokens.SurfaceOnLightNegativeActive, - overwrite, - ) - initial.add("surfaceOnLightNegative", DarkColorTokens.SurfaceOnLightNegative, overwrite) - initial.add("surfaceOnLightInfoHover", DarkColorTokens.SurfaceOnLightInfoHover, overwrite) - initial.add("surfaceOnLightInfoActive", DarkColorTokens.SurfaceOnLightInfoActive, overwrite) - initial.add( - "surfaceOnLightPositiveMinorHover", - DarkColorTokens.SurfaceOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightPositiveMinorActive", - DarkColorTokens.SurfaceOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorHover", - DarkColorTokens.SurfaceOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightWarningMinorActive", - DarkColorTokens.SurfaceOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorHover", - DarkColorTokens.SurfaceOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightNegativeMinorActive", - DarkColorTokens.SurfaceOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorHover", - DarkColorTokens.SurfaceOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightInfoMinorActive", - DarkColorTokens.SurfaceOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveHover", - DarkColorTokens.SurfaceOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPositiveActive", - DarkColorTokens.SurfaceOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningHover", - DarkColorTokens.SurfaceOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarningActive", - DarkColorTokens.SurfaceOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeHover", - DarkColorTokens.SurfaceOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegativeActive", - DarkColorTokens.SurfaceOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoHover", - DarkColorTokens.SurfaceOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfoActive", - DarkColorTokens.SurfaceOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaHover", - DarkColorTokens.SurfaceOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaActive", - DarkColorTokens.SurfaceOnLightAccentAthenaActive, - overwrite, - ) - initial.add("surfaceOnLightAccentAthena", DarkColorTokens.SurfaceOnLightAccentAthena, overwrite) - initial.add( - "surfaceOnLightAccentJoyHover", - DarkColorTokens.SurfaceOnLightAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyActive", - DarkColorTokens.SurfaceOnLightAccentJoyActive, - overwrite, - ) - initial.add("surfaceOnLightAccentJoy", DarkColorTokens.SurfaceOnLightAccentJoy, overwrite) - initial.add( - "surfaceOnLightAccentB2EHover", - DarkColorTokens.SurfaceOnLightAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EActive", - DarkColorTokens.SurfaceOnLightAccentB2EActive, - overwrite, - ) - initial.add("surfaceOnLightAccentB2E", DarkColorTokens.SurfaceOnLightAccentB2E, overwrite) - initial.add( - "surfaceOnLightAccentBrandHover", - DarkColorTokens.SurfaceOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandActive", - DarkColorTokens.SurfaceOnLightAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnLightAccentBrand", DarkColorTokens.SurfaceOnLightAccentBrand, overwrite) - initial.add( - "surfaceOnLightAccentMainHover", - DarkColorTokens.SurfaceOnLightAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainActive", - DarkColorTokens.SurfaceOnLightAccentMainActive, - overwrite, - ) - initial.add("surfaceOnLightAccentMain", DarkColorTokens.SurfaceOnLightAccentMain, overwrite) - initial.add( - "surfaceOnLightAccentMainMinor", - DarkColorTokens.SurfaceOnLightAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainMinorHover", - DarkColorTokens.SurfaceOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentMainMinorActive", - DarkColorTokens.SurfaceOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinor", - DarkColorTokens.SurfaceOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinorHover", - DarkColorTokens.SurfaceOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentAthenaMinorActive", - DarkColorTokens.SurfaceOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinor", - DarkColorTokens.SurfaceOnLightAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinorHover", - DarkColorTokens.SurfaceOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentJoyMinorActive", - DarkColorTokens.SurfaceOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinor", - DarkColorTokens.SurfaceOnLightAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinorHover", - DarkColorTokens.SurfaceOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentB2EMinorActive", - DarkColorTokens.SurfaceOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinor", - DarkColorTokens.SurfaceOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinorHover", - DarkColorTokens.SurfaceOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceOnLightAccentBrandMinorActive", - DarkColorTokens.SurfaceOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMain", - DarkColorTokens.SurfaceOnLightTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMainHover", - DarkColorTokens.SurfaceOnLightTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentMainActive", - DarkColorTokens.SurfaceOnLightTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthena", - DarkColorTokens.SurfaceOnLightTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthenaHover", - DarkColorTokens.SurfaceOnLightTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentAthenaActive", - DarkColorTokens.SurfaceOnLightTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoy", - DarkColorTokens.SurfaceOnLightTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoyHover", - DarkColorTokens.SurfaceOnLightTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentJoyActive", - DarkColorTokens.SurfaceOnLightTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2E", - DarkColorTokens.SurfaceOnLightTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2EHover", - DarkColorTokens.SurfaceOnLightTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentB2EActive", - DarkColorTokens.SurfaceOnLightTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrand", - DarkColorTokens.SurfaceOnLightTransparentAccentBrand, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrandHover", - DarkColorTokens.SurfaceOnLightTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentBrandActive", - DarkColorTokens.SurfaceOnLightTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceOnLightInfo", DarkColorTokens.SurfaceOnLightInfo, overwrite) - initial.add( - "surfaceOnLightPositiveMinor", - DarkColorTokens.SurfaceOnLightPositiveMinor, - overwrite, - ) - initial.add("surfaceOnLightWarningMinor", DarkColorTokens.SurfaceOnLightWarningMinor, overwrite) - initial.add( - "surfaceOnLightNegativeMinor", - DarkColorTokens.SurfaceOnLightNegativeMinor, - overwrite, - ) - initial.add("surfaceOnLightInfoMinor", DarkColorTokens.SurfaceOnLightInfoMinor, overwrite) - initial.add( - "surfaceOnLightTransparentPositive", - DarkColorTokens.SurfaceOnLightTransparentPositive, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentWarning", - DarkColorTokens.SurfaceOnLightTransparentWarning, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentNegative", - DarkColorTokens.SurfaceOnLightTransparentNegative, - overwrite, - ) - initial.add( - "surfaceOnLightTransparentInfo", - DarkColorTokens.SurfaceOnLightTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryHover", - DarkColorTokens.SurfaceInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryActive", - DarkColorTokens.SurfaceInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidPrimaryBrightness", - DarkColorTokens.SurfaceInverseSolidPrimaryBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryHover", - DarkColorTokens.SurfaceInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidSecondaryActive", - DarkColorTokens.SurfaceInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryHover", - DarkColorTokens.SurfaceInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiaryActive", - DarkColorTokens.SurfaceInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardHover", - DarkColorTokens.SurfaceInverseSolidCardHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardActive", - DarkColorTokens.SurfaceInverseSolidCardActive, - overwrite, - ) - initial.add( - "surfaceInverseSolidCardBrightness", - DarkColorTokens.SurfaceInverseSolidCardBrightness, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultHover", - DarkColorTokens.SurfaceInverseSolidDefaultHover, - overwrite, - ) - initial.add( - "surfaceInverseSolidDefaultActive", - DarkColorTokens.SurfaceInverseSolidDefaultActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryHover", - DarkColorTokens.SurfaceInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPrimaryActive", - DarkColorTokens.SurfaceInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryHover", - DarkColorTokens.SurfaceInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondaryActive", - DarkColorTokens.SurfaceInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryHover", - DarkColorTokens.SurfaceInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiaryActive", - DarkColorTokens.SurfaceInverseTransparentTertiaryActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepHover", - DarkColorTokens.SurfaceInverseTransparentDeepHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeepActive", - DarkColorTokens.SurfaceInverseTransparentDeepActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentDeep", - DarkColorTokens.SurfaceInverseTransparentDeep, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardHover", - DarkColorTokens.SurfaceInverseTransparentCardHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardActive", - DarkColorTokens.SurfaceInverseTransparentCardActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCardBrightness", - DarkColorTokens.SurfaceInverseTransparentCardBrightness, - overwrite, - ) - initial.add("surfaceInverseClearHover", DarkColorTokens.SurfaceInverseClearHover, overwrite) - initial.add("surfaceInverseClearActive", DarkColorTokens.SurfaceInverseClearActive, overwrite) - initial.add("surfaceInverseClear", DarkColorTokens.SurfaceInverseClear, overwrite) - initial.add("surfaceInverseAccentHover", DarkColorTokens.SurfaceInverseAccentHover, overwrite) - initial.add("surfaceInverseAccentActive", DarkColorTokens.SurfaceInverseAccentActive, overwrite) - initial.add("surfaceInverseAccent", DarkColorTokens.SurfaceInverseAccent, overwrite) - initial.add( - "surfaceInverseAccentMinorHover", - DarkColorTokens.SurfaceInverseAccentMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorActive", - DarkColorTokens.SurfaceInverseAccentMinorActive, - overwrite, - ) - initial.add("surfaceInverseAccentMinor", DarkColorTokens.SurfaceInverseAccentMinor, overwrite) - initial.add( - "surfaceInverseTransparentAccentHover", - DarkColorTokens.SurfaceInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentActive", - DarkColorTokens.SurfaceInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccent", - DarkColorTokens.SurfaceInverseTransparentAccent, - overwrite, - ) - initial.add("surfaceInversePromoHover", DarkColorTokens.SurfaceInversePromoHover, overwrite) - initial.add("surfaceInversePromoActive", DarkColorTokens.SurfaceInversePromoActive, overwrite) - initial.add("surfaceInversePromo", DarkColorTokens.SurfaceInversePromo, overwrite) - initial.add( - "surfaceInversePromoMinorHover", - DarkColorTokens.SurfaceInversePromoMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePromoMinorActive", - DarkColorTokens.SurfaceInversePromoMinorActive, - overwrite, - ) - initial.add("surfaceInversePromoMinor", DarkColorTokens.SurfaceInversePromoMinor, overwrite) - initial.add( - "surfaceInverseTransparentPromoHover", - DarkColorTokens.SurfaceInverseTransparentPromoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoActive", - DarkColorTokens.SurfaceInverseTransparentPromoActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromo", - DarkColorTokens.SurfaceInverseTransparentPromo, - overwrite, - ) - initial.add( - "surfaceInversePositiveHover", - DarkColorTokens.SurfaceInversePositiveHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveActive", - DarkColorTokens.SurfaceInversePositiveActive, - overwrite, - ) - initial.add("surfaceInverseWarningHover", DarkColorTokens.SurfaceInverseWarningHover, overwrite) - initial.add( - "surfaceInverseWarningActive", - DarkColorTokens.SurfaceInverseWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeHover", - DarkColorTokens.SurfaceInverseNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeActive", - DarkColorTokens.SurfaceInverseNegativeActive, - overwrite, - ) - initial.add("surfaceInverseInfoHover", DarkColorTokens.SurfaceInverseInfoHover, overwrite) - initial.add("surfaceInverseInfoActive", DarkColorTokens.SurfaceInverseInfoActive, overwrite) - initial.add( - "surfaceInversePositiveMinorHover", - DarkColorTokens.SurfaceInversePositiveMinorHover, - overwrite, - ) - initial.add( - "surfaceInversePositiveMinorActive", - DarkColorTokens.SurfaceInversePositiveMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorHover", - DarkColorTokens.SurfaceInverseWarningMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseWarningMinorActive", - DarkColorTokens.SurfaceInverseWarningMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorHover", - DarkColorTokens.SurfaceInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseNegativeMinorActive", - DarkColorTokens.SurfaceInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorHover", - DarkColorTokens.SurfaceInverseInfoMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseInfoMinorActive", - DarkColorTokens.SurfaceInverseInfoMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveHover", - DarkColorTokens.SurfaceInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentPositiveActive", - DarkColorTokens.SurfaceInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningHover", - DarkColorTokens.SurfaceInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarningActive", - DarkColorTokens.SurfaceInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeHover", - DarkColorTokens.SurfaceInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegativeActive", - DarkColorTokens.SurfaceInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoHover", - DarkColorTokens.SurfaceInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfoActive", - DarkColorTokens.SurfaceInverseTransparentInfoActive, - overwrite, - ) - initial.add("surfaceInverseAccentMain", DarkColorTokens.SurfaceInverseAccentMain, overwrite) - initial.add( - "surfaceInverseAccentMainHover", - DarkColorTokens.SurfaceInverseAccentMainHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainActive", - DarkColorTokens.SurfaceInverseAccentMainActive, - overwrite, - ) - initial.add("surfaceInverseAccentAthena", DarkColorTokens.SurfaceInverseAccentAthena, overwrite) - initial.add( - "surfaceInverseAccentAthenaHover", - DarkColorTokens.SurfaceInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaActive", - DarkColorTokens.SurfaceInverseAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoy", - LightColorTokens.SurfaceInverseSurfaceAccentJoy, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoyHover", - LightColorTokens.SurfaceInverseSurfaceAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseSurfaceAccentJoyActive", - LightColorTokens.SurfaceInverseSurfaceAccentJoyActive, - overwrite, - ) - initial.add("surfaceInverseAccentB2E", DarkColorTokens.SurfaceInverseAccentB2E, overwrite) - initial.add( - "surfaceInverseAccentB2EHover", - DarkColorTokens.SurfaceInverseAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EActive", - DarkColorTokens.SurfaceInverseAccentB2EActive, - overwrite, - ) - initial.add("surfaceInverseAccentBrand", DarkColorTokens.SurfaceInverseAccentBrand, overwrite) - initial.add( - "surfaceInverseAccentBrandHover", - DarkColorTokens.SurfaceInverseAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandActive", - DarkColorTokens.SurfaceInverseAccentBrandActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinorHover", - DarkColorTokens.SurfaceInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinorActive", - DarkColorTokens.SurfaceInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinorHover", - DarkColorTokens.SurfaceInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinorActive", - DarkColorTokens.SurfaceInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinorHover", - DarkColorTokens.SurfaceInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinorActive", - DarkColorTokens.SurfaceInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinorHover", - DarkColorTokens.SurfaceInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinorActive", - DarkColorTokens.SurfaceInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinorHover", - DarkColorTokens.SurfaceInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinorActive", - DarkColorTokens.SurfaceInverseAccentBrandMinorActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMainHover", - DarkColorTokens.SurfaceInverseTransparentAccentMainHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMainActive", - DarkColorTokens.SurfaceInverseTransparentAccentMainActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthenaHover", - DarkColorTokens.SurfaceInverseTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthenaActive", - DarkColorTokens.SurfaceInverseTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoyHover", - DarkColorTokens.SurfaceInverseTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoyActive", - DarkColorTokens.SurfaceInverseTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2EHover", - DarkColorTokens.SurfaceInverseTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2EActive", - DarkColorTokens.SurfaceInverseTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrandHover", - DarkColorTokens.SurfaceInverseTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrandActive", - DarkColorTokens.SurfaceInverseTransparentAccentBrandActive, - overwrite, - ) - initial.add("surfaceInverseSolidCard", DarkColorTokens.SurfaceInverseSolidCard, overwrite) - initial.add("surfaceInverseSolidPrimary", DarkColorTokens.SurfaceInverseSolidPrimary, overwrite) - initial.add( - "surfaceInverseSolidSecondary", - DarkColorTokens.SurfaceInverseSolidSecondary, - overwrite, - ) - initial.add( - "surfaceInverseSolidTertiary", - DarkColorTokens.SurfaceInverseSolidTertiary, - overwrite, - ) - initial.add("surfaceInverseSolidDefault", DarkColorTokens.SurfaceInverseSolidDefault, overwrite) - initial.add( - "surfaceInverseTransparentPrimary", - DarkColorTokens.SurfaceInverseTransparentPrimary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentSecondary", - DarkColorTokens.SurfaceInverseTransparentSecondary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentTertiary", - DarkColorTokens.SurfaceInverseTransparentTertiary, - overwrite, - ) - initial.add( - "surfaceInverseTransparentCard", - DarkColorTokens.SurfaceInverseTransparentCard, - overwrite, - ) - initial.add("surfaceInversePositive", DarkColorTokens.SurfaceInversePositive, overwrite) - initial.add("surfaceInverseWarning", DarkColorTokens.SurfaceInverseWarning, overwrite) - initial.add("surfaceInverseNegative", DarkColorTokens.SurfaceInverseNegative, overwrite) - initial.add("surfaceInverseInfo", DarkColorTokens.SurfaceInverseInfo, overwrite) - initial.add( - "surfaceInversePositiveMinor", - DarkColorTokens.SurfaceInversePositiveMinor, - overwrite, - ) - initial.add("surfaceInverseWarningMinor", DarkColorTokens.SurfaceInverseWarningMinor, overwrite) - initial.add( - "surfaceInverseNegativeMinor", - DarkColorTokens.SurfaceInverseNegativeMinor, - overwrite, - ) - initial.add("surfaceInverseInfoMinor", DarkColorTokens.SurfaceInverseInfoMinor, overwrite) - initial.add( - "surfaceInverseTransparentPositive", - DarkColorTokens.SurfaceInverseTransparentPositive, - overwrite, - ) - initial.add( - "surfaceInverseTransparentWarning", - DarkColorTokens.SurfaceInverseTransparentWarning, - overwrite, - ) - initial.add( - "surfaceInverseTransparentNegative", - DarkColorTokens.SurfaceInverseTransparentNegative, - overwrite, - ) - initial.add( - "surfaceInverseTransparentInfo", - DarkColorTokens.SurfaceInverseTransparentInfo, - overwrite, - ) - initial.add( - "surfaceInverseAccentMainMinor", - DarkColorTokens.SurfaceInverseAccentMainMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentAthenaMinor", - DarkColorTokens.SurfaceInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyMinor", - DarkColorTokens.SurfaceInverseAccentJoyMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentBrandMinor", - DarkColorTokens.SurfaceInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "surfaceInverseAccentB2EMinor", - DarkColorTokens.SurfaceInverseAccentB2EMinor, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentMain", - DarkColorTokens.SurfaceInverseTransparentAccentMain, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentAthena", - DarkColorTokens.SurfaceInverseTransparentAccentAthena, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentJoy", - DarkColorTokens.SurfaceInverseTransparentAccentJoy, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentB2E", - DarkColorTokens.SurfaceInverseTransparentAccentB2E, - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentBrand", - DarkColorTokens.SurfaceInverseTransparentAccentBrand, - overwrite, - ) - initial.add("backgroundDefaultPrimary", DarkColorTokens.BackgroundDefaultPrimary, overwrite) - initial.add( - "backgroundDefaultPrimaryBrightness", - DarkColorTokens.BackgroundDefaultPrimaryBrightness, - overwrite, - ) - initial.add("backgroundDefaultSecondary", DarkColorTokens.BackgroundDefaultSecondary, overwrite) - initial.add("backgroundDefaultTertiary", DarkColorTokens.BackgroundDefaultTertiary, overwrite) - initial.add("backgroundDarkPrimary", DarkColorTokens.BackgroundDarkPrimary, overwrite) - initial.add("backgroundDarkSecondary", DarkColorTokens.BackgroundDarkSecondary, overwrite) - initial.add("backgroundDarkTertiary", DarkColorTokens.BackgroundDarkTertiary, overwrite) - initial.add("backgroundLightPrimary", DarkColorTokens.BackgroundLightPrimary, overwrite) - initial.add("backgroundLightSecondary", DarkColorTokens.BackgroundLightSecondary, overwrite) - initial.add("backgroundLightTertiary", DarkColorTokens.BackgroundLightTertiary, overwrite) - initial.add( - "backgroundInversePrimaryBrightness", - DarkColorTokens.BackgroundInversePrimaryBrightness, - overwrite, - ) - initial.add("backgroundInverseTertiary", DarkColorTokens.BackgroundInverseTertiary, overwrite) - initial.add("backgroundInversePrimary", DarkColorTokens.BackgroundInversePrimary, overwrite) - initial.add("backgroundInverseSecondary", DarkColorTokens.BackgroundInverseSecondary, overwrite) - initial.add("overlayDefaultSoft", DarkColorTokens.OverlayDefaultSoft, overwrite) - initial.add("overlayDefaultHard", DarkColorTokens.OverlayDefaultHard, overwrite) - initial.add("overlayDefaultBlur", DarkColorTokens.OverlayDefaultBlur, overwrite) - initial.add("overlayOnDarkSoft", DarkColorTokens.OverlayOnDarkSoft, overwrite) - initial.add("overlayOnDarkHard", DarkColorTokens.OverlayOnDarkHard, overwrite) - initial.add("overlayOnDarkBlur", DarkColorTokens.OverlayOnDarkBlur, overwrite) - initial.add("overlayOnLightSoft", DarkColorTokens.OverlayOnLightSoft, overwrite) - initial.add("overlayOnLightHard", DarkColorTokens.OverlayOnLightHard, overwrite) - initial.add("overlayOnLightBlur", DarkColorTokens.OverlayOnLightBlur, overwrite) - initial.add("overlayInverseSoft", DarkColorTokens.OverlayInverseSoft, overwrite) - initial.add("overlayInverseHard", DarkColorTokens.OverlayInverseHard, overwrite) - initial.add("overlayInverseBlur", DarkColorTokens.OverlayInverseBlur, overwrite) - initial.add( - "outlineDefaultSolidPrimaryHover", - DarkColorTokens.OutlineDefaultSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidPrimaryActive", - DarkColorTokens.OutlineDefaultSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryHover", - DarkColorTokens.OutlineDefaultSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidSecondaryActive", - DarkColorTokens.OutlineDefaultSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryHover", - DarkColorTokens.OutlineDefaultSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiaryActive", - DarkColorTokens.OutlineDefaultSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefaultHover", - DarkColorTokens.OutlineDefaultTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefaultActive", - DarkColorTokens.OutlineDefaultTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentDefault", - DarkColorTokens.OutlineDefaultTransparentDefault, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryHover", - DarkColorTokens.OutlineDefaultTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimaryActive", - DarkColorTokens.OutlineDefaultTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryHover", - DarkColorTokens.OutlineDefaultTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondaryActive", - DarkColorTokens.OutlineDefaultTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryHover", - DarkColorTokens.OutlineDefaultTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiaryActive", - DarkColorTokens.OutlineDefaultTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineDefaultClearHover", DarkColorTokens.OutlineDefaultClearHover, overwrite) - initial.add("outlineDefaultClearActive", DarkColorTokens.OutlineDefaultClearActive, overwrite) - initial.add("outlineDefaultAccentHover", DarkColorTokens.OutlineDefaultAccentHover, overwrite) - initial.add("outlineDefaultAccentActive", DarkColorTokens.OutlineDefaultAccentActive, overwrite) - initial.add("outlineDefaultAccent", DarkColorTokens.OutlineDefaultAccent, overwrite) - initial.add( - "outlineDefaultAccentMinorHover", - DarkColorTokens.OutlineDefaultAccentMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorActive", - DarkColorTokens.OutlineDefaultAccentMinorActive, - overwrite, - ) - initial.add("outlineDefaultAccentMinor", DarkColorTokens.OutlineDefaultAccentMinor, overwrite) - initial.add( - "outlineDefaultTransparentAccentHover", - DarkColorTokens.OutlineDefaultTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentActive", - DarkColorTokens.OutlineDefaultTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccent", - DarkColorTokens.OutlineDefaultTransparentAccent, - overwrite, - ) - initial.add("outlineDefaultPromoHover", DarkColorTokens.OutlineDefaultPromoHover, overwrite) - initial.add("outlineDefaultPromoActive", DarkColorTokens.OutlineDefaultPromoActive, overwrite) - initial.add("outlineDefaultPromo", DarkColorTokens.OutlineDefaultPromo, overwrite) - initial.add( - "outlineDefaultPromoMinorHover", - DarkColorTokens.OutlineDefaultPromoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorActive", - DarkColorTokens.OutlineDefaultPromoMinorActive, - overwrite, - ) - initial.add("outlineDefaultPromoMinor", DarkColorTokens.OutlineDefaultPromoMinor, overwrite) - initial.add( - "outlineDefaultPositiveHover", - DarkColorTokens.OutlineDefaultPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveActive", - DarkColorTokens.OutlineDefaultPositiveActive, - overwrite, - ) - initial.add("outlineDefaultWarningHover", DarkColorTokens.OutlineDefaultWarningHover, overwrite) - initial.add( - "outlineDefaultWarningActive", - DarkColorTokens.OutlineDefaultWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeHover", - DarkColorTokens.OutlineDefaultNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeActive", - DarkColorTokens.OutlineDefaultNegativeActive, - overwrite, - ) - initial.add("outlineDefaultInfoHover", DarkColorTokens.OutlineDefaultInfoHover, overwrite) - initial.add("outlineDefaultInfoActive", DarkColorTokens.OutlineDefaultInfoActive, overwrite) - initial.add( - "outlineDefaultPositiveMinorHover", - DarkColorTokens.OutlineDefaultPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultPositiveMinorActive", - DarkColorTokens.OutlineDefaultPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorHover", - DarkColorTokens.OutlineDefaultWarningMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultWarningMinorActive", - DarkColorTokens.OutlineDefaultWarningMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorHover", - DarkColorTokens.OutlineDefaultNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultNegativeMinorActive", - DarkColorTokens.OutlineDefaultNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorHover", - DarkColorTokens.OutlineDefaultInfoMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultInfoMinorActive", - DarkColorTokens.OutlineDefaultInfoMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveHover", - DarkColorTokens.OutlineDefaultTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPositiveActive", - DarkColorTokens.OutlineDefaultTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningHover", - DarkColorTokens.OutlineDefaultTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarningActive", - DarkColorTokens.OutlineDefaultTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeHover", - DarkColorTokens.OutlineDefaultTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegativeActive", - DarkColorTokens.OutlineDefaultTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoHover", - DarkColorTokens.OutlineDefaultTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfoActive", - DarkColorTokens.OutlineDefaultTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultHover", - DarkColorTokens.OutlineDefaultSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineDefaultSolidDefaultActive", - DarkColorTokens.OutlineDefaultSolidDefaultActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainHover", - DarkColorTokens.OutlineDefaultAccentMainHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainActive", - DarkColorTokens.OutlineDefaultAccentMainActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaHover", - DarkColorTokens.OutlineDefaultAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaActive", - DarkColorTokens.OutlineDefaultAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyHover", - DarkColorTokens.OutlineDefaultAccentJoyHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyActive", - DarkColorTokens.OutlineDefaultAccentJoyActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EHover", - DarkColorTokens.OutlineDefaultAccentB2EHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EActive", - DarkColorTokens.OutlineDefaultAccentB2EActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandHover", - DarkColorTokens.OutlineDefaultAccentBrandHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandActive", - DarkColorTokens.OutlineDefaultAccentBrandActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainMinorHover", - DarkColorTokens.OutlineDefaultAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentMainMinorActive", - DarkColorTokens.OutlineDefaultAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinorHover", - DarkColorTokens.OutlineDefaultAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinorActive", - DarkColorTokens.OutlineDefaultAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinorHover", - DarkColorTokens.OutlineDefaultAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinorActive", - DarkColorTokens.OutlineDefaultAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinorHover", - DarkColorTokens.OutlineDefaultAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinorActive", - DarkColorTokens.OutlineDefaultAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinorHover", - DarkColorTokens.OutlineDefaultAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinorActive", - DarkColorTokens.OutlineDefaultAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMainHover", - DarkColorTokens.OutlineDefaultTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMainActive", - DarkColorTokens.OutlineDefaultTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthenaHover", - DarkColorTokens.OutlineDefaultTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthenaActive", - DarkColorTokens.OutlineDefaultTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoyHover", - DarkColorTokens.OutlineDefaultTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoyActive", - DarkColorTokens.OutlineDefaultTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2EHover", - DarkColorTokens.OutlineDefaultTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2EActive", - DarkColorTokens.OutlineDefaultTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrandHover", - DarkColorTokens.OutlineDefaultTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrandActive", - DarkColorTokens.OutlineDefaultTransparentAccentBrandActive, - overwrite, - ) - initial.add("outlineDefaultSolidPrimary", DarkColorTokens.OutlineDefaultSolidPrimary, overwrite) - initial.add( - "outlineDefaultSolidSecondary", - DarkColorTokens.OutlineDefaultSolidSecondary, - overwrite, - ) - initial.add( - "outlineDefaultSolidTertiary", - DarkColorTokens.OutlineDefaultSolidTertiary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentPrimary", - DarkColorTokens.OutlineDefaultTransparentPrimary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentSecondary", - DarkColorTokens.OutlineDefaultTransparentSecondary, - overwrite, - ) - initial.add( - "outlineDefaultTransparentTertiary", - DarkColorTokens.OutlineDefaultTransparentTertiary, - overwrite, - ) - initial.add("outlineDefaultClear", DarkColorTokens.OutlineDefaultClear, overwrite) - initial.add("outlineDefaultSolidDefault", DarkColorTokens.OutlineDefaultSolidDefault, overwrite) - initial.add("outlineDefaultPositive", DarkColorTokens.OutlineDefaultPositive, overwrite) - initial.add("outlineDefaultWarning", DarkColorTokens.OutlineDefaultWarning, overwrite) - initial.add("outlineDefaultNegative", DarkColorTokens.OutlineDefaultNegative, overwrite) - initial.add("outlineDefaultInfo", DarkColorTokens.OutlineDefaultInfo, overwrite) - initial.add( - "outlineDefaultPositiveMinor", - DarkColorTokens.OutlineDefaultPositiveMinor, - overwrite, - ) - initial.add("outlineDefaultWarningMinor", DarkColorTokens.OutlineDefaultWarningMinor, overwrite) - initial.add( - "outlineDefaultNegativeMinor", - DarkColorTokens.OutlineDefaultNegativeMinor, - overwrite, - ) - initial.add("outlineDefaultInfoMinor", DarkColorTokens.OutlineDefaultInfoMinor, overwrite) - initial.add( - "outlineDefaultTransparentPositive", - DarkColorTokens.OutlineDefaultTransparentPositive, - overwrite, - ) - initial.add( - "outlineDefaultTransparentWarning", - DarkColorTokens.OutlineDefaultTransparentWarning, - overwrite, - ) - initial.add( - "outlineDefaultTransparentNegative", - DarkColorTokens.OutlineDefaultTransparentNegative, - overwrite, - ) - initial.add( - "outlineDefaultTransparentInfo", - DarkColorTokens.OutlineDefaultTransparentInfo, - overwrite, - ) - initial.add("outlineDefaultAccentMain", DarkColorTokens.OutlineDefaultAccentMain, overwrite) - initial.add("outlineDefaultAccentAthena", DarkColorTokens.OutlineDefaultAccentAthena, overwrite) - initial.add("outlineDefaultAccentJoy", DarkColorTokens.OutlineDefaultAccentJoy, overwrite) - initial.add("outlineDefaultAccentB2E", DarkColorTokens.OutlineDefaultAccentB2E, overwrite) - initial.add("outlineDefaultAccentBrand", DarkColorTokens.OutlineDefaultAccentBrand, overwrite) - initial.add( - "outlineDefaultAccentMainMinor", - DarkColorTokens.OutlineDefaultAccentMainMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentAthenaMinor", - DarkColorTokens.OutlineDefaultAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentJoyMinor", - DarkColorTokens.OutlineDefaultAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentB2EMinor", - DarkColorTokens.OutlineDefaultAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineDefaultAccentBrandMinor", - DarkColorTokens.OutlineDefaultAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentMain", - DarkColorTokens.OutlineDefaultTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentAthena", - DarkColorTokens.OutlineDefaultTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentJoy", - DarkColorTokens.OutlineDefaultTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentB2E", - DarkColorTokens.OutlineDefaultTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentBrand", - DarkColorTokens.OutlineDefaultTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryHover", - DarkColorTokens.OutlineOnDarkSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidPrimaryActive", - DarkColorTokens.OutlineOnDarkSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryHover", - DarkColorTokens.OutlineOnDarkSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidSecondaryActive", - DarkColorTokens.OutlineOnDarkSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryHover", - DarkColorTokens.OutlineOnDarkSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidTertiaryActive", - DarkColorTokens.OutlineOnDarkSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefaultHover", - DarkColorTokens.OutlineOnDarkTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefaultActive", - DarkColorTokens.OutlineOnDarkTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentDefault", - DarkColorTokens.OutlineOnDarkTransparentDefault, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryHover", - DarkColorTokens.OutlineOnDarkTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPrimaryActive", - DarkColorTokens.OutlineOnDarkTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryHover", - DarkColorTokens.OutlineOnDarkTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondaryActive", - DarkColorTokens.OutlineOnDarkTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryHover", - DarkColorTokens.OutlineOnDarkTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiaryActive", - DarkColorTokens.OutlineOnDarkTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnDarkClearHover", DarkColorTokens.OutlineOnDarkClearHover, overwrite) - initial.add("outlineOnDarkClearActive", DarkColorTokens.OutlineOnDarkClearActive, overwrite) - initial.add("outlineOnDarkClear", DarkColorTokens.OutlineOnDarkClear, overwrite) - initial.add("outlineOnDarkAccentHover", DarkColorTokens.OutlineOnDarkAccentHover, overwrite) - initial.add("outlineOnDarkAccentActive", DarkColorTokens.OutlineOnDarkAccentActive, overwrite) - initial.add("outlineOnDarkAccent", DarkColorTokens.OutlineOnDarkAccent, overwrite) - initial.add( - "outlineOnDarkAccentMinorHover", - DarkColorTokens.OutlineOnDarkAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorActive", - DarkColorTokens.OutlineOnDarkAccentMinorActive, - overwrite, - ) - initial.add("outlineOnDarkAccentMinor", DarkColorTokens.OutlineOnDarkAccentMinor, overwrite) - initial.add( - "outlineOnDarkTransparentAccentHover", - DarkColorTokens.OutlineOnDarkTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentActive", - DarkColorTokens.OutlineOnDarkTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccent", - DarkColorTokens.OutlineOnDarkTransparentAccent, - overwrite, - ) - initial.add("outlineOnDarkPromoHover", DarkColorTokens.OutlineOnDarkPromoHover, overwrite) - initial.add("outlineOnDarkPromoActive", DarkColorTokens.OutlineOnDarkPromoActive, overwrite) - initial.add("outlineOnDarkPromo", DarkColorTokens.OutlineOnDarkPromo, overwrite) - initial.add( - "outlineOnDarkPromoMinorHover", - DarkColorTokens.OutlineOnDarkPromoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorActive", - DarkColorTokens.OutlineOnDarkPromoMinorActive, - overwrite, - ) - initial.add("outlineOnDarkPromoMinor", DarkColorTokens.OutlineOnDarkPromoMinor, overwrite) - initial.add("outlineOnDarkPositiveHover", DarkColorTokens.OutlineOnDarkPositiveHover, overwrite) - initial.add( - "outlineOnDarkPositiveActive", - DarkColorTokens.OutlineOnDarkPositiveActive, - overwrite, - ) - initial.add("outlineOnDarkWarningHover", DarkColorTokens.OutlineOnDarkWarningHover, overwrite) - initial.add("outlineOnDarkWarningActive", DarkColorTokens.OutlineOnDarkWarningActive, overwrite) - initial.add("outlineOnDarkNegativeHover", DarkColorTokens.OutlineOnDarkNegativeHover, overwrite) - initial.add( - "outlineOnDarkNegativeActive", - DarkColorTokens.OutlineOnDarkNegativeActive, - overwrite, - ) - initial.add("outlineOnDarkInfoHover", DarkColorTokens.OutlineOnDarkInfoHover, overwrite) - initial.add("outlineOnDarkInfoActive", DarkColorTokens.OutlineOnDarkInfoActive, overwrite) - initial.add( - "outlineOnDarkPositiveMinorHover", - DarkColorTokens.OutlineOnDarkPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkPositiveMinorActive", - DarkColorTokens.OutlineOnDarkPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorHover", - DarkColorTokens.OutlineOnDarkWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkWarningMinorActive", - DarkColorTokens.OutlineOnDarkWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorHover", - DarkColorTokens.OutlineOnDarkNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkNegativeMinorActive", - DarkColorTokens.OutlineOnDarkNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorHover", - DarkColorTokens.OutlineOnDarkInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkInfoMinorActive", - DarkColorTokens.OutlineOnDarkInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveHover", - DarkColorTokens.OutlineOnDarkTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentPositiveActive", - DarkColorTokens.OutlineOnDarkTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningHover", - DarkColorTokens.OutlineOnDarkTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarningActive", - DarkColorTokens.OutlineOnDarkTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegativeHover", - DarkColorTokens.OutlineOnDarkTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegativeActive", - DarkColorTokens.OutlineOnDarkTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoHover", - DarkColorTokens.OutlineOnDarkTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfoActive", - DarkColorTokens.OutlineOnDarkTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultHover", - DarkColorTokens.OutlineOnDarkSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnDarkSolidDefaultActive", - DarkColorTokens.OutlineOnDarkSolidDefaultActive, - overwrite, - ) - initial.add("outlineOnDarkAccentMain", DarkColorTokens.OutlineOnDarkAccentMain, overwrite) - initial.add( - "outlineOnDarkAccentMainHover", - DarkColorTokens.OutlineOnDarkAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainActive", - DarkColorTokens.OutlineOnDarkAccentMainActive, - overwrite, - ) - initial.add("outlineOnDarkAccentAthena", DarkColorTokens.OutlineOnDarkAccentAthena, overwrite) - initial.add( - "outlineOnDarkAccentAthenaHover", - DarkColorTokens.OutlineOnDarkAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaActive", - DarkColorTokens.OutlineOnDarkAccentAthenaActive, - overwrite, - ) - initial.add("outlineOnDarkAccentJoy", DarkColorTokens.OutlineOnDarkAccentJoy, overwrite) - initial.add( - "outlineOnDarkAccentJoyHover", - DarkColorTokens.OutlineOnDarkAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyActive", - DarkColorTokens.OutlineOnDarkAccentJoyActive, - overwrite, - ) - initial.add("outlineOnDarkAccentB2E", DarkColorTokens.OutlineOnDarkAccentB2E, overwrite) - initial.add( - "outlineOnDarkAccentB2EHover", - DarkColorTokens.OutlineOnDarkAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EActive", - DarkColorTokens.OutlineOnDarkAccentB2EActive, - overwrite, - ) - initial.add("outlineOnDarkAccentBrand", DarkColorTokens.OutlineOnDarkAccentBrand, overwrite) - initial.add( - "outlineOnDarkAccentBrandHover", - DarkColorTokens.OutlineOnDarkAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandActive", - DarkColorTokens.OutlineOnDarkAccentBrandActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinor", - DarkColorTokens.OutlineOnDarkAccentMainMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinorHover", - DarkColorTokens.OutlineOnDarkAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentMainMinorActive", - DarkColorTokens.OutlineOnDarkAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinor", - DarkColorTokens.OutlineOnDarkAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinorHover", - DarkColorTokens.OutlineOnDarkAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentAthenaMinorActive", - DarkColorTokens.OutlineOnDarkAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinor", - DarkColorTokens.OutlineOnDarkAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinorHover", - DarkColorTokens.OutlineOnDarkAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentJoyMinorActive", - DarkColorTokens.OutlineOnDarkAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinor", - DarkColorTokens.OutlineOnDarkAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinorHover", - DarkColorTokens.OutlineOnDarkAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentB2EMinorActive", - DarkColorTokens.OutlineOnDarkAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinor", - DarkColorTokens.OutlineOnDarkAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinorHover", - DarkColorTokens.OutlineOnDarkAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineOnDarkAccentBrandMinorActive", - DarkColorTokens.OutlineOnDarkAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMain", - DarkColorTokens.OutlineOnDarkTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMainHover", - DarkColorTokens.OutlineOnDarkTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentMainActive", - DarkColorTokens.OutlineOnDarkTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthena", - DarkColorTokens.OutlineOnDarkTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthenaHover", - DarkColorTokens.OutlineOnDarkTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentAthenaActive", - DarkColorTokens.OutlineOnDarkTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoy", - DarkColorTokens.OutlineOnDarkTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoyHover", - DarkColorTokens.OutlineOnDarkTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentJoyActive", - DarkColorTokens.OutlineOnDarkTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2E", - DarkColorTokens.OutlineOnDarkTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2EHover", - DarkColorTokens.OutlineOnDarkTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentB2EActive", - DarkColorTokens.OutlineOnDarkTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrand", - DarkColorTokens.OutlineOnDarkTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrandHover", - DarkColorTokens.OutlineOnDarkTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentBrandActive", - DarkColorTokens.OutlineOnDarkTransparentAccentBrandActive, - overwrite, - ) - initial.add("outlineOnDarkSolidPrimary", DarkColorTokens.OutlineOnDarkSolidPrimary, overwrite) - initial.add( - "outlineOnDarkSolidSecondary", - DarkColorTokens.OutlineOnDarkSolidSecondary, - overwrite, - ) - initial.add("outlineOnDarkSolidTertiary", DarkColorTokens.OutlineOnDarkSolidTertiary, overwrite) - initial.add( - "outlineOnDarkTransparentPrimary", - DarkColorTokens.OutlineOnDarkTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentSecondary", - DarkColorTokens.OutlineOnDarkTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentTertiary", - DarkColorTokens.OutlineOnDarkTransparentTertiary, - overwrite, - ) - initial.add("outlineOnDarkSolidDefault", DarkColorTokens.OutlineOnDarkSolidDefault, overwrite) - initial.add("outlineOnDarkPositive", DarkColorTokens.OutlineOnDarkPositive, overwrite) - initial.add("outlineOnDarkWarning", DarkColorTokens.OutlineOnDarkWarning, overwrite) - initial.add("outlineOnDarkNegative", DarkColorTokens.OutlineOnDarkNegative, overwrite) - initial.add("outlineOnDarkInfo", DarkColorTokens.OutlineOnDarkInfo, overwrite) - initial.add("outlineOnDarkPositiveMinor", DarkColorTokens.OutlineOnDarkPositiveMinor, overwrite) - initial.add("outlineOnDarkWarningMinor", DarkColorTokens.OutlineOnDarkWarningMinor, overwrite) - initial.add("outlineOnDarkNegativeMinor", DarkColorTokens.OutlineOnDarkNegativeMinor, overwrite) - initial.add("outlineOnDarkInfoMinor", DarkColorTokens.OutlineOnDarkInfoMinor, overwrite) - initial.add( - "outlineOnDarkTransparentPositive", - DarkColorTokens.OutlineOnDarkTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentWarning", - DarkColorTokens.OutlineOnDarkTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentNegative", - DarkColorTokens.OutlineOnDarkTransparentNegative, - overwrite, - ) - initial.add( - "outlineOnDarkTransparentInfo", - DarkColorTokens.OutlineOnDarkTransparentInfo, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryHover", - DarkColorTokens.OutlineOnLightSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidPrimaryActive", - DarkColorTokens.OutlineOnLightSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryHover", - DarkColorTokens.OutlineOnLightSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidSecondaryActive", - DarkColorTokens.OutlineOnLightSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryHover", - DarkColorTokens.OutlineOnLightSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiaryActive", - DarkColorTokens.OutlineOnLightSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefaultHover", - DarkColorTokens.OutlineOnLightTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefaultActive", - DarkColorTokens.OutlineOnLightTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentDefault", - DarkColorTokens.OutlineOnLightTransparentDefault, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryHover", - DarkColorTokens.OutlineOnLightTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimaryActive", - DarkColorTokens.OutlineOnLightTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryHover", - DarkColorTokens.OutlineOnLightTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondaryActive", - DarkColorTokens.OutlineOnLightTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryHover", - DarkColorTokens.OutlineOnLightTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiaryActive", - DarkColorTokens.OutlineOnLightTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineOnLightClearHover", DarkColorTokens.OutlineOnLightClearHover, overwrite) - initial.add("outlineOnLightClearActive", DarkColorTokens.OutlineOnLightClearActive, overwrite) - initial.add("outlineOnLightClear", DarkColorTokens.OutlineOnLightClear, overwrite) - initial.add("outlineOnLightAccentHover", DarkColorTokens.OutlineOnLightAccentHover, overwrite) - initial.add("outlineOnLightAccentActive", DarkColorTokens.OutlineOnLightAccentActive, overwrite) - initial.add("outlineOnLightAccent", DarkColorTokens.OutlineOnLightAccent, overwrite) - initial.add( - "outlineOnLightAccentMinorHover", - DarkColorTokens.OutlineOnLightAccentMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorActive", - DarkColorTokens.OutlineOnLightAccentMinorActive, - overwrite, - ) - initial.add("outlineOnLightAccentMinor", DarkColorTokens.OutlineOnLightAccentMinor, overwrite) - initial.add( - "outlineOnLightTransparentAccentHover", - DarkColorTokens.OutlineOnLightTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentActive", - DarkColorTokens.OutlineOnLightTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccent", - DarkColorTokens.OutlineOnLightTransparentAccent, - overwrite, - ) - initial.add("outlineOnLightPromoHover", DarkColorTokens.OutlineOnLightPromoHover, overwrite) - initial.add("outlineOnLightPromoActive", DarkColorTokens.OutlineOnLightPromoActive, overwrite) - initial.add("outlineOnLightPromo", DarkColorTokens.OutlineOnLightPromo, overwrite) - initial.add( - "outlineOnLightPromoMinorHover", - DarkColorTokens.OutlineOnLightPromoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorActive", - DarkColorTokens.OutlineOnLightPromoMinorActive, - overwrite, - ) - initial.add("outlineOnLightPromoMinor", DarkColorTokens.OutlineOnLightPromoMinor, overwrite) - initial.add( - "outlineOnLightPositiveHover", - DarkColorTokens.OutlineOnLightPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveActive", - DarkColorTokens.OutlineOnLightPositiveActive, - overwrite, - ) - initial.add("outlineOnLightWarningHover", DarkColorTokens.OutlineOnLightWarningHover, overwrite) - initial.add( - "outlineOnLightWarningActive", - DarkColorTokens.OutlineOnLightWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeHover", - DarkColorTokens.OutlineOnLightNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeActive", - DarkColorTokens.OutlineOnLightNegativeActive, - overwrite, - ) - initial.add("outlineOnLightInfoHover", DarkColorTokens.OutlineOnLightInfoHover, overwrite) - initial.add("outlineOnLightInfoActive", DarkColorTokens.OutlineOnLightInfoActive, overwrite) - initial.add( - "outlineOnLightPositiveMinorHover", - DarkColorTokens.OutlineOnLightPositiveMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightPositiveMinorActive", - DarkColorTokens.OutlineOnLightPositiveMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorHover", - DarkColorTokens.OutlineOnLightWarningMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightWarningMinorActive", - DarkColorTokens.OutlineOnLightWarningMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorHover", - DarkColorTokens.OutlineOnLightNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightNegativeMinorActive", - DarkColorTokens.OutlineOnLightNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorHover", - DarkColorTokens.OutlineOnLightInfoMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightInfoMinorActive", - DarkColorTokens.OutlineOnLightInfoMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveHover", - DarkColorTokens.OutlineOnLightTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPositiveActive", - DarkColorTokens.OutlineOnLightTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningHover", - DarkColorTokens.OutlineOnLightTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarningActive", - DarkColorTokens.OutlineOnLightTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegativeHover", - DarkColorTokens.OutlineOnLightTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegativeActive", - DarkColorTokens.OutlineOnLightTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoHover", - DarkColorTokens.OutlineOnLightTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfoActive", - DarkColorTokens.OutlineOnLightTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultHover", - DarkColorTokens.OutlineOnLightSolidDefaultHover, - overwrite, - ) - initial.add( - "outlineOnLightSolidDefaultActive", - DarkColorTokens.OutlineOnLightSolidDefaultActive, - overwrite, - ) - initial.add("outlineOnLightAccentMain", DarkColorTokens.OutlineOnLightAccentMain, overwrite) - initial.add( - "outlineOnLightAccentMainHover", - DarkColorTokens.OutlineOnLightAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainActive", - DarkColorTokens.OutlineOnLightAccentMainActive, - overwrite, - ) - initial.add("outlineOnLightAccentAthena", DarkColorTokens.OutlineOnLightAccentAthena, overwrite) - initial.add( - "outlineOnLightAccentAthenaHover", - DarkColorTokens.OutlineOnLightAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaActive", - DarkColorTokens.OutlineOnLightAccentAthenaActive, - overwrite, - ) - initial.add("outlineOnLightAccentJoy", DarkColorTokens.OutlineOnLightAccentJoy, overwrite) - initial.add( - "outlineOnLightAccentJoyHover", - DarkColorTokens.OutlineOnLightAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyActive", - DarkColorTokens.OutlineOnLightAccentJoyActive, - overwrite, - ) - initial.add("outlineOnLightAccentB2E", DarkColorTokens.OutlineOnLightAccentB2E, overwrite) - initial.add( - "outlineOnLightAccentB2EHover", - DarkColorTokens.OutlineOnLightAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EActive", - DarkColorTokens.OutlineOnLightAccentB2EActive, - overwrite, - ) - initial.add("outlineOnLightAccentBrand", DarkColorTokens.OutlineOnLightAccentBrand, overwrite) - initial.add( - "outlineOnLightAccentBrandHover", - DarkColorTokens.OutlineOnLightAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandActive", - DarkColorTokens.OutlineOnLightAccentBrandActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinor", - DarkColorTokens.OutlineOnLightAccentMainMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinorHover", - DarkColorTokens.OutlineOnLightAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentMainMinorActive", - DarkColorTokens.OutlineOnLightAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinor", - DarkColorTokens.OutlineOnLightAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinorHover", - DarkColorTokens.OutlineOnLightAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentAthenaMinorActive", - DarkColorTokens.OutlineOnLightAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinor", - DarkColorTokens.OutlineOnLightAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinorHover", - DarkColorTokens.OutlineOnLightAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentJoyMinorActive", - DarkColorTokens.OutlineOnLightAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinor", - DarkColorTokens.OutlineOnLightAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinorHover", - DarkColorTokens.OutlineOnLightAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentB2EMinorActive", - DarkColorTokens.OutlineOnLightAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinor", - DarkColorTokens.OutlineOnLightAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinorHover", - DarkColorTokens.OutlineOnLightAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineOnLightAccentBrandMinorActive", - DarkColorTokens.OutlineOnLightAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMain", - DarkColorTokens.OutlineOnLightTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMainHover", - DarkColorTokens.OutlineOnLightTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentMainActive", - DarkColorTokens.OutlineOnLightTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthena", - DarkColorTokens.OutlineOnLightTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthenaHover", - DarkColorTokens.OutlineOnLightTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentAthenaActive", - DarkColorTokens.OutlineOnLightTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoy", - DarkColorTokens.OutlineOnLightTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoyHover", - DarkColorTokens.OutlineOnLightTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentJoyActive", - DarkColorTokens.OutlineOnLightTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2E", - DarkColorTokens.OutlineOnLightTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2EHover", - DarkColorTokens.OutlineOnLightTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentB2EActive", - DarkColorTokens.OutlineOnLightTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrand", - DarkColorTokens.OutlineOnLightTransparentAccentBrand, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrandHover", - DarkColorTokens.OutlineOnLightTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentBrandActive", - DarkColorTokens.OutlineOnLightTransparentAccentBrandActive, - overwrite, - ) - initial.add("outlineOnLightSolidPrimary", DarkColorTokens.OutlineOnLightSolidPrimary, overwrite) - initial.add( - "outlineOnLightSolidSecondary", - DarkColorTokens.OutlineOnLightSolidSecondary, - overwrite, - ) - initial.add( - "outlineOnLightSolidTertiary", - DarkColorTokens.OutlineOnLightSolidTertiary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentPrimary", - DarkColorTokens.OutlineOnLightTransparentPrimary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentSecondary", - DarkColorTokens.OutlineOnLightTransparentSecondary, - overwrite, - ) - initial.add( - "outlineOnLightTransparentTertiary", - DarkColorTokens.OutlineOnLightTransparentTertiary, - overwrite, - ) - initial.add("outlineOnLightSolidDefault", DarkColorTokens.OutlineOnLightSolidDefault, overwrite) - initial.add("outlineOnLightPositive", DarkColorTokens.OutlineOnLightPositive, overwrite) - initial.add("outlineOnLightWarning", DarkColorTokens.OutlineOnLightWarning, overwrite) - initial.add("outlineOnLightNegative", DarkColorTokens.OutlineOnLightNegative, overwrite) - initial.add("outlineOnLightInfo", DarkColorTokens.OutlineOnLightInfo, overwrite) - initial.add( - "outlineOnLightPositiveMinor", - DarkColorTokens.OutlineOnLightPositiveMinor, - overwrite, - ) - initial.add("outlineOnLightWarningMinor", DarkColorTokens.OutlineOnLightWarningMinor, overwrite) - initial.add( - "outlineOnLightNegativeMinor", - DarkColorTokens.OutlineOnLightNegativeMinor, - overwrite, - ) - initial.add("outlineOnLightInfoMinor", DarkColorTokens.OutlineOnLightInfoMinor, overwrite) - initial.add( - "outlineOnLightTransparentPositive", - DarkColorTokens.OutlineOnLightTransparentPositive, - overwrite, - ) - initial.add( - "outlineOnLightTransparentWarning", - DarkColorTokens.OutlineOnLightTransparentWarning, - overwrite, - ) - initial.add( - "outlineOnLightTransparentNegative", - DarkColorTokens.OutlineOnLightTransparentNegative, - overwrite, - ) - initial.add( - "outlineOnLightTransparentInfo", - DarkColorTokens.OutlineOnLightTransparentInfo, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryHover", - DarkColorTokens.OutlineInverseSolidPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidPrimaryActive", - DarkColorTokens.OutlineInverseSolidPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryHover", - DarkColorTokens.OutlineInverseSolidSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidSecondaryActive", - DarkColorTokens.OutlineInverseSolidSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryHover", - DarkColorTokens.OutlineInverseSolidTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiaryActive", - DarkColorTokens.OutlineInverseSolidTertiaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefaultHover", - DarkColorTokens.OutlineInverseTransparentDefaultHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefaultActive", - DarkColorTokens.OutlineInverseTransparentDefaultActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentDefault", - DarkColorTokens.OutlineInverseTransparentDefault, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryHover", - DarkColorTokens.OutlineInverseTransparentPrimaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimaryActive", - DarkColorTokens.OutlineInverseTransparentPrimaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryHover", - DarkColorTokens.OutlineInverseTransparentSecondaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondaryActive", - DarkColorTokens.OutlineInverseTransparentSecondaryActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryHover", - DarkColorTokens.OutlineInverseTransparentTertiaryHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiaryActive", - DarkColorTokens.OutlineInverseTransparentTertiaryActive, - overwrite, - ) - initial.add("outlineInverseClearHover", DarkColorTokens.OutlineInverseClearHover, overwrite) - initial.add("outlineInverseClearActive", DarkColorTokens.OutlineInverseClearActive, overwrite) - initial.add("outlineInverseClear", DarkColorTokens.OutlineInverseClear, overwrite) - initial.add("outlineInverseAccentHover", DarkColorTokens.OutlineInverseAccentHover, overwrite) - initial.add("outlineInverseAccentActive", DarkColorTokens.OutlineInverseAccentActive, overwrite) - initial.add("outlineInverseAccent", DarkColorTokens.OutlineInverseAccent, overwrite) - initial.add( - "outlineInverseAccentMinorHover", - DarkColorTokens.OutlineInverseAccentMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMinorActive", - DarkColorTokens.OutlineInverseAccentMinorActive, - overwrite, - ) - initial.add("outlineInverseAccentMinor", DarkColorTokens.OutlineInverseAccentMinor, overwrite) - initial.add( - "outlineInverseTransparentAccentHover", - DarkColorTokens.OutlineInverseTransparentAccentHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentActive", - DarkColorTokens.OutlineInverseTransparentAccentActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccent", - DarkColorTokens.OutlineInverseTransparentAccent, - overwrite, - ) - initial.add("outlineInversePromoHover", DarkColorTokens.OutlineInversePromoHover, overwrite) - initial.add("outlineInversePromoActive", DarkColorTokens.OutlineInversePromoActive, overwrite) - initial.add("outlineInversePromo", DarkColorTokens.OutlineInversePromo, overwrite) - initial.add( - "outlineInversePromoMinorHover", - DarkColorTokens.OutlineInversePromoMinorHover, - overwrite, - ) - initial.add( - "outlineInversePromoMinorActive", - DarkColorTokens.OutlineInversePromoMinorActive, - overwrite, - ) - initial.add("outlineInversePromoMinor", DarkColorTokens.OutlineInversePromoMinor, overwrite) - initial.add( - "outlineInversePositiveHover", - DarkColorTokens.OutlineInversePositiveHover, - overwrite, - ) - initial.add( - "outlineInversePositiveActive", - DarkColorTokens.OutlineInversePositiveActive, - overwrite, - ) - initial.add("outlineInverseWarningHover", DarkColorTokens.OutlineInverseWarningHover, overwrite) - initial.add( - "outlineInverseWarningActive", - DarkColorTokens.OutlineInverseWarningActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeHover", - DarkColorTokens.OutlineInverseNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeActive", - DarkColorTokens.OutlineInverseNegativeActive, - overwrite, - ) - initial.add("outlineInverseInfoHover", DarkColorTokens.OutlineInverseInfoHover, overwrite) - initial.add("outlineInverseInfoActive", DarkColorTokens.OutlineInverseInfoActive, overwrite) - initial.add( - "outlineInversePositiveMinorHover", - DarkColorTokens.OutlineInversePositiveMinorHover, - overwrite, - ) - initial.add( - "outlineInversePositiveMinorActive", - DarkColorTokens.OutlineInversePositiveMinorActive, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorHover", - DarkColorTokens.OutlineInverseWarningMinorHover, - overwrite, - ) - initial.add( - "outlineInverseWarningMinorActive", - DarkColorTokens.OutlineInverseWarningMinorActive, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorHover", - DarkColorTokens.OutlineInverseNegativeMinorHover, - overwrite, - ) - initial.add( - "outlineInverseNegativeMinorActive", - DarkColorTokens.OutlineInverseNegativeMinorActive, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorHover", - DarkColorTokens.OutlineInverseInfoMinorHover, - overwrite, - ) - initial.add( - "outlineInverseInfoMinorActive", - DarkColorTokens.OutlineInverseInfoMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveHover", - DarkColorTokens.OutlineInverseTransparentPositiveHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentPositiveActive", - DarkColorTokens.OutlineInverseTransparentPositiveActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningHover", - DarkColorTokens.OutlineInverseTransparentWarningHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarningActive", - DarkColorTokens.OutlineInverseTransparentWarningActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeHover", - DarkColorTokens.OutlineInverseTransparentNegativeHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegativeActive", - DarkColorTokens.OutlineInverseTransparentNegativeActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoHover", - DarkColorTokens.OutlineInverseTransparentInfoHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfoActive", - DarkColorTokens.OutlineInverseTransparentInfoActive, - overwrite, - ) - initial.add( - "outlineInverseAccentMainHover", - DarkColorTokens.OutlineInverseAccentMainHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMainActive", - DarkColorTokens.OutlineInverseAccentMainActive, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaHover", - DarkColorTokens.OutlineInverseAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaActive", - DarkColorTokens.OutlineInverseAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyHover", - DarkColorTokens.OutlineInverseAccentJoyHover, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyActive", - DarkColorTokens.OutlineInverseAccentJoyActive, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EHover", - DarkColorTokens.OutlineInverseAccentB2EHover, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EActive", - DarkColorTokens.OutlineInverseAccentB2EActive, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandHover", - DarkColorTokens.OutlineInverseAccentBrandHover, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandActive", - DarkColorTokens.OutlineInverseAccentBrandActive, - overwrite, - ) - initial.add( - "outlineInverseAccentMainMinorHover", - DarkColorTokens.OutlineInverseAccentMainMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentMainMinorActive", - DarkColorTokens.OutlineInverseAccentMainMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinorHover", - DarkColorTokens.OutlineInverseAccentAthenaMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinorActive", - DarkColorTokens.OutlineInverseAccentAthenaMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinorHover", - DarkColorTokens.OutlineInverseAccentJoyMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinorActive", - DarkColorTokens.OutlineInverseAccentJoyMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinorHover", - DarkColorTokens.OutlineInverseAccentB2EMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinorActive", - DarkColorTokens.OutlineInverseAccentB2EMinorActive, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinorHover", - DarkColorTokens.OutlineInverseAccentBrandMinorHover, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinorActive", - DarkColorTokens.OutlineInverseAccentBrandMinorActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMainHover", - DarkColorTokens.OutlineInverseTransparentAccentMainHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMainActive", - DarkColorTokens.OutlineInverseTransparentAccentMainActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthenaHover", - DarkColorTokens.OutlineInverseTransparentAccentAthenaHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthenaActive", - DarkColorTokens.OutlineInverseTransparentAccentAthenaActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoyHover", - DarkColorTokens.OutlineInverseTransparentAccentJoyHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoyActive", - DarkColorTokens.OutlineInverseTransparentAccentJoyActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2EHover", - DarkColorTokens.OutlineInverseTransparentAccentB2EHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2EActive", - DarkColorTokens.OutlineInverseTransparentAccentB2EActive, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrandHover", - DarkColorTokens.OutlineInverseTransparentAccentBrandHover, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrandActive", - DarkColorTokens.OutlineInverseTransparentAccentBrandActive, - overwrite, - ) - initial.add("outlineInverseSolidPrimary", DarkColorTokens.OutlineInverseSolidPrimary, overwrite) - initial.add( - "outlineInverseSolidSecondary", - DarkColorTokens.OutlineInverseSolidSecondary, - overwrite, - ) - initial.add( - "outlineInverseSolidTertiary", - DarkColorTokens.OutlineInverseSolidTertiary, - overwrite, - ) - initial.add( - "outlineInverseTransparentPrimary", - DarkColorTokens.OutlineInverseTransparentPrimary, - overwrite, - ) - initial.add( - "outlineInverseTransparentSecondary", - DarkColorTokens.OutlineInverseTransparentSecondary, - overwrite, - ) - initial.add( - "outlineInverseTransparentTertiary", - DarkColorTokens.OutlineInverseTransparentTertiary, - overwrite, - ) - initial.add("outlineInversePositive", DarkColorTokens.OutlineInversePositive, overwrite) - initial.add("outlineInverseWarning", DarkColorTokens.OutlineInverseWarning, overwrite) - initial.add("outlineInverseNegative", DarkColorTokens.OutlineInverseNegative, overwrite) - initial.add("outlineInverseInfo", DarkColorTokens.OutlineInverseInfo, overwrite) - initial.add( - "outlineInversePositiveMinor", - DarkColorTokens.OutlineInversePositiveMinor, - overwrite, - ) - initial.add("outlineInverseWarningMinor", DarkColorTokens.OutlineInverseWarningMinor, overwrite) - initial.add( - "outlineInverseNegativeMinor", - DarkColorTokens.OutlineInverseNegativeMinor, - overwrite, - ) - initial.add("outlineInverseInfoMinor", DarkColorTokens.OutlineInverseInfoMinor, overwrite) - initial.add( - "outlineInverseTransparentPositive", - DarkColorTokens.OutlineInverseTransparentPositive, - overwrite, - ) - initial.add( - "outlineInverseTransparentWarning", - DarkColorTokens.OutlineInverseTransparentWarning, - overwrite, - ) - initial.add( - "outlineInverseTransparentNegative", - DarkColorTokens.OutlineInverseTransparentNegative, - overwrite, - ) - initial.add( - "outlineInverseTransparentInfo", - DarkColorTokens.OutlineInverseTransparentInfo, - overwrite, - ) - initial.add("outlineInverseAccentMain", DarkColorTokens.OutlineInverseAccentMain, overwrite) - initial.add("outlineInverseAccentAthena", DarkColorTokens.OutlineInverseAccentAthena, overwrite) - initial.add("outlineInverseAccentJoy", DarkColorTokens.OutlineInverseAccentJoy, overwrite) - initial.add("outlineInverseAccentB2E", DarkColorTokens.OutlineInverseAccentB2E, overwrite) - initial.add("outlineInverseAccentBrand", DarkColorTokens.OutlineInverseAccentBrand, overwrite) - initial.add( - "outlineInverseAccentMainMinor", - DarkColorTokens.OutlineInverseAccentMainMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentAthenaMinor", - DarkColorTokens.OutlineInverseAccentAthenaMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentJoyMinor", - DarkColorTokens.OutlineInverseAccentJoyMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentB2EMinor", - DarkColorTokens.OutlineInverseAccentB2EMinor, - overwrite, - ) - initial.add( - "outlineInverseAccentBrandMinor", - DarkColorTokens.OutlineInverseAccentBrandMinor, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentMain", - DarkColorTokens.OutlineInverseTransparentAccentMain, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentAthena", - DarkColorTokens.OutlineInverseTransparentAccentAthena, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentJoy", - DarkColorTokens.OutlineInverseTransparentAccentJoy, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentB2E", - DarkColorTokens.OutlineInverseTransparentAccentB2E, - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentBrand", - DarkColorTokens.OutlineInverseTransparentAccentBrand, - overwrite, - ) - initial.add("dataDefaultYellow", DarkColorTokens.DataDefaultYellow, overwrite) - initial.add("dataDefaultYellowHover", DarkColorTokens.DataDefaultYellowHover, overwrite) - initial.add("dataDefaultYellowActive", DarkColorTokens.DataDefaultYellowActive, overwrite) - initial.add("dataDefaultYellowMinor", DarkColorTokens.DataDefaultYellowMinor, overwrite) - initial.add( - "dataDefaultYellowMinorHover", - DarkColorTokens.DataDefaultYellowMinorHover, - overwrite, - ) - initial.add( - "dataDefaultYellowMinorActive", - DarkColorTokens.DataDefaultYellowMinorActive, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparent", - DarkColorTokens.DataDefaultYellowTransparent, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentHover", - DarkColorTokens.DataDefaultYellowTransparentHover, - overwrite, - ) - initial.add( - "dataDefaultYellowTransparentActive", - DarkColorTokens.DataDefaultYellowTransparentActive, - overwrite, - ) - initial.add("dataOnDarkYellow", DarkColorTokens.DataOnDarkYellow, overwrite) - initial.add("dataOnDarkYellowHover", DarkColorTokens.DataOnDarkYellowHover, overwrite) - initial.add("dataOnDarkYellowActive", DarkColorTokens.DataOnDarkYellowActive, overwrite) - initial.add("dataOnDarkYellowMinor", DarkColorTokens.DataOnDarkYellowMinor, overwrite) - initial.add("dataOnDarkYellowMinorHover", DarkColorTokens.DataOnDarkYellowMinorHover, overwrite) - initial.add( - "dataOnDarkYellowMinorActive", - DarkColorTokens.DataOnDarkYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparent", - DarkColorTokens.DataOnDarkYellowTransparent, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentHover", - DarkColorTokens.DataOnDarkYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnDarkYellowTransparentActive", - DarkColorTokens.DataOnDarkYellowTransparentActive, - overwrite, - ) - initial.add("dataOnLightYellow", DarkColorTokens.DataOnLightYellow, overwrite) - initial.add("dataOnLightYellowHover", DarkColorTokens.DataOnLightYellowHover, overwrite) - initial.add("dataOnLightYellowActive", DarkColorTokens.DataOnLightYellowActive, overwrite) - initial.add("dataOnLightYellowMinor", DarkColorTokens.DataOnLightYellowMinor, overwrite) - initial.add( - "dataOnLightYellowMinorHover", - DarkColorTokens.DataOnLightYellowMinorHover, - overwrite, - ) - initial.add( - "dataOnLightYellowMinorActive", - DarkColorTokens.DataOnLightYellowMinorActive, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparent", - DarkColorTokens.DataOnLightYellowTransparent, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentHover", - DarkColorTokens.DataOnLightYellowTransparentHover, - overwrite, - ) - initial.add( - "dataOnLightYellowTransparentActive", - DarkColorTokens.DataOnLightYellowTransparentActive, - overwrite, - ) - initial.add("dataInverseYellow", DarkColorTokens.DataInverseYellow, overwrite) - initial.add("dataInverseYellowHover", DarkColorTokens.DataInverseYellowHover, overwrite) - initial.add("dataInverseYellowActive", DarkColorTokens.DataInverseYellowActive, overwrite) - initial.add("dataInverseYellowMinor", DarkColorTokens.DataInverseYellowMinor, overwrite) - initial.add( - "dataInverseYellowMinorHover", - DarkColorTokens.DataInverseYellowMinorHover, - overwrite, - ) - initial.add( - "dataInverseYellowMinorActive", - DarkColorTokens.DataInverseYellowMinorActive, - overwrite, - ) - initial.add( - "dataInverseYellowTransparent", - DarkColorTokens.DataInverseYellowTransparent, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentHover", - DarkColorTokens.DataInverseYellowTransparentHover, - overwrite, - ) - initial.add( - "dataInverseYellowTransparentActive", - DarkColorTokens.DataInverseYellowTransparentActive, - overwrite, - ) - initial.add("surfaceInverseAccentJoy", DarkColorTokens.SurfaceInverseAccentJoy, overwrite) - initial.add( - "surfaceInverseAccentJoyHover", - DarkColorTokens.SurfaceInverseAccentJoyHover, - overwrite, - ) - initial.add( - "surfaceInverseAccentJoyActive", - DarkColorTokens.SurfaceInverseAccentJoyActive, - overwrite, - ) - return StylesSaluteColors(initial) -} - -private fun Map.obtain(name: String): MutableState = - mutableStateOf(get(name)!!, structuralEqualityPolicy()) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteGradients.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteGradients.kt deleted file mode 100644 index 40d82433ef..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteGradients.kt +++ /dev/null @@ -1,9445 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.Modifier -import androidx.compose.ui.draw.drawBehind -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.graphics.Brush -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.graphics.ShaderBrush -import com.sdds.compose.uikit.graphics.Gradients -import com.sdds.stylessalute.tokens.DarkGradientTokens -import com.sdds.stylessalute.tokens.LightGradientTokens -import kotlin.Float -import kotlin.FloatArray -import kotlin.String -import kotlin.Suppress -import kotlin.Unit -import kotlin.collections.List -import kotlin.collections.Map -import kotlin.collections.MutableMap - -/** - * Градиенты StylesSalute - */ -@Immutable -public class StylesSaluteGradients( - private val gradients: Map>, -) { - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientActive: List by gradients - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradient: List by gradients - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradient: List by gradients - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradientHover: List by gradients - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradientActive: List by gradients - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradient: List by gradients - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradient: List by gradients - - /** - * Градиент Афины - */ - public val textDefaultGradientAthenaHover: List by gradients - - /** - * Градиент Афины - */ - public val textDefaultGradientAthenaActive: List by gradients - - /** - * Градиент Афины - */ - public val textDefaultGradientAthena: List by gradients - - /** - * Градиент Джой - */ - public val textDefaultGradientJoyHover: List by gradients - - /** - * Градиент Джой - */ - public val textDefaultGradientJoyActive: List by gradients - - /** - * Градиент Джой - */ - public val textDefaultGradientJoy: List by gradients - - /** - * Градиент бренда - */ - public val textDefaultGradientBrandHover: List by gradients - - /** - * Градиент бренда - */ - public val textDefaultGradientBrandActive: List by gradients - - /** - * Градиент бренда - */ - public val textDefaultGradientBrand: List by gradients - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2EHover: List by gradients - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2EActive: List by gradients - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2E: List by gradients - - /** - * Градиент - */ - public val textDefaultGradientMainHover: List by gradients - - /** - * Градиент - */ - public val textDefaultGradientMainActive: List by gradients - - /** - * Градиент - */ - public val textDefaultGradientMain: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientActive: List by gradients - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradient: List by gradients - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradient: List by gradients - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradientHover: List by gradients - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradientActive: List by gradients - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradient: List by gradients - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradient: List by gradients - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthenaHover: List by gradients - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthenaActive: List by gradients - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthena: List by gradients - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoyHover: List by gradients - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoyActive: List by gradients - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoy: List by gradients - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2EHover: List by gradients - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2EActive: List by gradients - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2E: List by gradients - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrandHover: List by gradients - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrandActive: List by gradients - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrand: List by gradients - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMainHover: List by gradients - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMainActive: List by gradients - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMain: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientHover: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientActive: List by gradients - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradient: List by gradients - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradient: List by gradients - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradientHover: List by gradients - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradientActive: List by gradients - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradient: List by gradients - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradient: List by gradients - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthenaHover: List by gradients - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthenaActive: List by gradients - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthena: List by gradients - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoyHover: List by gradients - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoyActive: List by gradients - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoy: List by gradients - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2EHover: List by gradients - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2EActive: List by gradients - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2E: List by gradients - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrandHover: List by gradients - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrandActive: List by gradients - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrand: List by gradients - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMainHover: List by gradients - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMainActive: List by gradients - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMain: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientHover: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientActive: List by gradients - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradient: List by gradients - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradientHover: List by gradients - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradientActive: List by gradients - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradient: List by gradients - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradientHover: List by gradients - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradientActive: List by gradients - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradient: List by gradients - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradientHover: List by gradients - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradientActive: List by gradients - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradient: List by gradients - - /** - * light text inverse textGradientMainHover - */ - public val textInverseGradientMainHover: List by gradients - - /** - * light text inverse textGradientMainActive - */ - public val textInverseGradientMainActive: List by gradients - - /** - * light text inverse textGradientAthenaHover - */ - public val textInverseGradientAthenaHover: List by gradients - - /** - * light text inverse textGradientAthenaActive - */ - public val textInverseGradientAthenaActive: List by gradients - - /** - * light text inverse textGradientJoyHover - */ - public val textInverseGradientJoyHover: List by gradients - - /** - * light text inverse textGradientJoyActive - */ - public val textInverseGradientJoyActive: List by gradients - - /** - * light text inverse textGradientBrandHover - */ - public val textInverseGradientBrandHover: List by gradients - - /** - * light text inverse textGradientBrandActive - */ - public val textInverseGradientBrandActive: List by gradients - - /** - * light text inverse textGradientB2EHover - */ - public val textInverseGradientB2EHover: List by gradients - - /** - * light text inverse textGradientB2EActive - */ - public val textInverseGradientB2EActive: List by gradients - - /** - * light text inverse textGradientMain - */ - public val textInverseGradientMain: List by gradients - - /** - * light text inverse textGradientAthena - */ - public val textInverseGradientAthena: List by gradients - - /** - * light text inverse textGradientJoy - */ - public val textInverseGradientJoy: List by gradients - - /** - * light text inverse textGradientB2E - */ - public val textInverseGradientB2E: List by gradients - - /** - * light text inverse textGradientBrand - */ - public val textInverseGradientBrand: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientHover: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientActive: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradient: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradient: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradientHover: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradientActive: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradient: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradientHover: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradientActive: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradient: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradientHover: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradientActive: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeleton: List by gradients - - /** - * light surface default surfaceGradientMainHover - */ - public val surfaceDefaultGradientMainHover: List by gradients - - /** - * light surface default surfaceGradientMainActive - */ - public val surfaceDefaultGradientMainActive: List by gradients - - /** - * light surface default surfaceGradientMain - */ - public val surfaceDefaultGradientMain: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientActive: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientHover: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientActive: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradient: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradient: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradientHover: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradientActive: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradient: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradientHover: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradientActive: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradient: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradientHover: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradientActive: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradient: List by gradients - - /** - * light surface onDark surfaceGradientMainHover - */ - public val surfaceOnDarkGradientMainHover: List by gradients - - /** - * light surface onDark surfaceGradientMainActive - */ - public val surfaceOnDarkGradientMainActive: List by gradients - - /** - * light surface onDark surfaceGradientMain - */ - public val surfaceOnDarkGradientMain: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientActive: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientHover: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientActive: List by gradients - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradient: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradient: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradientHover: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradientActive: List by gradients - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradient: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradientHover: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradientActive: List by gradients - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradient: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradientHover: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradientActive: List by gradients - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradient: List by gradients - - /** - * light surface onLight surfaceGradientMainHover - */ - public val surfaceOnLightGradientMainHover: List by gradients - - /** - * light surface onLight surfaceGradientMainActive - */ - public val surfaceOnLightGradientMainActive: List by gradients - - /** - * light surface onLight surfaceGradientMain - */ - public val surfaceOnLightGradientMain: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientActive: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientHover: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientActive: List by gradients - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradient: List by gradients - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradientHover: List by gradients - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradientActive: List by gradients - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradient: List by gradients - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradient: List by gradients - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradientHover: List by gradients - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradientActive: List by gradients - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradient: List by gradients - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradientHover: List by gradients - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradientActive: List by gradients - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradient: List by gradients - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradientHover: List by gradients - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradientActive: List by gradients - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradient: List by gradients - - /** - * light surface inverse surfaceGradientMainHover - */ - public val surfaceInverseGradientMainHover: List by gradients - - /** - * light surface inverse surfaceGradientMainActive - */ - public val surfaceInverseGradientMainActive: List by gradients - - /** - * light surface inverse surfaceGradientMain - */ - public val surfaceInverseGradientMain: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradient: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientHover: List by gradients - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientActive: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradient: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientHover: List by gradients - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientActive: List by gradients - - /** - * Фон Афины на мобиле - */ - public val backgroundDefaultMobileAssistantAthena: List by gradients - - /** - * Фон Джой на мобиле - */ - public val backgroundDefaultMobileAssistantJoy: List by gradients - - /** - * Фоновый градиент бренда на мобиле - */ - public val backgroundDefaultMobileAssistantBrand: List by gradients - - /** - * Фон для модальной шторки - */ - public val backgroundDefaultModalSheet: List by gradients - - /** - * Фоновый градиент B2E-ассистента на мобиле - */ - public val backgroundDefaultMobileAssistantB2E: List by gradients - - /** - * Фон ассистента на мобиле - */ - public val backgroundDefaultMobileAssistantMain: List by gradients - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradientHover: List by gradients - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradientActive: List by gradients - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradient: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradient: List by gradients - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradientHover: List by gradients - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradientActive: List by gradients - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradient: List by gradients - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradient: List by gradients - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradientHover: List by gradients - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradientActive: List by gradients - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradient: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradient: List by gradients - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradientHover: List by gradients - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradientActive: List by gradients - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradient: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradient: List by gradients - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradientHover: List by gradients - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradientActive: List by gradients - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradient: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradientHover: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradientActive: List by gradients - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradient: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradient: List by gradients - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradientHover: List by gradients - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradientActive: List by gradients - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradient: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradientHover: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradientActive: List by gradients - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradient: List by gradients - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradientHover: List by gradients - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradientActive: List by gradients - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradient: List by gradients - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradientHover: List by gradients - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradientActive: List by gradients - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradient: List by gradients - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradientHover: List by gradients - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradientActive: List by gradients - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradient: List by gradients - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradientHover: List by gradients - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradientActive: List by gradients - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradient: List by gradients - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradientHover: List by gradients - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradientActive: List by gradients - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradient: List by gradients - - /** - * Возвращает копию [StylesSaluteGradients]. Предоставляет возможность переопределять градиенты. - */ - public fun copy(overrideGradients: GradientOverrideScope.() -> Unit = {}): StylesSaluteGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overrideMap = gradientOverrideScope.overrideMap - return StylesSaluteGradients(gradients.mapValues { overrideMap[it.key] ?: it.value }) - } -} - -/** - * Скоуп переопределения градиентов - */ -public class GradientOverrideScope { - private val _overrideMap: MutableMap> = mutableMapOf() - - internal val overrideMap: Map> - get() = _overrideMap.toMap() - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientHover: String = "textDefaultAccentGradientHover" - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradientActive: String = "textDefaultAccentGradientActive" - - /** - * Акцентный цвет с градиентом - */ - public val textDefaultAccentGradient: String = "textDefaultAccentGradient" - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradientHover: String = "textDefaultAccentMinorGradientHover" - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradientActive: String = "textDefaultAccentMinorGradientActive" - - /** - * Акцентный минорный цвет с градиентом - */ - public val textDefaultAccentMinorGradient: String = "textDefaultAccentMinorGradient" - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradientHover: String = "textDefaultPromoGradientHover" - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradientActive: String = "textDefaultPromoGradientActive" - - /** - * Промо цвет с градиентом - */ - public val textDefaultPromoGradient: String = "textDefaultPromoGradient" - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradientHover: String = "textDefaultPromoMinorGradientHover" - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradientActive: String = "textDefaultPromoMinorGradientActive" - - /** - * Минорный промо цвет с градиентом - */ - public val textDefaultPromoMinorGradient: String = "textDefaultPromoMinorGradient" - - /** - * Градиент Афины - */ - public val textDefaultGradientAthenaHover: String = "textDefaultGradientAthenaHover" - - /** - * Градиент Афины - */ - public val textDefaultGradientAthenaActive: String = "textDefaultGradientAthenaActive" - - /** - * Градиент Афины - */ - public val textDefaultGradientAthena: String = "textDefaultGradientAthena" - - /** - * Градиент Джой - */ - public val textDefaultGradientJoyHover: String = "textDefaultGradientJoyHover" - - /** - * Градиент Джой - */ - public val textDefaultGradientJoyActive: String = "textDefaultGradientJoyActive" - - /** - * Градиент Джой - */ - public val textDefaultGradientJoy: String = "textDefaultGradientJoy" - - /** - * Градиент бренда - */ - public val textDefaultGradientBrandHover: String = "textDefaultGradientBrandHover" - - /** - * Градиент бренда - */ - public val textDefaultGradientBrandActive: String = "textDefaultGradientBrandActive" - - /** - * Градиент бренда - */ - public val textDefaultGradientBrand: String = "textDefaultGradientBrand" - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2EHover: String = "textDefaultGradientB2EHover" - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2EActive: String = "textDefaultGradientB2EActive" - - /** - * Градиент B2E-ассистента - */ - public val textDefaultGradientB2E: String = "textDefaultGradientB2E" - - /** - * Градиент - */ - public val textDefaultGradientMainHover: String = "textDefaultGradientMainHover" - - /** - * Градиент - */ - public val textDefaultGradientMainActive: String = "textDefaultGradientMainActive" - - /** - * Градиент - */ - public val textDefaultGradientMain: String = "textDefaultGradientMain" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientHover: String = "textOnDarkAccentGradientHover" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradientActive: String = "textOnDarkAccentGradientActive" - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentGradient: String = "textOnDarkAccentGradient" - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradientHover: String = "textOnDarkAccentMinorGradientHover" - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradientActive: String = "textOnDarkAccentMinorGradientActive" - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public val textOnDarkAccentMinorGradient: String = "textOnDarkAccentMinorGradient" - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradientHover: String = "textOnDarkPromoGradientHover" - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradientActive: String = "textOnDarkPromoGradientActive" - - /** - * Промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoGradient: String = "textOnDarkPromoGradient" - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradientHover: String = "textOnDarkPromoMinorGradientHover" - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradientActive: String = "textOnDarkPromoMinorGradientActive" - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public val textOnDarkPromoMinorGradient: String = "textOnDarkPromoMinorGradient" - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthenaHover: String = "textOnDarkGradientAthenaHover" - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthenaActive: String = "textOnDarkGradientAthenaActive" - - /** - * Градиент Афины на темном фоне - */ - public val textOnDarkGradientAthena: String = "textOnDarkGradientAthena" - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoyHover: String = "textOnDarkGradientJoyHover" - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoyActive: String = "textOnDarkGradientJoyActive" - - /** - * Градиент Джой на темном фоне - */ - public val textOnDarkGradientJoy: String = "textOnDarkGradientJoy" - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2EHover: String = "textOnDarkGradientB2EHover" - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2EActive: String = "textOnDarkGradientB2EActive" - - /** - * Градиент B2E-ассистента на темном фоне - */ - public val textOnDarkGradientB2E: String = "textOnDarkGradientB2E" - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrandHover: String = "textOnDarkGradientBrandHover" - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrandActive: String = "textOnDarkGradientBrandActive" - - /** - * Градиент бренда на темном фоне - */ - public val textOnDarkGradientBrand: String = "textOnDarkGradientBrand" - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMainHover: String = "textOnDarkGradientMainHover" - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMainActive: String = "textOnDarkGradientMainActive" - - /** - * Градиент на темном фоне - */ - public val textOnDarkGradientMain: String = "textOnDarkGradientMain" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientHover: String = "textOnLightAccentGradientHover" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradientActive: String = "textOnLightAccentGradientActive" - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentGradient: String = "textOnLightAccentGradient" - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradientHover: String = "textOnLightAccentMinorGradientHover" - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradientActive: String = "textOnLightAccentMinorGradientActive" - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public val textOnLightAccentMinorGradient: String = "textOnLightAccentMinorGradient" - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradientHover: String = "textOnLightPromoGradientHover" - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradientActive: String = "textOnLightPromoGradientActive" - - /** - * Промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoGradient: String = "textOnLightPromoGradient" - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradientHover: String = "textOnLightPromoMinorGradientHover" - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradientActive: String = "textOnLightPromoMinorGradientActive" - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public val textOnLightPromoMinorGradient: String = "textOnLightPromoMinorGradient" - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthenaHover: String = "textOnLightGradientAthenaHover" - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthenaActive: String = "textOnLightGradientAthenaActive" - - /** - * Градиент Афины на светлом фоне - */ - public val textOnLightGradientAthena: String = "textOnLightGradientAthena" - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoyHover: String = "textOnLightGradientJoyHover" - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoyActive: String = "textOnLightGradientJoyActive" - - /** - * Градиент Джой на светлом фоне - */ - public val textOnLightGradientJoy: String = "textOnLightGradientJoy" - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2EHover: String = "textOnLightGradientB2EHover" - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2EActive: String = "textOnLightGradientB2EActive" - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public val textOnLightGradientB2E: String = "textOnLightGradientB2E" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrandHover: String = "textOnLightGradientBrandHover" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrandActive: String = "textOnLightGradientBrandActive" - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val textOnLightGradientBrand: String = "textOnLightGradientBrand" - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMainHover: String = "textOnLightGradientMainHover" - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMainActive: String = "textOnLightGradientMainActive" - - /** - * Градиент на светлом фоне - */ - public val textOnLightGradientMain: String = "textOnLightGradientMain" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientHover: String = "textInverseAccentGradientHover" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradientActive: String = "textInverseAccentGradientActive" - - /** - * Инвертированный акцентный цвет с градиентом - */ - public val textInverseAccentGradient: String = "textInverseAccentGradient" - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradientHover: String = "textInverseAccentMinorGradientHover" - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradientActive: String = "textInverseAccentMinorGradientActive" - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public val textInverseAccentMinorGradient: String = "textInverseAccentMinorGradient" - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradientHover: String = "textInversePromoGradientHover" - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradientActive: String = "textInversePromoGradientActive" - - /** - * Инвертированный промо цвет с градиентом - */ - public val textInversePromoGradient: String = "textInversePromoGradient" - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradientHover: String = "textInversePromoMinorGradientHover" - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradientActive: String = "textInversePromoMinorGradientActive" - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public val textInversePromoMinorGradient: String = "textInversePromoMinorGradient" - - /** - * light text inverse textGradientMainHover - */ - public val textInverseGradientMainHover: String = "textInverseGradientMainHover" - - /** - * light text inverse textGradientMainActive - */ - public val textInverseGradientMainActive: String = "textInverseGradientMainActive" - - /** - * light text inverse textGradientAthenaHover - */ - public val textInverseGradientAthenaHover: String = "textInverseGradientAthenaHover" - - /** - * light text inverse textGradientAthenaActive - */ - public val textInverseGradientAthenaActive: String = "textInverseGradientAthenaActive" - - /** - * light text inverse textGradientJoyHover - */ - public val textInverseGradientJoyHover: String = "textInverseGradientJoyHover" - - /** - * light text inverse textGradientJoyActive - */ - public val textInverseGradientJoyActive: String = "textInverseGradientJoyActive" - - /** - * light text inverse textGradientBrandHover - */ - public val textInverseGradientBrandHover: String = "textInverseGradientBrandHover" - - /** - * light text inverse textGradientBrandActive - */ - public val textInverseGradientBrandActive: String = "textInverseGradientBrandActive" - - /** - * light text inverse textGradientB2EHover - */ - public val textInverseGradientB2EHover: String = "textInverseGradientB2EHover" - - /** - * light text inverse textGradientB2EActive - */ - public val textInverseGradientB2EActive: String = "textInverseGradientB2EActive" - - /** - * light text inverse textGradientMain - */ - public val textInverseGradientMain: String = "textInverseGradientMain" - - /** - * light text inverse textGradientAthena - */ - public val textInverseGradientAthena: String = "textInverseGradientAthena" - - /** - * light text inverse textGradientJoy - */ - public val textInverseGradientJoy: String = "textInverseGradientJoy" - - /** - * light text inverse textGradientB2E - */ - public val textInverseGradientB2E: String = "textInverseGradientB2E" - - /** - * light text inverse textGradientBrand - */ - public val textInverseGradientBrand: String = "textInverseGradientBrand" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientHover: String = "surfaceDefaultAccentGradientHover" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradientActive: String = "surfaceDefaultAccentGradientActive" - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentGradient: String = "surfaceDefaultAccentGradient" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradientHover: String = - "surfaceDefaultAccentMinorGradientHover" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradientActive: String = - "surfaceDefaultAccentMinorGradientActive" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultAccentMinorGradient: String = "surfaceDefaultAccentMinorGradient" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradientHover: String = - "surfaceDefaultTransparentAccentGradientHover" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradientActive: String = - "surfaceDefaultTransparentAccentGradientActive" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentAccentGradient: String = - "surfaceDefaultTransparentAccentGradient" - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradientHover: String = "surfaceDefaultPromoGradientHover" - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradientActive: String = "surfaceDefaultPromoGradientActive" - - /** - * Промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoGradient: String = "surfaceDefaultPromoGradient" - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradientHover: String = - "surfaceDefaultPromoMinorGradientHover" - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradientActive: String = - "surfaceDefaultPromoMinorGradientActive" - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultPromoMinorGradient: String = "surfaceDefaultPromoMinorGradient" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradientHover: String = - "surfaceDefaultTransparentPromoGradientHover" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradientActive: String = - "surfaceDefaultTransparentPromoGradientActive" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceDefaultTransparentPromoGradient: String = - "surfaceDefaultTransparentPromoGradient" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeleton: String = "surfaceDefaultSkeleton" - - /** - * light surface default surfaceGradientMainHover - */ - public val surfaceDefaultGradientMainHover: String = "surfaceDefaultGradientMainHover" - - /** - * light surface default surfaceGradientMainActive - */ - public val surfaceDefaultGradientMainActive: String = "surfaceDefaultGradientMainActive" - - /** - * light surface default surfaceGradientMain - */ - public val surfaceDefaultGradientMain: String = "surfaceDefaultGradientMain" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradient: String = "surfaceDefaultSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientHover: String = "surfaceDefaultSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceDefaultSkeletonGradientActive: String = "surfaceDefaultSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradient: String = "surfaceDefaultSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientHover: String = - "surfaceDefaultSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceDefaultSkeletonDeepGradientActive: String = - "surfaceDefaultSkeletonDeepGradientActive" - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientHover: String = "surfaceOnDarkAccentGradientHover" - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradientActive: String = "surfaceOnDarkAccentGradientActive" - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentGradient: String = "surfaceOnDarkAccentGradient" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradientHover: String = - "surfaceOnDarkAccentMinorGradientHover" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradientActive: String = - "surfaceOnDarkAccentMinorGradientActive" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkAccentMinorGradient: String = "surfaceOnDarkAccentMinorGradient" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradientHover: String = - "surfaceOnDarkTransparentAccentGradientHover" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradientActive: String = - "surfaceOnDarkTransparentAccentGradientActive" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentAccentGradient: String = - "surfaceOnDarkTransparentAccentGradient" - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradientHover: String = "surfaceOnDarkPromoGradientHover" - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradientActive: String = "surfaceOnDarkPromoGradientActive" - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoGradient: String = "surfaceOnDarkPromoGradient" - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradientHover: String = "surfaceOnDarkPromoMinorGradientHover" - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradientActive: String = - "surfaceOnDarkPromoMinorGradientActive" - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkPromoMinorGradient: String = "surfaceOnDarkPromoMinorGradient" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradientHover: String = - "surfaceOnDarkTransparentPromoGradientHover" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradientActive: String = - "surfaceOnDarkTransparentPromoGradientActive" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public val surfaceOnDarkTransparentPromoGradient: String = - "surfaceOnDarkTransparentPromoGradient" - - /** - * light surface onDark surfaceGradientMainHover - */ - public val surfaceOnDarkGradientMainHover: String = "surfaceOnDarkGradientMainHover" - - /** - * light surface onDark surfaceGradientMainActive - */ - public val surfaceOnDarkGradientMainActive: String = "surfaceOnDarkGradientMainActive" - - /** - * light surface onDark surfaceGradientMain - */ - public val surfaceOnDarkGradientMain: String = "surfaceOnDarkGradientMain" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradient: String = "surfaceOnDarkSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientHover: String = "surfaceOnDarkSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceOnDarkSkeletonGradientActive: String = "surfaceOnDarkSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradient: String = "surfaceOnDarkSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientHover: String = - "surfaceOnDarkSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnDarkSkeletonDeepGradientActive: String = - "surfaceOnDarkSkeletonDeepGradientActive" - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientHover: String = "surfaceOnLightAccentGradientHover" - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradientActive: String = "surfaceOnLightAccentGradientActive" - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentGradient: String = "surfaceOnLightAccentGradient" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradientHover: String = - "surfaceOnLightAccentMinorGradientHover" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradientActive: String = - "surfaceOnLightAccentMinorGradientActive" - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightAccentMinorGradient: String = "surfaceOnLightAccentMinorGradient" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradientHover: String = - "surfaceOnLightTransparentAccentGradientHover" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradientActive: String = - "surfaceOnLightTransparentAccentGradientActive" - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentAccentGradient: String = - "surfaceOnLightTransparentAccentGradient" - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradientHover: String = "surfaceOnLightPromoGradientHover" - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradientActive: String = "surfaceOnLightPromoGradientActive" - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoGradient: String = "surfaceOnLightPromoGradient" - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradientHover: String = - "surfaceOnLightPromoMinorGradientHover" - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradientActive: String = - "surfaceOnLightPromoMinorGradientActive" - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightPromoMinorGradient: String = "surfaceOnLightPromoMinorGradient" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradientHover: String = - "surfaceOnLightTransparentPromoGradientHover" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradientActive: String = - "surfaceOnLightTransparentPromoGradientActive" - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public val surfaceOnLightTransparentPromoGradient: String = - "surfaceOnLightTransparentPromoGradient" - - /** - * light surface onLight surfaceGradientMainHover - */ - public val surfaceOnLightGradientMainHover: String = "surfaceOnLightGradientMainHover" - - /** - * light surface onLight surfaceGradientMainActive - */ - public val surfaceOnLightGradientMainActive: String = "surfaceOnLightGradientMainActive" - - /** - * light surface onLight surfaceGradientMain - */ - public val surfaceOnLightGradientMain: String = "surfaceOnLightGradientMain" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradient: String = "surfaceOnLightSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientHover: String = "surfaceOnLightSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceOnLightSkeletonGradientActive: String = "surfaceOnLightSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradient: String = "surfaceOnLightSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientHover: String = - "surfaceOnLightSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceOnLightSkeletonDeepGradientActive: String = - "surfaceOnLightSkeletonDeepGradientActive" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientHover: String = "surfaceInverseAccentGradientHover" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradientActive: String = "surfaceInverseAccentGradientActive" - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentGradient: String = "surfaceInverseAccentGradient" - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradientHover: String = - "surfaceInverseAccentMinorGradientHover" - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradientActive: String = - "surfaceInverseAccentMinorGradientActive" - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public val surfaceInverseAccentMinorGradient: String = "surfaceInverseAccentMinorGradient" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradientHover: String = - "surfaceInverseTransparentAccentGradientHover" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradientActive: String = - "surfaceInverseTransparentAccentGradientActive" - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentAccentGradient: String = - "surfaceInverseTransparentAccentGradient" - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradientHover: String = "surfaceInversePromoGradientHover" - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradientActive: String = "surfaceInversePromoGradientActive" - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoGradient: String = "surfaceInversePromoGradient" - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradientHover: String = - "surfaceInversePromoMinorGradientHover" - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradientActive: String = - "surfaceInversePromoMinorGradientActive" - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public val surfaceInversePromoMinorGradient: String = "surfaceInversePromoMinorGradient" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradientHover: String = - "surfaceInverseTransparentPromoGradientHover" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradientActive: String = - "surfaceInverseTransparentPromoGradientActive" - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public val surfaceInverseTransparentPromoGradient: String = - "surfaceInverseTransparentPromoGradient" - - /** - * light surface inverse surfaceGradientMainHover - */ - public val surfaceInverseGradientMainHover: String = "surfaceInverseGradientMainHover" - - /** - * light surface inverse surfaceGradientMainActive - */ - public val surfaceInverseGradientMainActive: String = "surfaceInverseGradientMainActive" - - /** - * light surface inverse surfaceGradientMain - */ - public val surfaceInverseGradientMain: String = "surfaceInverseGradientMain" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradient: String = "surfaceInverseSkeletonGradient" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientHover: String = "surfaceInverseSkeletonGradientHover" - - /** - * Фон для скелетона - */ - public val surfaceInverseSkeletonGradientActive: String = "surfaceInverseSkeletonGradientActive" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradient: String = "surfaceInverseSkeletonDeepGradient" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientHover: String = - "surfaceInverseSkeletonDeepGradientHover" - - /** - * Яркий фон для скелетона - */ - public val surfaceInverseSkeletonDeepGradientActive: String = - "surfaceInverseSkeletonDeepGradientActive" - - /** - * Фон Афины на мобиле - */ - public val backgroundDefaultMobileAssistantAthena: String = - "backgroundDefaultMobileAssistantAthena" - - /** - * Фон Джой на мобиле - */ - public val backgroundDefaultMobileAssistantJoy: String = "backgroundDefaultMobileAssistantJoy" - - /** - * Фоновый градиент бренда на мобиле - */ - public val backgroundDefaultMobileAssistantBrand: String = - "backgroundDefaultMobileAssistantBrand" - - /** - * Фон для модальной шторки - */ - public val backgroundDefaultModalSheet: String = "backgroundDefaultModalSheet" - - /** - * Фоновый градиент B2E-ассистента на мобиле - */ - public val backgroundDefaultMobileAssistantB2E: String = "backgroundDefaultMobileAssistantB2E" - - /** - * Фон ассистента на мобиле - */ - public val backgroundDefaultMobileAssistantMain: String = "backgroundDefaultMobileAssistantMain" - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradientHover: String = "outlineDefaultAccentGradientHover" - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradientActive: String = "outlineDefaultAccentGradientActive" - - /** - * Акцентный цвет обводки с градиентом - */ - public val outlineDefaultAccentGradient: String = "outlineDefaultAccentGradient" - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradientHover: String = - "outlineDefaultAccentMinorGradientHover" - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradientActive: String = - "outlineDefaultAccentMinorGradientActive" - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public val outlineDefaultAccentMinorGradient: String = "outlineDefaultAccentMinorGradient" - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradientHover: String = - "outlineDefaultTransparentAccentGradientHover" - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradientActive: String = - "outlineDefaultTransparentAccentGradientActive" - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public val outlineDefaultTransparentAccentGradient: String = - "outlineDefaultTransparentAccentGradient" - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradientHover: String = "outlineDefaultPromoGradientHover" - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradientActive: String = "outlineDefaultPromoGradientActive" - - /** - * Промо цвет обводки с градиентом - */ - public val outlineDefaultPromoGradient: String = "outlineDefaultPromoGradient" - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradientHover: String = - "outlineDefaultPromoMinorGradientHover" - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradientActive: String = - "outlineDefaultPromoMinorGradientActive" - - /** - * Минорный промо цвет обводки с градиентом - */ - public val outlineDefaultPromoMinorGradient: String = "outlineDefaultPromoMinorGradient" - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradientHover: String = "outlineOnDarkAccentGradientHover" - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradientActive: String = "outlineOnDarkAccentGradientActive" - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentGradient: String = "outlineOnDarkAccentGradient" - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradientHover: String = - "outlineOnDarkAccentMinorGradientHover" - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradientActive: String = - "outlineOnDarkAccentMinorGradientActive" - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkAccentMinorGradient: String = "outlineOnDarkAccentMinorGradient" - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradientHover: String = - "outlineOnDarkTransparentAccentGradientHover" - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradientActive: String = - "outlineOnDarkTransparentAccentGradientActive" - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkTransparentAccentGradient: String = - "outlineOnDarkTransparentAccentGradient" - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradientHover: String = "outlineOnDarkPromoGradientHover" - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradientActive: String = "outlineOnDarkPromoGradientActive" - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoGradient: String = "outlineOnDarkPromoGradient" - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradientHover: String = "outlineOnDarkPromoMinorGradientHover" - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradientActive: String = - "outlineOnDarkPromoMinorGradientActive" - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public val outlineOnDarkPromoMinorGradient: String = "outlineOnDarkPromoMinorGradient" - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradientHover: String = "outlineOnLightAccentGradientHover" - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradientActive: String = "outlineOnLightAccentGradientActive" - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentGradient: String = "outlineOnLightAccentGradient" - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradientHover: String = - "outlineOnLightAccentMinorGradientHover" - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradientActive: String = - "outlineOnLightAccentMinorGradientActive" - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightAccentMinorGradient: String = "outlineOnLightAccentMinorGradient" - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradientHover: String = - "outlineOnLightTransparentAccentGradientHover" - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradientActive: String = - "outlineOnLightTransparentAccentGradientActive" - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightTransparentAccentGradient: String = - "outlineOnLightTransparentAccentGradient" - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradientHover: String = "outlineOnLightPromoGradientHover" - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradientActive: String = "outlineOnLightPromoGradientActive" - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoGradient: String = "outlineOnLightPromoGradient" - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradientHover: String = - "outlineOnLightPromoMinorGradientHover" - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradientActive: String = - "outlineOnLightPromoMinorGradientActive" - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public val outlineOnLightPromoMinorGradient: String = "outlineOnLightPromoMinorGradient" - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradientHover: String = "outlineInverseAccentGradientHover" - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradientActive: String = "outlineInverseAccentGradientActive" - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseAccentGradient: String = "outlineInverseAccentGradient" - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradientHover: String = - "outlineInverseAccentMinorGradientHover" - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradientActive: String = - "outlineInverseAccentMinorGradientActive" - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public val outlineInverseAccentMinorGradient: String = "outlineInverseAccentMinorGradient" - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradientHover: String = - "outlineInverseTransparentAccentGradientHover" - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradientActive: String = - "outlineInverseTransparentAccentGradientActive" - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public val outlineInverseTransparentAccentGradient: String = - "outlineInverseTransparentAccentGradient" - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradientHover: String = "outlineInversePromoGradientHover" - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradientActive: String = "outlineInversePromoGradientActive" - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public val outlineInversePromoGradient: String = "outlineInversePromoGradient" - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradientHover: String = - "outlineInversePromoMinorGradientHover" - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradientActive: String = - "outlineInversePromoMinorGradientActive" - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public val outlineInversePromoMinorGradient: String = "outlineInversePromoMinorGradient" - - /** - * Переопределяет аттрибут градиента. - */ - public infix fun String.overrideBy(gradient: List) { - _overrideMap[this] = gradient - } -} - -internal val LocalStylesSaluteGradients: ProvidableCompositionLocal = - staticCompositionLocalOf { - lightStylesSaluteGradients() - } - -private fun MutableMap>.add( - attribute: String, - defaultTokenValue: List, - overwriteMap: Map>, -) { - this[attribute] = overwriteMap[attribute] ?: defaultTokenValue -} - -/** - * Градиенты [StylesSaluteGradients] для светлой темы - */ -@Suppress("LongMethod") -public fun lightStylesSaluteGradients(overrideGradients: GradientOverrideScope.() -> Unit = {}): StylesSaluteGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overwrite = gradientOverrideScope.overrideMap - val initial = mutableMapOf>() - initial.add( - "textDefaultAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientHover.colors, - LightGradientTokens.TextDefaultAccentGradientHover.positions, - LightGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradientActive.colors, - LightGradientTokens.TextDefaultAccentGradientActive.positions, - LightGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentGradient.colors, - LightGradientTokens.TextDefaultAccentGradient.positions, - LightGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentMinorGradientHover.colors, - LightGradientTokens.TextDefaultAccentMinorGradientHover.positions, - LightGradientTokens.TextDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentMinorGradientActive.colors, - LightGradientTokens.TextDefaultAccentMinorGradientActive.positions, - LightGradientTokens.TextDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextDefaultAccentMinorGradient.colors, - LightGradientTokens.TextDefaultAccentMinorGradient.positions, - LightGradientTokens.TextDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoGradientHover.colors, - LightGradientTokens.TextDefaultPromoGradientHover.positions, - LightGradientTokens.TextDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoGradientActive.colors, - LightGradientTokens.TextDefaultPromoGradientActive.positions, - LightGradientTokens.TextDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradient", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoGradient.colors, - LightGradientTokens.TextDefaultPromoGradient.positions, - LightGradientTokens.TextDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoMinorGradientHover.colors, - LightGradientTokens.TextDefaultPromoMinorGradientHover.positions, - LightGradientTokens.TextDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoMinorGradientActive.colors, - LightGradientTokens.TextDefaultPromoMinorGradientActive.positions, - LightGradientTokens.TextDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextDefaultPromoMinorGradient.colors, - LightGradientTokens.TextDefaultPromoMinorGradient.positions, - LightGradientTokens.TextDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthenaHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientAthenaHover.colors, - LightGradientTokens.TextDefaultGradientAthenaHover.positions, - LightGradientTokens.TextDefaultGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthenaActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientAthenaActive.colors, - LightGradientTokens.TextDefaultGradientAthenaActive.positions, - LightGradientTokens.TextDefaultGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthena", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientAthena.colors, - LightGradientTokens.TextDefaultGradientAthena.positions, - LightGradientTokens.TextDefaultGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoyHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientJoyHover.colors, - LightGradientTokens.TextDefaultGradientJoyHover.positions, - LightGradientTokens.TextDefaultGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoyActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientJoyActive.colors, - LightGradientTokens.TextDefaultGradientJoyActive.positions, - LightGradientTokens.TextDefaultGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoy", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientJoy.colors, - LightGradientTokens.TextDefaultGradientJoy.positions, - LightGradientTokens.TextDefaultGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrandHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientBrandHover.colors, - LightGradientTokens.TextDefaultGradientBrandHover.positions, - LightGradientTokens.TextDefaultGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrandActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientBrandActive.colors, - LightGradientTokens.TextDefaultGradientBrandActive.positions, - LightGradientTokens.TextDefaultGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrand", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientBrand.colors, - LightGradientTokens.TextDefaultGradientBrand.positions, - LightGradientTokens.TextDefaultGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2EHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientB2EHover.colors, - LightGradientTokens.TextDefaultGradientB2EHover.positions, - LightGradientTokens.TextDefaultGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2EActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientB2EActive.colors, - LightGradientTokens.TextDefaultGradientB2EActive.positions, - LightGradientTokens.TextDefaultGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2E", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientB2E.colors, - LightGradientTokens.TextDefaultGradientB2E.positions, - LightGradientTokens.TextDefaultGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientMainHover.colors, - LightGradientTokens.TextDefaultGradientMainHover.positions, - LightGradientTokens.TextDefaultGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientMainActive.colors, - LightGradientTokens.TextDefaultGradientMainActive.positions, - LightGradientTokens.TextDefaultGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMain", - listOf( - linearGradient( - LightGradientTokens.TextDefaultGradientMain.colors, - LightGradientTokens.TextDefaultGradientMain.positions, - LightGradientTokens.TextDefaultGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientHover.colors, - LightGradientTokens.TextOnDarkAccentGradientHover.positions, - LightGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradientActive.colors, - LightGradientTokens.TextOnDarkAccentGradientActive.positions, - LightGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentGradient.colors, - LightGradientTokens.TextOnDarkAccentGradient.positions, - LightGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentMinorGradientHover.colors, - LightGradientTokens.TextOnDarkAccentMinorGradientHover.positions, - LightGradientTokens.TextOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentMinorGradientActive.colors, - LightGradientTokens.TextOnDarkAccentMinorGradientActive.positions, - LightGradientTokens.TextOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkAccentMinorGradient.colors, - LightGradientTokens.TextOnDarkAccentMinorGradient.positions, - LightGradientTokens.TextOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoGradientHover.colors, - LightGradientTokens.TextOnDarkPromoGradientHover.positions, - LightGradientTokens.TextOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoGradientActive.colors, - LightGradientTokens.TextOnDarkPromoGradientActive.positions, - LightGradientTokens.TextOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoGradient.colors, - LightGradientTokens.TextOnDarkPromoGradient.positions, - LightGradientTokens.TextOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoMinorGradientHover.colors, - LightGradientTokens.TextOnDarkPromoMinorGradientHover.positions, - LightGradientTokens.TextOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoMinorGradientActive.colors, - LightGradientTokens.TextOnDarkPromoMinorGradientActive.positions, - LightGradientTokens.TextOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkPromoMinorGradient.colors, - LightGradientTokens.TextOnDarkPromoMinorGradient.positions, - LightGradientTokens.TextOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthenaHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientAthenaHover.colors, - LightGradientTokens.TextOnDarkGradientAthenaHover.positions, - LightGradientTokens.TextOnDarkGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthenaActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientAthenaActive.colors, - LightGradientTokens.TextOnDarkGradientAthenaActive.positions, - LightGradientTokens.TextOnDarkGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthena", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientAthena.colors, - LightGradientTokens.TextOnDarkGradientAthena.positions, - LightGradientTokens.TextOnDarkGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoyHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientJoyHover.colors, - LightGradientTokens.TextOnDarkGradientJoyHover.positions, - LightGradientTokens.TextOnDarkGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoyActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientJoyActive.colors, - LightGradientTokens.TextOnDarkGradientJoyActive.positions, - LightGradientTokens.TextOnDarkGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoy", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientJoy.colors, - LightGradientTokens.TextOnDarkGradientJoy.positions, - LightGradientTokens.TextOnDarkGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2EHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientB2EHover.colors, - LightGradientTokens.TextOnDarkGradientB2EHover.positions, - LightGradientTokens.TextOnDarkGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2EActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientB2EActive.colors, - LightGradientTokens.TextOnDarkGradientB2EActive.positions, - LightGradientTokens.TextOnDarkGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2E", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientB2E.colors, - LightGradientTokens.TextOnDarkGradientB2E.positions, - LightGradientTokens.TextOnDarkGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrandHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientBrandHover.colors, - LightGradientTokens.TextOnDarkGradientBrandHover.positions, - LightGradientTokens.TextOnDarkGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrandActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientBrandActive.colors, - LightGradientTokens.TextOnDarkGradientBrandActive.positions, - LightGradientTokens.TextOnDarkGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrand", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientBrand.colors, - LightGradientTokens.TextOnDarkGradientBrand.positions, - LightGradientTokens.TextOnDarkGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientMainHover.colors, - LightGradientTokens.TextOnDarkGradientMainHover.positions, - LightGradientTokens.TextOnDarkGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientMainActive.colors, - LightGradientTokens.TextOnDarkGradientMainActive.positions, - LightGradientTokens.TextOnDarkGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMain", - listOf( - linearGradient( - LightGradientTokens.TextOnDarkGradientMain.colors, - LightGradientTokens.TextOnDarkGradientMain.positions, - LightGradientTokens.TextOnDarkGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientHover.colors, - LightGradientTokens.TextOnLightAccentGradientHover.positions, - LightGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradientActive.colors, - LightGradientTokens.TextOnLightAccentGradientActive.positions, - LightGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentGradient.colors, - LightGradientTokens.TextOnLightAccentGradient.positions, - LightGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentMinorGradientHover.colors, - LightGradientTokens.TextOnLightAccentMinorGradientHover.positions, - LightGradientTokens.TextOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentMinorGradientActive.colors, - LightGradientTokens.TextOnLightAccentMinorGradientActive.positions, - LightGradientTokens.TextOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnLightAccentMinorGradient.colors, - LightGradientTokens.TextOnLightAccentMinorGradient.positions, - LightGradientTokens.TextOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoGradientHover.colors, - LightGradientTokens.TextOnLightPromoGradientHover.positions, - LightGradientTokens.TextOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoGradientActive.colors, - LightGradientTokens.TextOnLightPromoGradientActive.positions, - LightGradientTokens.TextOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoGradient.colors, - LightGradientTokens.TextOnLightPromoGradient.positions, - LightGradientTokens.TextOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoMinorGradientHover.colors, - LightGradientTokens.TextOnLightPromoMinorGradientHover.positions, - LightGradientTokens.TextOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoMinorGradientActive.colors, - LightGradientTokens.TextOnLightPromoMinorGradientActive.positions, - LightGradientTokens.TextOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextOnLightPromoMinorGradient.colors, - LightGradientTokens.TextOnLightPromoMinorGradient.positions, - LightGradientTokens.TextOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthenaHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientAthenaHover.colors, - LightGradientTokens.TextOnLightGradientAthenaHover.positions, - LightGradientTokens.TextOnLightGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthenaActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientAthenaActive.colors, - LightGradientTokens.TextOnLightGradientAthenaActive.positions, - LightGradientTokens.TextOnLightGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthena", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientAthena.colors, - LightGradientTokens.TextOnLightGradientAthena.positions, - LightGradientTokens.TextOnLightGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoyHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientJoyHover.colors, - LightGradientTokens.TextOnLightGradientJoyHover.positions, - LightGradientTokens.TextOnLightGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoyActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientJoyActive.colors, - LightGradientTokens.TextOnLightGradientJoyActive.positions, - LightGradientTokens.TextOnLightGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoy", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientJoy.colors, - LightGradientTokens.TextOnLightGradientJoy.positions, - LightGradientTokens.TextOnLightGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2EHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientB2EHover.colors, - LightGradientTokens.TextOnLightGradientB2EHover.positions, - LightGradientTokens.TextOnLightGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2EActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientB2EActive.colors, - LightGradientTokens.TextOnLightGradientB2EActive.positions, - LightGradientTokens.TextOnLightGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2E", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientB2E.colors, - LightGradientTokens.TextOnLightGradientB2E.positions, - LightGradientTokens.TextOnLightGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrandHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientBrandHover.colors, - LightGradientTokens.TextOnLightGradientBrandHover.positions, - LightGradientTokens.TextOnLightGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrandActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientBrandActive.colors, - LightGradientTokens.TextOnLightGradientBrandActive.positions, - LightGradientTokens.TextOnLightGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrand", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientBrand.colors, - LightGradientTokens.TextOnLightGradientBrand.positions, - LightGradientTokens.TextOnLightGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientMainHover.colors, - LightGradientTokens.TextOnLightGradientMainHover.positions, - LightGradientTokens.TextOnLightGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientMainActive.colors, - LightGradientTokens.TextOnLightGradientMainActive.positions, - LightGradientTokens.TextOnLightGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMain", - listOf( - linearGradient( - LightGradientTokens.TextOnLightGradientMain.colors, - LightGradientTokens.TextOnLightGradientMain.positions, - LightGradientTokens.TextOnLightGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientHover.colors, - LightGradientTokens.TextInverseAccentGradientHover.positions, - LightGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradientActive.colors, - LightGradientTokens.TextInverseAccentGradientActive.positions, - LightGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradient", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentGradient.colors, - LightGradientTokens.TextInverseAccentGradient.positions, - LightGradientTokens.TextInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentMinorGradientHover.colors, - LightGradientTokens.TextInverseAccentMinorGradientHover.positions, - LightGradientTokens.TextInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentMinorGradientActive.colors, - LightGradientTokens.TextInverseAccentMinorGradientActive.positions, - LightGradientTokens.TextInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextInverseAccentMinorGradient.colors, - LightGradientTokens.TextInverseAccentMinorGradient.positions, - LightGradientTokens.TextInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoGradientHover.colors, - LightGradientTokens.TextInversePromoGradientHover.positions, - LightGradientTokens.TextInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoGradientActive.colors, - LightGradientTokens.TextInversePromoGradientActive.positions, - LightGradientTokens.TextInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradient", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoGradient.colors, - LightGradientTokens.TextInversePromoGradient.positions, - LightGradientTokens.TextInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoMinorGradientHover.colors, - LightGradientTokens.TextInversePromoMinorGradientHover.positions, - LightGradientTokens.TextInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoMinorGradientActive.colors, - LightGradientTokens.TextInversePromoMinorGradientActive.positions, - LightGradientTokens.TextInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.TextInversePromoMinorGradient.colors, - LightGradientTokens.TextInversePromoMinorGradient.positions, - LightGradientTokens.TextInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientMainHover.colors, - LightGradientTokens.TextInverseGradientMainHover.positions, - LightGradientTokens.TextInverseGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientMainActive.colors, - LightGradientTokens.TextInverseGradientMainActive.positions, - LightGradientTokens.TextInverseGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthenaHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientAthenaHover.colors, - LightGradientTokens.TextInverseGradientAthenaHover.positions, - LightGradientTokens.TextInverseGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthenaActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientAthenaActive.colors, - LightGradientTokens.TextInverseGradientAthenaActive.positions, - LightGradientTokens.TextInverseGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoyHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientJoyHover.colors, - LightGradientTokens.TextInverseGradientJoyHover.positions, - LightGradientTokens.TextInverseGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoyActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientJoyActive.colors, - LightGradientTokens.TextInverseGradientJoyActive.positions, - LightGradientTokens.TextInverseGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrandHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientBrandHover.colors, - LightGradientTokens.TextInverseGradientBrandHover.positions, - LightGradientTokens.TextInverseGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrandActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientBrandActive.colors, - LightGradientTokens.TextInverseGradientBrandActive.positions, - LightGradientTokens.TextInverseGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2EHover", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientB2EHover.colors, - LightGradientTokens.TextInverseGradientB2EHover.positions, - LightGradientTokens.TextInverseGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2EActive", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientB2EActive.colors, - LightGradientTokens.TextInverseGradientB2EActive.positions, - LightGradientTokens.TextInverseGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMain", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientMain.colors, - LightGradientTokens.TextInverseGradientMain.positions, - LightGradientTokens.TextInverseGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthena", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientAthena.colors, - LightGradientTokens.TextInverseGradientAthena.positions, - LightGradientTokens.TextInverseGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoy", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientJoy.colors, - LightGradientTokens.TextInverseGradientJoy.positions, - LightGradientTokens.TextInverseGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2E", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientB2E.colors, - LightGradientTokens.TextInverseGradientB2E.positions, - LightGradientTokens.TextInverseGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrand", - listOf( - linearGradient( - LightGradientTokens.TextInverseGradientBrand.colors, - LightGradientTokens.TextInverseGradientBrand.positions, - LightGradientTokens.TextInverseGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientHover.colors, - LightGradientTokens.SurfaceDefaultAccentGradientHover.positions, - LightGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradientActive.colors, - LightGradientTokens.SurfaceDefaultAccentGradientActive.positions, - LightGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentGradient.colors, - LightGradientTokens.SurfaceDefaultAccentGradient.positions, - LightGradientTokens.SurfaceDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentMinorGradientHover.colors, - LightGradientTokens.SurfaceDefaultAccentMinorGradientHover.positions, - LightGradientTokens.SurfaceDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentMinorGradientActive.colors, - LightGradientTokens.SurfaceDefaultAccentMinorGradientActive.positions, - LightGradientTokens.SurfaceDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultAccentMinorGradient.colors, - LightGradientTokens.SurfaceDefaultAccentMinorGradient.positions, - LightGradientTokens.SurfaceDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentAccentGradientHover.colors, - LightGradientTokens.SurfaceDefaultTransparentAccentGradientHover.positions, - LightGradientTokens.SurfaceDefaultTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentAccentGradientActive.colors, - LightGradientTokens.SurfaceDefaultTransparentAccentGradientActive.positions, - LightGradientTokens.SurfaceDefaultTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentAccentGradient.colors, - LightGradientTokens.SurfaceDefaultTransparentAccentGradient.positions, - LightGradientTokens.SurfaceDefaultTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoGradientHover.colors, - LightGradientTokens.SurfaceDefaultPromoGradientHover.positions, - LightGradientTokens.SurfaceDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoGradientActive.colors, - LightGradientTokens.SurfaceDefaultPromoGradientActive.positions, - LightGradientTokens.SurfaceDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoGradient.colors, - LightGradientTokens.SurfaceDefaultPromoGradient.positions, - LightGradientTokens.SurfaceDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoMinorGradientHover.colors, - LightGradientTokens.SurfaceDefaultPromoMinorGradientHover.positions, - LightGradientTokens.SurfaceDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoMinorGradientActive.colors, - LightGradientTokens.SurfaceDefaultPromoMinorGradientActive.positions, - LightGradientTokens.SurfaceDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultPromoMinorGradient.colors, - LightGradientTokens.SurfaceDefaultPromoMinorGradient.positions, - LightGradientTokens.SurfaceDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentPromoGradientHover.colors, - LightGradientTokens.SurfaceDefaultTransparentPromoGradientHover.positions, - LightGradientTokens.SurfaceDefaultTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentPromoGradientActive.colors, - LightGradientTokens.SurfaceDefaultTransparentPromoGradientActive.positions, - LightGradientTokens.SurfaceDefaultTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultTransparentPromoGradient.colors, - LightGradientTokens.SurfaceDefaultTransparentPromoGradient.positions, - LightGradientTokens.SurfaceDefaultTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeleton", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeleton.colors, - LightGradientTokens.SurfaceDefaultSkeleton.positions, - LightGradientTokens.SurfaceDefaultSkeleton.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultGradientMainHover.colors, - LightGradientTokens.SurfaceDefaultGradientMainHover.positions, - LightGradientTokens.SurfaceDefaultGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultGradientMainActive.colors, - LightGradientTokens.SurfaceDefaultGradientMainActive.positions, - LightGradientTokens.SurfaceDefaultGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMain", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultGradientMain.colors, - LightGradientTokens.SurfaceDefaultGradientMain.positions, - LightGradientTokens.SurfaceDefaultGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - LightGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentGradient.colors, - LightGradientTokens.SurfaceOnDarkAccentGradient.positions, - LightGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentMinorGradientHover.colors, - LightGradientTokens.SurfaceOnDarkAccentMinorGradientHover.positions, - LightGradientTokens.SurfaceOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentMinorGradientActive.colors, - LightGradientTokens.SurfaceOnDarkAccentMinorGradientActive.positions, - LightGradientTokens.SurfaceOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkAccentMinorGradient.colors, - LightGradientTokens.SurfaceOnDarkAccentMinorGradient.positions, - LightGradientTokens.SurfaceOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.colors, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.positions, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.colors, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.positions, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentAccentGradient.colors, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradient.positions, - LightGradientTokens.SurfaceOnDarkTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoGradientHover.colors, - LightGradientTokens.SurfaceOnDarkPromoGradientHover.positions, - LightGradientTokens.SurfaceOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoGradientActive.colors, - LightGradientTokens.SurfaceOnDarkPromoGradientActive.positions, - LightGradientTokens.SurfaceOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoGradient.colors, - LightGradientTokens.SurfaceOnDarkPromoGradient.positions, - LightGradientTokens.SurfaceOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoMinorGradientHover.colors, - LightGradientTokens.SurfaceOnDarkPromoMinorGradientHover.positions, - LightGradientTokens.SurfaceOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoMinorGradientActive.colors, - LightGradientTokens.SurfaceOnDarkPromoMinorGradientActive.positions, - LightGradientTokens.SurfaceOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkPromoMinorGradient.colors, - LightGradientTokens.SurfaceOnDarkPromoMinorGradient.positions, - LightGradientTokens.SurfaceOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.colors, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.positions, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.colors, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.positions, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkTransparentPromoGradient.colors, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradient.positions, - LightGradientTokens.SurfaceOnDarkTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkGradientMainHover.colors, - LightGradientTokens.SurfaceOnDarkGradientMainHover.positions, - LightGradientTokens.SurfaceOnDarkGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkGradientMainActive.colors, - LightGradientTokens.SurfaceOnDarkGradientMainActive.positions, - LightGradientTokens.SurfaceOnDarkGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMain", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkGradientMain.colors, - LightGradientTokens.SurfaceOnDarkGradientMain.positions, - LightGradientTokens.SurfaceOnDarkGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientHover.colors, - LightGradientTokens.SurfaceOnLightAccentGradientHover.positions, - LightGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradientActive.colors, - LightGradientTokens.SurfaceOnLightAccentGradientActive.positions, - LightGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentGradient.colors, - LightGradientTokens.SurfaceOnLightAccentGradient.positions, - LightGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentMinorGradientHover.colors, - LightGradientTokens.SurfaceOnLightAccentMinorGradientHover.positions, - LightGradientTokens.SurfaceOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentMinorGradientActive.colors, - LightGradientTokens.SurfaceOnLightAccentMinorGradientActive.positions, - LightGradientTokens.SurfaceOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightAccentMinorGradient.colors, - LightGradientTokens.SurfaceOnLightAccentMinorGradient.positions, - LightGradientTokens.SurfaceOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentAccentGradientHover.colors, - LightGradientTokens.SurfaceOnLightTransparentAccentGradientHover.positions, - LightGradientTokens.SurfaceOnLightTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentAccentGradientActive.colors, - LightGradientTokens.SurfaceOnLightTransparentAccentGradientActive.positions, - LightGradientTokens.SurfaceOnLightTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentAccentGradient.colors, - LightGradientTokens.SurfaceOnLightTransparentAccentGradient.positions, - LightGradientTokens.SurfaceOnLightTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoGradientHover.colors, - LightGradientTokens.SurfaceOnLightPromoGradientHover.positions, - LightGradientTokens.SurfaceOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoGradientActive.colors, - LightGradientTokens.SurfaceOnLightPromoGradientActive.positions, - LightGradientTokens.SurfaceOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoGradient.colors, - LightGradientTokens.SurfaceOnLightPromoGradient.positions, - LightGradientTokens.SurfaceOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoMinorGradientHover.colors, - LightGradientTokens.SurfaceOnLightPromoMinorGradientHover.positions, - LightGradientTokens.SurfaceOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoMinorGradientActive.colors, - LightGradientTokens.SurfaceOnLightPromoMinorGradientActive.positions, - LightGradientTokens.SurfaceOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightPromoMinorGradient.colors, - LightGradientTokens.SurfaceOnLightPromoMinorGradient.positions, - LightGradientTokens.SurfaceOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentPromoGradientHover.colors, - LightGradientTokens.SurfaceOnLightTransparentPromoGradientHover.positions, - LightGradientTokens.SurfaceOnLightTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentPromoGradientActive.colors, - LightGradientTokens.SurfaceOnLightTransparentPromoGradientActive.positions, - LightGradientTokens.SurfaceOnLightTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightTransparentPromoGradient.colors, - LightGradientTokens.SurfaceOnLightTransparentPromoGradient.positions, - LightGradientTokens.SurfaceOnLightTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightGradientMainHover.colors, - LightGradientTokens.SurfaceOnLightGradientMainHover.positions, - LightGradientTokens.SurfaceOnLightGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightGradientMainActive.colors, - LightGradientTokens.SurfaceOnLightGradientMainActive.positions, - LightGradientTokens.SurfaceOnLightGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMain", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightGradientMain.colors, - LightGradientTokens.SurfaceOnLightGradientMain.positions, - LightGradientTokens.SurfaceOnLightGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientHover.colors, - LightGradientTokens.SurfaceInverseAccentGradientHover.positions, - LightGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradientActive.colors, - LightGradientTokens.SurfaceInverseAccentGradientActive.positions, - LightGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentGradient.colors, - LightGradientTokens.SurfaceInverseAccentGradient.positions, - LightGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentMinorGradientHover.colors, - LightGradientTokens.SurfaceInverseAccentMinorGradientHover.positions, - LightGradientTokens.SurfaceInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentMinorGradientActive.colors, - LightGradientTokens.SurfaceInverseAccentMinorGradientActive.positions, - LightGradientTokens.SurfaceInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseAccentMinorGradient.colors, - LightGradientTokens.SurfaceInverseAccentMinorGradient.positions, - LightGradientTokens.SurfaceInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentAccentGradientHover.colors, - LightGradientTokens.SurfaceInverseTransparentAccentGradientHover.positions, - LightGradientTokens.SurfaceInverseTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentAccentGradientActive.colors, - LightGradientTokens.SurfaceInverseTransparentAccentGradientActive.positions, - LightGradientTokens.SurfaceInverseTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentAccentGradient.colors, - LightGradientTokens.SurfaceInverseTransparentAccentGradient.positions, - LightGradientTokens.SurfaceInverseTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoGradientHover.colors, - LightGradientTokens.SurfaceInversePromoGradientHover.positions, - LightGradientTokens.SurfaceInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoGradientActive.colors, - LightGradientTokens.SurfaceInversePromoGradientActive.positions, - LightGradientTokens.SurfaceInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoGradient.colors, - LightGradientTokens.SurfaceInversePromoGradient.positions, - LightGradientTokens.SurfaceInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoMinorGradientHover.colors, - LightGradientTokens.SurfaceInversePromoMinorGradientHover.positions, - LightGradientTokens.SurfaceInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoMinorGradientActive.colors, - LightGradientTokens.SurfaceInversePromoMinorGradientActive.positions, - LightGradientTokens.SurfaceInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInversePromoMinorGradient.colors, - LightGradientTokens.SurfaceInversePromoMinorGradient.positions, - LightGradientTokens.SurfaceInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentPromoGradientHover.colors, - LightGradientTokens.SurfaceInverseTransparentPromoGradientHover.positions, - LightGradientTokens.SurfaceInverseTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentPromoGradientActive.colors, - LightGradientTokens.SurfaceInverseTransparentPromoGradientActive.positions, - LightGradientTokens.SurfaceInverseTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseTransparentPromoGradient.colors, - LightGradientTokens.SurfaceInverseTransparentPromoGradient.positions, - LightGradientTokens.SurfaceInverseTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMainHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseGradientMainHover.colors, - LightGradientTokens.SurfaceInverseGradientMainHover.positions, - LightGradientTokens.SurfaceInverseGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMainActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseGradientMainActive.colors, - LightGradientTokens.SurfaceInverseGradientMainActive.positions, - LightGradientTokens.SurfaceInverseGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMain", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseGradientMain.colors, - LightGradientTokens.SurfaceInverseGradientMain.positions, - LightGradientTokens.SurfaceInverseGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradient", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientHover", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientActive", - listOf( - linearGradient( - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - LightGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantAthena", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.angle, - ), - radialGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.radius, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.centerX, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.centerY, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.angle, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantJoy", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.angle, - ), - radialGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.radius, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.centerX, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.centerY, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.angle, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantBrand", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.angle, - ), - radialGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.radius, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.centerX, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.centerY, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.angle, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultModalSheet", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultModalSheet.Layer0.colors, - LightGradientTokens.BackgroundDefaultModalSheet.Layer0.positions, - LightGradientTokens.BackgroundDefaultModalSheet.Layer0.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultModalSheet.Layer1.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantB2E", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.angle, - ), - radialGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.radius, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.centerX, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.centerY, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.angle, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantMain", - listOf( - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.angle, - ), - radialGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.radius, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.centerX, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.centerY, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.angle, - ), - linearGradient( - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.colors, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.positions, - LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.angle, - ), - singleColor(LightGradientTokens.BackgroundDefaultMobileAssistantMain.Layer4.background), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentGradientHover.colors, - LightGradientTokens.OutlineDefaultAccentGradientHover.positions, - LightGradientTokens.OutlineDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentGradientActive.colors, - LightGradientTokens.OutlineDefaultAccentGradientActive.positions, - LightGradientTokens.OutlineDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentGradient.colors, - LightGradientTokens.OutlineDefaultAccentGradient.positions, - LightGradientTokens.OutlineDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentMinorGradientHover.colors, - LightGradientTokens.OutlineDefaultAccentMinorGradientHover.positions, - LightGradientTokens.OutlineDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentMinorGradientActive.colors, - LightGradientTokens.OutlineDefaultAccentMinorGradientActive.positions, - LightGradientTokens.OutlineDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultAccentMinorGradient.colors, - LightGradientTokens.OutlineDefaultAccentMinorGradient.positions, - LightGradientTokens.OutlineDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultTransparentAccentGradientHover.colors, - LightGradientTokens.OutlineDefaultTransparentAccentGradientHover.positions, - LightGradientTokens.OutlineDefaultTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultTransparentAccentGradientActive.colors, - LightGradientTokens.OutlineDefaultTransparentAccentGradientActive.positions, - LightGradientTokens.OutlineDefaultTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultTransparentAccentGradient.colors, - LightGradientTokens.OutlineDefaultTransparentAccentGradient.positions, - LightGradientTokens.OutlineDefaultTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoGradientHover.colors, - LightGradientTokens.OutlineDefaultPromoGradientHover.positions, - LightGradientTokens.OutlineDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoGradientActive.colors, - LightGradientTokens.OutlineDefaultPromoGradientActive.positions, - LightGradientTokens.OutlineDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoGradient.colors, - LightGradientTokens.OutlineDefaultPromoGradient.positions, - LightGradientTokens.OutlineDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoMinorGradientHover.colors, - LightGradientTokens.OutlineDefaultPromoMinorGradientHover.positions, - LightGradientTokens.OutlineDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoMinorGradientActive.colors, - LightGradientTokens.OutlineDefaultPromoMinorGradientActive.positions, - LightGradientTokens.OutlineDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineDefaultPromoMinorGradient.colors, - LightGradientTokens.OutlineDefaultPromoMinorGradient.positions, - LightGradientTokens.OutlineDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentGradientHover.colors, - LightGradientTokens.OutlineOnDarkAccentGradientHover.positions, - LightGradientTokens.OutlineOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentGradientActive.colors, - LightGradientTokens.OutlineOnDarkAccentGradientActive.positions, - LightGradientTokens.OutlineOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentGradient.colors, - LightGradientTokens.OutlineOnDarkAccentGradient.positions, - LightGradientTokens.OutlineOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentMinorGradientHover.colors, - LightGradientTokens.OutlineOnDarkAccentMinorGradientHover.positions, - LightGradientTokens.OutlineOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentMinorGradientActive.colors, - LightGradientTokens.OutlineOnDarkAccentMinorGradientActive.positions, - LightGradientTokens.OutlineOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkAccentMinorGradient.colors, - LightGradientTokens.OutlineOnDarkAccentMinorGradient.positions, - LightGradientTokens.OutlineOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkTransparentAccentGradientHover.colors, - LightGradientTokens.OutlineOnDarkTransparentAccentGradientHover.positions, - LightGradientTokens.OutlineOnDarkTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkTransparentAccentGradientActive.colors, - LightGradientTokens.OutlineOnDarkTransparentAccentGradientActive.positions, - LightGradientTokens.OutlineOnDarkTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkTransparentAccentGradient.colors, - LightGradientTokens.OutlineOnDarkTransparentAccentGradient.positions, - LightGradientTokens.OutlineOnDarkTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoGradientHover.colors, - LightGradientTokens.OutlineOnDarkPromoGradientHover.positions, - LightGradientTokens.OutlineOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoGradientActive.colors, - LightGradientTokens.OutlineOnDarkPromoGradientActive.positions, - LightGradientTokens.OutlineOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoGradient.colors, - LightGradientTokens.OutlineOnDarkPromoGradient.positions, - LightGradientTokens.OutlineOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoMinorGradientHover.colors, - LightGradientTokens.OutlineOnDarkPromoMinorGradientHover.positions, - LightGradientTokens.OutlineOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoMinorGradientActive.colors, - LightGradientTokens.OutlineOnDarkPromoMinorGradientActive.positions, - LightGradientTokens.OutlineOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnDarkPromoMinorGradient.colors, - LightGradientTokens.OutlineOnDarkPromoMinorGradient.positions, - LightGradientTokens.OutlineOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentGradientHover.colors, - LightGradientTokens.OutlineOnLightAccentGradientHover.positions, - LightGradientTokens.OutlineOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentGradientActive.colors, - LightGradientTokens.OutlineOnLightAccentGradientActive.positions, - LightGradientTokens.OutlineOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentGradient.colors, - LightGradientTokens.OutlineOnLightAccentGradient.positions, - LightGradientTokens.OutlineOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentMinorGradientHover.colors, - LightGradientTokens.OutlineOnLightAccentMinorGradientHover.positions, - LightGradientTokens.OutlineOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentMinorGradientActive.colors, - LightGradientTokens.OutlineOnLightAccentMinorGradientActive.positions, - LightGradientTokens.OutlineOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightAccentMinorGradient.colors, - LightGradientTokens.OutlineOnLightAccentMinorGradient.positions, - LightGradientTokens.OutlineOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightTransparentAccentGradientHover.colors, - LightGradientTokens.OutlineOnLightTransparentAccentGradientHover.positions, - LightGradientTokens.OutlineOnLightTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightTransparentAccentGradientActive.colors, - LightGradientTokens.OutlineOnLightTransparentAccentGradientActive.positions, - LightGradientTokens.OutlineOnLightTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightTransparentAccentGradient.colors, - LightGradientTokens.OutlineOnLightTransparentAccentGradient.positions, - LightGradientTokens.OutlineOnLightTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoGradientHover.colors, - LightGradientTokens.OutlineOnLightPromoGradientHover.positions, - LightGradientTokens.OutlineOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoGradientActive.colors, - LightGradientTokens.OutlineOnLightPromoGradientActive.positions, - LightGradientTokens.OutlineOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoGradient.colors, - LightGradientTokens.OutlineOnLightPromoGradient.positions, - LightGradientTokens.OutlineOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoMinorGradientHover.colors, - LightGradientTokens.OutlineOnLightPromoMinorGradientHover.positions, - LightGradientTokens.OutlineOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoMinorGradientActive.colors, - LightGradientTokens.OutlineOnLightPromoMinorGradientActive.positions, - LightGradientTokens.OutlineOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineOnLightPromoMinorGradient.colors, - LightGradientTokens.OutlineOnLightPromoMinorGradient.positions, - LightGradientTokens.OutlineOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentGradientHover.colors, - LightGradientTokens.OutlineInverseAccentGradientHover.positions, - LightGradientTokens.OutlineInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentGradientActive.colors, - LightGradientTokens.OutlineInverseAccentGradientActive.positions, - LightGradientTokens.OutlineInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentGradient.colors, - LightGradientTokens.OutlineInverseAccentGradient.positions, - LightGradientTokens.OutlineInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentMinorGradientHover.colors, - LightGradientTokens.OutlineInverseAccentMinorGradientHover.positions, - LightGradientTokens.OutlineInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentMinorGradientActive.colors, - LightGradientTokens.OutlineInverseAccentMinorGradientActive.positions, - LightGradientTokens.OutlineInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseAccentMinorGradient.colors, - LightGradientTokens.OutlineInverseAccentMinorGradient.positions, - LightGradientTokens.OutlineInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseTransparentAccentGradientHover.colors, - LightGradientTokens.OutlineInverseTransparentAccentGradientHover.positions, - LightGradientTokens.OutlineInverseTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseTransparentAccentGradientActive.colors, - LightGradientTokens.OutlineInverseTransparentAccentGradientActive.positions, - LightGradientTokens.OutlineInverseTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineInverseTransparentAccentGradient.colors, - LightGradientTokens.OutlineInverseTransparentAccentGradient.positions, - LightGradientTokens.OutlineInverseTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoGradientHover.colors, - LightGradientTokens.OutlineInversePromoGradientHover.positions, - LightGradientTokens.OutlineInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoGradientActive.colors, - LightGradientTokens.OutlineInversePromoGradientActive.positions, - LightGradientTokens.OutlineInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoGradient.colors, - LightGradientTokens.OutlineInversePromoGradient.positions, - LightGradientTokens.OutlineInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradientHover", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoMinorGradientHover.colors, - LightGradientTokens.OutlineInversePromoMinorGradientHover.positions, - LightGradientTokens.OutlineInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradientActive", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoMinorGradientActive.colors, - LightGradientTokens.OutlineInversePromoMinorGradientActive.positions, - LightGradientTokens.OutlineInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradient", - listOf( - linearGradient( - LightGradientTokens.OutlineInversePromoMinorGradient.colors, - LightGradientTokens.OutlineInversePromoMinorGradient.positions, - LightGradientTokens.OutlineInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - return StylesSaluteGradients(initial) -} - -/** - * Градиенты [StylesSaluteGradients] для темной темы - */ -@Suppress("LongMethod") -public fun darkStylesSaluteGradients(overrideGradients: GradientOverrideScope.() -> Unit = {}): StylesSaluteGradients { - val gradientOverrideScope = GradientOverrideScope() - overrideGradients.invoke(gradientOverrideScope) - val overwrite = gradientOverrideScope.overrideMap - val initial = mutableMapOf>() - initial.add( - "textDefaultAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientHover.colors, - DarkGradientTokens.TextDefaultAccentGradientHover.positions, - DarkGradientTokens.TextDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradientActive.colors, - DarkGradientTokens.TextDefaultAccentGradientActive.positions, - DarkGradientTokens.TextDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentGradient.colors, - DarkGradientTokens.TextDefaultAccentGradient.positions, - DarkGradientTokens.TextDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentMinorGradientHover.colors, - DarkGradientTokens.TextDefaultAccentMinorGradientHover.positions, - DarkGradientTokens.TextDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentMinorGradientActive.colors, - DarkGradientTokens.TextDefaultAccentMinorGradientActive.positions, - DarkGradientTokens.TextDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultAccentMinorGradient.colors, - DarkGradientTokens.TextDefaultAccentMinorGradient.positions, - DarkGradientTokens.TextDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoGradientHover.colors, - DarkGradientTokens.TextDefaultPromoGradientHover.positions, - DarkGradientTokens.TextDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoGradientActive.colors, - DarkGradientTokens.TextDefaultPromoGradientActive.positions, - DarkGradientTokens.TextDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoGradient.colors, - DarkGradientTokens.TextDefaultPromoGradient.positions, - DarkGradientTokens.TextDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoMinorGradientHover.colors, - DarkGradientTokens.TextDefaultPromoMinorGradientHover.positions, - DarkGradientTokens.TextDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoMinorGradientActive.colors, - DarkGradientTokens.TextDefaultPromoMinorGradientActive.positions, - DarkGradientTokens.TextDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultPromoMinorGradient.colors, - DarkGradientTokens.TextDefaultPromoMinorGradient.positions, - DarkGradientTokens.TextDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthenaHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientAthenaHover.colors, - DarkGradientTokens.TextDefaultGradientAthenaHover.positions, - DarkGradientTokens.TextDefaultGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthenaActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientAthenaActive.colors, - DarkGradientTokens.TextDefaultGradientAthenaActive.positions, - DarkGradientTokens.TextDefaultGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientAthena", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientAthena.colors, - DarkGradientTokens.TextDefaultGradientAthena.positions, - DarkGradientTokens.TextDefaultGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoyHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientJoyHover.colors, - DarkGradientTokens.TextDefaultGradientJoyHover.positions, - DarkGradientTokens.TextDefaultGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoyActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientJoyActive.colors, - DarkGradientTokens.TextDefaultGradientJoyActive.positions, - DarkGradientTokens.TextDefaultGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientJoy", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientJoy.colors, - DarkGradientTokens.TextDefaultGradientJoy.positions, - DarkGradientTokens.TextDefaultGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrandHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientBrandHover.colors, - DarkGradientTokens.TextDefaultGradientBrandHover.positions, - DarkGradientTokens.TextDefaultGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrandActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientBrandActive.colors, - DarkGradientTokens.TextDefaultGradientBrandActive.positions, - DarkGradientTokens.TextDefaultGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientBrand", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientBrand.colors, - DarkGradientTokens.TextDefaultGradientBrand.positions, - DarkGradientTokens.TextDefaultGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2EHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientB2EHover.colors, - DarkGradientTokens.TextDefaultGradientB2EHover.positions, - DarkGradientTokens.TextDefaultGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2EActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientB2EActive.colors, - DarkGradientTokens.TextDefaultGradientB2EActive.positions, - DarkGradientTokens.TextDefaultGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientB2E", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientB2E.colors, - DarkGradientTokens.TextDefaultGradientB2E.positions, - DarkGradientTokens.TextDefaultGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientMainHover.colors, - DarkGradientTokens.TextDefaultGradientMainHover.positions, - DarkGradientTokens.TextDefaultGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientMainActive.colors, - DarkGradientTokens.TextDefaultGradientMainActive.positions, - DarkGradientTokens.TextDefaultGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textDefaultGradientMain", - listOf( - linearGradient( - DarkGradientTokens.TextDefaultGradientMain.colors, - DarkGradientTokens.TextDefaultGradientMain.positions, - DarkGradientTokens.TextDefaultGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientHover.colors, - DarkGradientTokens.TextOnDarkAccentGradientHover.positions, - DarkGradientTokens.TextOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradientActive.colors, - DarkGradientTokens.TextOnDarkAccentGradientActive.positions, - DarkGradientTokens.TextOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentGradient.colors, - DarkGradientTokens.TextOnDarkAccentGradient.positions, - DarkGradientTokens.TextOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentMinorGradientHover.colors, - DarkGradientTokens.TextOnDarkAccentMinorGradientHover.positions, - DarkGradientTokens.TextOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentMinorGradientActive.colors, - DarkGradientTokens.TextOnDarkAccentMinorGradientActive.positions, - DarkGradientTokens.TextOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkAccentMinorGradient.colors, - DarkGradientTokens.TextOnDarkAccentMinorGradient.positions, - DarkGradientTokens.TextOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoGradientHover.colors, - DarkGradientTokens.TextOnDarkPromoGradientHover.positions, - DarkGradientTokens.TextOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoGradientActive.colors, - DarkGradientTokens.TextOnDarkPromoGradientActive.positions, - DarkGradientTokens.TextOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoGradient.colors, - DarkGradientTokens.TextOnDarkPromoGradient.positions, - DarkGradientTokens.TextOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoMinorGradientHover.colors, - DarkGradientTokens.TextOnDarkPromoMinorGradientHover.positions, - DarkGradientTokens.TextOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoMinorGradientActive.colors, - DarkGradientTokens.TextOnDarkPromoMinorGradientActive.positions, - DarkGradientTokens.TextOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkPromoMinorGradient.colors, - DarkGradientTokens.TextOnDarkPromoMinorGradient.positions, - DarkGradientTokens.TextOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthenaHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientAthenaHover.colors, - DarkGradientTokens.TextOnDarkGradientAthenaHover.positions, - DarkGradientTokens.TextOnDarkGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthenaActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientAthenaActive.colors, - DarkGradientTokens.TextOnDarkGradientAthenaActive.positions, - DarkGradientTokens.TextOnDarkGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientAthena", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientAthena.colors, - DarkGradientTokens.TextOnDarkGradientAthena.positions, - DarkGradientTokens.TextOnDarkGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoyHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientJoyHover.colors, - DarkGradientTokens.TextOnDarkGradientJoyHover.positions, - DarkGradientTokens.TextOnDarkGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoyActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientJoyActive.colors, - DarkGradientTokens.TextOnDarkGradientJoyActive.positions, - DarkGradientTokens.TextOnDarkGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientJoy", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientJoy.colors, - DarkGradientTokens.TextOnDarkGradientJoy.positions, - DarkGradientTokens.TextOnDarkGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2EHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientB2EHover.colors, - DarkGradientTokens.TextOnDarkGradientB2EHover.positions, - DarkGradientTokens.TextOnDarkGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2EActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientB2EActive.colors, - DarkGradientTokens.TextOnDarkGradientB2EActive.positions, - DarkGradientTokens.TextOnDarkGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientB2E", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientB2E.colors, - DarkGradientTokens.TextOnDarkGradientB2E.positions, - DarkGradientTokens.TextOnDarkGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrandHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientBrandHover.colors, - DarkGradientTokens.TextOnDarkGradientBrandHover.positions, - DarkGradientTokens.TextOnDarkGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrandActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientBrandActive.colors, - DarkGradientTokens.TextOnDarkGradientBrandActive.positions, - DarkGradientTokens.TextOnDarkGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientBrand", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientBrand.colors, - DarkGradientTokens.TextOnDarkGradientBrand.positions, - DarkGradientTokens.TextOnDarkGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientMainHover.colors, - DarkGradientTokens.TextOnDarkGradientMainHover.positions, - DarkGradientTokens.TextOnDarkGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientMainActive.colors, - DarkGradientTokens.TextOnDarkGradientMainActive.positions, - DarkGradientTokens.TextOnDarkGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnDarkGradientMain", - listOf( - linearGradient( - DarkGradientTokens.TextOnDarkGradientMain.colors, - DarkGradientTokens.TextOnDarkGradientMain.positions, - DarkGradientTokens.TextOnDarkGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientHover.colors, - DarkGradientTokens.TextOnLightAccentGradientHover.positions, - DarkGradientTokens.TextOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradientActive.colors, - DarkGradientTokens.TextOnLightAccentGradientActive.positions, - DarkGradientTokens.TextOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentGradient.colors, - DarkGradientTokens.TextOnLightAccentGradient.positions, - DarkGradientTokens.TextOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentMinorGradientHover.colors, - DarkGradientTokens.TextOnLightAccentMinorGradientHover.positions, - DarkGradientTokens.TextOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentMinorGradientActive.colors, - DarkGradientTokens.TextOnLightAccentMinorGradientActive.positions, - DarkGradientTokens.TextOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightAccentMinorGradient.colors, - DarkGradientTokens.TextOnLightAccentMinorGradient.positions, - DarkGradientTokens.TextOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoGradientHover.colors, - DarkGradientTokens.TextOnLightPromoGradientHover.positions, - DarkGradientTokens.TextOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoGradientActive.colors, - DarkGradientTokens.TextOnLightPromoGradientActive.positions, - DarkGradientTokens.TextOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoGradient.colors, - DarkGradientTokens.TextOnLightPromoGradient.positions, - DarkGradientTokens.TextOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoMinorGradientHover.colors, - DarkGradientTokens.TextOnLightPromoMinorGradientHover.positions, - DarkGradientTokens.TextOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoMinorGradientActive.colors, - DarkGradientTokens.TextOnLightPromoMinorGradientActive.positions, - DarkGradientTokens.TextOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightPromoMinorGradient.colors, - DarkGradientTokens.TextOnLightPromoMinorGradient.positions, - DarkGradientTokens.TextOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthenaHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientAthenaHover.colors, - DarkGradientTokens.TextOnLightGradientAthenaHover.positions, - DarkGradientTokens.TextOnLightGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthenaActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientAthenaActive.colors, - DarkGradientTokens.TextOnLightGradientAthenaActive.positions, - DarkGradientTokens.TextOnLightGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientAthena", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientAthena.colors, - DarkGradientTokens.TextOnLightGradientAthena.positions, - DarkGradientTokens.TextOnLightGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoyHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientJoyHover.colors, - DarkGradientTokens.TextOnLightGradientJoyHover.positions, - DarkGradientTokens.TextOnLightGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoyActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientJoyActive.colors, - DarkGradientTokens.TextOnLightGradientJoyActive.positions, - DarkGradientTokens.TextOnLightGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientJoy", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientJoy.colors, - DarkGradientTokens.TextOnLightGradientJoy.positions, - DarkGradientTokens.TextOnLightGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2EHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientB2EHover.colors, - DarkGradientTokens.TextOnLightGradientB2EHover.positions, - DarkGradientTokens.TextOnLightGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2EActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientB2EActive.colors, - DarkGradientTokens.TextOnLightGradientB2EActive.positions, - DarkGradientTokens.TextOnLightGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientB2E", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientB2E.colors, - DarkGradientTokens.TextOnLightGradientB2E.positions, - DarkGradientTokens.TextOnLightGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrandHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientBrandHover.colors, - DarkGradientTokens.TextOnLightGradientBrandHover.positions, - DarkGradientTokens.TextOnLightGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrandActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientBrandActive.colors, - DarkGradientTokens.TextOnLightGradientBrandActive.positions, - DarkGradientTokens.TextOnLightGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientBrand", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientBrand.colors, - DarkGradientTokens.TextOnLightGradientBrand.positions, - DarkGradientTokens.TextOnLightGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientMainHover.colors, - DarkGradientTokens.TextOnLightGradientMainHover.positions, - DarkGradientTokens.TextOnLightGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientMainActive.colors, - DarkGradientTokens.TextOnLightGradientMainActive.positions, - DarkGradientTokens.TextOnLightGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textOnLightGradientMain", - listOf( - linearGradient( - DarkGradientTokens.TextOnLightGradientMain.colors, - DarkGradientTokens.TextOnLightGradientMain.positions, - DarkGradientTokens.TextOnLightGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientHover.colors, - DarkGradientTokens.TextInverseAccentGradientHover.positions, - DarkGradientTokens.TextInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradientActive.colors, - DarkGradientTokens.TextInverseAccentGradientActive.positions, - DarkGradientTokens.TextInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentGradient.colors, - DarkGradientTokens.TextInverseAccentGradient.positions, - DarkGradientTokens.TextInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentMinorGradientHover.colors, - DarkGradientTokens.TextInverseAccentMinorGradientHover.positions, - DarkGradientTokens.TextInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentMinorGradientActive.colors, - DarkGradientTokens.TextInverseAccentMinorGradientActive.positions, - DarkGradientTokens.TextInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextInverseAccentMinorGradient.colors, - DarkGradientTokens.TextInverseAccentMinorGradient.positions, - DarkGradientTokens.TextInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoGradientHover.colors, - DarkGradientTokens.TextInversePromoGradientHover.positions, - DarkGradientTokens.TextInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoGradientActive.colors, - DarkGradientTokens.TextInversePromoGradientActive.positions, - DarkGradientTokens.TextInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoGradient", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoGradient.colors, - DarkGradientTokens.TextInversePromoGradient.positions, - DarkGradientTokens.TextInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoMinorGradientHover.colors, - DarkGradientTokens.TextInversePromoMinorGradientHover.positions, - DarkGradientTokens.TextInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoMinorGradientActive.colors, - DarkGradientTokens.TextInversePromoMinorGradientActive.positions, - DarkGradientTokens.TextInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInversePromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.TextInversePromoMinorGradient.colors, - DarkGradientTokens.TextInversePromoMinorGradient.positions, - DarkGradientTokens.TextInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientMainHover.colors, - DarkGradientTokens.TextInverseGradientMainHover.positions, - DarkGradientTokens.TextInverseGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientMainActive.colors, - DarkGradientTokens.TextInverseGradientMainActive.positions, - DarkGradientTokens.TextInverseGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthenaHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientAthenaHover.colors, - DarkGradientTokens.TextInverseGradientAthenaHover.positions, - DarkGradientTokens.TextInverseGradientAthenaHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthenaActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientAthenaActive.colors, - DarkGradientTokens.TextInverseGradientAthenaActive.positions, - DarkGradientTokens.TextInverseGradientAthenaActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoyHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientJoyHover.colors, - DarkGradientTokens.TextInverseGradientJoyHover.positions, - DarkGradientTokens.TextInverseGradientJoyHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoyActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientJoyActive.colors, - DarkGradientTokens.TextInverseGradientJoyActive.positions, - DarkGradientTokens.TextInverseGradientJoyActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrandHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientBrandHover.colors, - DarkGradientTokens.TextInverseGradientBrandHover.positions, - DarkGradientTokens.TextInverseGradientBrandHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrandActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientBrandActive.colors, - DarkGradientTokens.TextInverseGradientBrandActive.positions, - DarkGradientTokens.TextInverseGradientBrandActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2EHover", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientB2EHover.colors, - DarkGradientTokens.TextInverseGradientB2EHover.positions, - DarkGradientTokens.TextInverseGradientB2EHover.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2EActive", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientB2EActive.colors, - DarkGradientTokens.TextInverseGradientB2EActive.positions, - DarkGradientTokens.TextInverseGradientB2EActive.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientMain", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientMain.colors, - DarkGradientTokens.TextInverseGradientMain.positions, - DarkGradientTokens.TextInverseGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientAthena", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientAthena.colors, - DarkGradientTokens.TextInverseGradientAthena.positions, - DarkGradientTokens.TextInverseGradientAthena.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientJoy", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientJoy.colors, - DarkGradientTokens.TextInverseGradientJoy.positions, - DarkGradientTokens.TextInverseGradientJoy.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientB2E", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientB2E.colors, - DarkGradientTokens.TextInverseGradientB2E.positions, - DarkGradientTokens.TextInverseGradientB2E.angle, - ), - ), - overwrite, - ) - initial.add( - "textInverseGradientBrand", - listOf( - linearGradient( - DarkGradientTokens.TextInverseGradientBrand.colors, - DarkGradientTokens.TextInverseGradientBrand.positions, - DarkGradientTokens.TextInverseGradientBrand.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientHover.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradientActive.colors, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.positions, - DarkGradientTokens.SurfaceDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentGradient.colors, - DarkGradientTokens.SurfaceDefaultAccentGradient.positions, - DarkGradientTokens.SurfaceDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentMinorGradientHover.colors, - DarkGradientTokens.SurfaceDefaultAccentMinorGradientHover.positions, - DarkGradientTokens.SurfaceDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentMinorGradientActive.colors, - DarkGradientTokens.SurfaceDefaultAccentMinorGradientActive.positions, - DarkGradientTokens.SurfaceDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultAccentMinorGradient.colors, - DarkGradientTokens.SurfaceDefaultAccentMinorGradient.positions, - DarkGradientTokens.SurfaceDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientHover.colors, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientHover.positions, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientActive.colors, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientActive.positions, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentAccentGradient.colors, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradient.positions, - DarkGradientTokens.SurfaceDefaultTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoGradientHover.colors, - DarkGradientTokens.SurfaceDefaultPromoGradientHover.positions, - DarkGradientTokens.SurfaceDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoGradientActive.colors, - DarkGradientTokens.SurfaceDefaultPromoGradientActive.positions, - DarkGradientTokens.SurfaceDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoGradient.colors, - DarkGradientTokens.SurfaceDefaultPromoGradient.positions, - DarkGradientTokens.SurfaceDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoMinorGradientHover.colors, - DarkGradientTokens.SurfaceDefaultPromoMinorGradientHover.positions, - DarkGradientTokens.SurfaceDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoMinorGradientActive.colors, - DarkGradientTokens.SurfaceDefaultPromoMinorGradientActive.positions, - DarkGradientTokens.SurfaceDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultPromoMinorGradient.colors, - DarkGradientTokens.SurfaceDefaultPromoMinorGradient.positions, - DarkGradientTokens.SurfaceDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientHover.colors, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientHover.positions, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientActive.colors, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientActive.positions, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultTransparentPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultTransparentPromoGradient.colors, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradient.positions, - DarkGradientTokens.SurfaceDefaultTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeleton", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeleton.colors, - DarkGradientTokens.SurfaceDefaultSkeleton.positions, - DarkGradientTokens.SurfaceDefaultSkeleton.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultGradientMainHover.colors, - DarkGradientTokens.SurfaceDefaultGradientMainHover.positions, - DarkGradientTokens.SurfaceDefaultGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultGradientMainActive.colors, - DarkGradientTokens.SurfaceDefaultGradientMainActive.positions, - DarkGradientTokens.SurfaceDefaultGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultGradientMain", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultGradientMain.colors, - DarkGradientTokens.SurfaceDefaultGradientMain.positions, - DarkGradientTokens.SurfaceDefaultGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceDefaultSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceDefaultSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentGradient.colors, - DarkGradientTokens.SurfaceOnDarkAccentGradient.positions, - DarkGradientTokens.SurfaceOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkAccentMinorGradient.colors, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradient.positions, - DarkGradientTokens.SurfaceOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradient.colors, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradient.positions, - DarkGradientTokens.SurfaceOnDarkTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkPromoGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkPromoGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoGradient.colors, - DarkGradientTokens.SurfaceOnDarkPromoGradient.positions, - DarkGradientTokens.SurfaceOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkPromoMinorGradient.colors, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradient.positions, - DarkGradientTokens.SurfaceOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkTransparentPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradient.colors, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradient.positions, - DarkGradientTokens.SurfaceOnDarkTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkGradientMainHover.colors, - DarkGradientTokens.SurfaceOnDarkGradientMainHover.positions, - DarkGradientTokens.SurfaceOnDarkGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkGradientMainActive.colors, - DarkGradientTokens.SurfaceOnDarkGradientMainActive.positions, - DarkGradientTokens.SurfaceOnDarkGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkGradientMain", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkGradientMain.colors, - DarkGradientTokens.SurfaceOnDarkGradientMain.positions, - DarkGradientTokens.SurfaceOnDarkGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnDarkSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnDarkSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentGradient.colors, - DarkGradientTokens.SurfaceOnLightAccentGradient.positions, - DarkGradientTokens.SurfaceOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentMinorGradientHover.colors, - DarkGradientTokens.SurfaceOnLightAccentMinorGradientHover.positions, - DarkGradientTokens.SurfaceOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentMinorGradientActive.colors, - DarkGradientTokens.SurfaceOnLightAccentMinorGradientActive.positions, - DarkGradientTokens.SurfaceOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightAccentMinorGradient.colors, - DarkGradientTokens.SurfaceOnLightAccentMinorGradient.positions, - DarkGradientTokens.SurfaceOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientHover.colors, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientHover.positions, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientActive.colors, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientActive.positions, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentAccentGradient.colors, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradient.positions, - DarkGradientTokens.SurfaceOnLightTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoGradientHover.colors, - DarkGradientTokens.SurfaceOnLightPromoGradientHover.positions, - DarkGradientTokens.SurfaceOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoGradientActive.colors, - DarkGradientTokens.SurfaceOnLightPromoGradientActive.positions, - DarkGradientTokens.SurfaceOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoGradient.colors, - DarkGradientTokens.SurfaceOnLightPromoGradient.positions, - DarkGradientTokens.SurfaceOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoMinorGradientHover.colors, - DarkGradientTokens.SurfaceOnLightPromoMinorGradientHover.positions, - DarkGradientTokens.SurfaceOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoMinorGradientActive.colors, - DarkGradientTokens.SurfaceOnLightPromoMinorGradientActive.positions, - DarkGradientTokens.SurfaceOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightPromoMinorGradient.colors, - DarkGradientTokens.SurfaceOnLightPromoMinorGradient.positions, - DarkGradientTokens.SurfaceOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientHover.colors, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientHover.positions, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientActive.colors, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientActive.positions, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightTransparentPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightTransparentPromoGradient.colors, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradient.positions, - DarkGradientTokens.SurfaceOnLightTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightGradientMainHover.colors, - DarkGradientTokens.SurfaceOnLightGradientMainHover.positions, - DarkGradientTokens.SurfaceOnLightGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightGradientMainActive.colors, - DarkGradientTokens.SurfaceOnLightGradientMainActive.positions, - DarkGradientTokens.SurfaceOnLightGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightGradientMain", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightGradientMain.colors, - DarkGradientTokens.SurfaceOnLightGradientMain.positions, - DarkGradientTokens.SurfaceOnLightGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceOnLightSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceOnLightSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientHover.colors, - DarkGradientTokens.SurfaceInverseAccentGradientHover.positions, - DarkGradientTokens.SurfaceInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradientActive.colors, - DarkGradientTokens.SurfaceInverseAccentGradientActive.positions, - DarkGradientTokens.SurfaceInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentGradient.colors, - DarkGradientTokens.SurfaceInverseAccentGradient.positions, - DarkGradientTokens.SurfaceInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentMinorGradientHover.colors, - DarkGradientTokens.SurfaceInverseAccentMinorGradientHover.positions, - DarkGradientTokens.SurfaceInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentMinorGradientActive.colors, - DarkGradientTokens.SurfaceInverseAccentMinorGradientActive.positions, - DarkGradientTokens.SurfaceInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseAccentMinorGradient.colors, - DarkGradientTokens.SurfaceInverseAccentMinorGradient.positions, - DarkGradientTokens.SurfaceInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentAccentGradientHover.colors, - DarkGradientTokens.SurfaceInverseTransparentAccentGradientHover.positions, - DarkGradientTokens.SurfaceInverseTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentAccentGradientActive.colors, - DarkGradientTokens.SurfaceInverseTransparentAccentGradientActive.positions, - DarkGradientTokens.SurfaceInverseTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentAccentGradient.colors, - DarkGradientTokens.SurfaceInverseTransparentAccentGradient.positions, - DarkGradientTokens.SurfaceInverseTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoGradientHover.colors, - DarkGradientTokens.SurfaceInversePromoGradientHover.positions, - DarkGradientTokens.SurfaceInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoGradientActive.colors, - DarkGradientTokens.SurfaceInversePromoGradientActive.positions, - DarkGradientTokens.SurfaceInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoGradient.colors, - DarkGradientTokens.SurfaceInversePromoGradient.positions, - DarkGradientTokens.SurfaceInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoMinorGradientHover.colors, - DarkGradientTokens.SurfaceInversePromoMinorGradientHover.positions, - DarkGradientTokens.SurfaceInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoMinorGradientActive.colors, - DarkGradientTokens.SurfaceInversePromoMinorGradientActive.positions, - DarkGradientTokens.SurfaceInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInversePromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInversePromoMinorGradient.colors, - DarkGradientTokens.SurfaceInversePromoMinorGradient.positions, - DarkGradientTokens.SurfaceInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentPromoGradientHover.colors, - DarkGradientTokens.SurfaceInverseTransparentPromoGradientHover.positions, - DarkGradientTokens.SurfaceInverseTransparentPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentPromoGradientActive.colors, - DarkGradientTokens.SurfaceInverseTransparentPromoGradientActive.positions, - DarkGradientTokens.SurfaceInverseTransparentPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseTransparentPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseTransparentPromoGradient.colors, - DarkGradientTokens.SurfaceInverseTransparentPromoGradient.positions, - DarkGradientTokens.SurfaceInverseTransparentPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMainHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseGradientMainHover.colors, - DarkGradientTokens.SurfaceInverseGradientMainHover.positions, - DarkGradientTokens.SurfaceInverseGradientMainHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMainActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseGradientMainActive.colors, - DarkGradientTokens.SurfaceInverseGradientMainActive.positions, - DarkGradientTokens.SurfaceInverseGradientMainActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseGradientMain", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseGradientMain.colors, - DarkGradientTokens.SurfaceInverseGradientMain.positions, - DarkGradientTokens.SurfaceInverseGradientMain.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradient", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientHover", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "surfaceInverseSkeletonDeepGradientActive", - listOf( - linearGradient( - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.colors, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.positions, - DarkGradientTokens.SurfaceInverseSkeletonDeepGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantAthena", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer0.angle, - ), - radialGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.radius, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.centerX, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer1.centerY, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer2.angle, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer3.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultMobileAssistantAthena.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantJoy", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer0.angle, - ), - radialGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.radius, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.centerX, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer1.centerY, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer2.angle, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer3.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultMobileAssistantJoy.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantBrand", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer0.angle, - ), - radialGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.radius, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.centerX, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer1.centerY, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer2.angle, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer3.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultMobileAssistantBrand.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultModalSheet", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultModalSheet.Layer0.colors, - DarkGradientTokens.BackgroundDefaultModalSheet.Layer0.positions, - DarkGradientTokens.BackgroundDefaultModalSheet.Layer0.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultModalSheet.Layer1.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantB2E", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer0.angle, - ), - radialGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.radius, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.centerX, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer1.centerY, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer2.angle, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer3.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultMobileAssistantB2E.Layer4.background), - ), - overwrite, - ) - initial.add( - "backgroundDefaultMobileAssistantMain", - listOf( - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer0.angle, - ), - radialGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.radius, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.centerX, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer1.centerY, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer2.angle, - ), - linearGradient( - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.colors, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.positions, - DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer3.angle, - ), - singleColor(DarkGradientTokens.BackgroundDefaultMobileAssistantMain.Layer4.background), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentGradientHover.colors, - DarkGradientTokens.OutlineDefaultAccentGradientHover.positions, - DarkGradientTokens.OutlineDefaultAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentGradientActive.colors, - DarkGradientTokens.OutlineDefaultAccentGradientActive.positions, - DarkGradientTokens.OutlineDefaultAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentGradient.colors, - DarkGradientTokens.OutlineDefaultAccentGradient.positions, - DarkGradientTokens.OutlineDefaultAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentMinorGradientHover.colors, - DarkGradientTokens.OutlineDefaultAccentMinorGradientHover.positions, - DarkGradientTokens.OutlineDefaultAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentMinorGradientActive.colors, - DarkGradientTokens.OutlineDefaultAccentMinorGradientActive.positions, - DarkGradientTokens.OutlineDefaultAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultAccentMinorGradient.colors, - DarkGradientTokens.OutlineDefaultAccentMinorGradient.positions, - DarkGradientTokens.OutlineDefaultAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultTransparentAccentGradientHover.colors, - DarkGradientTokens.OutlineDefaultTransparentAccentGradientHover.positions, - DarkGradientTokens.OutlineDefaultTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultTransparentAccentGradientActive.colors, - DarkGradientTokens.OutlineDefaultTransparentAccentGradientActive.positions, - DarkGradientTokens.OutlineDefaultTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultTransparentAccentGradient.colors, - DarkGradientTokens.OutlineDefaultTransparentAccentGradient.positions, - DarkGradientTokens.OutlineDefaultTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoGradientHover.colors, - DarkGradientTokens.OutlineDefaultPromoGradientHover.positions, - DarkGradientTokens.OutlineDefaultPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoGradientActive.colors, - DarkGradientTokens.OutlineDefaultPromoGradientActive.positions, - DarkGradientTokens.OutlineDefaultPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoGradient.colors, - DarkGradientTokens.OutlineDefaultPromoGradient.positions, - DarkGradientTokens.OutlineDefaultPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoMinorGradientHover.colors, - DarkGradientTokens.OutlineDefaultPromoMinorGradientHover.positions, - DarkGradientTokens.OutlineDefaultPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoMinorGradientActive.colors, - DarkGradientTokens.OutlineDefaultPromoMinorGradientActive.positions, - DarkGradientTokens.OutlineDefaultPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineDefaultPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineDefaultPromoMinorGradient.colors, - DarkGradientTokens.OutlineDefaultPromoMinorGradient.positions, - DarkGradientTokens.OutlineDefaultPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentGradientHover.colors, - DarkGradientTokens.OutlineOnDarkAccentGradientHover.positions, - DarkGradientTokens.OutlineOnDarkAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentGradientActive.colors, - DarkGradientTokens.OutlineOnDarkAccentGradientActive.positions, - DarkGradientTokens.OutlineOnDarkAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentGradient.colors, - DarkGradientTokens.OutlineOnDarkAccentGradient.positions, - DarkGradientTokens.OutlineOnDarkAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentMinorGradientHover.colors, - DarkGradientTokens.OutlineOnDarkAccentMinorGradientHover.positions, - DarkGradientTokens.OutlineOnDarkAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentMinorGradientActive.colors, - DarkGradientTokens.OutlineOnDarkAccentMinorGradientActive.positions, - DarkGradientTokens.OutlineOnDarkAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkAccentMinorGradient.colors, - DarkGradientTokens.OutlineOnDarkAccentMinorGradient.positions, - DarkGradientTokens.OutlineOnDarkAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientHover.colors, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientHover.positions, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientActive.colors, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientActive.positions, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkTransparentAccentGradient.colors, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradient.positions, - DarkGradientTokens.OutlineOnDarkTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoGradientHover.colors, - DarkGradientTokens.OutlineOnDarkPromoGradientHover.positions, - DarkGradientTokens.OutlineOnDarkPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoGradientActive.colors, - DarkGradientTokens.OutlineOnDarkPromoGradientActive.positions, - DarkGradientTokens.OutlineOnDarkPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoGradient.colors, - DarkGradientTokens.OutlineOnDarkPromoGradient.positions, - DarkGradientTokens.OutlineOnDarkPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoMinorGradientHover.colors, - DarkGradientTokens.OutlineOnDarkPromoMinorGradientHover.positions, - DarkGradientTokens.OutlineOnDarkPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoMinorGradientActive.colors, - DarkGradientTokens.OutlineOnDarkPromoMinorGradientActive.positions, - DarkGradientTokens.OutlineOnDarkPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnDarkPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnDarkPromoMinorGradient.colors, - DarkGradientTokens.OutlineOnDarkPromoMinorGradient.positions, - DarkGradientTokens.OutlineOnDarkPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentGradientHover.colors, - DarkGradientTokens.OutlineOnLightAccentGradientHover.positions, - DarkGradientTokens.OutlineOnLightAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentGradientActive.colors, - DarkGradientTokens.OutlineOnLightAccentGradientActive.positions, - DarkGradientTokens.OutlineOnLightAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentGradient.colors, - DarkGradientTokens.OutlineOnLightAccentGradient.positions, - DarkGradientTokens.OutlineOnLightAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentMinorGradientHover.colors, - DarkGradientTokens.OutlineOnLightAccentMinorGradientHover.positions, - DarkGradientTokens.OutlineOnLightAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentMinorGradientActive.colors, - DarkGradientTokens.OutlineOnLightAccentMinorGradientActive.positions, - DarkGradientTokens.OutlineOnLightAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightAccentMinorGradient.colors, - DarkGradientTokens.OutlineOnLightAccentMinorGradient.positions, - DarkGradientTokens.OutlineOnLightAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightTransparentAccentGradientHover.colors, - DarkGradientTokens.OutlineOnLightTransparentAccentGradientHover.positions, - DarkGradientTokens.OutlineOnLightTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightTransparentAccentGradientActive.colors, - DarkGradientTokens.OutlineOnLightTransparentAccentGradientActive.positions, - DarkGradientTokens.OutlineOnLightTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightTransparentAccentGradient.colors, - DarkGradientTokens.OutlineOnLightTransparentAccentGradient.positions, - DarkGradientTokens.OutlineOnLightTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoGradientHover.colors, - DarkGradientTokens.OutlineOnLightPromoGradientHover.positions, - DarkGradientTokens.OutlineOnLightPromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoGradientActive.colors, - DarkGradientTokens.OutlineOnLightPromoGradientActive.positions, - DarkGradientTokens.OutlineOnLightPromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoGradient.colors, - DarkGradientTokens.OutlineOnLightPromoGradient.positions, - DarkGradientTokens.OutlineOnLightPromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoMinorGradientHover.colors, - DarkGradientTokens.OutlineOnLightPromoMinorGradientHover.positions, - DarkGradientTokens.OutlineOnLightPromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoMinorGradientActive.colors, - DarkGradientTokens.OutlineOnLightPromoMinorGradientActive.positions, - DarkGradientTokens.OutlineOnLightPromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineOnLightPromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineOnLightPromoMinorGradient.colors, - DarkGradientTokens.OutlineOnLightPromoMinorGradient.positions, - DarkGradientTokens.OutlineOnLightPromoMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentGradientHover.colors, - DarkGradientTokens.OutlineInverseAccentGradientHover.positions, - DarkGradientTokens.OutlineInverseAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentGradientActive.colors, - DarkGradientTokens.OutlineInverseAccentGradientActive.positions, - DarkGradientTokens.OutlineInverseAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentGradient.colors, - DarkGradientTokens.OutlineInverseAccentGradient.positions, - DarkGradientTokens.OutlineInverseAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentMinorGradientHover.colors, - DarkGradientTokens.OutlineInverseAccentMinorGradientHover.positions, - DarkGradientTokens.OutlineInverseAccentMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentMinorGradientActive.colors, - DarkGradientTokens.OutlineInverseAccentMinorGradientActive.positions, - DarkGradientTokens.OutlineInverseAccentMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseAccentMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseAccentMinorGradient.colors, - DarkGradientTokens.OutlineInverseAccentMinorGradient.positions, - DarkGradientTokens.OutlineInverseAccentMinorGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseTransparentAccentGradientHover.colors, - DarkGradientTokens.OutlineInverseTransparentAccentGradientHover.positions, - DarkGradientTokens.OutlineInverseTransparentAccentGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseTransparentAccentGradientActive.colors, - DarkGradientTokens.OutlineInverseTransparentAccentGradientActive.positions, - DarkGradientTokens.OutlineInverseTransparentAccentGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInverseTransparentAccentGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineInverseTransparentAccentGradient.colors, - DarkGradientTokens.OutlineInverseTransparentAccentGradient.positions, - DarkGradientTokens.OutlineInverseTransparentAccentGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoGradientHover.colors, - DarkGradientTokens.OutlineInversePromoGradientHover.positions, - DarkGradientTokens.OutlineInversePromoGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoGradientActive.colors, - DarkGradientTokens.OutlineInversePromoGradientActive.positions, - DarkGradientTokens.OutlineInversePromoGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoGradient.colors, - DarkGradientTokens.OutlineInversePromoGradient.positions, - DarkGradientTokens.OutlineInversePromoGradient.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradientHover", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoMinorGradientHover.colors, - DarkGradientTokens.OutlineInversePromoMinorGradientHover.positions, - DarkGradientTokens.OutlineInversePromoMinorGradientHover.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradientActive", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoMinorGradientActive.colors, - DarkGradientTokens.OutlineInversePromoMinorGradientActive.positions, - DarkGradientTokens.OutlineInversePromoMinorGradientActive.angle, - ), - ), - overwrite, - ) - initial.add( - "outlineInversePromoMinorGradient", - listOf( - linearGradient( - DarkGradientTokens.OutlineInversePromoMinorGradient.colors, - DarkGradientTokens.OutlineInversePromoMinorGradient.positions, - DarkGradientTokens.OutlineInversePromoMinorGradient.angle, - ), - ), - overwrite, - ) - return StylesSaluteGradients(initial) -} - -internal fun linearGradient( - colors: List, - positions: FloatArray, - angle: Float = 0f, - startPoint: Offset? = null, - endPoint: Offset? = null, -): ShaderBrush = Gradients.Linear(colors, positions.toList(), angle, startPoint, endPoint) - -internal fun radialGradient( - colors: List, - positions: FloatArray, - radius: Float, - centerX: Float, - centerY: Float, -): ShaderBrush = Gradients.Radial(colors, positions.toList(), radius, centerX, centerY) - -internal fun sweepGradient( - colors: List, - positions: FloatArray, - centerX: Float, - centerY: Float, -): ShaderBrush = Gradients.Sweep(colors, positions.toList(), centerX, centerY) - -internal fun singleColor(color: Color): ShaderBrush = Gradients.Linear( - listOf(color, color), - listOf(0f, 1f), -) - -/** - * Модификатор, позволяющий применить композитный градиент. - */ -@Composable -public fun Modifier.compositeGradient(brushes: List): Modifier = this then - Modifier.drawBehind { brushes.forEach(::drawRect) } diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShadows.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShadows.kt deleted file mode 100644 index 3231389729..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShadows.kt +++ /dev/null @@ -1,286 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.unit.DpOffset -import com.sdds.compose.uikit.shadow.ShadowAppearance -import com.sdds.compose.uikit.shadow.ShadowLayer -import com.sdds.stylessalute.tokens.ShadowTokens -import kotlin.Suppress - -/** - * Тени StylesSalute - */ -@Immutable -public data class StylesSaluteShadows( - /** - * shadow down soft s - */ - public val downSoftS: ShadowAppearance = ShadowAppearance(), - /** - * shadow down soft m - */ - public val downSoftM: ShadowAppearance = ShadowAppearance(), - /** - * shadow down soft l - */ - public val downSoftL: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard s - */ - public val downHardS: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard m - */ - public val downHardM: ShadowAppearance = ShadowAppearance(), - /** - * shadow down hard l - */ - public val downHardL: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft s - */ - public val upSoftS: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft m - */ - public val upSoftM: ShadowAppearance = ShadowAppearance(), - /** - * shadow up soft l - */ - public val upSoftL: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard s - */ - public val upHardS: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard m - */ - public val upHardM: ShadowAppearance = ShadowAppearance(), - /** - * shadow up hard l - */ - public val upHardL: ShadowAppearance = ShadowAppearance(), -) - -internal val LocalStylesSaluteShadows: ProvidableCompositionLocal = - staticCompositionLocalOf { - StylesSaluteShadows() - } - -/** - * Возвращает [StylesSaluteShadows] - */ -@Suppress("LongMethod") -public fun defaultStylesSaluteShadows(): StylesSaluteShadows = StylesSaluteShadows( - downSoftS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftSLayer1.offsetX, - y = ShadowTokens.DownSoftSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftSLayer1.spreadRadius, - blurRadius = ShadowTokens.DownSoftSLayer1.blurRadius, - color = ShadowTokens.DownSoftSLayer1.color, - fallbackElevation = ShadowTokens.DownSoftSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftSLayer2.offsetX, - y = ShadowTokens.DownSoftSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftSLayer2.spreadRadius, - blurRadius = ShadowTokens.DownSoftSLayer2.blurRadius, - color = ShadowTokens.DownSoftSLayer2.color, - fallbackElevation = ShadowTokens.DownSoftSLayer2.fallbackElevation, - ), - ), - ), - downSoftM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftM.offsetX, - y = ShadowTokens.DownSoftM.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftM.spreadRadius, - blurRadius = ShadowTokens.DownSoftM.blurRadius, - color = ShadowTokens.DownSoftM.color, - fallbackElevation = ShadowTokens.DownSoftM.fallbackElevation, - ), - ), - ), - downSoftL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownSoftL.offsetX, - y = ShadowTokens.DownSoftL.offsetY, - ), - spreadRadius = ShadowTokens.DownSoftL.spreadRadius, - blurRadius = ShadowTokens.DownSoftL.blurRadius, - color = ShadowTokens.DownSoftL.color, - fallbackElevation = ShadowTokens.DownSoftL.fallbackElevation, - ), - ), - ), - downHardS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardSLayer1.offsetX, - y = ShadowTokens.DownHardSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.DownHardSLayer1.spreadRadius, - blurRadius = ShadowTokens.DownHardSLayer1.blurRadius, - color = ShadowTokens.DownHardSLayer1.color, - fallbackElevation = ShadowTokens.DownHardSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardSLayer2.offsetX, - y = ShadowTokens.DownHardSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.DownHardSLayer2.spreadRadius, - blurRadius = ShadowTokens.DownHardSLayer2.blurRadius, - color = ShadowTokens.DownHardSLayer2.color, - fallbackElevation = ShadowTokens.DownHardSLayer2.fallbackElevation, - ), - ), - ), - downHardM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardM.offsetX, - y = ShadowTokens.DownHardM.offsetY, - ), - spreadRadius = ShadowTokens.DownHardM.spreadRadius, - blurRadius = ShadowTokens.DownHardM.blurRadius, - color = ShadowTokens.DownHardM.color, - fallbackElevation = ShadowTokens.DownHardM.fallbackElevation, - ), - ), - ), - downHardL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.DownHardL.offsetX, - y = ShadowTokens.DownHardL.offsetY, - ), - spreadRadius = ShadowTokens.DownHardL.spreadRadius, - blurRadius = ShadowTokens.DownHardL.blurRadius, - color = ShadowTokens.DownHardL.color, - fallbackElevation = ShadowTokens.DownHardL.fallbackElevation, - ), - ), - ), - upSoftS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftSLayer1.offsetX, - y = ShadowTokens.UpSoftSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftSLayer1.spreadRadius, - blurRadius = ShadowTokens.UpSoftSLayer1.blurRadius, - color = ShadowTokens.UpSoftSLayer1.color, - fallbackElevation = ShadowTokens.UpSoftSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftSLayer2.offsetX, - y = ShadowTokens.UpSoftSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftSLayer2.spreadRadius, - blurRadius = ShadowTokens.UpSoftSLayer2.blurRadius, - color = ShadowTokens.UpSoftSLayer2.color, - fallbackElevation = ShadowTokens.UpSoftSLayer2.fallbackElevation, - ), - ), - ), - upSoftM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftM.offsetX, - y = ShadowTokens.UpSoftM.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftM.spreadRadius, - blurRadius = ShadowTokens.UpSoftM.blurRadius, - color = ShadowTokens.UpSoftM.color, - fallbackElevation = ShadowTokens.UpSoftM.fallbackElevation, - ), - ), - ), - upSoftL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpSoftL.offsetX, - y = ShadowTokens.UpSoftL.offsetY, - ), - spreadRadius = ShadowTokens.UpSoftL.spreadRadius, - blurRadius = ShadowTokens.UpSoftL.blurRadius, - color = ShadowTokens.UpSoftL.color, - fallbackElevation = ShadowTokens.UpSoftL.fallbackElevation, - ), - ), - ), - upHardS = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardSLayer1.offsetX, - y = ShadowTokens.UpHardSLayer1.offsetY, - ), - spreadRadius = ShadowTokens.UpHardSLayer1.spreadRadius, - blurRadius = ShadowTokens.UpHardSLayer1.blurRadius, - color = ShadowTokens.UpHardSLayer1.color, - fallbackElevation = ShadowTokens.UpHardSLayer1.fallbackElevation, - ), - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardSLayer2.offsetX, - y = ShadowTokens.UpHardSLayer2.offsetY, - ), - spreadRadius = ShadowTokens.UpHardSLayer2.spreadRadius, - blurRadius = ShadowTokens.UpHardSLayer2.blurRadius, - color = ShadowTokens.UpHardSLayer2.color, - fallbackElevation = ShadowTokens.UpHardSLayer2.fallbackElevation, - ), - ), - ), - upHardM = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardM.offsetX, - y = ShadowTokens.UpHardM.offsetY, - ), - spreadRadius = ShadowTokens.UpHardM.spreadRadius, - blurRadius = ShadowTokens.UpHardM.blurRadius, - color = ShadowTokens.UpHardM.color, - fallbackElevation = ShadowTokens.UpHardM.fallbackElevation, - ), - ), - ), - upHardL = ShadowAppearance( - listOf( - ShadowLayer( - offset = DpOffset( - x = ShadowTokens.UpHardL.offsetX, - y = ShadowTokens.UpHardL.offsetY, - ), - spreadRadius = ShadowTokens.UpHardL.spreadRadius, - blurRadius = ShadowTokens.UpHardL.blurRadius, - color = ShadowTokens.UpHardL.color, - fallbackElevation = ShadowTokens.UpHardL.fallbackElevation, - ), - ), - ), -) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShapes.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShapes.kt deleted file mode 100644 index a7ba326e8c..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteShapes.kt +++ /dev/null @@ -1,62 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.foundation.shape.CornerBasedShape -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import com.sdds.stylessalute.tokens.RoundShapeTokens - -/** - * Формы StylesSalute - */ -@Immutable -public data class StylesSaluteShapes( - /** - * borderRadius xxs - */ - public val roundXxs: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xs - */ - public val roundXs: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius s - */ - public val roundS: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius m - */ - public val roundM: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius l - */ - public val roundL: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xl - */ - public val roundXl: CornerBasedShape = RoundedCornerShape(0), - /** - * borderRadius xxl - */ - public val roundXxl: CornerBasedShape = RoundedCornerShape(0), -) - -internal val LocalStylesSaluteShapes: ProvidableCompositionLocal = - staticCompositionLocalOf { - StylesSaluteShapes() - } - -/** - * Возвращает [StylesSaluteShapes] - */ -public fun defaultStylesSaluteShapes(): StylesSaluteShapes = StylesSaluteShapes( - roundXxs = RoundShapeTokens.RoundXxs, - roundXs = RoundShapeTokens.RoundXs, - roundS = RoundShapeTokens.RoundS, - roundM = RoundShapeTokens.RoundM, - roundL = RoundShapeTokens.RoundL, - roundXl = RoundShapeTokens.RoundXl, - roundXxl = RoundShapeTokens.RoundXxl, -) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteSpacing.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteSpacing.kt deleted file mode 100644 index 693efbce5a..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteSpacing.kt +++ /dev/null @@ -1,102 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.stylessalute.tokens.SpacingTokens - -/** - * Отступы StylesSalute - */ -@Immutable -public data class StylesSaluteSpacing( - /** - * spacing 0x - */ - public val spacing0x: Dp = 0.dp, - /** - * spacing 1x - */ - public val spacing1x: Dp = 0.dp, - /** - * spacing 2x - */ - public val spacing2x: Dp = 0.dp, - /** - * spacing 3x - */ - public val spacing3x: Dp = 0.dp, - /** - * spacing 4x - */ - public val spacing4x: Dp = 0.dp, - /** - * spacing 6x - */ - public val spacing6x: Dp = 0.dp, - /** - * spacing 8x - */ - public val spacing8x: Dp = 0.dp, - /** - * spacing 10x - */ - public val spacing10x: Dp = 0.dp, - /** - * spacing 12x - */ - public val spacing12x: Dp = 0.dp, - /** - * spacing 16x - */ - public val spacing16x: Dp = 0.dp, - /** - * spacing 20x - */ - public val spacing20x: Dp = 0.dp, - /** - * spacing 24x - */ - public val spacing24x: Dp = 0.dp, - /** - * spacing 32x - */ - public val spacing32x: Dp = 0.dp, - /** - * spacing 40x - */ - public val spacing40x: Dp = 0.dp, - /** - * spacing 60x - */ - public val spacing60x: Dp = 0.dp, -) - -internal val LocalStylesSaluteSpacing: ProvidableCompositionLocal = - staticCompositionLocalOf { - StylesSaluteSpacing() - } - -/** - * Возвращает [StylesSaluteSpacing] - */ -public fun defaultStylesSaluteSpacing(): StylesSaluteSpacing = StylesSaluteSpacing( - spacing0x = SpacingTokens.spacing0x, - spacing1x = SpacingTokens.spacing1x, - spacing2x = SpacingTokens.spacing2x, - spacing3x = SpacingTokens.spacing3x, - spacing4x = SpacingTokens.spacing4x, - spacing6x = SpacingTokens.spacing6x, - spacing8x = SpacingTokens.spacing8x, - spacing10x = SpacingTokens.spacing10x, - spacing12x = SpacingTokens.spacing12x, - spacing16x = SpacingTokens.spacing16x, - spacing20x = SpacingTokens.spacing20x, - spacing24x = SpacingTokens.spacing24x, - spacing32x = SpacingTokens.spacing32x, - spacing40x = SpacingTokens.spacing40x, - spacing60x = SpacingTokens.spacing60x, -) diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTheme.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTheme.kt deleted file mode 100644 index 856bda6526..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTheme.kt +++ /dev/null @@ -1,118 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.foundation.text.selection.LocalTextSelectionColors -import androidx.compose.foundation.text.selection.TextSelectionColors -import androidx.compose.runtime.Composable -import androidx.compose.runtime.CompositionLocalProvider -import androidx.compose.runtime.ReadOnlyComposable -import androidx.compose.runtime.remember -import androidx.compose.ui.unit.dp -import com.sdds.compose.uikit.ProvideTextStyle -import com.sdds.compose.uikit.fs.FocusSelectorBorders -import com.sdds.compose.uikit.fs.FocusSelectorScales -import com.sdds.compose.uikit.fs.FocusSelectorSettings -import com.sdds.compose.uikit.fs.LocalFocusSelectorSettings -import kotlin.Unit - -/** - * Аттрибуты темы StylesSaluteTheme - */ -public object StylesSaluteTheme { - /** - * Аттрибуты цвета - */ - public val colors: StylesSaluteColors - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteColors.current - - /** - * Аттрибуты градиентов - */ - public val gradients: StylesSaluteGradients - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteGradients.current - - /** - * Аттрибуты форм - */ - public val shapes: StylesSaluteShapes - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteShapes.current - - /** - * Аттрибуты теней - */ - public val shadows: StylesSaluteShadows - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteShadows.current - - /** - * Аттрибуты отступов - */ - public val spacing: StylesSaluteSpacing - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteSpacing.current - - /** - * Аттрибуты типографики - */ - public val typography: StylesSaluteTypography - @Composable - @ReadOnlyComposable - get() = LocalStylesSaluteTypography.current -} - -/** - * Базовая тема StylesSalute - */ -@Composable -public fun StylesSaluteTheme( - colors: StylesSaluteColors = StylesSaluteTheme.colors, - gradients: StylesSaluteGradients = StylesSaluteTheme.gradients, - shapes: StylesSaluteShapes = defaultStylesSaluteShapes(), - shadows: StylesSaluteShadows = defaultStylesSaluteShadows(), - typography: StylesSaluteTypography = dynamicStylesSaluteTypography(), - spacing: StylesSaluteSpacing = defaultStylesSaluteSpacing(), - content: @Composable () -> Unit, -) { - val rememberColors = remember { colors.copy() }.apply { updateColorsFrom(colors) } - - val textSelectionColors = remember { - TextSelectionColors( - handleColor = rememberColors.textDefaultAccent, - backgroundColor = rememberColors.textDefaultAccent.copy(0.3f), - ) - } - - CompositionLocalProvider( - LocalStylesSaluteColors provides rememberColors, - LocalStylesSaluteGradients provides gradients, - LocalStylesSaluteTypography provides typography, - LocalStylesSaluteShapes provides shapes, - LocalStylesSaluteShadows provides shadows, - LocalStylesSaluteSpacing provides spacing, - LocalTextSelectionColors provides textSelectionColors, - LocalFocusSelectorSettings provides FocusSelectorSettings.builder() - .border( - FocusSelectorBorders.solid( - strokeWidth = 1.dp, - strokeInsets = 2.dp, - color = rememberColors.surfaceDefaultAccent, - ), - ) - .scale(FocusSelectorScales.none()) - .build(), - content = { - ProvideTextStyle( - value = typography.bodyMNormal.copy(color = rememberColors.textDefaultPrimary), - content = content, - ) - }, - ) -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTypography.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTypography.kt deleted file mode 100644 index f364dab7de..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/StylesSaluteTypography.kt +++ /dev/null @@ -1,423 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme - -import androidx.compose.runtime.Composable -import androidx.compose.runtime.Immutable -import androidx.compose.runtime.ProvidableCompositionLocal -import androidx.compose.runtime.staticCompositionLocalOf -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp -import com.sdds.stylessalute.tokens.TypographyLargeTokens -import com.sdds.stylessalute.tokens.TypographyMediumTokens -import com.sdds.stylessalute.tokens.TypographySmallTokens - -/** - * Типографика StylesSalute - */ -@Immutable -public data class StylesSaluteTypography internal constructor( - /** - * typography l display-l - */ - public val displayLNormal: TextStyle = TextStyle.Default, - /** - * typography l display-l-bold - */ - public val displayLBold: TextStyle = TextStyle.Default, - /** - * typography l display-m - */ - public val displayMNormal: TextStyle = TextStyle.Default, - /** - * typography l display-m-bold - */ - public val displayMBold: TextStyle = TextStyle.Default, - /** - * typography l display-s - */ - public val displaySNormal: TextStyle = TextStyle.Default, - /** - * typography l display-s-bold - */ - public val displaySBold: TextStyle = TextStyle.Default, - /** - * typography l header-h1 - */ - public val headerH1Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h1-bold - */ - public val headerH1Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h2 - */ - public val headerH2Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h2-bold - */ - public val headerH2Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h3 - */ - public val headerH3Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h3-bold - */ - public val headerH3Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h4 - */ - public val headerH4Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h4-bold - */ - public val headerH4Bold: TextStyle = TextStyle.Default, - /** - * typography l header-h5 - */ - public val headerH5Normal: TextStyle = TextStyle.Default, - /** - * typography l header-h5-bold - */ - public val headerH5Bold: TextStyle = TextStyle.Default, - /** - * typography l body-l - */ - public val bodyLNormal: TextStyle = TextStyle.Default, - /** - * typography l body-l-bold - */ - public val bodyLBold: TextStyle = TextStyle.Default, - /** - * typography l body-m - */ - public val bodyMNormal: TextStyle = TextStyle.Default, - /** - * typography l body-m-bold - */ - public val bodyMBold: TextStyle = TextStyle.Default, - /** - * typography l body-s - */ - public val bodySNormal: TextStyle = TextStyle.Default, - /** - * typography l body-s-bold - */ - public val bodySBold: TextStyle = TextStyle.Default, - /** - * typography l body-xs - */ - public val bodyXsNormal: TextStyle = TextStyle.Default, - /** - * typography l body-xs-bold - */ - public val bodyXsBold: TextStyle = TextStyle.Default, - /** - * typography l body-xxs - */ - public val bodyXxsNormal: TextStyle = TextStyle.Default, - /** - * typography l body-xxs-bold - */ - public val bodyXxsBold: TextStyle = TextStyle.Default, - /** - * typography l text-l - */ - public val textLNormal: TextStyle = TextStyle.Default, - /** - * typography l text-l-bold - */ - public val textLBold: TextStyle = TextStyle.Default, - /** - * typography l text-m - */ - public val textMNormal: TextStyle = TextStyle.Default, - /** - * typography l text-m-bold - */ - public val textMBold: TextStyle = TextStyle.Default, - /** - * typography l text-s - */ - public val textSNormal: TextStyle = TextStyle.Default, - /** - * typography l text-s-bold - */ - public val textSBold: TextStyle = TextStyle.Default, - /** - * typography l text-xs - */ - public val textXsNormal: TextStyle = TextStyle.Default, - /** - * typography l text-xs-bold - */ - public val textXsBold: TextStyle = TextStyle.Default, - /** - * typography l display-l-medium - */ - public val displayLMedium: TextStyle = TextStyle.Default, - /** - * typography l display-m-medium - */ - public val displayMMedium: TextStyle = TextStyle.Default, - /** - * typography l display-s-medium - */ - public val displaySMedium: TextStyle = TextStyle.Default, - /** - * typography l header-h1-medium - */ - public val headerH1Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h2-medium - */ - public val headerH2Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h3-medium - */ - public val headerH3Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h4-medium - */ - public val headerH4Medium: TextStyle = TextStyle.Default, - /** - * typography l header-h5-medium - */ - public val headerH5Medium: TextStyle = TextStyle.Default, - /** - * typography l body-l-medium - */ - public val bodyLMedium: TextStyle = TextStyle.Default, - /** - * typography l body-m-medium - */ - public val bodyMMedium: TextStyle = TextStyle.Default, - /** - * typography l body-s-medium - */ - public val bodySMedium: TextStyle = TextStyle.Default, - /** - * typography l body-xs-medium - */ - public val bodyXsMedium: TextStyle = TextStyle.Default, - /** - * typography l body-xxs-medium - */ - public val bodyXxsMedium: TextStyle = TextStyle.Default, - /** - * typography l text-l-medium - */ - public val textLMedium: TextStyle = TextStyle.Default, - /** - * typography l text-m-medium - */ - public val textMMedium: TextStyle = TextStyle.Default, - /** - * typography l text-s-medium - */ - public val textSMedium: TextStyle = TextStyle.Default, - /** - * typography l text-xs-medium - */ - public val textXsMedium: TextStyle = TextStyle.Default, -) - -internal val LocalStylesSaluteTypography: ProvidableCompositionLocal = - staticCompositionLocalOf { - StylesSaluteTypography() - } - -/** - * Возвращает [StylesSaluteTypography] для WindowSizeClass.Compact - */ -public fun smallStylesSaluteTypography(): StylesSaluteTypography = StylesSaluteTypography( - displayLNormal = TypographySmallTokens.DisplayLNormal, - displayLBold = TypographySmallTokens.DisplayLBold, - displayMNormal = TypographySmallTokens.DisplayMNormal, - displayMBold = TypographySmallTokens.DisplayMBold, - displaySNormal = TypographySmallTokens.DisplaySNormal, - displaySBold = TypographySmallTokens.DisplaySBold, - headerH1Normal = TypographySmallTokens.HeaderH1Normal, - headerH1Bold = TypographySmallTokens.HeaderH1Bold, - headerH2Normal = TypographySmallTokens.HeaderH2Normal, - headerH2Bold = TypographySmallTokens.HeaderH2Bold, - headerH3Normal = TypographySmallTokens.HeaderH3Normal, - headerH3Bold = TypographySmallTokens.HeaderH3Bold, - headerH4Normal = TypographySmallTokens.HeaderH4Normal, - headerH4Bold = TypographySmallTokens.HeaderH4Bold, - headerH5Normal = TypographySmallTokens.HeaderH5Normal, - headerH5Bold = TypographySmallTokens.HeaderH5Bold, - bodyLNormal = TypographySmallTokens.BodyLNormal, - bodyLBold = TypographySmallTokens.BodyLBold, - bodyMNormal = TypographySmallTokens.BodyMNormal, - bodyMBold = TypographySmallTokens.BodyMBold, - bodySNormal = TypographySmallTokens.BodySNormal, - bodySBold = TypographySmallTokens.BodySBold, - bodyXsNormal = TypographySmallTokens.BodyXsNormal, - bodyXsBold = TypographySmallTokens.BodyXsBold, - bodyXxsNormal = TypographySmallTokens.BodyXxsNormal, - bodyXxsBold = TypographySmallTokens.BodyXxsBold, - textLNormal = TypographySmallTokens.TextLNormal, - textLBold = TypographySmallTokens.TextLBold, - textMNormal = TypographySmallTokens.TextMNormal, - textMBold = TypographySmallTokens.TextMBold, - textSNormal = TypographySmallTokens.TextSNormal, - textSBold = TypographySmallTokens.TextSBold, - textXsNormal = TypographySmallTokens.TextXsNormal, - textXsBold = TypographySmallTokens.TextXsBold, - displayLMedium = TypographySmallTokens.DisplayLMedium, - displayMMedium = TypographySmallTokens.DisplayMMedium, - displaySMedium = TypographySmallTokens.DisplaySMedium, - headerH1Medium = TypographySmallTokens.HeaderH1Medium, - headerH2Medium = TypographySmallTokens.HeaderH2Medium, - headerH3Medium = TypographySmallTokens.HeaderH3Medium, - headerH4Medium = TypographySmallTokens.HeaderH4Medium, - headerH5Medium = TypographySmallTokens.HeaderH5Medium, - bodyLMedium = TypographySmallTokens.BodyLMedium, - bodyMMedium = TypographySmallTokens.BodyMMedium, - bodySMedium = TypographySmallTokens.BodySMedium, - bodyXsMedium = TypographySmallTokens.BodyXsMedium, - bodyXxsMedium = TypographySmallTokens.BodyXxsMedium, - textLMedium = TypographySmallTokens.TextLMedium, - textMMedium = TypographySmallTokens.TextMMedium, - textSMedium = TypographySmallTokens.TextSMedium, - textXsMedium = TypographySmallTokens.TextXsMedium, -) - -/** - * Возвращает [StylesSaluteTypography] для WindowSizeClass.Medium - */ -public fun mediumStylesSaluteTypography(): StylesSaluteTypography = StylesSaluteTypography( - displayLNormal = TypographyMediumTokens.DisplayLNormal, - displayLBold = TypographyMediumTokens.DisplayLBold, - displayMNormal = TypographyMediumTokens.DisplayMNormal, - displayMBold = TypographyMediumTokens.DisplayMBold, - displaySNormal = TypographyMediumTokens.DisplaySNormal, - displaySBold = TypographyMediumTokens.DisplaySBold, - headerH1Normal = TypographyMediumTokens.HeaderH1Normal, - headerH1Bold = TypographyMediumTokens.HeaderH1Bold, - headerH2Normal = TypographyMediumTokens.HeaderH2Normal, - headerH2Bold = TypographyMediumTokens.HeaderH2Bold, - headerH3Normal = TypographyMediumTokens.HeaderH3Normal, - headerH3Bold = TypographyMediumTokens.HeaderH3Bold, - headerH4Normal = TypographyMediumTokens.HeaderH4Normal, - headerH4Bold = TypographyMediumTokens.HeaderH4Bold, - headerH5Normal = TypographyMediumTokens.HeaderH5Normal, - headerH5Bold = TypographyMediumTokens.HeaderH5Bold, - bodyLNormal = TypographyMediumTokens.BodyLNormal, - bodyLBold = TypographyMediumTokens.BodyLBold, - bodyMNormal = TypographyMediumTokens.BodyMNormal, - bodyMBold = TypographyMediumTokens.BodyMBold, - bodySNormal = TypographyMediumTokens.BodySNormal, - bodySBold = TypographyMediumTokens.BodySBold, - bodyXsNormal = TypographyMediumTokens.BodyXsNormal, - bodyXsBold = TypographyMediumTokens.BodyXsBold, - bodyXxsNormal = TypographyMediumTokens.BodyXxsNormal, - bodyXxsBold = TypographyMediumTokens.BodyXxsBold, - textLNormal = TypographyMediumTokens.TextLNormal, - textLBold = TypographyMediumTokens.TextLBold, - textMNormal = TypographyMediumTokens.TextMNormal, - textMBold = TypographyMediumTokens.TextMBold, - textSNormal = TypographyMediumTokens.TextSNormal, - textSBold = TypographyMediumTokens.TextSBold, - textXsNormal = TypographyMediumTokens.TextXsNormal, - textXsBold = TypographyMediumTokens.TextXsBold, - displayLMedium = TypographyMediumTokens.DisplayLMedium, - displayMMedium = TypographyMediumTokens.DisplayMMedium, - displaySMedium = TypographyMediumTokens.DisplaySMedium, - headerH1Medium = TypographyMediumTokens.HeaderH1Medium, - headerH2Medium = TypographyMediumTokens.HeaderH2Medium, - headerH3Medium = TypographyMediumTokens.HeaderH3Medium, - headerH4Medium = TypographyMediumTokens.HeaderH4Medium, - headerH5Medium = TypographyMediumTokens.HeaderH5Medium, - bodyLMedium = TypographyMediumTokens.BodyLMedium, - bodyMMedium = TypographyMediumTokens.BodyMMedium, - bodySMedium = TypographyMediumTokens.BodySMedium, - bodyXsMedium = TypographyMediumTokens.BodyXsMedium, - bodyXxsMedium = TypographyMediumTokens.BodyXxsMedium, - textLMedium = TypographyMediumTokens.TextLMedium, - textMMedium = TypographyMediumTokens.TextMMedium, - textSMedium = TypographyMediumTokens.TextSMedium, - textXsMedium = TypographyMediumTokens.TextXsMedium, -) - -/** - * Возвращает [StylesSaluteTypography] для WindowSizeClass.Expanded - */ -public fun largeStylesSaluteTypography(): StylesSaluteTypography = StylesSaluteTypography( - displayLNormal = TypographyLargeTokens.DisplayLNormal, - displayLBold = TypographyLargeTokens.DisplayLBold, - displayMNormal = TypographyLargeTokens.DisplayMNormal, - displayMBold = TypographyLargeTokens.DisplayMBold, - displaySNormal = TypographyLargeTokens.DisplaySNormal, - displaySBold = TypographyLargeTokens.DisplaySBold, - headerH1Normal = TypographyLargeTokens.HeaderH1Normal, - headerH1Bold = TypographyLargeTokens.HeaderH1Bold, - headerH2Normal = TypographyLargeTokens.HeaderH2Normal, - headerH2Bold = TypographyLargeTokens.HeaderH2Bold, - headerH3Normal = TypographyLargeTokens.HeaderH3Normal, - headerH3Bold = TypographyLargeTokens.HeaderH3Bold, - headerH4Normal = TypographyLargeTokens.HeaderH4Normal, - headerH4Bold = TypographyLargeTokens.HeaderH4Bold, - headerH5Normal = TypographyLargeTokens.HeaderH5Normal, - headerH5Bold = TypographyLargeTokens.HeaderH5Bold, - bodyLNormal = TypographyLargeTokens.BodyLNormal, - bodyLBold = TypographyLargeTokens.BodyLBold, - bodyMNormal = TypographyLargeTokens.BodyMNormal, - bodyMBold = TypographyLargeTokens.BodyMBold, - bodySNormal = TypographyLargeTokens.BodySNormal, - bodySBold = TypographyLargeTokens.BodySBold, - bodyXsNormal = TypographyLargeTokens.BodyXsNormal, - bodyXsBold = TypographyLargeTokens.BodyXsBold, - bodyXxsNormal = TypographyLargeTokens.BodyXxsNormal, - bodyXxsBold = TypographyLargeTokens.BodyXxsBold, - textLNormal = TypographyLargeTokens.TextLNormal, - textLBold = TypographyLargeTokens.TextLBold, - textMNormal = TypographyLargeTokens.TextMNormal, - textMBold = TypographyLargeTokens.TextMBold, - textSNormal = TypographyLargeTokens.TextSNormal, - textSBold = TypographyLargeTokens.TextSBold, - textXsNormal = TypographyLargeTokens.TextXsNormal, - textXsBold = TypographyLargeTokens.TextXsBold, - displayLMedium = TypographyLargeTokens.DisplayLMedium, - displayMMedium = TypographyLargeTokens.DisplayMMedium, - displaySMedium = TypographyLargeTokens.DisplaySMedium, - headerH1Medium = TypographyLargeTokens.HeaderH1Medium, - headerH2Medium = TypographyLargeTokens.HeaderH2Medium, - headerH3Medium = TypographyLargeTokens.HeaderH3Medium, - headerH4Medium = TypographyLargeTokens.HeaderH4Medium, - headerH5Medium = TypographyLargeTokens.HeaderH5Medium, - bodyLMedium = TypographyLargeTokens.BodyLMedium, - bodyMMedium = TypographyLargeTokens.BodyMMedium, - bodySMedium = TypographyLargeTokens.BodySMedium, - bodyXsMedium = TypographyLargeTokens.BodyXsMedium, - bodyXxsMedium = TypographyLargeTokens.BodyXxsMedium, - textLMedium = TypographyLargeTokens.TextLMedium, - textMMedium = TypographyLargeTokens.TextMMedium, - textSMedium = TypographyLargeTokens.TextSMedium, - textXsMedium = TypographyLargeTokens.TextXsMedium, -) - -/** - * Возвращает разные [StylesSaluteTypography] в зависимости от ширины окна. Значение динамически - * изменяется при изменении ширины окна. - */ -@Composable -public fun dynamicStylesSaluteTypography(): StylesSaluteTypography { - val widthClass = collectWindowSizeInfoAsState().value.widthClass - return when (widthClass) { - WindowSizeClass.Expanded -> largeStylesSaluteTypography() - WindowSizeClass.Medium -> mediumStylesSaluteTypography() - WindowSizeClass.Compact -> smallStylesSaluteTypography() - } -} - -/** - * Возвращает значение в dp - брейкпоинт по ширине для указанного класса размерности. - */ -public fun WindowSizeClass.widthBreakPoint(): Dp = when (this) { - WindowSizeClass.Expanded -> 960.0.dp - WindowSizeClass.Medium -> 560.0.dp - WindowSizeClass.Compact -> 0.dp -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/WindowSize.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/WindowSize.kt deleted file mode 100644 index 6bb623d8a1..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/theme/WindowSize.kt +++ /dev/null @@ -1,77 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.theme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.State -import androidx.compose.runtime.mutableStateOf -import androidx.compose.runtime.remember -import androidx.compose.ui.platform.LocalConfiguration -import androidx.compose.ui.platform.LocalContext -import androidx.compose.ui.platform.LocalDensity -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.IntSize -import androidx.compose.ui.unit.dp - -/** - * Класс размерности окна. - * См. [developer.android.com](https://developer.android.com/guide/topics/large-screens/support-different-screen-sizes) - */ -enum class WindowSizeClass { - Compact, - Medium, - Expanded, -} - -/** - * Возвращает значение в dp - брейкпоинт по высоте для указанного класса размерности. - */ -fun WindowSizeClass.heightBreakPoint(): Dp = - when (this) { - WindowSizeClass.Compact -> 0.dp - WindowSizeClass.Medium -> 480.dp - WindowSizeClass.Expanded -> 900.dp - } - -/** - * Информация о размерности окна - * @property widthClass класс размерности ширины окна - * @property heightClass класс размерности высоты окна - */ -data class WindowSizeInfo( - val widthClass: WindowSizeClass = WindowSizeClass.Medium, - val heightClass: WindowSizeClass = WindowSizeClass.Medium, -) - -/** - * Возвращает информацию о размерности окна как state - */ -@Composable -fun collectWindowSizeInfoAsState(): State { - val info = remember { mutableStateOf(WindowSizeInfo()) } - val context = LocalContext.current - val mediumWidthBreakPoint = WindowSizeClass.Medium.widthBreakPoint().px - val mediumHeightBreakPoint = WindowSizeClass.Medium.heightBreakPoint().px - val expandedWidthBreakPoint = WindowSizeClass.Expanded.widthBreakPoint().px - val expandedHeightBreakPoint = WindowSizeClass.Expanded.heightBreakPoint().px - - info.value = remember(context, LocalConfiguration.current) { - val displayMetrics = context.resources.displayMetrics - val size = IntSize(displayMetrics.widthPixels, displayMetrics.heightPixels) - val widthClass = when { - size.width < mediumWidthBreakPoint -> WindowSizeClass.Compact - size.width in mediumWidthBreakPoint until expandedWidthBreakPoint -> WindowSizeClass.Medium - else -> WindowSizeClass.Expanded - } - val heightClass = when { - size.height < mediumHeightBreakPoint -> WindowSizeClass.Compact - size.height in mediumHeightBreakPoint until expandedHeightBreakPoint -> WindowSizeClass.Medium - else -> WindowSizeClass.Expanded - } - WindowSizeInfo(widthClass, heightClass) - } - - return info -} - -private val Dp.px: Int - @Composable - get() = with(LocalDensity.current) { this@px.roundToPx() } diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ColorTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ColorTokens.kt deleted file mode 100644 index d3402d1b77..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ColorTokens.kt +++ /dev/null @@ -1,14174 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.graphics.Color - -/** - * Токены цвета для темной темы - */ -public object DarkColorTokens { - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет - */ - public val TextDefaultAccent: Color = Color(0xFF24B23E) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет - */ - public val TextDefaultPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет - */ - public val TextDefaultPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет - */ - public val TextDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveHover: Color = Color(0xFF2ACB47) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveActive: Color = Color(0xFF1F9835) - - /** - * Цвет успеха - */ - public val TextDefaultPositive: Color = Color(0xFF24B23E) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningHover: Color = Color(0xFFFF8442) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningActive: Color = Color(0xFFFF5D05) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarning: Color = Color(0xFFFF7024) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Цвет ошибки - */ - public val TextDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации - */ - public val TextDefaultInfoHover: Color = Color(0xFF66BCF5) - - /** - * Цвет информации - */ - public val TextDefaultInfoActive: Color = Color(0xFF0E8ADD) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinorHover: Color = Color(0xFF1277BA) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinorActive: Color = Color(0xFF10659E) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthenaHover: Color = Color(0xFF66BCF5) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthenaActive: Color = Color(0xFF0E8ADD) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthena: Color = Color(0xFF199AF0) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoyHover: Color = Color(0xFFE4BDFF) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoyActive: Color = Color(0xFFB84DFF) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoy: Color = Color(0xFFC46BFF) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2EHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2EActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2E: Color = Color(0xFF24B23E) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrandHover: Color = Color(0xFFA3C3FF) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrandActive: Color = Color(0xFF337AFF) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrand: Color = Color(0xFF528EFF) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMainHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMainActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMain: Color = Color(0xFF24B23E) - - /** - * Цвет информации - */ - public val TextDefaultInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinor: Color = Color(0xFF0D5382) - - /** - * dark text default textAccentMainMinor - */ - public val TextDefaultAccentMainMinor: Color = Color(0xFF095C18) - - /** - * dark text default textAccentMainMinorHover - */ - public val TextDefaultAccentMainMinorHover: Color = Color(0xFF0F9527) - - /** - * dark text default textAccentMainMinorActive - */ - public val TextDefaultAccentMainMinorActive: Color = Color(0xFF0C7920) - - /** - * dark text default textAccentAthenaMinor - */ - public val TextDefaultAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * dark text default textAccentAthenaMinorHover - */ - public val TextDefaultAccentAthenaMinorHover: Color = Color(0xFF1277BA) - - /** - * dark text default textAccentAthenaMinorActive - */ - public val TextDefaultAccentAthenaMinorActive: Color = Color(0xFF10659E) - - /** - * dark text default textAccentBrandMinor - */ - public val TextDefaultAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * dark text default textAccentBrandMinorHover - */ - public val TextDefaultAccentBrandMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text default textAccentBrandMinorActive - */ - public val TextDefaultAccentBrandMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text default textAccentJoyMinor - */ - public val TextDefaultAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * dark text default textAccentJoyMinorHover - */ - public val TextDefaultAccentJoyMinorHover: Color = Color(0xFFF4E7FD) - - /** - * dark text default textAccentJoyMinorActive - */ - public val TextDefaultAccentJoyMinorActive: Color = Color(0xFFC680F5) - - /** - * dark text default textAccentB2EMinor - */ - public val TextDefaultAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * dark text default textAccentB2EMinorHover - */ - public val TextDefaultAccentB2EMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text default textAccentB2EMinorActive - */ - public val TextDefaultAccentB2EMinorActive: Color = Color(0xFF23B83E) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccent: Color = Color(0xFF24B23E) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveHover: Color = Color(0xFF2ACB47) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveActive: Color = Color(0xFF1F9835) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningHover: Color = Color(0xFFFF8442) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningActive: Color = Color(0xFFFF5D05) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfoHover: Color = Color(0xFF66BCF5) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfoActive: Color = Color(0xFF0E8ADD) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinorHover: Color = Color(0xFF1277BA) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinorActive: Color = Color(0xFF10659E) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthenaHover: Color = Color(0xFF66BCF5) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthenaActive: Color = Color(0xFF0E8ADD) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthena: Color = Color(0xFF199AF0) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoyHover: Color = Color(0xFFE4BDFF) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoyActive: Color = Color(0xFFB84DFF) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoy: Color = Color(0xFFC46BFF) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2EHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2EActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2E: Color = Color(0xFF24B23E) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrandHover: Color = Color(0xFFA3C3FF) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrandActive: Color = Color(0xFF337AFF) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrand: Color = Color(0xFF528EFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMainHover: Color = Color(0xFF2ACB47) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMainActive: Color = Color(0xFF1F9835) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMain: Color = Color(0xFF24B23E) - - /** - * dark text onDark textAccentMainMinor - */ - public val TextOnDarkAccentMainMinor: Color = Color(0xFF095C18) - - /** - * dark text onDark textAccentMainMinorHover - */ - public val TextOnDarkAccentMainMinorHover: Color = Color(0xFF0F9527) - - /** - * dark text onDark textAccentMainMinorActive - */ - public val TextOnDarkAccentMainMinorActive: Color = Color(0xFF0C7920) - - /** - * dark text onDark textAccentAthenaMinor - */ - public val TextOnDarkAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * dark text onDark textAccentAthenaMinorHover - */ - public val TextOnDarkAccentAthenaMinorHover: Color = Color(0xFF1277BA) - - /** - * dark text onDark textAccentAthenaMinorActive - */ - public val TextOnDarkAccentAthenaMinorActive: Color = Color(0xFF10659E) - - /** - * dark text onDark textAccentB2EMinor - */ - public val TextOnDarkAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * dark text onDark textAccentB2EMinorHover - */ - public val TextOnDarkAccentB2EMinorHover: Color = Color(0xFF0F9527) - - /** - * dark text onDark textAccentB2EMinorActive - */ - public val TextOnDarkAccentB2EMinorActive: Color = Color(0xFF0C7920) - - /** - * dark text onDark textAccentBrandMinor - */ - public val TextOnDarkAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * dark text onDark textAccentBrandMinorHover - */ - public val TextOnDarkAccentBrandMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text onDark textAccentBrandMinorActive - */ - public val TextOnDarkAccentBrandMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark text onDark textAccentJoyMinor - */ - public val TextOnDarkAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * dark text onDark textAccentJoyMinorHover - */ - public val TextOnDarkAccentJoyMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark text onDark textAccentJoyMinorActive - */ - public val TextOnDarkAccentJoyMinorActive: Color = Color(0xFF8933C1) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinor: Color = Color(0xFF0D5382) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryActive: Color = Color(0xC4080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryActive: Color = Color(0xAB080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryActive: Color = Color(0x56080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphActive: Color = Color(0xA3080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentActive: Color = Color(0xFF15842A) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveActive: Color = Color(0xFF15842A) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningActive: Color = Color(0xFFDC5304) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfoHover: Color = Color(0xFF50B1F2) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfoActive: Color = Color(0xFF0F7BC2) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinorHover: Color = Color(0xFFA3DAFF) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinorActive: Color = Color(0xFF33ADFF) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthenaHover: Color = Color(0xFF50B1F2) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthenaActive: Color = Color(0xFF0F7BC2) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoyHover: Color = Color(0xFFD7A4F9) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoyActive: Color = Color(0xFFA93BF1) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2EActive: Color = Color(0xFF15842A) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrandHover: Color = Color(0xFF90B6FE) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrandActive: Color = Color(0xFF216EFD) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMainActive: Color = Color(0xFF15842A) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * dark text onLight textAccentMainMinor - */ - public val TextOnLightAccentMainMinor: Color = Color(0xFF28D247) - - /** - * dark text onLight textAccentMainMinorHover - */ - public val TextOnLightAccentMainMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text onLight textAccentMainMinorActive - */ - public val TextOnLightAccentMainMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text onLight textAccentAthenaMinor - */ - public val TextOnLightAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * dark text onLight textAccentAthenaMinorHover - */ - public val TextOnLightAccentAthenaMinorHover: Color = Color(0xFFA3DAFF) - - /** - * dark text onLight textAccentAthenaMinorActive - */ - public val TextOnLightAccentAthenaMinorActive: Color = Color(0xFF33ADFF) - - /** - * dark text onLight textAccentJoyMinor - */ - public val TextOnLightAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * dark text onLight textAccentJoyMinorHover - */ - public val TextOnLightAccentJoyMinorHover: Color = Color(0xFFF4E7FD) - - /** - * dark text onLight textAccentJoyMinorActive - */ - public val TextOnLightAccentJoyMinorActive: Color = Color(0xFFC680F5) - - /** - * dark text onLight textAccentB2EMinor - */ - public val TextOnLightAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * dark text onLight textAccentB2EMinorHover - */ - public val TextOnLightAccentB2EMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text onLight textAccentB2EMinorActive - */ - public val TextOnLightAccentB2EMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text onLight textAccentBrandMinor - */ - public val TextOnLightAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * dark text onLight textAccentBrandMinorHover - */ - public val TextOnLightAccentBrandMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text onLight textAccentBrandMinorActive - */ - public val TextOnLightAccentBrandMinorActive: Color = Color(0xFF6FA0FB) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryHover: Color = Color(0x93080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryActive: Color = Color(0xC4080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimary: Color = Color(0xF5080808) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryBrightness: Color = Color(0xF5080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryActive: Color = Color(0xAB080808) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondary: Color = Color(0x8F080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryActive: Color = Color(0x56080808) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiary: Color = Color(0x47080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphHover: Color = Color(0x7A080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphActive: Color = Color(0xA3080808) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraph: Color = Color(0xCC080808) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromoHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromoActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveActive: Color = Color(0xFF15842A) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningActive: Color = Color(0xFFDC5304) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeHover: Color = Color(0xFFFF475A) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfoHover: Color = Color(0xFF50B1F2) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfoActive: Color = Color(0xFF0F7BC2) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinorHover: Color = Color(0xFFA3DAFF) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinorActive: Color = Color(0xFF33ADFF) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfo: Color = Color(0xFF118CDF) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinor: Color = Color(0xFF28D247) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinor: Color = Color(0xFF52BAFF) - - /** - * dark text inverse textAccentMain - */ - public val TextInverseAccentMain: Color = Color(0xFF1A9E32) - - /** - * dark text inverse textAccentMainHover - */ - public val TextInverseAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * dark text inverse textAccentMainActive - */ - public val TextInverseAccentMainActive: Color = Color(0xFF15842A) - - /** - * dark text inverse textAccentAthena - */ - public val TextInverseAccentAthena: Color = Color(0xFF118CDF) - - /** - * dark text inverse textAccentAthenaHover - */ - public val TextInverseAccentAthenaHover: Color = Color(0xFF50B1F2) - - /** - * dark text inverse textAccentAthenaActive - */ - public val TextInverseAccentAthenaActive: Color = Color(0xFF0F7BC2) - - /** - * dark text inverse textAccentJoy - */ - public val TextInverseAccentJoy: Color = Color(0xFFB559F3) - - /** - * dark text inverse textAccentJoyHover - */ - public val TextInverseAccentJoyHover: Color = Color(0xFFD7A4F9) - - /** - * dark text inverse textAccentJoyActive - */ - public val TextInverseAccentJoyActive: Color = Color(0xFFA93BF1) - - /** - * dark text inverse textAccentBrand - */ - public val TextInverseAccentBrand: Color = Color(0xFF3F81FD) - - /** - * dark text inverse textAccentBrandHover - */ - public val TextInverseAccentBrandHover: Color = Color(0xFF90B6FE) - - /** - * dark text inverse textAccentBrandActive - */ - public val TextInverseAccentBrandActive: Color = Color(0xFF216EFD) - - /** - * dark text inverse textAccentMainMinor - */ - public val TextInverseAccentMainMinor: Color = Color(0xFF28D247) - - /** - * dark text inverse textAccentMainMinorHover - */ - public val TextInverseAccentMainMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text inverse textAccentMainMinorActive - */ - public val TextInverseAccentMainMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text inverse textAccentJoyMinor - */ - public val TextInverseAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * dark text inverse textAccentJoyMinorHover - */ - public val TextInverseAccentJoyMinorHover: Color = Color(0xFFF4E7FD) - - /** - * dark text inverse textAccentJoyMinorActive - */ - public val TextInverseAccentJoyMinorActive: Color = Color(0xFFC680F5) - - /** - * dark text inverse textAccentB2EMinor - */ - public val TextInverseAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * dark text inverse textAccentB2EMinorHover - */ - public val TextInverseAccentB2EMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark text inverse textAccentB2EMinorActive - */ - public val TextInverseAccentB2EMinorActive: Color = Color(0xFF23B83E) - - /** - * dark text inverse textAccentAthenaMinor - */ - public val TextInverseAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * dark text inverse textAccentAthenaMinorHover - */ - public val TextInverseAccentAthenaMinorHover: Color = Color(0xFFA3DAFF) - - /** - * dark text inverse textAccentAthenaMinorActive - */ - public val TextInverseAccentAthenaMinorActive: Color = Color(0xFF33ADFF) - - /** - * dark text inverse textAccentBrandMinor - */ - public val TextInverseAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * dark text inverse textAccentBrandMinorHover - */ - public val TextInverseAccentBrandMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark text inverse textAccentBrandMinorActive - */ - public val TextInverseAccentBrandMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark text inverse textAccentB2E - */ - public val TextInverseAccentB2E: Color = Color(0xFF1A9E32) - - /** - * dark text inverse textAccentB2EHover - */ - public val TextInverseAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * dark text inverse textAccentB2EActive - */ - public val TextInverseAccentB2EActive: Color = Color(0xFF15842A) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryHover: Color = Color(0xFF1C1C1C) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryActive: Color = Color(0xFF121212) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimary: Color = Color(0xFF171717) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryHover: Color = Color(0xFF303030) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryActive: Color = Color(0xFF212121) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondary: Color = Color(0xFF262626) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryHover: Color = Color(0xFF404040) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryActive: Color = Color(0xFF303030) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardHover: Color = Color(0xFF1C1C1C) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardActive: Color = Color(0xFF121212) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryHover: Color = Color(0x1FFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryActive: Color = Color(0x0AFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryHover: Color = Color(0x3DFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryActive: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryHover: Color = Color(0x52FFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryActive: Color = Color(0x24FFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardHover: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardActive: Color = Color(0x0AFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCard: Color = Color(0x0FFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardBrightness: Color = Color(0x0FFFFFFF) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearActive: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClear: Color = Color(0x00000000) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoActive: Color = Color(0xFF1086D5) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinorActive: Color = Color(0xFF08210C) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinorHover: Color = Color(0xFF4F250D) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinorActive: Color = Color(0xFF351909) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinorHover: Color = Color(0xFF5B1018) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinorActive: Color = Color(0xFF410B11) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinorHover: Color = Color(0xFF10344C) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinorActive: Color = Color(0xFF0A2333) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositiveHover: Color = Color(0x521A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositiveActive: Color = Color(0x241A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarningHover: Color = Color(0x52FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarningActive: Color = Color(0x24FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegativeHover: Color = Color(0x52FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegativeActive: Color = Color(0x24FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfoHover: Color = Color(0x52118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfoActive: Color = Color(0x24118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthenaActive: Color = Color(0xFF1086D5) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoyActive: Color = Color(0xFFB14FF3) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2EHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2EActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrandHover: Color = Color(0xFF5D95FD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrandActive: Color = Color(0xFF357BFD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSentHover: Color = Color(0x66080808) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSentActive: Color = Color(0x38080808) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSent: Color = Color(0x47080808) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceivedHover: Color = Color(0x1FFFFFFF) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceivedActive: Color = Color(0x0AFFFFFF) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceived: Color = Color(0x0FFFFFFF) - - /** - * Фон для скелетона - */ - public val SurfaceDefaultSkeletonHover: Color = Color(0xFFFFFFFF) - - /** - * Фон для скелетона - */ - public val SurfaceDefaultSkeletonActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMainHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMainActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMain: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinor: Color = Color(0xFF0C283B) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfo: Color = Color(0x33118CDF) - - /** - * dark surface default surfaceAccentMainMinor - */ - public val SurfaceDefaultAccentMainMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface default surfaceAccentMainMinorHover - */ - public val SurfaceDefaultAccentMainMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface default surfaceAccentMainMinorActive - */ - public val SurfaceDefaultAccentMainMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface default surfaceAccentAthenaMinor - */ - public val SurfaceDefaultAccentAthenaMinor: Color = Color(0xFF0C283B) - - /** - * dark surface default surfaceAccentAthenaMinorHover - */ - public val SurfaceDefaultAccentAthenaMinorHover: Color = Color(0xFF10344C) - - /** - * dark surface default surfaceAccentAthenaMinorActive - */ - public val SurfaceDefaultAccentAthenaMinorActive: Color = Color(0xFF0A2333) - - /** - * dark surface default surfaceAccentJoyMinor - */ - public val SurfaceDefaultAccentJoyMinor: Color = Color(0xFF36154C) - - /** - * dark surface default surfaceAccentJoyMinorHover - */ - public val SurfaceDefaultAccentJoyMinorHover: Color = Color(0xFF41195C) - - /** - * dark surface default surfaceAccentJoyMinorActive - */ - public val SurfaceDefaultAccentJoyMinorActive: Color = Color(0xFF301344) - - /** - * dark surface default surfaceAccentB2EMinor - */ - public val SurfaceDefaultAccentB2EMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface default surfaceAccentB2EMinorHover - */ - public val SurfaceDefaultAccentB2EMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface default surfaceAccentB2EMinorActive - */ - public val SurfaceDefaultAccentB2EMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface default surfaceAccentBrandMinor - */ - public val SurfaceDefaultAccentBrandMinor: Color = Color(0xFF082254) - - /** - * dark surface default surfaceAccentBrandMinorHover - */ - public val SurfaceDefaultAccentBrandMinorHover: Color = Color(0xFF0A2A67) - - /** - * dark surface default surfaceAccentBrandMinorActive - */ - public val SurfaceDefaultAccentBrandMinorActive: Color = Color(0xFF071F4B) - - /** - * dark surface default surfaceTransparentAccentAthena - */ - public val SurfaceDefaultTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * dark surface default surfaceTransparentAccentAthenaHover - */ - public val SurfaceDefaultTransparentAccentAthenaHover: Color = Color(0x52118CDF) - - /** - * dark surface default surfaceTransparentAccentAthenaActive - */ - public val SurfaceDefaultTransparentAccentAthenaActive: Color = Color(0x24118CDF) - - /** - * dark surface default surfaceTransparentAccentJoy - */ - public val SurfaceDefaultTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * dark surface default surfaceTransparentAccentJoyHover - */ - public val SurfaceDefaultTransparentAccentJoyHover: Color = Color(0x52B558F3) - - /** - * dark surface default surfaceTransparentAccentJoyActive - */ - public val SurfaceDefaultTransparentAccentJoyActive: Color = Color(0x24B558F3) - - /** - * dark surface default surfaceTransparentAccentB2E - */ - public val SurfaceDefaultTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * dark surface default surfaceTransparentAccentB2EHover - */ - public val SurfaceDefaultTransparentAccentB2EHover: Color = Color(0x521A9E32) - - /** - * dark surface default surfaceTransparentAccentB2EActive - */ - public val SurfaceDefaultTransparentAccentB2EActive: Color = Color(0x241A9E32) - - /** - * dark surface default surfaceTransparentAccentBrand - */ - public val SurfaceDefaultTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * dark surface default surfaceTransparentAccentBrandHover - */ - public val SurfaceDefaultTransparentAccentBrandHover: Color = Color(0x523F82FD) - - /** - * dark surface default surfaceTransparentAccentBrandActive - */ - public val SurfaceDefaultTransparentAccentBrandActive: Color = Color(0x243F82FD) - - /** - * dark surface default surfaceTransparentAccentMain - */ - public val SurfaceDefaultTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * dark surface default surfaceTransparentAccentMainHover - */ - public val SurfaceDefaultTransparentAccentMainHover: Color = Color(0x521A9E32) - - /** - * dark surface default surfaceTransparentAccentMainActive - */ - public val SurfaceDefaultTransparentAccentMainActive: Color = Color(0x241A9E32) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryHover: Color = Color(0xFF1C1C1C) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryActive: Color = Color(0xFF121212) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimary: Color = Color(0xFF171717) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondaryHover: Color = Color(0xFF303030) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondaryActive: Color = Color(0xFF212121) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondary: Color = Color(0xFF262626) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryHover: Color = Color(0xFF404040) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryActive: Color = Color(0xFF303030) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardHover: Color = Color(0xFF1C1C1C) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardActive: Color = Color(0xFF121212) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryHover: Color = Color(0x1FFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryActive: Color = Color(0x0AFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryHover: Color = Color(0x3DFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryActive: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryHover: Color = Color(0x52FFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryActive: Color = Color(0x24FFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardHover: Color = Color(0x1FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardActive: Color = Color(0x0AFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCard: Color = Color(0x0FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardBrightness: Color = Color(0x0FFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearHover: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearActive: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на темном - */ - public val SurfaceOnDarkNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет фона поверхности/контрола ошибка на темном - */ - public val SurfaceOnDarkNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Цвет фона поверхности/контрола ошибка на темном - */ - public val SurfaceOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoActive: Color = Color(0xFF1086D5) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinorActive: Color = Color(0xFF08210C) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinorHover: Color = Color(0xFF4F250D) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinorActive: Color = Color(0xFF351909) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinorHover: Color = Color(0xFF5B1018) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinorActive: Color = Color(0xFF410B11) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinorHover: Color = Color(0xFF10344C) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinorActive: Color = Color(0xFF0A2333) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositiveHover: Color = Color(0x521A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositiveActive: Color = Color(0x241A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarningHover: Color = Color(0x52FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarningActive: Color = Color(0x24FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegativeHover: Color = Color(0x52FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegativeActive: Color = Color(0x24FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfoHover: Color = Color(0x52118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfoActive: Color = Color(0x24118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthenaActive: Color = Color(0xFF1086D5) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoyActive: Color = Color(0xFFB14FF3) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2EHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2EActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrandHover: Color = Color(0xFF5D95FD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrandActive: Color = Color(0xFF357BFD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMainHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMainActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMain: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinor: Color = Color(0xFF0C283B) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfo: Color = Color(0x33118CDF) - - /** - * dark surface onDark surfaceAccentMainMinor - */ - public val SurfaceOnDarkAccentMainMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface onDark surfaceAccentMainMinorHover - */ - public val SurfaceOnDarkAccentMainMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface onDark surfaceAccentMainMinorActive - */ - public val SurfaceOnDarkAccentMainMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface onDark surfaceAccentAthenaMinor - */ - public val SurfaceOnDarkAccentAthenaMinor: Color = Color(0xFF0C283B) - - /** - * dark surface onDark surfaceAccentAthenaMinorHover - */ - public val SurfaceOnDarkAccentAthenaMinorHover: Color = Color(0xFF10344C) - - /** - * dark surface onDark surfaceAccentAthenaMinorActive - */ - public val SurfaceOnDarkAccentAthenaMinorActive: Color = Color(0xFF0A2333) - - /** - * dark surface onDark surfaceAccentJoyMinor - */ - public val SurfaceOnDarkAccentJoyMinor: Color = Color(0xFF36154C) - - /** - * dark surface onDark surfaceAccentJoyMinorHover - */ - public val SurfaceOnDarkAccentJoyMinorHover: Color = Color(0xFF41195C) - - /** - * dark surface onDark surfaceAccentJoyMinorActive - */ - public val SurfaceOnDarkAccentJoyMinorActive: Color = Color(0xFF301344) - - /** - * dark surface onDark surfaceAccentB2EMinor - */ - public val SurfaceOnDarkAccentB2EMinor: Color = Color(0xFF0A2B10) - - /** - * dark surface onDark surfaceAccentB2EMinorHover - */ - public val SurfaceOnDarkAccentB2EMinorHover: Color = Color(0xFF0E3A16) - - /** - * dark surface onDark surfaceAccentB2EMinorActive - */ - public val SurfaceOnDarkAccentB2EMinorActive: Color = Color(0xFF08210C) - - /** - * dark surface onDark surfaceAccentBrandMinor - */ - public val SurfaceOnDarkAccentBrandMinor: Color = Color(0xFF082254) - - /** - * dark surface onDark surfaceAccentBrandMinorHover - */ - public val SurfaceOnDarkAccentBrandMinorHover: Color = Color(0xFF0A2A67) - - /** - * dark surface onDark surfaceAccentBrandMinorActive - */ - public val SurfaceOnDarkAccentBrandMinorActive: Color = Color(0xFF071F4B) - - /** - * dark surface onDark surfaceTransparentAccentMain - */ - public val SurfaceOnDarkTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * dark surface onDark surfaceTransparentAccentMainHover - */ - public val SurfaceOnDarkTransparentAccentMainHover: Color = Color(0x521A9E32) - - /** - * dark surface onDark surfaceTransparentAccentMainActive - */ - public val SurfaceOnDarkTransparentAccentMainActive: Color = Color(0x241A9E32) - - /** - * dark surface onDark surfaceTransparentAccentAthena - */ - public val SurfaceOnDarkTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * dark surface onDark surfaceTransparentAccentAthenaHover - */ - public val SurfaceOnDarkTransparentAccentAthenaHover: Color = Color(0x52118CDF) - - /** - * dark surface onDark surfaceTransparentAccentAthenaActive - */ - public val SurfaceOnDarkTransparentAccentAthenaActive: Color = Color(0x24118CDF) - - /** - * dark surface onDark surfaceTransparentAccentJoy - */ - public val SurfaceOnDarkTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * dark surface onDark surfaceTransparentAccentJoyHover - */ - public val SurfaceOnDarkTransparentAccentJoyHover: Color = Color(0x52B558F3) - - /** - * dark surface onDark surfaceTransparentAccentJoyActive - */ - public val SurfaceOnDarkTransparentAccentJoyActive: Color = Color(0x24B558F3) - - /** - * dark surface onDark surfaceTransparentAccentB2E - */ - public val SurfaceOnDarkTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * dark surface onDark surfaceTransparentAccentB2EHover - */ - public val SurfaceOnDarkTransparentAccentB2EHover: Color = Color(0x521A9E32) - - /** - * dark surface onDark surfaceTransparentAccentB2EActive - */ - public val SurfaceOnDarkTransparentAccentB2EActive: Color = Color(0x241A9E32) - - /** - * dark surface onDark surfaceTransparentAccentBrand - */ - public val SurfaceOnDarkTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * dark surface onDark surfaceTransparentAccentBrandHover - */ - public val SurfaceOnDarkTransparentAccentBrandHover: Color = Color(0x523F82FD) - - /** - * dark surface onDark surfaceTransparentAccentBrandActive - */ - public val SurfaceOnDarkTransparentAccentBrandActive: Color = Color(0x243F82FD) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiaryHover: Color = Color(0xFFE8E8E8) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiaryActive: Color = Color(0xFFD9D9D9) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultHover: Color = Color(0xFF0D0D0D) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimaryHover: Color = Color(0x12080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimaryActive: Color = Color(0x03080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimary: Color = Color(0x08080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryHover: Color = Color(0x1F080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryActive: Color = Color(0x0A080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondary: Color = Color(0x0F080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryHover: Color = Color(0x3D080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryActive: Color = Color(0x0F080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiary: Color = Color(0x1F080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeepHover: Color = Color(0xC2080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeepActive: Color = Color(0x94080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeep: Color = Color(0xA2080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearHover: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearActive: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveHover: Color = Color(0xFF1DAF37) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveActive: Color = Color(0xFF18952F) - - /** - * Цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarningActive: Color = Color(0xFFF05B05) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoActive: Color = Color(0xFF1086D5) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinorActive: Color = Color(0xFF94F9A7) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinorHover: Color = Color(0xFFFEE9DC) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinorHover: Color = Color(0xFFFFEBED) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinorHover: Color = Color(0xFFDBF1FF) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinorActive: Color = Color(0xFFC7E9FF) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositiveHover: Color = Color(0x3D1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositiveActive: Color = Color(0x0F1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarningHover: Color = Color(0x3DFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarningActive: Color = Color(0x0FFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegativeHover: Color = Color(0x3DFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegativeActive: Color = Color(0x0FFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfoHover: Color = Color(0x3D118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfoActive: Color = Color(0x0F118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthenaActive: Color = Color(0xFF1086D5) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoyActive: Color = Color(0xFFB14FF3) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2EHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2EActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrandHover: Color = Color(0xFF5D95FD) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrandActive: Color = Color(0xFF357BFD) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMainHover: Color = Color(0xFF1DAF37) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMainActive: Color = Color(0xFF18952F) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinor: Color = Color(0xFFCFECFF) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegative: Color = Color(0x1FFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfo: Color = Color(0x1F118CDF) - - /** - * dark surface onLight surfaceAccentMainMinor - */ - public val SurfaceOnLightAccentMainMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface onLight surfaceAccentMainMinorHover - */ - public val SurfaceOnLightAccentMainMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface onLight surfaceAccentMainMinorActive - */ - public val SurfaceOnLightAccentMainMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface onLight surfaceAccentAthenaMinor - */ - public val SurfaceOnLightAccentAthenaMinor: Color = Color(0xFFCFECFF) - - /** - * dark surface onLight surfaceAccentAthenaMinorHover - */ - public val SurfaceOnLightAccentAthenaMinorHover: Color = Color(0xFFDBF1FF) - - /** - * dark surface onLight surfaceAccentAthenaMinorActive - */ - public val SurfaceOnLightAccentAthenaMinorActive: Color = Color(0xFFC7E9FF) - - /** - * dark surface onLight surfaceAccentJoyMinor - */ - public val SurfaceOnLightAccentJoyMinor: Color = Color(0xFFF4E3FF) - - /** - * dark surface onLight surfaceAccentJoyMinorHover - */ - public val SurfaceOnLightAccentJoyMinorHover: Color = Color(0xFFF9F0FF) - - /** - * dark surface onLight surfaceAccentJoyMinorActive - */ - public val SurfaceOnLightAccentJoyMinorActive: Color = Color(0xFFF1DBFF) - - /** - * dark surface onLight surfaceAccentB2EMinor - */ - public val SurfaceOnLightAccentB2EMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface onLight surfaceAccentB2EMinorHover - */ - public val SurfaceOnLightAccentB2EMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface onLight surfaceAccentB2EMinorActive - */ - public val SurfaceOnLightAccentB2EMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface onLight surfaceAccentBrandMinor - */ - public val SurfaceOnLightAccentBrandMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface onLight surfaceAccentBrandMinorHover - */ - public val SurfaceOnLightAccentBrandMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface onLight surfaceAccentBrandMinorActive - */ - public val SurfaceOnLightAccentBrandMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface onLight surfaceTransparentAccentMain - */ - public val SurfaceOnLightTransparentAccentMain: Color = Color(0x1F1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentMainHover - */ - public val SurfaceOnLightTransparentAccentMainHover: Color = Color(0x3D1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentMainActive - */ - public val SurfaceOnLightTransparentAccentMainActive: Color = Color(0x0F1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentAthena - */ - public val SurfaceOnLightTransparentAccentAthena: Color = Color(0x1F118CDF) - - /** - * dark surface onLight surfaceTransparentAccentAthenaHover - */ - public val SurfaceOnLightTransparentAccentAthenaHover: Color = Color(0x3D118CDF) - - /** - * dark surface onLight surfaceTransparentAccentAthenaActive - */ - public val SurfaceOnLightTransparentAccentAthenaActive: Color = Color(0x0F118CDF) - - /** - * dark surface onLight surfaceTransparentAccentJoy - */ - public val SurfaceOnLightTransparentAccentJoy: Color = Color(0x1FB559F3) - - /** - * dark surface onLight surfaceTransparentAccentJoyHover - */ - public val SurfaceOnLightTransparentAccentJoyHover: Color = Color(0x3DB558F3) - - /** - * dark surface onLight surfaceTransparentAccentJoyActive - */ - public val SurfaceOnLightTransparentAccentJoyActive: Color = Color(0x0FB558F3) - - /** - * dark surface onLight surfaceTransparentAccentB2E - */ - public val SurfaceOnLightTransparentAccentB2E: Color = Color(0x1F1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentB2EHover - */ - public val SurfaceOnLightTransparentAccentB2EHover: Color = Color(0x3D1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentB2EActive - */ - public val SurfaceOnLightTransparentAccentB2EActive: Color = Color(0x0F1A9E32) - - /** - * dark surface onLight surfaceTransparentAccentBrand - */ - public val SurfaceOnLightTransparentAccentBrand: Color = Color(0x1F3F81FD) - - /** - * dark surface onLight surfaceTransparentAccentBrandHover - */ - public val SurfaceOnLightTransparentAccentBrandHover: Color = Color(0x3D3F82FD) - - /** - * dark surface onLight surfaceTransparentAccentBrandActive - */ - public val SurfaceOnLightTransparentAccentBrandActive: Color = Color(0x0F3F82FD) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryHover: Color = Color(0xFFE8E8E8) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryActive: Color = Color(0xFFD9D9D9) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultHover: Color = Color(0xFF000000) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultActive: Color = Color(0xFF000000) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryHover: Color = Color(0x12080808) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryActive: Color = Color(0x03080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryHover: Color = Color(0x1F080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryActive: Color = Color(0x0A080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryHover: Color = Color(0x3D080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryActive: Color = Color(0x0F080808) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClear: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromoHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromoActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveHover: Color = Color(0xFF1DAF37) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveActive: Color = Color(0xFF18952F) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningActive: Color = Color(0xFFF05B05) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeHover: Color = Color(0xFFFF475A) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoHover: Color = Color(0xFF1798EE) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoActive: Color = Color(0xFF1086D5) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinorActive: Color = Color(0xFF94F9A7) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinorHover: Color = Color(0xFFFEE9DC) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinorHover: Color = Color(0xFFFFEBED) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinorHover: Color = Color(0xFFDBF1FF) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinorActive: Color = Color(0xFFC7E9FF) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositiveHover: Color = Color(0x3D1A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositiveActive: Color = Color(0x0F1A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarningHover: Color = Color(0x3DFA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarningActive: Color = Color(0x0FFA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegativeHover: Color = Color(0x3DFF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegativeActive: Color = Color(0x0FFF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfoHover: Color = Color(0x3D118CDF) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfoActive: Color = Color(0x0F118CDF) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefault: Color = Color(0xFF000000) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimary: Color = Color(0x08080808) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondary: Color = Color(0x0F080808) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiary: Color = Color(0x1F080808) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfo: Color = Color(0xFF118CDF) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinor: Color = Color(0xFFCFECFF) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegative: Color = Color(0x1FFF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfo: Color = Color(0x1F118CDF) - - /** - * dark surface inverse surfaceAccentMain - */ - public val SurfaceInverseAccentMain: Color = Color(0xFF1A9E32) - - /** - * dark surface inverse surfaceAccentMainHover - */ - public val SurfaceInverseAccentMainHover: Color = Color(0xFF1DAF37) - - /** - * dark surface inverse surfaceAccentMainActive - */ - public val SurfaceInverseAccentMainActive: Color = Color(0xFF18952F) - - /** - * dark surface inverse surfaceAccentAthena - */ - public val SurfaceInverseAccentAthena: Color = Color(0xFF118CDF) - - /** - * dark surface inverse surfaceAccentAthenaHover - */ - public val SurfaceInverseAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * dark surface inverse surfaceAccentAthenaActive - */ - public val SurfaceInverseAccentAthenaActive: Color = Color(0xFF1086D5) - - /** - * dark surface inverse surfaceAccentJoy - */ - public val SurfaceInverseAccentJoy: Color = Color(0xFFB559F3) - - /** - * dark surface inverse surfaceAccentJoyHover - */ - public val SurfaceInverseAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * dark surface inverse surfaceAccentJoyActive - */ - public val SurfaceInverseAccentJoyActive: Color = Color(0xFFB14FF3) - - /** - * dark surface inverse surfaceAccentB2E - */ - public val SurfaceInverseAccentB2E: Color = Color(0xFF1A9E32) - - /** - * dark surface inverse surfaceAccentB2EHover - */ - public val SurfaceInverseAccentB2EHover: Color = Color(0xFF1DAF37) - - /** - * dark surface inverse surfaceAccentB2EActive - */ - public val SurfaceInverseAccentB2EActive: Color = Color(0xFF18952F) - - /** - * dark surface inverse surfaceAccentBrand - */ - public val SurfaceInverseAccentBrand: Color = Color(0xFF3F81FD) - - /** - * dark surface inverse surfaceAccentBrandHover - */ - public val SurfaceInverseAccentBrandHover: Color = Color(0xFF5D95FD) - - /** - * dark surface inverse surfaceAccentBrandActive - */ - public val SurfaceInverseAccentBrandActive: Color = Color(0xFF357BFD) - - /** - * dark surface inverse surfaceAccentMainMinor - */ - public val SurfaceInverseAccentMainMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface inverse surfaceAccentMainMinorHover - */ - public val SurfaceInverseAccentMainMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface inverse surfaceAccentMainMinorActive - */ - public val SurfaceInverseAccentMainMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface inverse surfaceAccentAthenaMinor - */ - public val SurfaceInverseAccentAthenaMinor: Color = Color(0xFFCFECFF) - - /** - * dark surface inverse surfaceAccentAthenaMinorHover - */ - public val SurfaceInverseAccentAthenaMinorHover: Color = Color(0xFFDBF1FF) - - /** - * dark surface inverse surfaceAccentAthenaMinorActive - */ - public val SurfaceInverseAccentAthenaMinorActive: Color = Color(0xFFC7E9FF) - - /** - * dark surface inverse surfaceAccentJoyMinor - */ - public val SurfaceInverseAccentJoyMinor: Color = Color(0xFFF4E3FF) - - /** - * dark surface inverse surfaceAccentJoyMinorHover - */ - public val SurfaceInverseAccentJoyMinorHover: Color = Color(0xFFF9F0FF) - - /** - * dark surface inverse surfaceAccentJoyMinorActive - */ - public val SurfaceInverseAccentJoyMinorActive: Color = Color(0xFFF1DBFF) - - /** - * dark surface inverse surfaceAccentB2EMinor - */ - public val SurfaceInverseAccentB2EMinor: Color = Color(0xFF9EFAAF) - - /** - * dark surface inverse surfaceAccentB2EMinorHover - */ - public val SurfaceInverseAccentB2EMinorHover: Color = Color(0xFFB1FBBF) - - /** - * dark surface inverse surfaceAccentB2EMinorActive - */ - public val SurfaceInverseAccentB2EMinorActive: Color = Color(0xFF94F9A7) - - /** - * dark surface inverse surfaceAccentBrandMinor - */ - public val SurfaceInverseAccentBrandMinor: Color = Color(0xFFDEE9FF) - - /** - * dark surface inverse surfaceAccentBrandMinorHover - */ - public val SurfaceInverseAccentBrandMinorHover: Color = Color(0xFFEBF1FF) - - /** - * dark surface inverse surfaceAccentBrandMinorActive - */ - public val SurfaceInverseAccentBrandMinorActive: Color = Color(0xFFD6E4FF) - - /** - * dark surface inverse surfaceTransparentAccentMain - */ - public val SurfaceInverseTransparentAccentMain: Color = Color(0x1F1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentMainHover - */ - public val SurfaceInverseTransparentAccentMainHover: Color = Color(0x3D1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentMainActive - */ - public val SurfaceInverseTransparentAccentMainActive: Color = Color(0x0F1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentAthena - */ - public val SurfaceInverseTransparentAccentAthena: Color = Color(0x1F118CDF) - - /** - * dark surface inverse surfaceTransparentAccentAthenaHover - */ - public val SurfaceInverseTransparentAccentAthenaHover: Color = Color(0x3D118CDF) - - /** - * dark surface inverse surfaceTransparentAccentAthenaActive - */ - public val SurfaceInverseTransparentAccentAthenaActive: Color = Color(0x0F118CDF) - - /** - * dark surface inverse surfaceTransparentAccentJoy - */ - public val SurfaceInverseTransparentAccentJoy: Color = Color(0x1FB559F3) - - /** - * dark surface inverse surfaceTransparentAccentJoyHover - */ - public val SurfaceInverseTransparentAccentJoyHover: Color = Color(0x3DB558F3) - - /** - * dark surface inverse surfaceTransparentAccentJoyActive - */ - public val SurfaceInverseTransparentAccentJoyActive: Color = Color(0x0FB558F3) - - /** - * dark surface inverse surfaceTransparentAccentB2E - */ - public val SurfaceInverseTransparentAccentB2E: Color = Color(0x1F1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentB2EHover - */ - public val SurfaceInverseTransparentAccentB2EHover: Color = Color(0x3D1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentB2EActive - */ - public val SurfaceInverseTransparentAccentB2EActive: Color = Color(0x0F1A9E32) - - /** - * dark surface inverse surfaceTransparentAccentBrand - */ - public val SurfaceInverseTransparentAccentBrand: Color = Color(0x1F3F81FD) - - /** - * dark surface inverse surfaceTransparentAccentBrandHover - */ - public val SurfaceInverseTransparentAccentBrandHover: Color = Color(0x3D3F82FD) - - /** - * dark surface inverse surfaceTransparentAccentBrandActive - */ - public val SurfaceInverseTransparentAccentBrandActive: Color = Color(0x0F3F82FD) - - /** - * Первичный фон - */ - public val BackgroundDefaultPrimary: Color = Color(0xFF000000) - - /** - * Первичный фон - */ - public val BackgroundDefaultPrimaryBrightness: Color = Color(0xFF0F0FFF) - - /** - * Вторичный фон - */ - public val BackgroundDefaultSecondary: Color = Color(0xFF171717) - - /** - * Третичный фон - */ - public val BackgroundDefaultTertiary: Color = Color(0xFFFFFFFF) - - /** - * Основной фон на темном фоне - */ - public val BackgroundDarkPrimary: Color = Color(0xFFFFFFFF) - - /** - * Вторичный фон на темном фоне - */ - public val BackgroundDarkSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на темном фоне - */ - public val BackgroundDarkTertiary: Color = Color(0xFFFFFFFF) - - /** - * Основной фон на светлом фоне - */ - public val BackgroundLightPrimary: Color = Color(0xFFFFFFFF) - - /** - * Вторичный фон на светлом фоне - */ - public val BackgroundLightSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на светлом фоне - */ - public val BackgroundLightTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный фон - */ - public val BackgroundInverseTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimary: Color = Color(0xFFF2F2F2) - - /** - * Инвертированный вторичный фон - */ - public val BackgroundInverseSecondary: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи светлый - */ - public val OverlayDefaultSoft: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи темный - */ - public val OverlayDefaultHard: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи размытый - */ - public val OverlayDefaultBlur: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val OverlayOnDarkSoft: Color = Color(0x8F000000) - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val OverlayOnDarkHard: Color = Color(0xEB000000) - - /** - * Оверлей с блюром - */ - public val OverlayOnDarkBlur: Color = Color(0x47262626) - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val OverlayOnLightSoft: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val OverlayOnLightHard: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи размытый на светлом фоне - */ - public val OverlayOnLightBlur: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val OverlayInverseSoft: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи темный - */ - public val OverlayInverseHard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи размытый - */ - public val OverlayInverseBlur: Color = Color(0xFFFFFFFF) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimaryActive: Color = Color(0xFFADADAD) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondaryActive: Color = Color(0xFF8C8C8C) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefaultHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefaultActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimaryActive: Color = Color(0x25FFFFFF) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiaryActive: Color = Color(0x7AFFFFFF) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClearHover: Color = Color(0x00FFFFFF) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClearActive: Color = Color(0x00FFFFFF) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositiveHover: Color = Color(0xFF2ACB47) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositiveActive: Color = Color(0xFF1F9835) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarningHover: Color = Color(0xFFFF8442) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarningActive: Color = Color(0xFFFF5D05) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegativeHover: Color = Color(0xFFFF5C6C) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfoHover: Color = Color(0xFF66BCF5) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfoActive: Color = Color(0xFF0E8ADD) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinorHover: Color = Color(0xFF1277BA) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinorActive: Color = Color(0xFF10659E) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositiveHover: Color = Color(0xFF24B23E) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositiveActive: Color = Color(0x5624B23E) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarningHover: Color = Color(0xFFFF7024) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarningActive: Color = Color(0x56FF7024) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegativeHover: Color = Color(0xFFFF3D51) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegativeActive: Color = Color(0x56FF3D51) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfoHover: Color = Color(0xFF199AF0) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfoActive: Color = Color(0x56199AF0) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimary: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClear: Color = Color(0x00FFFFFF) - - /** - * dark outline default outlineSolidDefault - */ - public val OutlineDefaultSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * dark outline default outlineSolidDefaultHover - */ - public val OutlineDefaultSolidDefaultHover: Color = Color(0xFFC7C7C7) - - /** - * dark outline default outlineSolidDefaultActive - */ - public val OutlineDefaultSolidDefaultActive: Color = Color(0xFFE0E0E0) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositive: Color = Color(0xFF24B23E) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarning: Color = Color(0xFFFF7024) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegative: Color = Color(0xFFFF3D51) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinor: Color = Color(0xFF0D5382) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositive: Color = Color(0x4724B23E) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarning: Color = Color(0x47FF7024) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegative: Color = Color(0x47FF3D51) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfo: Color = Color(0x47199AF0) - - /** - * dark outline default outlineAccentMain - */ - public val OutlineDefaultAccentMain: Color = Color(0xFF24B23E) - - /** - * dark outline default outlineAccentMainHover - */ - public val OutlineDefaultAccentMainHover: Color = Color(0xFF2ACB47) - - /** - * dark outline default outlineAccentMainActive - */ - public val OutlineDefaultAccentMainActive: Color = Color(0xFF1F9835) - - /** - * dark outline default outlineAccentAthena - */ - public val OutlineDefaultAccentAthena: Color = Color(0xFF199AF0) - - /** - * dark outline default outlineAccentAthenaHover - */ - public val OutlineDefaultAccentAthenaHover: Color = Color(0xFF66BCF5) - - /** - * dark outline default outlineAccentAthenaActive - */ - public val OutlineDefaultAccentAthenaActive: Color = Color(0xFF0E8ADD) - - /** - * dark outline default outlineAccentJoy - */ - public val OutlineDefaultAccentJoy: Color = Color(0xFFC46BFF) - - /** - * dark outline default outlineAccentJoyHover - */ - public val OutlineDefaultAccentJoyHover: Color = Color(0xFFE4BDFF) - - /** - * dark outline default outlineAccentJoyActive - */ - public val OutlineDefaultAccentJoyActive: Color = Color(0xFFB84DFF) - - /** - * dark outline default outlineAccentB2E - */ - public val OutlineDefaultAccentB2E: Color = Color(0xFF24B23E) - - /** - * dark outline default outlineAccentB2EHover - */ - public val OutlineDefaultAccentB2EHover: Color = Color(0xFF2ACB47) - - /** - * dark outline default outlineAccentB2EActive - */ - public val OutlineDefaultAccentB2EActive: Color = Color(0xFF1F9835) - - /** - * dark outline default outlineAccentBrand - */ - public val OutlineDefaultAccentBrand: Color = Color(0xFF528EFF) - - /** - * dark outline default outlineAccentBrandHover - */ - public val OutlineDefaultAccentBrandHover: Color = Color(0xFFA3C3FF) - - /** - * dark outline default outlineAccentBrandActive - */ - public val OutlineDefaultAccentBrandActive: Color = Color(0xFF337AFF) - - /** - * dark outline default outlineAccentMainMinor - */ - public val OutlineDefaultAccentMainMinor: Color = Color(0xFF095C18) - - /** - * dark outline default outlineAccentMainMinorHover - */ - public val OutlineDefaultAccentMainMinorHover: Color = Color(0xFF0F9527) - - /** - * dark outline default outlineAccentMainMinorActive - */ - public val OutlineDefaultAccentMainMinorActive: Color = Color(0xFF0C7920) - - /** - * dark outline default outlineAccentAthenaMinor - */ - public val OutlineDefaultAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * dark outline default outlineAccentAthenaMinorHover - */ - public val OutlineDefaultAccentAthenaMinorHover: Color = Color(0xFF1277BA) - - /** - * dark outline default outlineAccentAthenaMinorActive - */ - public val OutlineDefaultAccentAthenaMinorActive: Color = Color(0xFF10659E) - - /** - * dark outline default outlineAccentJoyMinor - */ - public val OutlineDefaultAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * dark outline default outlineAccentJoyMinorHover - */ - public val OutlineDefaultAccentJoyMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineAccentJoyMinorActive - */ - public val OutlineDefaultAccentJoyMinorActive: Color = Color(0xFF8933C1) - - /** - * dark outline default outlineAccentB2EMinor - */ - public val OutlineDefaultAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * dark outline default outlineAccentB2EMinorHover - */ - public val OutlineDefaultAccentB2EMinorHover: Color = Color(0xFF0F9527) - - /** - * dark outline default outlineAccentB2EMinorActive - */ - public val OutlineDefaultAccentB2EMinorActive: Color = Color(0xFF0C7920) - - /** - * dark outline default outlineAccentBrandMinor - */ - public val OutlineDefaultAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * dark outline default outlineAccentBrandMinorHover - */ - public val OutlineDefaultAccentBrandMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline default outlineAccentBrandMinorActive - */ - public val OutlineDefaultAccentBrandMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark outline default outlineTransparentAccentMain - */ - public val OutlineDefaultTransparentAccentMain: Color = Color(0x4724B23E) - - /** - * dark outline default outlineTransparentAccentMainHover - */ - public val OutlineDefaultTransparentAccentMainHover: Color = Color(0xFF24B23E) - - /** - * dark outline default outlineTransparentAccentMainActive - */ - public val OutlineDefaultTransparentAccentMainActive: Color = Color(0x5624B23E) - - /** - * dark outline default outlineTransparentAccentAthena - */ - public val OutlineDefaultTransparentAccentAthena: Color = Color(0x47199AF0) - - /** - * dark outline default outlineTransparentAccentAthenaHover - */ - public val OutlineDefaultTransparentAccentAthenaHover: Color = Color(0xFF199AF0) - - /** - * dark outline default outlineTransparentAccentAthenaActive - */ - public val OutlineDefaultTransparentAccentAthenaActive: Color = Color(0x56199AF0) - - /** - * dark outline default outlineTransparentAccentJoy - */ - public val OutlineDefaultTransparentAccentJoy: Color = Color(0x47C46BFF) - - /** - * dark outline default outlineTransparentAccentJoyHover - */ - public val OutlineDefaultTransparentAccentJoyHover: Color = Color(0xFFC46BFF) - - /** - * dark outline default outlineTransparentAccentJoyActive - */ - public val OutlineDefaultTransparentAccentJoyActive: Color = Color(0x56C46BFF) - - /** - * dark outline default outlineTransparentAccentB2E - */ - public val OutlineDefaultTransparentAccentB2E: Color = Color(0x4724B23E) - - /** - * dark outline default outlineTransparentAccentB2EHover - */ - public val OutlineDefaultTransparentAccentB2EHover: Color = Color(0xFF24B23E) - - /** - * dark outline default outlineTransparentAccentB2EActive - */ - public val OutlineDefaultTransparentAccentB2EActive: Color = Color(0x5624B23E) - - /** - * dark outline default outlineTransparentAccentBrand - */ - public val OutlineDefaultTransparentAccentBrand: Color = Color(0x47528EFF) - - /** - * dark outline default outlineTransparentAccentBrandHover - */ - public val OutlineDefaultTransparentAccentBrandHover: Color = Color(0xFF528EFF) - - /** - * dark outline default outlineTransparentAccentBrandActive - */ - public val OutlineDefaultTransparentAccentBrandActive: Color = Color(0x56528EFF) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimaryActive: Color = Color(0xFFADADAD) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondaryActive: Color = Color(0xFF8C8C8C) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefaultHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefaultActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimaryActive: Color = Color(0x25FFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiaryActive: Color = Color(0x7AFFFFFF) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClearHover: Color = Color(0xFFCCCCCC) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClearActive: Color = Color(0xFFE6E6E6) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveHover: Color = Color(0xFF2ACB47) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveActive: Color = Color(0xFF1F9835) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningHover: Color = Color(0xFFFF8442) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningActive: Color = Color(0xFFFF5D05) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeHover: Color = Color(0xFFFF5C6C) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeActive: Color = Color(0xFFFF1F35) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoHover: Color = Color(0xFF66BCF5) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoActive: Color = Color(0xFF0E8ADD) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinorHover: Color = Color(0xFF0F9527) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinorActive: Color = Color(0xFF0C7920) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinorHover: Color = Color(0xFFBB4F11) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinorActive: Color = Color(0xFF9F440F) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinorHover: Color = Color(0xFFB91828) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinorActive: Color = Color(0xFF83111C) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinorHover: Color = Color(0xFF1277BA) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinorActive: Color = Color(0xFF10659E) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositiveHover: Color = Color(0xFF24B23E) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositiveActive: Color = Color(0x5624B23E) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarningHover: Color = Color(0xFFFF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarningActive: Color = Color(0x56FF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegativeHover: Color = Color(0xFFFF3D51) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegativeActive: Color = Color(0x56FF3D51) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfoHover: Color = Color(0xFF199AF0) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfoActive: Color = Color(0x56199AF0) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimary: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * dark outline onDark outlineSolidDefault - */ - public val OutlineOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * dark outline onDark outlineSolidDefaultHover - */ - public val OutlineOnDarkSolidDefaultHover: Color = Color(0xFFC7C7C7) - - /** - * dark outline onDark outlineSolidDefaultActive - */ - public val OutlineOnDarkSolidDefaultActive: Color = Color(0xFFE0E0E0) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegative: Color = Color(0xFFFF3D51) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinor: Color = Color(0xFF0D5382) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositive: Color = Color(0x4724B23E) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarning: Color = Color(0x47FF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegative: Color = Color(0x47FF3D51) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfo: Color = Color(0x47199AF0) - - /** - * dark outline onDark outlineAccentMain - */ - public val OutlineOnDarkAccentMain: Color = Color(0xFF24B23E) - - /** - * dark outline onDark outlineAccentMainHover - */ - public val OutlineOnDarkAccentMainHover: Color = Color(0xFF2ACB47) - - /** - * dark outline onDark outlineAccentMainActive - */ - public val OutlineOnDarkAccentMainActive: Color = Color(0xFF1F9835) - - /** - * dark outline onDark outlineAccentAthena - */ - public val OutlineOnDarkAccentAthena: Color = Color(0xFF199AF0) - - /** - * dark outline onDark outlineAccentAthenaHover - */ - public val OutlineOnDarkAccentAthenaHover: Color = Color(0xFF66BCF5) - - /** - * dark outline onDark outlineAccentAthenaActive - */ - public val OutlineOnDarkAccentAthenaActive: Color = Color(0xFF0E8ADD) - - /** - * dark outline onDark outlineAccentJoy - */ - public val OutlineOnDarkAccentJoy: Color = Color(0xFFC46BFF) - - /** - * dark outline onDark outlineAccentJoyHover - */ - public val OutlineOnDarkAccentJoyHover: Color = Color(0xFFE4BDFF) - - /** - * dark outline onDark outlineAccentJoyActive - */ - public val OutlineOnDarkAccentJoyActive: Color = Color(0xFFB84DFF) - - /** - * dark outline onDark outlineAccentB2E - */ - public val OutlineOnDarkAccentB2E: Color = Color(0xFF24B23E) - - /** - * dark outline onDark outlineAccentB2EHover - */ - public val OutlineOnDarkAccentB2EHover: Color = Color(0xFF2ACB47) - - /** - * dark outline onDark outlineAccentB2EActive - */ - public val OutlineOnDarkAccentB2EActive: Color = Color(0xFF1F9835) - - /** - * dark outline onDark outlineAccentBrand - */ - public val OutlineOnDarkAccentBrand: Color = Color(0xFF528EFF) - - /** - * dark outline onDark outlineAccentBrandHover - */ - public val OutlineOnDarkAccentBrandHover: Color = Color(0xFFA3C3FF) - - /** - * dark outline onDark outlineAccentBrandActive - */ - public val OutlineOnDarkAccentBrandActive: Color = Color(0xFF337AFF) - - /** - * dark outline onDark outlineAccentMainMinorHover - */ - public val OutlineOnDarkAccentMainMinorHover: Color = Color(0xFF0F9527) - - /** - * dark outline onDark outlineAccentMainMinorActive - */ - public val OutlineOnDarkAccentMainMinorActive: Color = Color(0xFF0C7920) - - /** - * dark outline onDark outlineAccentAthenaMinor - */ - public val OutlineOnDarkAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * dark outline onDark outlineAccentAthenaMinorHover - */ - public val OutlineOnDarkAccentAthenaMinorHover: Color = Color(0xFF1277BA) - - /** - * dark outline onDark outlineAccentAthenaMinorActive - */ - public val OutlineOnDarkAccentAthenaMinorActive: Color = Color(0xFF10659E) - - /** - * dark outline onDark outlineAccentMainMinor - */ - public val OutlineOnDarkAccentMainMinor: Color = Color(0xFF095C18) - - /** - * dark outline onDark outlineAccentJoyMinor - */ - public val OutlineOnDarkAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * dark outline onDark outlineAccentJoyMinorHover - */ - public val OutlineOnDarkAccentJoyMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineAccentJoyMinorActive - */ - public val OutlineOnDarkAccentJoyMinorActive: Color = Color(0xFF8933C1) - - /** - * dark outline onDark outlineAccentB2EMinor - */ - public val OutlineOnDarkAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * dark outline onDark outlineAccentB2EMinorHover - */ - public val OutlineOnDarkAccentB2EMinorHover: Color = Color(0xFF0F9527) - - /** - * dark outline onDark outlineAccentB2EMinorActive - */ - public val OutlineOnDarkAccentB2EMinorActive: Color = Color(0xFF0C7920) - - /** - * dark outline onDark outlineAccentBrandMinor - */ - public val OutlineOnDarkAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * dark outline onDark outlineAccentBrandMinorHover - */ - public val OutlineOnDarkAccentBrandMinorHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onDark outlineAccentBrandMinorActive - */ - public val OutlineOnDarkAccentBrandMinorActive: Color = Color(0xFF1C62E3) - - /** - * dark outline onDark outlineTransparentAccentMain - */ - public val OutlineOnDarkTransparentAccentMain: Color = Color(0x4724B23E) - - /** - * dark outline onDark outlineTransparentAccentMainHover - */ - public val OutlineOnDarkTransparentAccentMainHover: Color = Color(0xFF24B23E) - - /** - * dark outline onDark outlineTransparentAccentMainActive - */ - public val OutlineOnDarkTransparentAccentMainActive: Color = Color(0x5624B23E) - - /** - * dark outline onDark outlineTransparentAccentAthena - */ - public val OutlineOnDarkTransparentAccentAthena: Color = Color(0x47199AF0) - - /** - * dark outline onDark outlineTransparentAccentAthenaHover - */ - public val OutlineOnDarkTransparentAccentAthenaHover: Color = Color(0xFF199AF0) - - /** - * dark outline onDark outlineTransparentAccentAthenaActive - */ - public val OutlineOnDarkTransparentAccentAthenaActive: Color = Color(0x56199AF0) - - /** - * dark outline onDark outlineTransparentAccentJoy - */ - public val OutlineOnDarkTransparentAccentJoy: Color = Color(0x47C46BFF) - - /** - * dark outline onDark outlineTransparentAccentJoyHover - */ - public val OutlineOnDarkTransparentAccentJoyHover: Color = Color(0xFFC46BFF) - - /** - * dark outline onDark outlineTransparentAccentJoyActive - */ - public val OutlineOnDarkTransparentAccentJoyActive: Color = Color(0x56C46BFF) - - /** - * dark outline onDark outlineTransparentAccentB2E - */ - public val OutlineOnDarkTransparentAccentB2E: Color = Color(0x4724B23E) - - /** - * dark outline onDark outlineTransparentAccentB2EHover - */ - public val OutlineOnDarkTransparentAccentB2EHover: Color = Color(0xFF24B23E) - - /** - * dark outline onDark outlineTransparentAccentB2EActive - */ - public val OutlineOnDarkTransparentAccentB2EActive: Color = Color(0x5624B23E) - - /** - * dark outline onDark outlineTransparentAccentBrand - */ - public val OutlineOnDarkTransparentAccentBrand: Color = Color(0x47528EFF) - - /** - * dark outline onDark outlineTransparentAccentBrandHover - */ - public val OutlineOnDarkTransparentAccentBrandHover: Color = Color(0xFF528EFF) - - /** - * dark outline onDark outlineTransparentAccentBrandActive - */ - public val OutlineOnDarkTransparentAccentBrandActive: Color = Color(0x56528EFF) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimaryHover: Color = Color(0xFFABABAB) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimaryActive: Color = Color(0xFFC4C4C4) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondaryActive: Color = Color(0xFF575757) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefaultHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefaultActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimaryHover: Color = Color(0xFF080808) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondaryActive: Color = Color(0x7A080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiaryActive: Color = Color(0xAB080808) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClearHover: Color = Color(0xFFCCCCCC) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClearActive: Color = Color(0xFFE6E6E6) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoHover: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoActive: Color = Color(0xFFE6E6E6) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveActive: Color = Color(0xFF15842A) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningHover: Color = Color(0xFFFB7223) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningActive: Color = Color(0xFFDC5304) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeHover: Color = Color(0xFFFF475A) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoHover: Color = Color(0xFF50B1F2) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoActive: Color = Color(0xFF0F7BC2) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinorHover: Color = Color(0xFFA3DAFF) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinorActive: Color = Color(0xFF33ADFF) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegativeHover: Color = Color(0xFFFF293E) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfoHover: Color = Color(0xFF118CDF) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondary: Color = Color(0xFF949494) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimary: Color = Color(0x33080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondary: Color = Color(0x66080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiary: Color = Color(0x8F080808) - - /** - * dark outline onLight outlineSolidDefault - */ - public val OutlineOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * dark outline onLight outlineSolidDefaultHover - */ - public val OutlineOnLightSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * dark outline onLight outlineSolidDefaultActive - */ - public val OutlineOnLightSolidDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfo: Color = Color(0x33118CDF) - - /** - * dark outline onLight outlineAccentMain - */ - public val OutlineOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * dark outline onLight outlineAccentMainHover - */ - public val OutlineOnLightAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * dark outline onLight outlineAccentMainActive - */ - public val OutlineOnLightAccentMainActive: Color = Color(0xFF15842A) - - /** - * dark outline onLight outlineAccentAthena - */ - public val OutlineOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * dark outline onLight outlineAccentAthenaHover - */ - public val OutlineOnLightAccentAthenaHover: Color = Color(0xFF50B1F2) - - /** - * dark outline onLight outlineAccentAthenaActive - */ - public val OutlineOnLightAccentAthenaActive: Color = Color(0xFF0F7BC2) - - /** - * dark outline onLight outlineAccentJoy - */ - public val OutlineOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * dark outline onLight outlineAccentJoyHover - */ - public val OutlineOnLightAccentJoyHover: Color = Color(0xFFD7A4F9) - - /** - * dark outline onLight outlineAccentJoyActive - */ - public val OutlineOnLightAccentJoyActive: Color = Color(0xFFA93BF1) - - /** - * dark outline onLight outlineAccentB2E - */ - public val OutlineOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * dark outline onLight outlineAccentB2EHover - */ - public val OutlineOnLightAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * dark outline onLight outlineAccentB2EActive - */ - public val OutlineOnLightAccentB2EActive: Color = Color(0xFF15842A) - - /** - * dark outline onLight outlineAccentBrand - */ - public val OutlineOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * dark outline onLight outlineAccentBrandHover - */ - public val OutlineOnLightAccentBrandHover: Color = Color(0xFF90B6FE) - - /** - * dark outline onLight outlineAccentBrandActive - */ - public val OutlineOnLightAccentBrandActive: Color = Color(0xFF216EFD) - - /** - * dark outline onLight outlineAccentMainMinor - */ - public val OutlineOnLightAccentMainMinor: Color = Color(0xFF28D247) - - /** - * dark outline onLight outlineAccentMainMinorHover - */ - public val OutlineOnLightAccentMainMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark outline onLight outlineAccentMainMinorActive - */ - public val OutlineOnLightAccentMainMinorActive: Color = Color(0xFF23B83E) - - /** - * dark outline onLight outlineAccentAthenaMinor - */ - public val OutlineOnLightAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * dark outline onLight outlineAccentAthenaMinorHover - */ - public val OutlineOnLightAccentAthenaMinorHover: Color = Color(0xFFA3DAFF) - - /** - * dark outline onLight outlineAccentAthenaMinorActive - */ - public val OutlineOnLightAccentAthenaMinorActive: Color = Color(0xFF33ADFF) - - /** - * dark outline onLight outlineAccentJoyMinor - */ - public val OutlineOnLightAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * dark outline onLight outlineAccentJoyMinorHover - */ - public val OutlineOnLightAccentJoyMinorHover: Color = Color(0xFFF4E7FD) - - /** - * dark outline onLight outlineAccentJoyMinorActive - */ - public val OutlineOnLightAccentJoyMinorActive: Color = Color(0xFFC680F5) - - /** - * dark outline onLight outlineAccentB2EMinor - */ - public val OutlineOnLightAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * dark outline onLight outlineAccentB2EMinorHover - */ - public val OutlineOnLightAccentB2EMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark outline onLight outlineAccentB2EMinorActive - */ - public val OutlineOnLightAccentB2EMinorActive: Color = Color(0xFF23B83E) - - /** - * dark outline onLight outlineAccentBrandMinor - */ - public val OutlineOnLightAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline onLight outlineAccentBrandMinorHover - */ - public val OutlineOnLightAccentBrandMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark outline onLight outlineAccentBrandMinorActive - */ - public val OutlineOnLightAccentBrandMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark outline onLight outlineTransparentAccentMain - */ - public val OutlineOnLightTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * dark outline onLight outlineTransparentAccentMainHover - */ - public val OutlineOnLightTransparentAccentMainHover: Color = Color(0xFF1A9E32) - - /** - * dark outline onLight outlineTransparentAccentMainActive - */ - public val OutlineOnLightTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * dark outline onLight outlineTransparentAccentAthena - */ - public val OutlineOnLightTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * dark outline onLight outlineTransparentAccentAthenaHover - */ - public val OutlineOnLightTransparentAccentAthenaHover: Color = Color(0xFF118CDF) - - /** - * dark outline onLight outlineTransparentAccentAthenaActive - */ - public val OutlineOnLightTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * dark outline onLight outlineTransparentAccentJoy - */ - public val OutlineOnLightTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * dark outline onLight outlineTransparentAccentJoyHover - */ - public val OutlineOnLightTransparentAccentJoyHover: Color = Color(0xFFB558F3) - - /** - * dark outline onLight outlineTransparentAccentJoyActive - */ - public val OutlineOnLightTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * dark outline onLight outlineTransparentAccentB2E - */ - public val OutlineOnLightTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * dark outline onLight outlineTransparentAccentB2EHover - */ - public val OutlineOnLightTransparentAccentB2EHover: Color = Color(0xFF1A9E32) - - /** - * dark outline onLight outlineTransparentAccentB2EActive - */ - public val OutlineOnLightTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * dark outline onLight outlineTransparentAccentBrand - */ - public val OutlineOnLightTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * dark outline onLight outlineTransparentAccentBrandHover - */ - public val OutlineOnLightTransparentAccentBrandHover: Color = Color(0xFF3F82FD) - - /** - * dark outline onLight outlineTransparentAccentBrandActive - */ - public val OutlineOnLightTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimaryHover: Color = Color(0xFFABABAB) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimaryActive: Color = Color(0xFFC4C4C4) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondaryActive: Color = Color(0xFF575757) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiaryActive: Color = Color(0xFF737373) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefaultHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefaultActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondaryActive: Color = Color(0x7A080808) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiaryHover: Color = Color(0xFF080808) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiaryActive: Color = Color(0xAB080808) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClearHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClearActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClear: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccentHover: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccentActive: Color = Color(0xFFE6E6E6) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromoHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromoActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinorHover: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinorActive: Color = Color(0xFFE6E6E6) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositiveActive: Color = Color(0xFF15842A) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarningHover: Color = Color(0xFFFB7223) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarningActive: Color = Color(0xFFDC5304) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegativeHover: Color = Color(0xFFFF475A) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegativeActive: Color = Color(0xFFFF0A23) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfoHover: Color = Color(0xFF50B1F2) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfoActive: Color = Color(0xFF0F7BC2) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinorHover: Color = Color(0xFF3EDA5B) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinorActive: Color = Color(0xFF23B83E) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinorHover: Color = Color(0xFFFDB086) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinorActive: Color = Color(0xFFFC884A) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinorHover: Color = Color(0xFFFFADB6) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinorActive: Color = Color(0xFFFF707E) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinorHover: Color = Color(0xFFA3DAFF) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinorActive: Color = Color(0xFF33ADFF) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegativeHover: Color = Color(0xFFFF293E) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfoHover: Color = Color(0xFF118CDF) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondary: Color = Color(0xFF949494) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiary: Color = Color(0xFF707070) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimary: Color = Color(0x33080808) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondary: Color = Color(0x66080808) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiary: Color = Color(0x8F080808) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfo: Color = Color(0xFF118CDF) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinor: Color = Color(0xFF28D247) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfo: Color = Color(0x33118CDF) - - /** - * dark outline inverse outlineAccentMain - */ - public val OutlineInverseAccentMain: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlineAccentMainHover - */ - public val OutlineInverseAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * dark outline inverse outlineAccentMainActive - */ - public val OutlineInverseAccentMainActive: Color = Color(0xFF15842A) - - /** - * dark outline inverse outlineAccentAthena - */ - public val OutlineInverseAccentAthena: Color = Color(0xFF118CDF) - - /** - * dark outline inverse outlineAccentAthenaHover - */ - public val OutlineInverseAccentAthenaHover: Color = Color(0xFF50B1F2) - - /** - * dark outline inverse outlineAccentAthenaActive - */ - public val OutlineInverseAccentAthenaActive: Color = Color(0xFF0F7BC2) - - /** - * dark outline inverse outlineAccentJoy - */ - public val OutlineInverseAccentJoy: Color = Color(0xFFB559F3) - - /** - * dark outline inverse outlineAccentJoyHover - */ - public val OutlineInverseAccentJoyHover: Color = Color(0xFFD7A4F9) - - /** - * dark outline inverse outlineAccentJoyActive - */ - public val OutlineInverseAccentJoyActive: Color = Color(0xFFA93BF1) - - /** - * dark outline inverse outlineAccentB2E - */ - public val OutlineInverseAccentB2E: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlineAccentB2EHover - */ - public val OutlineInverseAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * dark outline inverse outlineAccentB2EActive - */ - public val OutlineInverseAccentB2EActive: Color = Color(0xFF15842A) - - /** - * dark outline inverse outlineAccentBrand - */ - public val OutlineInverseAccentBrand: Color = Color(0xFF118CDF) - - /** - * dark outline inverse outlineAccentBrandHover - */ - public val OutlineInverseAccentBrandHover: Color = Color(0xFF50B1F2) - - /** - * dark outline inverse outlineAccentBrandActive - */ - public val OutlineInverseAccentBrandActive: Color = Color(0xFF0F7BC2) - - /** - * dark outline inverse outlineAccentMainMinor - */ - public val OutlineInverseAccentMainMinor: Color = Color(0xFF28D247) - - /** - * dark outline inverse outlineAccentMainMinorHover - */ - public val OutlineInverseAccentMainMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark outline inverse outlineAccentMainMinorActive - */ - public val OutlineInverseAccentMainMinorActive: Color = Color(0xFF23B83E) - - /** - * dark outline inverse outlineAccentAthenaMinor - */ - public val OutlineInverseAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * dark outline inverse outlineAccentAthenaMinorHover - */ - public val OutlineInverseAccentAthenaMinorHover: Color = Color(0xFFA3DAFF) - - /** - * dark outline inverse outlineAccentAthenaMinorActive - */ - public val OutlineInverseAccentAthenaMinorActive: Color = Color(0xFF33ADFF) - - /** - * dark outline inverse outlineAccentJoyMinor - */ - public val OutlineInverseAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * dark outline inverse outlineAccentJoyMinorHover - */ - public val OutlineInverseAccentJoyMinorHover: Color = Color(0xFFF4E7FD) - - /** - * dark outline inverse outlineAccentJoyMinorActive - */ - public val OutlineInverseAccentJoyMinorActive: Color = Color(0xFFC680F5) - - /** - * dark outline inverse outlineAccentB2EMinor - */ - public val OutlineInverseAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * dark outline inverse outlineAccentB2EMinorHover - */ - public val OutlineInverseAccentB2EMinorHover: Color = Color(0xFF3EDA5B) - - /** - * dark outline inverse outlineAccentB2EMinorActive - */ - public val OutlineInverseAccentB2EMinorActive: Color = Color(0xFF23B83E) - - /** - * dark outline inverse outlineAccentBrandMinor - */ - public val OutlineInverseAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * dark outline inverse outlineAccentBrandMinorHover - */ - public val OutlineInverseAccentBrandMinorHover: Color = Color(0xFFDCE8FE) - - /** - * dark outline inverse outlineAccentBrandMinorActive - */ - public val OutlineInverseAccentBrandMinorActive: Color = Color(0xFF6FA0FB) - - /** - * dark outline inverse outlineTransparentAccentMain - */ - public val OutlineInverseTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * dark outline inverse outlineTransparentAccentMainHover - */ - public val OutlineInverseTransparentAccentMainHover: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlineTransparentAccentMainActive - */ - public val OutlineInverseTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * dark outline inverse outlineTransparentAccentAthena - */ - public val OutlineInverseTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * dark outline inverse outlineTransparentAccentAthenaHover - */ - public val OutlineInverseTransparentAccentAthenaHover: Color = Color(0xFF118CDF) - - /** - * dark outline inverse outlineTransparentAccentAthenaActive - */ - public val OutlineInverseTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * dark outline inverse outlineTransparentAccentJoy - */ - public val OutlineInverseTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * dark outline inverse outlineTransparentAccentJoyHover - */ - public val OutlineInverseTransparentAccentJoyHover: Color = Color(0xFFB558F3) - - /** - * dark outline inverse outlineTransparentAccentJoyActive - */ - public val OutlineInverseTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * dark outline inverse outlineTransparentAccentB2E - */ - public val OutlineInverseTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * dark outline inverse outlineTransparentAccentB2EHover - */ - public val OutlineInverseTransparentAccentB2EHover: Color = Color(0xFF1A9E32) - - /** - * dark outline inverse outlineTransparentAccentB2EActive - */ - public val OutlineInverseTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * dark outline inverse outlineTransparentAccentBrand - */ - public val OutlineInverseTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * dark outline inverse outlineTransparentAccentBrandHover - */ - public val OutlineInverseTransparentAccentBrandHover: Color = Color(0xFF3F82FD) - - /** - * dark outline inverse outlineTransparentAccentBrandActive - */ - public val OutlineInverseTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorActive: Color = Color(0xFF996600) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorActive: Color = Color(0xFF996600) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowHover: Color = Color(0xFFF4B22F) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowActive: Color = Color(0xFFEDA20C) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorActive: Color = Color(0xFFFFCF70) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentActive: Color = Color(0x80F3A812) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellow: Color = Color(0xFFF3A912) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowHover: Color = Color(0xFFF4B22F) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowActive: Color = Color(0xFFEDA20C) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorActive: Color = Color(0xFFFFCF70) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentHover: Color = Color(0xADF3A812) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentActive: Color = Color(0x80F3A812) -} - -/** - * Токены цвета для светлой темы - */ -public object LightColorTokens { - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryActive: Color = Color(0xC4080808) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста - */ - public val TextDefaultPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondaryActive: Color = Color(0xAB080808) - - /** - * Вторичный цвет текста - */ - public val TextDefaultSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiaryActive: Color = Color(0x56080808) - - /** - * Третичный цвет текста - */ - public val TextDefaultTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraphActive: Color = Color(0xA3080808) - - /** - * Сплошной наборный текст - */ - public val TextDefaultParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет - */ - public val TextDefaultAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет - */ - public val TextDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет - */ - public val TextDefaultPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет - */ - public val TextDefaultPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет - */ - public val TextDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет - */ - public val TextDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет успеха - */ - public val TextDefaultPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет успеха - */ - public val TextDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет предупреждения - */ - public val TextDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет ошибки - */ - public val TextDefaultNegativeActive: Color = Color(0xFFFF001A) - - /** - * Цвет ошибки - */ - public val TextDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации - */ - public val TextDefaultInfoHover: Color = Color(0xFF2AA0EF) - - /** - * Цвет информации - */ - public val TextDefaultInfoActive: Color = Color(0xFF0E75B9) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinorHover: Color = Color(0xFF7ACAFF) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinorActive: Color = Color(0xFF29A9FF) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthenaHover: Color = Color(0xFF2AA0EF) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthenaActive: Color = Color(0xFF0E75B9) - - /** - * Акцентный цвет Афины - */ - public val TextDefaultAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoyHover: Color = Color(0xFFC67EF6) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoyActive: Color = Color(0xFFA432F1) - - /** - * Акцентный цвет Джой - */ - public val TextDefaultAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2EHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2EActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет B2E-ассистента - */ - public val TextDefaultAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrandActive: Color = Color(0xFF1767FD) - - /** - * Акцентный цвет бренда - */ - public val TextDefaultAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMainHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMainActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет - */ - public val TextDefaultAccentMain: Color = Color(0xFF1A9E32) - - /** - * light text default textAccentMainMinor - */ - public val TextDefaultAccentMainMinor: Color = Color(0xFF28D247) - - /** - * light text default textAccentMainMinorHover - */ - public val TextDefaultAccentMainMinorHover: Color = Color(0xFF47DC62) - - /** - * light text default textAccentMainMinorActive - */ - public val TextDefaultAccentMainMinorActive: Color = Color(0xFF21B03C) - - /** - * light text default textAccentAthenaMinor - */ - public val TextDefaultAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * light text default textAccentAthenaMinorHover - */ - public val TextDefaultAccentAthenaMinorHover: Color = Color(0xFF7ACAFF) - - /** - * light text default textAccentAthenaMinorActive - */ - public val TextDefaultAccentAthenaMinorActive: Color = Color(0xFF29A9FF) - - /** - * light text default textAccentJoyMinor - */ - public val TextDefaultAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * light text default textAccentB2EMinor - */ - public val TextDefaultAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * light text default textAccentBrandMinor - */ - public val TextDefaultAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * light text default textAccentBrandMinorHover - */ - public val TextDefaultAccentBrandMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text default textAccentBrandMinorActive - */ - public val TextDefaultAccentBrandMinorActive: Color = Color(0xFF6599FB) - - /** - * Цвет информации - */ - public val TextDefaultInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет успеха - */ - public val TextDefaultPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет предупреждения - */ - public val TextDefaultWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет ошибки - */ - public val TextDefaultNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет информации - */ - public val TextDefaultInfoMinor: Color = Color(0xFF52BAFF) - - /** - * light text default textAccentJoyMinorHover - */ - public val TextDefaultAccentJoyMinorHover: Color = Color(0xFFE3C2FA) - - /** - * light text default textAccentJoyMinorActive - */ - public val TextDefaultAccentJoyMinorActive: Color = Color(0xFFC276F4) - - /** - * light text default textAccentB2EMinorHover - */ - public val TextDefaultAccentB2EMinorHover: Color = Color(0xFF47DC62) - - /** - * light text default textAccentB2EMinorActive - */ - public val TextDefaultAccentB2EMinorActive: Color = Color(0xFF21B03C) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimary: Color = Color(0xF5FFFFFF) - - /** - * Основной цвет текста на темном фоне - */ - public val TextOnDarkPrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Вторичный цвет текста на темном фоне - */ - public val TextOnDarkSecondary: Color = Color(0x8FFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Третичный цвет текста на темном фоне - */ - public val TextOnDarkTertiary: Color = Color(0x47FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Сплошной наборный текст на темном фоне - */ - public val TextOnDarkParagraph: Color = Color(0xCCFFFFFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentHover: Color = Color(0xFF2BD44A) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentActive: Color = Color(0xFF1D9032) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccent: Color = Color(0xFF24B23E) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет на темном фоне - */ - public val TextOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет на темном фоне - */ - public val TextOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет на темном фоне - */ - public val TextOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveHover: Color = Color(0xFF2BD44A) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositiveActive: Color = Color(0xFF1D9032) - - /** - * Цвет успеха на темном фоне - */ - public val TextOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningHover: Color = Color(0xFFFF8B4D) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningActive: Color = Color(0xFFFA5700) - - /** - * Цвет предупреждения на темном фоне - */ - public val TextOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeActive: Color = Color(0xFFFF001A) - - /** - * Цвет ошибки на темном фоне - */ - public val TextOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfoHover: Color = Color(0xFF3FABF3) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfoActive: Color = Color(0xFF0D84D3) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinorActive: Color = Color(0xFFA84710) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinorHover: Color = Color(0xFF1483CC) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinorActive: Color = Color(0xFF116BA7) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthenaHover: Color = Color(0xFF3FABF3) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthenaActive: Color = Color(0xFF0D84D3) - - /** - * Акцентный цвет Афины на темном - */ - public val TextOnDarkAccentAthena: Color = Color(0xFF199AF0) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoyHover: Color = Color(0xFFD494FF) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoyActive: Color = Color(0xFFB442FF) - - /** - * Акцентный цвет Джой на темном фоне - */ - public val TextOnDarkAccentJoy: Color = Color(0xFFC46BFF) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2EHover: Color = Color(0xFF2BD44A) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2EActive: Color = Color(0xFF1D9032) - - /** - * Акцентный цвет B2E-ассистента на темном фоне - */ - public val TextOnDarkAccentB2E: Color = Color(0xFF24B23E) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrandHover: Color = Color(0xFF7AA9FF) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrandActive: Color = Color(0xFF2974FF) - - /** - * Акцентный цвет бренда на темном фоне - */ - public val TextOnDarkAccentBrand: Color = Color(0xFF528EFF) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMainHover: Color = Color(0xFF2BD44A) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMainActive: Color = Color(0xFF1D9032) - - /** - * Акцентный цвет на темном фоне - */ - public val TextOnDarkAccentMain: Color = Color(0xFF24B23E) - - /** - * light text onDark textAccentMainMinor - */ - public val TextOnDarkAccentMainMinor: Color = Color(0xFF095C18) - - /** - * light text onDark textAccentMainMinorHover - */ - public val TextOnDarkAccentMainMinorHover: Color = Color(0xFF11A72C) - - /** - * light text onDark textAccentMainMinorActive - */ - public val TextOnDarkAccentMainMinorActive: Color = Color(0xFF0D8222) - - /** - * light text onDark textAccentAthenaMinor - */ - public val TextOnDarkAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * light text onDark textAccentAthenaMinorHover - */ - public val TextOnDarkAccentAthenaMinorHover: Color = Color(0xFF1483CC) - - /** - * light text onDark textAccentAthenaMinorActive - */ - public val TextOnDarkAccentAthenaMinorActive: Color = Color(0xFF116BA7) - - /** - * light text onDark textAccentB2EMinor - */ - public val TextOnDarkAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * light text onDark textAccentB2EMinorHover - */ - public val TextOnDarkAccentB2EMinorHover: Color = Color(0xFF11A72C) - - /** - * light text onDark textAccentB2EMinorActive - */ - public val TextOnDarkAccentB2EMinorActive: Color = Color(0xFF0D8222) - - /** - * light text onDark textAccentBrandMinor - */ - public val TextOnDarkAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * light text onDark textAccentBrandMinorHover - */ - public val TextOnDarkAccentBrandMinorHover: Color = Color(0xFF000000) - - /** - * light text onDark textAccentBrandMinorActive - */ - public val TextOnDarkAccentBrandMinorActive: Color = Color(0xFF113B88) - - /** - * light text onDark textAccentJoyMinor - */ - public val TextOnDarkAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * light text onDark textAccentJoyMinorHover - */ - public val TextOnDarkAccentJoyMinorHover: Color = Color(0xFF000000) - - /** - * light text onDark textAccentJoyMinorActive - */ - public val TextOnDarkAccentJoyMinorActive: Color = Color(0xFF5B2281) - - /** - * Цвет информации на темном фоне - */ - public val TextOnDarkInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет успеха на темном фоне - */ - public val TextOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет предупреждения на темном фоне - */ - public val TextOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет ошибки на темном фоне - */ - public val TextOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет информации на темном фоне - */ - public val TextOnDarkInfoMinor: Color = Color(0xFF0D5382) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryHover: Color = Color(0x93080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryActive: Color = Color(0xC4080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimary: Color = Color(0xF5080808) - - /** - * Основной цвет текста на светлом фоне - */ - public val TextOnLightPrimaryBrightness: Color = Color(0xF5080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondaryActive: Color = Color(0xAB080808) - - /** - * Вторичный цвет текста на светлом фоне - */ - public val TextOnLightSecondary: Color = Color(0x8F080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiaryActive: Color = Color(0x56080808) - - /** - * Третичный цвет текста на светлом фоне - */ - public val TextOnLightTertiary: Color = Color(0x47080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphHover: Color = Color(0x7A080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraphActive: Color = Color(0xA3080808) - - /** - * Сплошной наборный текст на светлом фоне - */ - public val TextOnLightParagraph: Color = Color(0xCC080808) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный цвет на светлом фоне - */ - public val TextOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет на светлом фоне - */ - public val TextOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет на светлом фоне - */ - public val TextOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет успеха на светлом фоне - */ - public val TextOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет предупреждения на светлом фоне - */ - public val TextOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeActive: Color = Color(0xFFFF001A) - - /** - * Цвет ошибки на светлом фоне - */ - public val TextOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfoHover: Color = Color(0xFF2AA0EF) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfoActive: Color = Color(0xFF0E75B9) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinorHover: Color = Color(0xFF7ACAFF) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinorActive: Color = Color(0xFF29A9FF) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthenaHover: Color = Color(0xFF2AA0EF) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthenaActive: Color = Color(0xFF0E75B9) - - /** - * Акцентный цвет Афины на светлом фоне - */ - public val TextOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoyHover: Color = Color(0xFFC67EF6) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoyActive: Color = Color(0xFFA432F1) - - /** - * Акцентный цвет Джой на светлом фоне - */ - public val TextOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2EHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2EActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет B2E-ассистента на светлом фоне - */ - public val TextOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrandActive: Color = Color(0xFF1767FD) - - /** - * Акцентный цвет бренда на светлом фоне - */ - public val TextOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMainHover: Color = Color(0xFF1FC13D) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMainActive: Color = Color(0xFF147B27) - - /** - * Акцентный цвет на светлом фоне - */ - public val TextOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * light text onLight textAccentMainMinor - */ - public val TextOnLightAccentMainMinor: Color = Color(0xFF28D247) - - /** - * light text onLight textAccentMainMinorHover - */ - public val TextOnLightAccentMainMinorHover: Color = Color(0xFF47DC62) - - /** - * light text onLight textAccentMainMinorActive - */ - public val TextOnLightAccentMainMinorActive: Color = Color(0xFF21B03C) - - /** - * light text onLight textAccentAthenaMinor - */ - public val TextOnLightAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * light text onLight textAccentAthenaMinorHover - */ - public val TextOnLightAccentAthenaMinorHover: Color = Color(0xFF7ACAFF) - - /** - * light text onLight textAccentAthenaMinorActive - */ - public val TextOnLightAccentAthenaMinorActive: Color = Color(0xFF29A9FF) - - /** - * light text onLight textAccentJoyMinor - */ - public val TextOnLightAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * light text onLight textAccentJoyMinorHover - */ - public val TextOnLightAccentJoyMinorHover: Color = Color(0xFFE3C2FA) - - /** - * light text onLight textAccentJoyMinorActive - */ - public val TextOnLightAccentJoyMinorActive: Color = Color(0xFFC276F4) - - /** - * light text onLight textAccentB2EMinor - */ - public val TextOnLightAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * light text onLight textAccentB2EMinorHover - */ - public val TextOnLightAccentB2EMinorHover: Color = Color(0xFF47DC62) - - /** - * light text onLight textAccentB2EMinorActive - */ - public val TextOnLightAccentB2EMinorActive: Color = Color(0xFF21B03C) - - /** - * light text onLight textAccentBrandMinor - */ - public val TextOnLightAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * light text onLight textAccentBrandMinorHover - */ - public val TextOnLightAccentBrandMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light text onLight textAccentBrandMinorActive - */ - public val TextOnLightAccentBrandMinorActive: Color = Color(0xFF6599FB) - - /** - * Цвет информации на светлом фоне - */ - public val TextOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет успеха на светлом фоне - */ - public val TextOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет предупреждения на светлом фоне - */ - public val TextOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет ошибки на светлом фоне - */ - public val TextOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет информации на светлом фоне - */ - public val TextOnLightInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryHover: Color = Color(0x93FFFFFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryActive: Color = Color(0xC4FFFFFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimary: Color = Color(0xF5FFFFFF) - - /** - * Инвертированный основной цвет текста - */ - public val TextInversePrimaryBrightness: Color = Color(0xF5FFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondaryActive: Color = Color(0xABFFFFFF) - - /** - * Инвертированный вторичный цвет текста - */ - public val TextInverseSecondary: Color = Color(0x8FFFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiaryActive: Color = Color(0x56FFFFFF) - - /** - * Инвертированный третичный цвет текста - */ - public val TextInverseTertiary: Color = Color(0x47FFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphHover: Color = Color(0x7AFFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraphActive: Color = Color(0xA3FFFFFF) - - /** - * Инвертированный cплошной наборный текст - */ - public val TextInverseParagraph: Color = Color(0xCCFFFFFF) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentHover: Color = Color(0xFF000000) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный цвет - */ - public val TextInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinorHover: Color = Color(0xFF000000) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный акцентный цвет - */ - public val TextInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromoHover: Color = Color(0xFF000000) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromoActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный промо цвет - */ - public val TextInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinorHover: Color = Color(0xFF000000) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный промо цвет - */ - public val TextInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveHover: Color = Color(0xFF2BD44A) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositiveActive: Color = Color(0xFF1D9032) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningHover: Color = Color(0xFFFF8B4D) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarningActive: Color = Color(0xFFFA5700) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeHover: Color = Color(0xFFFF6675) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegativeActive: Color = Color(0xFFFF142C) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfoHover: Color = Color(0xFF3FABF3) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfoActive: Color = Color(0xFF0D84D3) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinorActive: Color = Color(0xFFA84710) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinorHover: Color = Color(0xFF1483CC) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinorActive: Color = Color(0xFF116BA7) - - /** - * light text inverse textAccentMain - */ - public val TextInverseAccentMain: Color = Color(0xFF1A9E32) - - /** - * light text inverse textAccentMainHover - */ - public val TextInverseAccentMainHover: Color = Color(0xFF1FC13D) - - /** - * light text inverse textAccentMainActive - */ - public val TextInverseAccentMainActive: Color = Color(0xFF147B27) - - /** - * light text inverse textAccentAthena - */ - public val TextInverseAccentAthena: Color = Color(0xFF118CDF) - - /** - * light text inverse textAccentAthenaHover - */ - public val TextInverseAccentAthenaHover: Color = Color(0xFF2AA0EF) - - /** - * light text inverse textAccentAthenaActive - */ - public val TextInverseAccentAthenaActive: Color = Color(0xFF0E75B9) - - /** - * light text inverse textAccentJoy - */ - public val TextInverseAccentJoy: Color = Color(0xFFB559F3) - - /** - * light text inverse textAccentJoyHover - */ - public val TextInverseAccentJoyHover: Color = Color(0xFFC67EF6) - - /** - * light text inverse textAccentJoyActive - */ - public val TextInverseAccentJoyActive: Color = Color(0xFFA432F1) - - /** - * light text inverse textAccentBrand - */ - public val TextInverseAccentBrand: Color = Color(0xFF3F81FD) - - /** - * light text inverse textAccentBrandHover - */ - public val TextInverseAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * light text inverse textAccentBrandActive - */ - public val TextInverseAccentBrandActive: Color = Color(0xFF1767FD) - - /** - * light text inverse textAccentMainMinorHover - */ - public val TextInverseAccentMainMinorHover: Color = Color(0xFF11A72C) - - /** - * light text inverse textAccentMainMinorActive - */ - public val TextInverseAccentMainMinorActive: Color = Color(0xFF0D8222) - - /** - * light text inverse textAccentAthenaMinorHover - */ - public val TextInverseAccentAthenaMinorHover: Color = Color(0xFF1483CC) - - /** - * light text inverse textAccentAthenaMinorActive - */ - public val TextInverseAccentAthenaMinorActive: Color = Color(0xFF116BA7) - - /** - * light text inverse textAccentJoyMinorHover - */ - public val TextInverseAccentJoyMinorHover: Color = Color(0xFF000000) - - /** - * light text inverse textAccentJoyMinorActive - */ - public val TextInverseAccentJoyMinorActive: Color = Color(0xFF5B2281) - - /** - * light text inverse textAccentB2EMinorHover - */ - public val TextInverseAccentB2EMinorHover: Color = Color(0xFF11A72C) - - /** - * light text inverse textAccentB2EMinorActive - */ - public val TextInverseAccentB2EMinorActive: Color = Color(0xFF0D8222) - - /** - * light text inverse textAccentBrandMinorHover - */ - public val TextInverseAccentBrandMinorHover: Color = Color(0xFF000000) - - /** - * light text inverse textAccentBrandMinorActive - */ - public val TextInverseAccentBrandMinorActive: Color = Color(0xFF113B88) - - /** - * light text inverse textAccentB2E - */ - public val TextInverseAccentB2E: Color = Color(0xFF1A9E32) - - /** - * light text inverse textAccentB2EHover - */ - public val TextInverseAccentB2EHover: Color = Color(0xFF1FC13D) - - /** - * light text inverse textAccentB2EActive - */ - public val TextInverseAccentB2EActive: Color = Color(0xFF147B27) - - /** - * Инвертированный цвет успеха - */ - public val TextInversePositive: Color = Color(0xFF24B23E) - - /** - * Инвертированный цвет предупреждения - */ - public val TextInverseWarning: Color = Color(0xFFFF7024) - - /** - * Инвертированный цвет ошибки - */ - public val TextInverseNegative: Color = Color(0xFFFF3D51) - - /** - * Инвертированный цвет информации - */ - public val TextInverseInfo: Color = Color(0xFF199AF0) - - /** - * Инвертированный минорный цвет успеха - */ - public val TextInversePositiveMinor: Color = Color(0xFF095C18) - - /** - * Инвертированный минорный цвет предупреждения - */ - public val TextInverseWarningMinor: Color = Color(0xFF85380C) - - /** - * Инвертированный минорный цвет ошибки - */ - public val TextInverseNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Инвертированный минорный цвет информации - */ - public val TextInverseInfoMinor: Color = Color(0xFF0D5382) - - /** - * light text inverse textAccentMainMinor - */ - public val TextInverseAccentMainMinor: Color = Color(0xFF095C18) - - /** - * light text inverse textAccentJoyMinor - */ - public val TextInverseAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * light text inverse textAccentB2EMinor - */ - public val TextInverseAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * light text inverse textAccentAthenaMinor - */ - public val TextInverseAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * light text inverse textAccentBrandMinor - */ - public val TextInverseAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Основной непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryHover: Color = Color(0xFFEDEDED) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiaryActive: Color = Color(0xFFD4D4D4) - - /** - * Третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек - */ - public val SurfaceDefaultSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultHover: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceDefaultSolidDefault: Color = Color(0xFF080808) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryHover: Color = Color(0x03080808) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimaryActive: Color = Color(0x0D080808) - - /** - * Основной прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPrimary: Color = Color(0x08080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryHover: Color = Color(0x05080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondaryActive: Color = Color(0x1A080808) - - /** - * Вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentSecondary: Color = Color(0x0F080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryHover: Color = Color(0x0A080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiaryActive: Color = Color(0x29080808) - - /** - * Третичный прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentTertiary: Color = Color(0x1F080808) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек - */ - public val SurfaceDefaultTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearHover: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClearActive: Color = Color(0x00000000) - - /** - * Фон поверхности/контрола без заливки - */ - public val SurfaceDefaultClear: Color = Color(0x00000000) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола - */ - public val SurfaceDefaultTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола - */ - public val SurfaceDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола - */ - public val SurfaceDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола - */ - public val SurfaceDefaultTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет успеха - */ - public val SurfaceDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeActive: Color = Color(0xFFFF142C) - - /** - * Цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoActive: Color = Color(0xFF0F81CC) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinorActive: Color = Color(0xFF8BF99F) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinorHover: Color = Color(0xFFFEEFE6) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinorHover: Color = Color(0xFFFFF5F6) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinorHover: Color = Color(0xFFE5F5FF) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinorActive: Color = Color(0xFFC7E9FF) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositiveHover: Color = Color(0x0A1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositiveActive: Color = Color(0x291A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarningHover: Color = Color(0x0AFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarningActive: Color = Color(0x29FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegativeHover: Color = Color(0x0AFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegativeActive: Color = Color(0x29FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfoHover: Color = Color(0x0A118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfoActive: Color = Color(0x29118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthenaActive: Color = Color(0xFF0F81CC) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceDefaultAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoyActive: Color = Color(0xFFAD45F2) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceDefaultAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2EActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceDefaultAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrandActive: Color = Color(0xFF2B74FD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceDefaultAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSentHover: Color = Color(0x52080808) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSentActive: Color = Color(0x70080808) - - /** - * Цвет баббла сообщения от пользователя - */ - public val SurfaceDefaultSpeechBubbleSent: Color = Color(0x66080808) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceivedHover: Color = Color(0x03080808) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceivedActive: Color = Color(0x0D080808) - - /** - * Цвет баббла сообщения от ассистента - */ - public val SurfaceDefaultSpeechBubbleReceived: Color = Color(0x08080808) - - /** - * Фон для скелетона - */ - public val SurfaceDefaultSkeletonHover: Color = Color(0xFFFFFFFF) - - /** - * Фон для скелетона - */ - public val SurfaceDefaultSkeletonActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMainActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceDefaultAccentMain: Color = Color(0xFF1A9E32) - - /** - * light surface default surfaceAccentMainMinorHover - */ - public val SurfaceDefaultAccentMainMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface default surfaceAccentMainMinorActive - */ - public val SurfaceDefaultAccentMainMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface default surfaceAccentAthenaMinorHover - */ - public val SurfaceDefaultAccentAthenaMinorHover: Color = Color(0xFFE5F5FF) - - /** - * light surface default surfaceAccentAthenaMinorActive - */ - public val SurfaceDefaultAccentAthenaMinorActive: Color = Color(0xFFC7E9FF) - - /** - * light surface default surfaceAccentJoyMinorHover - */ - public val SurfaceDefaultAccentJoyMinorHover: Color = Color(0xFFF9F0FF) - - /** - * light surface default surfaceAccentJoyMinorActive - */ - public val SurfaceDefaultAccentJoyMinorActive: Color = Color(0xFFF1DBFF) - - /** - * light surface default surfaceAccentB2EMinorHover - */ - public val SurfaceDefaultAccentB2EMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface default surfaceAccentB2EMinorActive - */ - public val SurfaceDefaultAccentB2EMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface default surfaceAccentBrandMinorHover - */ - public val SurfaceDefaultAccentBrandMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface default surfaceAccentBrandMinorActive - */ - public val SurfaceDefaultAccentBrandMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface default surfacesurfaceTransparentAccentMainHover - */ - public val SurfaceDefaultSurfaceTransparentAccentMainHover: Color = Color(0x1F1A9E32) - - /** - * light surface default surfacesurfaceTransparentAccentMainActive - */ - public val SurfaceDefaultSurfaceTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * light surface default surfaceTransparentAccentAthenaHover - */ - public val SurfaceDefaultTransparentAccentAthenaHover: Color = Color(0x0A118CDF) - - /** - * light surface default surfaceTransparentAccentAthenaActive - */ - public val SurfaceDefaultTransparentAccentAthenaActive: Color = Color(0x29118CDF) - - /** - * light surface default surfaceTransparentAccentJoyHover - */ - public val SurfaceDefaultTransparentAccentJoyHover: Color = Color(0x0AB558F3) - - /** - * light surface default surfaceTransparentAccentJoyActive - */ - public val SurfaceDefaultTransparentAccentJoyActive: Color = Color(0x29B558F3) - - /** - * light surface default surfaceTransparentAccentB2EHover - */ - public val SurfaceDefaultTransparentAccentB2EHover: Color = Color(0x0A1A9E32) - - /** - * light surface default surfaceTransparentAccentB2EActive - */ - public val SurfaceDefaultTransparentAccentB2EActive: Color = Color(0x291A9E32) - - /** - * light surface default surfaceTransparentAccentBrandHover - */ - public val SurfaceDefaultTransparentAccentBrandHover: Color = Color(0x0A3F82FD) - - /** - * light surface default surfaceTransparentAccentBrandActive - */ - public val SurfaceDefaultTransparentAccentBrandActive: Color = Color(0x293F82FD) - - /** - * light surface default surfaceTransparentAccentMainHover - */ - public val SurfaceDefaultTransparentAccentMainHover: Color = Color(0x0A1A9E32) - - /** - * light surface default surfaceTransparentAccentMainActive - */ - public val SurfaceDefaultTransparentAccentMainActive: Color = Color(0x291A9E32) - - /** - * Цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * Минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * Минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceDefaultNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * Минорный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultInfoMinor: Color = Color(0xFFCFECFF) - - /** - * Прозрачный цвет фона поверхности/контрола успех - */ - public val SurfaceDefaultTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceDefaultTransparentNegative: Color = Color(0x1FFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация - */ - public val SurfaceDefaultTransparentInfo: Color = Color(0x1F118CDF) - - /** - * light surface default surfaceAccentMainMinor - */ - public val SurfaceDefaultAccentMainMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface default surfaceAccentAthenaMinor - */ - public val SurfaceDefaultAccentAthenaMinor: Color = Color(0xFFCFECFF) - - /** - * light surface default surfaceAccentJoyMinor - */ - public val SurfaceDefaultAccentJoyMinor: Color = Color(0xFFF4E3FF) - - /** - * light surface default surfaceAccentB2EMinor - */ - public val SurfaceDefaultAccentB2EMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface default surfaceAccentBrandMinor - */ - public val SurfaceDefaultAccentBrandMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface default surfaceTransparentAccentAthena - */ - public val SurfaceDefaultTransparentAccentAthena: Color = Color(0x1F118CDF) - - /** - * light surface default surfaceTransparentAccentJoy - */ - public val SurfaceDefaultTransparentAccentJoy: Color = Color(0x1FB559F3) - - /** - * light surface default surfaceTransparentAccentB2E - */ - public val SurfaceDefaultTransparentAccentB2E: Color = Color(0x1F1A9E32) - - /** - * light surface default surfaceTransparentAccentBrand - */ - public val SurfaceDefaultTransparentAccentBrand: Color = Color(0x1F3F81FD) - - /** - * light surface default surfaceTransparentAccentMain - */ - public val SurfaceDefaultTransparentAccentMain: Color = Color(0x1F1A9E32) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryHover: Color = Color(0xFF363636) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryActive: Color = Color(0xFF0D0D0D) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimary: Color = Color(0xFF171717) - - /** - * Основной непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondaryHover: Color = Color(0xFF3B3B3B) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondaryActive: Color = Color(0xFF1C1C1C) - - /** - * Вторичный непрозрачный фон поверхности/контрола на темном - */ - public val SurfaceOnDarkSolidSecondary: Color = Color(0xFF262626) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryHover: Color = Color(0xFF4A4A4A) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiaryActive: Color = Color(0xFF2B2B2B) - - /** - * Третичный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkSolidTertiary: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardHover: Color = Color(0xFF363636) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardActive: Color = Color(0xFF0D0D0D) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCard: Color = Color(0xFF171717) - - /** - * Основной фон для карточек на темном фоне - */ - public val SurfaceOnDarkSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на темном фоне - */ - public val SurfaceOnDarkSolidDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryHover: Color = Color(0x05FFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimaryActive: Color = Color(0x1AFFFFFF) - - /** - * Основной прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryHover: Color = Color(0x0AFFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondaryActive: Color = Color(0x29FFFFFF) - - /** - * Вторичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryHover: Color = Color(0x1FFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiaryActive: Color = Color(0x3DFFFFFF) - - /** - * Третичный прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Глубокий прозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardHover: Color = Color(0x05FFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardActive: Color = Color(0x1AFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCard: Color = Color(0x0FFFFFFF) - - /** - * Прозрачный фон для карточек на темном фоне - */ - public val SurfaceOnDarkTransparentCardBrightness: Color = Color(0x0FFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearHover: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClearActive: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на темном фоне - */ - public val SurfaceOnDarkClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на темном фоне - */ - public val SurfaceOnDarkTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет успеха на темном фоне - */ - public val SurfaceOnDarkPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола предупреждение на темном - */ - public val SurfaceOnDarkWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeActive: Color = Color(0xFFFF142C) - - /** - * Цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoActive: Color = Color(0xFF0F81CC) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinorActive: Color = Color(0xFF061909) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinorHover: Color = Color(0xFF58290E) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinorActive: Color = Color(0xFF2C1507) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinorHover: Color = Color(0xFF64121A) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinorActive: Color = Color(0xFF380A0F) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinorHover: Color = Color(0xFF10344C) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinorActive: Color = Color(0xFF091D2A) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositiveHover: Color = Color(0x1F1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarningHover: Color = Color(0x1FFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegativeHover: Color = Color(0x1FFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfoHover: Color = Color(0x1F118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthenaActive: Color = Color(0xFF0F81CC) - - /** - * Акцентный цвет поверхности/контролла Афины - */ - public val SurfaceOnDarkAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoyActive: Color = Color(0xFFAD45F2) - - /** - * Акцентный цвет поверхности/контролла Джой - */ - public val SurfaceOnDarkAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2EActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла B2E-ассистента - */ - public val SurfaceOnDarkAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrandActive: Color = Color(0xFF2B74FD) - - /** - * Акцентный цвет поверхности/контролла бренда - */ - public val SurfaceOnDarkAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMainActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла - */ - public val SurfaceOnDarkAccentMain: Color = Color(0xFF1A9E32) - - /** - * light surface onDark surfaceAccentMainMinor - */ - public val SurfaceOnDarkAccentMainMinor: Color = Color(0xFF0A2B10) - - /** - * light surface onDark surfaceAccentMainMinorHover - */ - public val SurfaceOnDarkAccentMainMinorHover: Color = Color(0xFF0E3A16) - - /** - * light surface onDark surfaceAccentMainMinorActive - */ - public val SurfaceOnDarkAccentMainMinorActive: Color = Color(0xFF061909) - - /** - * light surface onDark surfaceAccentAthenaMinor - */ - public val SurfaceOnDarkAccentAthenaMinor: Color = Color(0xFF0C283B) - - /** - * light surface onDark surfaceAccentAthenaMinorHover - */ - public val SurfaceOnDarkAccentAthenaMinorHover: Color = Color(0xFF10344C) - - /** - * light surface onDark surfaceAccentAthenaMinorActive - */ - public val SurfaceOnDarkAccentAthenaMinorActive: Color = Color(0xFF091D2A) - - /** - * light surface onDark surfaceAccentJoyMinor - */ - public val SurfaceOnDarkAccentJoyMinor: Color = Color(0xFF36154C) - - /** - * light surface onDark surfaceAccentJoyMinorHover - */ - public val SurfaceOnDarkAccentJoyMinorHover: Color = Color(0xFF41195C) - - /** - * light surface onDark surfaceAccentJoyMinorActive - */ - public val SurfaceOnDarkAccentJoyMinorActive: Color = Color(0xFF2B103C) - - /** - * light surface onDark surfaceAccentB2EMinor - */ - public val SurfaceOnDarkAccentB2EMinor: Color = Color(0xFF0A2B10) - - /** - * light surface onDark surfaceAccentB2EMinorHover - */ - public val SurfaceOnDarkAccentB2EMinorHover: Color = Color(0xFF0E3A16) - - /** - * light surface onDark surfaceAccentB2EMinorActive - */ - public val SurfaceOnDarkAccentB2EMinorActive: Color = Color(0xFF061909) - - /** - * light surface onDark surfaceAccentBrandMinor - */ - public val SurfaceOnDarkAccentBrandMinor: Color = Color(0xFF082254) - - /** - * light surface onDark surfaceAccentBrandMinorHover - */ - public val SurfaceOnDarkAccentBrandMinorHover: Color = Color(0xFF0A2A67) - - /** - * light surface onDark surfaceAccentBrandMinorActive - */ - public val SurfaceOnDarkAccentBrandMinorActive: Color = Color(0xFF061B41) - - /** - * light surface onDark surfaceTransparentAccentMain - */ - public val SurfaceOnDarkTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * light surface onDark surfaceTransparentAccentMainHover - */ - public val SurfaceOnDarkTransparentAccentMainHover: Color = Color(0x1F1A9E32) - - /** - * light surface onDark surfaceTransparentAccentMainActive - */ - public val SurfaceOnDarkTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * light surface onDark surfaceTransparentAccentAthena - */ - public val SurfaceOnDarkTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * light surface onDark surfaceTransparentAccentAthenaHover - */ - public val SurfaceOnDarkTransparentAccentAthenaHover: Color = Color(0x1F118CDF) - - /** - * light surface onDark surfaceTransparentAccentAthenaActive - */ - public val SurfaceOnDarkTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * light surface onDark surfaceTransparentAccentJoy - */ - public val SurfaceOnDarkTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * light surface onDark surfaceTransparentAccentJoyHover - */ - public val SurfaceOnDarkTransparentAccentJoyHover: Color = Color(0x1FB558F3) - - /** - * light surface onDark surfaceTransparentAccentJoyActive - */ - public val SurfaceOnDarkTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * light surface onDark surfaceTransparentAccentB2E - */ - public val SurfaceOnDarkTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * light surface onDark surfaceTransparentAccentB2EHover - */ - public val SurfaceOnDarkTransparentAccentB2EHover: Color = Color(0x1F1A9E32) - - /** - * light surface onDark surfaceTransparentAccentB2EActive - */ - public val SurfaceOnDarkTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * light surface onDark surfaceTransparentAccentBrand - */ - public val SurfaceOnDarkTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * light surface onDark surfaceTransparentAccentBrandHover - */ - public val SurfaceOnDarkTransparentAccentBrandHover: Color = Color(0x1F3F82FD) - - /** - * light surface onDark surfaceTransparentAccentBrandActive - */ - public val SurfaceOnDarkTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkPositiveMinor: Color = Color(0xFF0A2B10) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * Минорный цвет фона поверхности/контрола ошибка на темном фоне - */ - public val SurfaceOnDarkNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * Минорный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkInfoMinor: Color = Color(0xFF0C283B) - - /** - * Прозрачный цвет фона поверхности/контрола успех на темном фоне - */ - public val SurfaceOnDarkTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на темном фоне - */ - public val SurfaceOnDarkTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на темном фоне - */ - public val SurfaceOnDarkTransparentInfo: Color = Color(0x33118CDF) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryHover: Color = Color(0xFFFAFAFA) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryActive: Color = Color(0xFFF0F0F0) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimary: Color = Color(0xFFF5F5F5) - - /** - * Основной непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidPrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondaryHover: Color = Color(0xFFF7F7F7) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondaryActive: Color = Color(0xFFE8E8E8) - - /** - * Вторичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidSecondary: Color = Color(0xFFECECEC) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiaryHover: Color = Color(0xFFEDEDED) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiaryActive: Color = Color(0xFFD4D4D4) - - /** - * Третичный непрозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightSolidTertiary: Color = Color(0xFFDDDDDD) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardHover: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardActive: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCard: Color = Color(0xFFFFFFFF) - - /** - * Основной фон для карточек на светлом фоне - */ - public val SurfaceOnLightSolidCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultHover: Color = Color(0xFF262626) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefaultActive: Color = Color(0xFF030303) - - /** - * Непрозрачный фон поверхности/контрола по умолчанию на светлом фоне - */ - public val SurfaceOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimaryHover: Color = Color(0x03080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimaryActive: Color = Color(0x0D080808) - - /** - * Основной прозрачный фон поверхности/контрола на светлом - */ - public val SurfaceOnLightTransparentPrimary: Color = Color(0x08080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryHover: Color = Color(0x05080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondaryActive: Color = Color(0x1A080808) - - /** - * Вторичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentSecondary: Color = Color(0x0F080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryHover: Color = Color(0x0A080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiaryActive: Color = Color(0x29080808) - - /** - * Третичный прозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentTertiary: Color = Color(0x1F080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeepHover: Color = Color(0x8F080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeepActive: Color = Color(0xAD080808) - - /** - * Прозрачный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightTransparentDeep: Color = Color(0xA2080808) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCard: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный фон для карточек на светлом фоне - */ - public val SurfaceOnLightTransparentCardBrightness: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearHover: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClearActive: Color = Color(0xFFFFFFFF) - - /** - * Фон поверхности/контрола без заливки на светлом фоне - */ - public val SurfaceOnLightClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccent: Color = Color(0xFF1A9E32) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный промо фон поверхности/контрола на светлом фоне - */ - public val SurfaceOnLightTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositiveHover: Color = Color(0xFF1EB83A) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositiveActive: Color = Color(0xFF178C2C) - - /** - * Цвет успеха на светлом фоне - */ - public val SurfaceOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarningActive: Color = Color(0xFFE65705) - - /** - * Цвет фона поверхности/контрола предупреждение на светлом - */ - public val SurfaceOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeActive: Color = Color(0xFFFF142C) - - /** - * Цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoHover: Color = Color(0xFF1798EE) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoActive: Color = Color(0xFF0F81CC) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinorHover: Color = Color(0xFFB1FBBF) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinorActive: Color = Color(0xFF8BF99F) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinorHover: Color = Color(0xFFFEEFE6) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinorActive: Color = Color(0xFFFEDCC8) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinorHover: Color = Color(0xFFFFF5F6) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinorActive: Color = Color(0xFFFFD6DA) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinorHover: Color = Color(0xFFE5F5FF) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinorActive: Color = Color(0xFFC7E9FF) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositiveHover: Color = Color(0x0A1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositiveActive: Color = Color(0x291A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarningHover: Color = Color(0x0AFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarningActive: Color = Color(0x29FA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegativeHover: Color = Color(0x0AFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegativeActive: Color = Color(0x29FF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfoHover: Color = Color(0x0A118CDF) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfoActive: Color = Color(0x29118CDF) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthenaActive: Color = Color(0xFF0F81CC) - - /** - * Акцентный цвет поверхности/контролла Афины на светлом фоне - */ - public val SurfaceOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoyActive: Color = Color(0xFFAD45F2) - - /** - * Акцентный цвет поверхности/контролла Джой на светлом - */ - public val SurfaceOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2EActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности B2E-ассистента на светлом - */ - public val SurfaceOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrandActive: Color = Color(0xFF2B74FD) - - /** - * Акцентный цвет поверхности/контролла бренда на светлом - */ - public val SurfaceOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMainActive: Color = Color(0xFF178C2C) - - /** - * Акцентный цвет поверхности/контролла на светлом фоне - */ - public val SurfaceOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * light surface onLight surfaceAccentMainMinor - */ - public val SurfaceOnLightAccentMainMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface onLight surfaceAccentMainMinorHover - */ - public val SurfaceOnLightAccentMainMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface onLight surfaceAccentMainMinorActive - */ - public val SurfaceOnLightAccentMainMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface onLight surfaceAccentAthenaMinor - */ - public val SurfaceOnLightAccentAthenaMinor: Color = Color(0xFFCFECFF) - - /** - * light surface onLight surfaceAccentAthenaMinorHover - */ - public val SurfaceOnLightAccentAthenaMinorHover: Color = Color(0xFFE5F5FF) - - /** - * light surface onLight surfaceAccentAthenaMinorActive - */ - public val SurfaceOnLightAccentAthenaMinorActive: Color = Color(0xFFC7E9FF) - - /** - * light surface onLight surfaceAccentJoyMinor - */ - public val SurfaceOnLightAccentJoyMinor: Color = Color(0xFFF4E3FF) - - /** - * light surface onLight surfaceAccentJoyMinorHover - */ - public val SurfaceOnLightAccentJoyMinorHover: Color = Color(0xFFF9F0FF) - - /** - * light surface onLight surfaceAccentJoyMinorActive - */ - public val SurfaceOnLightAccentJoyMinorActive: Color = Color(0xFFF1DBFF) - - /** - * light surface onLight surfaceAccentB2EMinor - */ - public val SurfaceOnLightAccentB2EMinor: Color = Color(0xFF9EFAAF) - - /** - * light surface onLight surfaceAccentB2EMinorHover - */ - public val SurfaceOnLightAccentB2EMinorHover: Color = Color(0xFFB1FBBF) - - /** - * light surface onLight surfaceAccentB2EMinorActive - */ - public val SurfaceOnLightAccentB2EMinorActive: Color = Color(0xFF8BF99F) - - /** - * light surface onLight surfaceAccentBrandMinor - */ - public val SurfaceOnLightAccentBrandMinor: Color = Color(0xFFDEE9FF) - - /** - * light surface onLight surfaceAccentBrandMinorHover - */ - public val SurfaceOnLightAccentBrandMinorHover: Color = Color(0xFFF5F8FF) - - /** - * light surface onLight surfaceAccentBrandMinorActive - */ - public val SurfaceOnLightAccentBrandMinorActive: Color = Color(0xFFD6E4FF) - - /** - * light surface onLight surfaceTransparentAccentMain - */ - public val SurfaceOnLightTransparentAccentMain: Color = Color(0x1F1A9E32) - - /** - * light surface onLight surfaceTransparentAccentMainHover - */ - public val SurfaceOnLightTransparentAccentMainHover: Color = Color(0x0A1A9E32) - - /** - * light surface onLight surfaceTransparentAccentMainActive - */ - public val SurfaceOnLightTransparentAccentMainActive: Color = Color(0x291A9E32) - - /** - * light surface onLight surfaceTransparentAccentAthena - */ - public val SurfaceOnLightTransparentAccentAthena: Color = Color(0x1F118CDF) - - /** - * light surface onLight surfaceTransparentAccentAthenaHover - */ - public val SurfaceOnLightTransparentAccentAthenaHover: Color = Color(0x0A118CDF) - - /** - * light surface onLight surfaceTransparentAccentAthenaActive - */ - public val SurfaceOnLightTransparentAccentAthenaActive: Color = Color(0x29118CDF) - - /** - * light surface onLight surfaceTransparentAccentJoy - */ - public val SurfaceOnLightTransparentAccentJoy: Color = Color(0x1FB559F3) - - /** - * light surface onLight surfaceTransparentAccentJoyHover - */ - public val SurfaceOnLightTransparentAccentJoyHover: Color = Color(0x0AB558F3) - - /** - * light surface onLight surfaceTransparentAccentJoyActive - */ - public val SurfaceOnLightTransparentAccentJoyActive: Color = Color(0x29B558F3) - - /** - * light surface onLight surfaceTransparentAccentB2E - */ - public val SurfaceOnLightTransparentAccentB2E: Color = Color(0x1F1A9E32) - - /** - * light surface onLight surfaceTransparentAccentB2EHover - */ - public val SurfaceOnLightTransparentAccentB2EHover: Color = Color(0x0A1A9E32) - - /** - * light surface onLight surfaceTransparentAccentB2EActive - */ - public val SurfaceOnLightTransparentAccentB2EActive: Color = Color(0x291A9E32) - - /** - * light surface onLight surfaceTransparentAccentBrand - */ - public val SurfaceOnLightTransparentAccentBrand: Color = Color(0x1F3F81FD) - - /** - * light surface onLight surfaceTransparentAccentBrandHover - */ - public val SurfaceOnLightTransparentAccentBrandHover: Color = Color(0x0A3F82FD) - - /** - * light surface onLight surfaceTransparentAccentBrandActive - */ - public val SurfaceOnLightTransparentAccentBrandActive: Color = Color(0x293F82FD) - - /** - * Цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightPositiveMinor: Color = Color(0xFF9EFAAF) - - /** - * Минорный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightWarningMinor: Color = Color(0xFFFEE2D2) - - /** - * Минорный цвет фона поверхности/контрола ошибка на светлом фоне - */ - public val SurfaceOnLightNegativeMinor: Color = Color(0xFFFFE0E3) - - /** - * Минорный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightInfoMinor: Color = Color(0xFFCFECFF) - - /** - * Прозрачный цвет фона поверхности/контрола успех на светлом фоне - */ - public val SurfaceOnLightTransparentPositive: Color = Color(0x1F1A9E32) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentWarning: Color = Color(0x1FFA5F05) - - /** - * Прозрачный цвет фона поверхности/контрола предупреждение на светлом фоне - */ - public val SurfaceOnLightTransparentNegative: Color = Color(0x1FFF293E) - - /** - * Прозрачный цвет фона поверхности/контрола информация на светлом фоне - */ - public val SurfaceOnLightTransparentInfo: Color = Color(0x1F118CDF) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryHover: Color = Color(0xFF363636) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryActive: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimaryBrightness: Color = Color(0xFF262626) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryHover: Color = Color(0xFF3B3B3B) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondaryActive: Color = Color(0xFF1C1C1C) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryHover: Color = Color(0xFF4A4A4A) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiaryActive: Color = Color(0xFF2B2B2B) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardHover: Color = Color(0xFF363636) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardActive: Color = Color(0xFF0D0D0D) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCardBrightness: Color = Color(0xFF262626) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefaultActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryHover: Color = Color(0x05FFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimaryActive: Color = Color(0x1AFFFFFF) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryHover: Color = Color(0x0AFFFFFF) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondaryActive: Color = Color(0x29FFFFFF) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryHover: Color = Color(0x1FFFFFFF) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiaryActive: Color = Color(0x3DFFFFFF) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeepHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeepActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный глубокий прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentDeep: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardHover: Color = Color(0x05FFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardActive: Color = Color(0x1AFFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCardBrightness: Color = Color(0x0FFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClearActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный фон поверхности/контрола без заливки - */ - public val SurfaceInverseClear: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccentHover: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccentActive: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола - */ - public val SurfaceInverseTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromoHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromoActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо фон поверхности/контрола - */ - public val SurfaceInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinorHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinorActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо фон поверхности/контрола - */ - public val SurfaceInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromoHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromoActive: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный прозрачный промо фон поверхности/контрола - */ - public val SurfaceInverseTransparentPromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveHover: Color = Color(0xFF1EB83A) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveActive: Color = Color(0xFF178C2C) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningHover: Color = Color(0xFFFB782D) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningActive: Color = Color(0xFFE65705) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeHover: Color = Color(0xFFFF5263) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeActive: Color = Color(0xFFFF142C) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoHover: Color = Color(0xFF1798EE) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoActive: Color = Color(0xFF0F81CC) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinorHover: Color = Color(0xFF0E3A16) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinorActive: Color = Color(0xFF061909) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinorHover: Color = Color(0xFF58290E) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinorActive: Color = Color(0xFF2C1507) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinorHover: Color = Color(0xFF64121A) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinorActive: Color = Color(0xFF380A0F) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinorHover: Color = Color(0xFF10344C) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinorActive: Color = Color(0xFF091D2A) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositiveHover: Color = Color(0x1F1A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarningHover: Color = Color(0x1FFA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegativeHover: Color = Color(0x1FFF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfoHover: Color = Color(0x1F118CDF) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * light surface inverse surfaceAccentMain - */ - public val SurfaceInverseAccentMain: Color = Color(0xFF1A9E32) - - /** - * light surface inverse surfaceAccentMainHover - */ - public val SurfaceInverseAccentMainHover: Color = Color(0xFF1EB83A) - - /** - * light surface inverse surfaceAccentMainActive - */ - public val SurfaceInverseAccentMainActive: Color = Color(0xFF178C2C) - - /** - * light surface inverse surfaceAccentAthena - */ - public val SurfaceInverseAccentAthena: Color = Color(0xFF118CDF) - - /** - * light surface inverse surfaceAccentAthenaHover - */ - public val SurfaceInverseAccentAthenaHover: Color = Color(0xFF1798EE) - - /** - * light surface inverse surfaceAccentAthenaActive - */ - public val SurfaceInverseAccentAthenaActive: Color = Color(0xFF0F81CC) - - /** - * light surface inverse surfacesurfaceAccentJoy - */ - public val SurfaceInverseSurfaceAccentJoy: Color = Color(0xFFB559F3) - - /** - * light surface inverse surfacesurfaceAccentJoyHover - */ - public val SurfaceInverseSurfaceAccentJoyHover: Color = Color(0xFFC275F5) - - /** - * light surface inverse surfacesurfaceAccentJoyActive - */ - public val SurfaceInverseSurfaceAccentJoyActive: Color = Color(0xFFAD45F2) - - /** - * light surface inverse surfaceAccentB2E - */ - public val SurfaceInverseAccentB2E: Color = Color(0xFF1A9E32) - - /** - * light surface inverse surfaceAccentB2EHover - */ - public val SurfaceInverseAccentB2EHover: Color = Color(0xFF1EB83A) - - /** - * light surface inverse surfaceAccentB2EActive - */ - public val SurfaceInverseAccentB2EActive: Color = Color(0xFF178C2C) - - /** - * light surface inverse surfaceAccentBrand - */ - public val SurfaceInverseAccentBrand: Color = Color(0xFF3F81FD) - - /** - * light surface inverse surfaceAccentBrandHover - */ - public val SurfaceInverseAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * light surface inverse surfaceAccentBrandActive - */ - public val SurfaceInverseAccentBrandActive: Color = Color(0xFF2B74FD) - - /** - * light surface inverse surfaceAccentMainMinorHover - */ - public val SurfaceInverseAccentMainMinorHover: Color = Color(0xFF0E3A16) - - /** - * light surface inverse surfaceAccentMainMinorActive - */ - public val SurfaceInverseAccentMainMinorActive: Color = Color(0xFF061909) - - /** - * light surface inverse surfaceAccentAthenaMinorHover - */ - public val SurfaceInverseAccentAthenaMinorHover: Color = Color(0xFF10344C) - - /** - * light surface inverse surfaceAccentAthenaMinorActive - */ - public val SurfaceInverseAccentAthenaMinorActive: Color = Color(0xFF091D2A) - - /** - * light surface inverse surfaceAccentJoyMinorHover - */ - public val SurfaceInverseAccentJoyMinorHover: Color = Color(0xFF41195C) - - /** - * light surface inverse surfaceAccentJoyMinorActive - */ - public val SurfaceInverseAccentJoyMinorActive: Color = Color(0xFF2B103C) - - /** - * light surface inverse surfaceAccentB2EMinorHover - */ - public val SurfaceInverseAccentB2EMinorHover: Color = Color(0xFF0E3A16) - - /** - * light surface inverse surfaceAccentB2EMinorActive - */ - public val SurfaceInverseAccentB2EMinorActive: Color = Color(0xFF061909) - - /** - * light surface inverse surfaceAccentBrandMinorHover - */ - public val SurfaceInverseAccentBrandMinorHover: Color = Color(0xFF0A2A67) - - /** - * light surface inverse surfaceAccentBrandMinorActive - */ - public val SurfaceInverseAccentBrandMinorActive: Color = Color(0xFF061B41) - - /** - * light surface inverse surfaceTransparentAccentMainHover - */ - public val SurfaceInverseTransparentAccentMainHover: Color = Color(0x1F1A9E32) - - /** - * light surface inverse surfaceTransparentAccentMainActive - */ - public val SurfaceInverseTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * light surface inverse surfaceTransparentAccentAthenaHover - */ - public val SurfaceInverseTransparentAccentAthenaHover: Color = Color(0x1F118CDF) - - /** - * light surface inverse surfaceTransparentAccentAthenaActive - */ - public val SurfaceInverseTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * light surface inverse surfaceTransparentAccentJoyHover - */ - public val SurfaceInverseTransparentAccentJoyHover: Color = Color(0x1FB558F3) - - /** - * light surface inverse surfaceTransparentAccentJoyActive - */ - public val SurfaceInverseTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * light surface inverse surfaceTransparentAccentB2EHover - */ - public val SurfaceInverseTransparentAccentB2EHover: Color = Color(0x1F1A9E32) - - /** - * light surface inverse surfaceTransparentAccentB2EActive - */ - public val SurfaceInverseTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * light surface inverse surfaceTransparentAccentBrandHover - */ - public val SurfaceInverseTransparentAccentBrandHover: Color = Color(0x1F3F82FD) - - /** - * light surface inverse surfaceTransparentAccentBrandActive - */ - public val SurfaceInverseTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Инвертированный основной фон для карточек - */ - public val SurfaceInverseSolidCard: Color = Color(0xFF171717) - - /** - * Инвертированный основной непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidPrimary: Color = Color(0xFF171717) - - /** - * Инвертированный вторичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidSecondary: Color = Color(0xFF262626) - - /** - * Инвертированный третичный непрозрачный фон поверхности/контрола - */ - public val SurfaceInverseSolidTertiary: Color = Color(0xFF363636) - - /** - * Инвертированный непрозрачный фон поверхности/контрола по умолчанию - */ - public val SurfaceInverseSolidDefault: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentPrimary: Color = Color(0x0FFFFFFF) - - /** - * Инвертированный вторичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentSecondary: Color = Color(0x1FFFFFFF) - - /** - * Инвертированный третичный прозрачный фон поверхности/контрола - */ - public val SurfaceInverseTransparentTertiary: Color = Color(0x33FFFFFF) - - /** - * Инвертированный прозрачный фон для карточек - */ - public val SurfaceInverseTransparentCard: Color = Color(0x0FFFFFFF) - - /** - * Инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositive: Color = Color(0xFF1A9E32) - - /** - * Инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarning: Color = Color(0xFFFA5F05) - - /** - * Инвертированный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegative: Color = Color(0xFFFF293E) - - /** - * Инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfo: Color = Color(0xFF118CDF) - - /** - * Инвертированный минорный цвет фона поверхности/контрола успех - */ - public val SurfaceInversePositiveMinor: Color = Color(0xFF0A2B10) - - /** - * Инвертированный минорный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseWarningMinor: Color = Color(0xFF3D1D0A) - - /** - * Инвертированный минорный цвет фона поверхности/контрола ошибка - */ - public val SurfaceInverseNegativeMinor: Color = Color(0xFF4A0D13) - - /** - * Инвертированный минорный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseInfoMinor: Color = Color(0xFF0C283B) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола успех - */ - public val SurfaceInverseTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола предупреждение - */ - public val SurfaceInverseTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный инвертированный цвет фона поверхности/контрола информация - */ - public val SurfaceInverseTransparentInfo: Color = Color(0x33118CDF) - - /** - * light surface inverse surfaceAccentMainMinor - */ - public val SurfaceInverseAccentMainMinor: Color = Color(0xFF0A2B10) - - /** - * light surface inverse surfaceAccentAthenaMinor - */ - public val SurfaceInverseAccentAthenaMinor: Color = Color(0xFF0C283B) - - /** - * light surface inverse surfaceAccentJoyMinor - */ - public val SurfaceInverseAccentJoyMinor: Color = Color(0xFF36154C) - - /** - * light surface inverse surfaceAccentBrandMinor - */ - public val SurfaceInverseAccentBrandMinor: Color = Color(0xFF082254) - - /** - * light surface inverse surfaceAccentB2EMinor - */ - public val SurfaceInverseAccentB2EMinor: Color = Color(0xFF0A2B10) - - /** - * light surface inverse surfaceTransparentAccentMain - */ - public val SurfaceInverseTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * light surface inverse surfaceTransparentAccentAthena - */ - public val SurfaceInverseTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * light surface inverse surfaceTransparentAccentJoy - */ - public val SurfaceInverseTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * light surface inverse surfaceTransparentAccentB2E - */ - public val SurfaceInverseTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * light surface inverse surfaceTransparentAccentBrand - */ - public val SurfaceInverseTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimary: Color = Color(0xFFF2F2F2) - - /** - * Основной фон - */ - public val BackgroundDefaultPrimaryBrightness: Color = Color(0xFFF3F3F3) - - /** - * Вторичный фон - */ - public val BackgroundDefaultSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон - */ - public val BackgroundDefaultTertiary: Color = Color(0xFFFFFFFF) - - /** - * Основной фон на темном фоне - */ - public val BackgroundDarkPrimary: Color = Color(0xFFFFFFFF) - - /** - * Вторичный фон на темном фоне - */ - public val BackgroundDarkSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на темном фоне - */ - public val BackgroundDarkTertiary: Color = Color(0xFFFFFFFF) - - /** - * Основной фон на светлом фоне - */ - public val BackgroundLightPrimary: Color = Color(0xFFFFFFFF) - - /** - * Вторичный фон на светлом фоне - */ - public val BackgroundLightSecondary: Color = Color(0xFFFFFFFF) - - /** - * Третичный фон на светлом фоне - */ - public val BackgroundLightTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimaryBrightness: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный фон - */ - public val BackgroundInverseTertiary: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной фон - */ - public val BackgroundInversePrimary: Color = Color(0xFF000000) - - /** - * Инвертированный вторичный фон - */ - public val BackgroundInverseSecondary: Color = Color(0xFF171717) - - /** - * Цвет фона паранжи светлый - */ - public val OverlayDefaultSoft: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи темный - */ - public val OverlayDefaultHard: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи размытый - */ - public val OverlayDefaultBlur: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи светлый на темном фоне - */ - public val OverlayOnDarkSoft: Color = Color(0x8F000000) - - /** - * Цвет фона паранжи темный на темном фоне - */ - public val OverlayOnDarkHard: Color = Color(0xEB000000) - - /** - * Оверлей с блюром - */ - public val OverlayOnDarkBlur: Color = Color(0x47262626) - - /** - * Цвет фона паранжи светлый на светлом фоне - */ - public val OverlayOnLightSoft: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи темный на светлом фоне - */ - public val OverlayOnLightHard: Color = Color(0xFFFFFFFF) - - /** - * Цвет фона паранжи размытый на светлом фоне - */ - public val OverlayOnLightBlur: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи светлый - */ - public val OverlayInverseSoft: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи темный - */ - public val OverlayInverseHard: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет фона паранжи размытый - */ - public val OverlayInverseBlur: Color = Color(0xFFFFFFFF) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimaryHover: Color = Color(0xFF000000) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimaryActive: Color = Color(0xFFB3B3B3) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondaryHover: Color = Color(0xFF000000) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondaryActive: Color = Color(0xFF757575) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiaryHover: Color = Color(0xFF000000) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefaultHover: Color = Color(0xFF000000) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefaultActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию - */ - public val OutlineDefaultTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimaryHover: Color = Color(0xFF080808) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondaryActive: Color = Color(0x7A080808) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiaryActive: Color = Color(0xAB080808) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClearHover: Color = Color(0x00FFFFFF) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClearActive: Color = Color(0x00FFFFFF) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccentHover: Color = Color(0xFF000000) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки - */ - public val OutlineDefaultAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки - */ - public val OutlineDefaultAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccentHover: Color = Color(0xFF000000) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки - */ - public val OutlineDefaultTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки - */ - public val OutlineDefaultPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки - */ - public val OutlineDefaultPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegativeActive: Color = Color(0xFFFF001A) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfoHover: Color = Color(0xFF2AA0EF) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfoActive: Color = Color(0xFF0E75B9) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinorHover: Color = Color(0xFF7ACAFF) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinorActive: Color = Color(0xFF29A9FF) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegativeHover: Color = Color(0xFFFF293E) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfoHover: Color = Color(0xFF118CDF) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * light outline default outlineSolidDefaultHover - */ - public val OutlineDefaultSolidDefaultHover: Color = Color(0xFF595959) - - /** - * light outline default outlineSolidDefaultActive - */ - public val OutlineDefaultSolidDefaultActive: Color = Color(0xFF303030) - - /** - * light outline default outlineAccentMainHover - */ - public val OutlineDefaultAccentMainHover: Color = Color(0xFF1FC13D) - - /** - * light outline default outlineAccentMainActive - */ - public val OutlineDefaultAccentMainActive: Color = Color(0xFF147B27) - - /** - * light outline default outlineAccentAthenaHover - */ - public val OutlineDefaultAccentAthenaHover: Color = Color(0xFF2AA0EF) - - /** - * light outline default outlineAccentAthenaActive - */ - public val OutlineDefaultAccentAthenaActive: Color = Color(0xFF0E75B9) - - /** - * light outline default outlineAccentJoyHover - */ - public val OutlineDefaultAccentJoyHover: Color = Color(0xFFC67EF6) - - /** - * light outline default outlineAccentJoyActive - */ - public val OutlineDefaultAccentJoyActive: Color = Color(0xFFA432F1) - - /** - * light outline default outlineAccentB2EHover - */ - public val OutlineDefaultAccentB2EHover: Color = Color(0xFF1FC13D) - - /** - * light outline default outlineAccentB2EActive - */ - public val OutlineDefaultAccentB2EActive: Color = Color(0xFF147B27) - - /** - * light outline default outlineAccentBrandHover - */ - public val OutlineDefaultAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * light outline default outlineAccentBrandActive - */ - public val OutlineDefaultAccentBrandActive: Color = Color(0xFF1767FD) - - /** - * light outline default outlineAccentMainMinorHover - */ - public val OutlineDefaultAccentMainMinorHover: Color = Color(0xFF47DC62) - - /** - * light outline default outlineAccentMainMinorActive - */ - public val OutlineDefaultAccentMainMinorActive: Color = Color(0xFF21B03C) - - /** - * light outline default outlineAccentAthenaMinorHover - */ - public val OutlineDefaultAccentAthenaMinorHover: Color = Color(0xFF7ACAFF) - - /** - * light outline default outlineAccentAthenaMinorActive - */ - public val OutlineDefaultAccentAthenaMinorActive: Color = Color(0xFF29A9FF) - - /** - * light outline default outlineAccentJoyMinorHover - */ - public val OutlineDefaultAccentJoyMinorHover: Color = Color(0xFFE3C2FA) - - /** - * light outline default outlineAccentJoyMinorActive - */ - public val OutlineDefaultAccentJoyMinorActive: Color = Color(0xFFC276F4) - - /** - * light outline default outlineAccentB2EMinorHover - */ - public val OutlineDefaultAccentB2EMinorHover: Color = Color(0xFF47DC62) - - /** - * light outline default outlineAccentB2EMinorActive - */ - public val OutlineDefaultAccentB2EMinorActive: Color = Color(0xFF21B03C) - - /** - * light outline default outlineAccentBrandMinorHover - */ - public val OutlineDefaultAccentBrandMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light outline default outlineAccentBrandMinorActive - */ - public val OutlineDefaultAccentBrandMinorActive: Color = Color(0xFF6599FB) - - /** - * light outline default outlineTransparentAccentMainHover - */ - public val OutlineDefaultTransparentAccentMainHover: Color = Color(0xFF1A9E32) - - /** - * light outline default outlineTransparentAccentMainActive - */ - public val OutlineDefaultTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * light outline default outlineTransparentAccentAthenaHover - */ - public val OutlineDefaultTransparentAccentAthenaHover: Color = Color(0xFF118CDF) - - /** - * light outline default outlineTransparentAccentAthenaActive - */ - public val OutlineDefaultTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * light outline default outlineTransparentAccentJoyHover - */ - public val OutlineDefaultTransparentAccentJoyHover: Color = Color(0xFFB558F3) - - /** - * light outline default outlineTransparentAccentJoyActive - */ - public val OutlineDefaultTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * light outline default outlineTransparentAccentB2EHover - */ - public val OutlineDefaultTransparentAccentB2EHover: Color = Color(0xFF1A9E32) - - /** - * light outline default outlineTransparentAccentB2EActive - */ - public val OutlineDefaultTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * light outline default outlineTransparentAccentBrandHover - */ - public val OutlineDefaultTransparentAccentBrandHover: Color = Color(0xFF3F82FD) - - /** - * light outline default outlineTransparentAccentBrandActive - */ - public val OutlineDefaultTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Основной непрозрачный цвет обводки - */ - public val OutlineDefaultSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * Вторичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidSecondary: Color = Color(0xFF949494) - - /** - * Третичный непрозрачный цвет обводки - */ - public val OutlineDefaultSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки - */ - public val OutlineDefaultTransparentPrimary: Color = Color(0x33080808) - - /** - * Вторичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentSecondary: Color = Color(0x66080808) - - /** - * Третичный прозрачный цвет обводки - */ - public val OutlineDefaultTransparentTertiary: Color = Color(0x8F080808) - - /** - * Бесцветная обводка - */ - public val OutlineDefaultClear: Color = Color(0x00FFFFFF) - - /** - * light outline default outlineSolidDefault - */ - public val OutlineDefaultSolidDefault: Color = Color(0xFF080808) - - /** - * Цвет обводки успех - */ - public val OutlineDefaultPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет обводки предупреждение - */ - public val OutlineDefaultWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет обводки ошибка - */ - public val OutlineDefaultNegative: Color = Color(0xFFFF293E) - - /** - * Цвет обводки информация - */ - public val OutlineDefaultInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет обводки успех - */ - public val OutlineDefaultPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет обводки предупреждение - */ - public val OutlineDefaultWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет обводки ошибка - */ - public val OutlineDefaultNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет обводки информация - */ - public val OutlineDefaultInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Прозрачный цвет обводки успех - */ - public val OutlineDefaultTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет обводки предупреждение - */ - public val OutlineDefaultTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет обводки информация - */ - public val OutlineDefaultTransparentInfo: Color = Color(0x33118CDF) - - /** - * light outline default outlineAccentMain - */ - public val OutlineDefaultAccentMain: Color = Color(0xFF1A9E32) - - /** - * light outline default outlineAccentAthena - */ - public val OutlineDefaultAccentAthena: Color = Color(0xFF118CDF) - - /** - * light outline default outlineAccentJoy - */ - public val OutlineDefaultAccentJoy: Color = Color(0xFFB559F3) - - /** - * light outline default outlineAccentB2E - */ - public val OutlineDefaultAccentB2E: Color = Color(0xFF1A9E32) - - /** - * light outline default outlineAccentBrand - */ - public val OutlineDefaultAccentBrand: Color = Color(0xFF3F81FD) - - /** - * light outline default outlineAccentMainMinor - */ - public val OutlineDefaultAccentMainMinor: Color = Color(0xFF28D247) - - /** - * light outline default outlineAccentAthenaMinor - */ - public val OutlineDefaultAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * light outline default outlineAccentJoyMinor - */ - public val OutlineDefaultAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * light outline default outlineAccentB2EMinor - */ - public val OutlineDefaultAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * light outline default outlineAccentBrandMinor - */ - public val OutlineDefaultAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline default outlineTransparentAccentMain - */ - public val OutlineDefaultTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * light outline default outlineTransparentAccentAthena - */ - public val OutlineDefaultTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * light outline default outlineTransparentAccentJoy - */ - public val OutlineDefaultTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * light outline default outlineTransparentAccentB2E - */ - public val OutlineDefaultTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * light outline default outlineTransparentAccentBrand - */ - public val OutlineDefaultTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimaryHover: Color = Color(0xFF787878) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimaryActive: Color = Color(0xFF4F4F4F) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondaryHover: Color = Color(0xFF000000) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondaryActive: Color = Color(0xFF404040) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiaryHover: Color = Color(0xFF000000) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefaultHover: Color = Color(0xFF000000) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefaultActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию на темном фоне - */ - public val OutlineOnDarkTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimaryActive: Color = Color(0x25FFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiaryActive: Color = Color(0x7AFFFFFF) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClearHover: Color = Color(0xFF000000) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClearActive: Color = Color(0xFFCCCCCC) - - /** - * Бесцветная обводка на темном фоне - */ - public val OutlineOnDarkClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentHover: Color = Color(0xFF000000) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccentHover: Color = Color(0xFF000000) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки на темном фоне - */ - public val OutlineOnDarkPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveHover: Color = Color(0xFF2BD44A) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveActive: Color = Color(0xFF1D9032) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningHover: Color = Color(0xFFFF8B4D) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningActive: Color = Color(0xFFFA5700) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeHover: Color = Color(0xFFFF6675) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeActive: Color = Color(0xFFFF142C) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoHover: Color = Color(0xFF3FABF3) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoActive: Color = Color(0xFF0D84D3) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinorActive: Color = Color(0xFFA84710) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinorHover: Color = Color(0xFF1483CC) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinorActive: Color = Color(0xFF116BA7) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositiveHover: Color = Color(0xFF24B23E) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositiveActive: Color = Color(0x5624B23E) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarningHover: Color = Color(0xFFFF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarningActive: Color = Color(0x56FF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegativeHover: Color = Color(0xFFFF3D51) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegativeActive: Color = Color(0x56FF3D51) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfoHover: Color = Color(0xFF199AF0) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfoActive: Color = Color(0x56199AF0) - - /** - * light outline onDark outlineSolidDefaultHover - */ - public val OutlineOnDarkSolidDefaultHover: Color = Color(0xFF000000) - - /** - * light outline onDark outlineSolidDefaultActive - */ - public val OutlineOnDarkSolidDefaultActive: Color = Color(0xFFC7C7C7) - - /** - * light outline onDark outlineAccentMain - */ - public val OutlineOnDarkAccentMain: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlineAccentMainHover - */ - public val OutlineOnDarkAccentMainHover: Color = Color(0xFF2BD44A) - - /** - * light outline onDark outlineAccentMainActive - */ - public val OutlineOnDarkAccentMainActive: Color = Color(0xFF1D9032) - - /** - * light outline onDark outlineAccentAthena - */ - public val OutlineOnDarkAccentAthena: Color = Color(0xFF199AF0) - - /** - * light outline onDark outlineAccentAthenaHover - */ - public val OutlineOnDarkAccentAthenaHover: Color = Color(0xFF3FABF3) - - /** - * light outline onDark outlineAccentAthenaActive - */ - public val OutlineOnDarkAccentAthenaActive: Color = Color(0xFF0D84D3) - - /** - * light outline onDark outlineAccentJoy - */ - public val OutlineOnDarkAccentJoy: Color = Color(0xFFC46BFF) - - /** - * light outline onDark outlineAccentJoyHover - */ - public val OutlineOnDarkAccentJoyHover: Color = Color(0xFFD494FF) - - /** - * light outline onDark outlineAccentJoyActive - */ - public val OutlineOnDarkAccentJoyActive: Color = Color(0xFFB442FF) - - /** - * light outline onDark outlineAccentB2E - */ - public val OutlineOnDarkAccentB2E: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlineAccentB2EHover - */ - public val OutlineOnDarkAccentB2EHover: Color = Color(0xFF2BD44A) - - /** - * light outline onDark outlineAccentB2EActive - */ - public val OutlineOnDarkAccentB2EActive: Color = Color(0xFF1D9032) - - /** - * light outline onDark outlineAccentBrand - */ - public val OutlineOnDarkAccentBrand: Color = Color(0xFF528EFF) - - /** - * light outline onDark outlineAccentBrandHover - */ - public val OutlineOnDarkAccentBrandHover: Color = Color(0xFF7AA9FF) - - /** - * light outline onDark outlineAccentBrandActive - */ - public val OutlineOnDarkAccentBrandActive: Color = Color(0xFF2974FF) - - /** - * light outline onDark outlineAccentMainMinor - */ - public val OutlineOnDarkAccentMainMinor: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlineAccentMainMinorHover - */ - public val OutlineOnDarkAccentMainMinorHover: Color = Color(0xFF2BD44A) - - /** - * light outline onDark outlineAccentMainMinorActive - */ - public val OutlineOnDarkAccentMainMinorActive: Color = Color(0xFF1D9032) - - /** - * light outline onDark outlineAccentAthenaMinor - */ - public val OutlineOnDarkAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * light outline onDark outlineAccentAthenaMinorHover - */ - public val OutlineOnDarkAccentAthenaMinorHover: Color = Color(0xFF1483CC) - - /** - * light outline onDark outlineAccentAthenaMinorActive - */ - public val OutlineOnDarkAccentAthenaMinorActive: Color = Color(0xFF116BA7) - - /** - * light outline onDark outlineAccentJoyMinor - */ - public val OutlineOnDarkAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * light outline onDark outlineAccentJoyMinorHover - */ - public val OutlineOnDarkAccentJoyMinorHover: Color = Color(0xFF000000) - - /** - * light outline onDark outlineAccentJoyMinorActive - */ - public val OutlineOnDarkAccentJoyMinorActive: Color = Color(0xFF5B2281) - - /** - * light outline onDark outlineAccentB2EMinor - */ - public val OutlineOnDarkAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * light outline onDark outlineAccentB2EMinorHover - */ - public val OutlineOnDarkAccentB2EMinorHover: Color = Color(0xFF11A72C) - - /** - * light outline onDark outlineAccentB2EMinorActive - */ - public val OutlineOnDarkAccentB2EMinorActive: Color = Color(0xFF0D8222) - - /** - * light outline onDark outlineAccentBrandMinor - */ - public val OutlineOnDarkAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * light outline onDark outlineAccentBrandMinorHover - */ - public val OutlineOnDarkAccentBrandMinorHover: Color = Color(0xFF000000) - - /** - * light outline onDark outlineAccentBrandMinorActive - */ - public val OutlineOnDarkAccentBrandMinorActive: Color = Color(0xFF113B88) - - /** - * light outline onDark outlineTransparentAccentMain - */ - public val OutlineOnDarkTransparentAccentMain: Color = Color(0x4724B23E) - - /** - * light outline onDark outlineTransparentAccentMainHover - */ - public val OutlineOnDarkTransparentAccentMainHover: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlineTransparentAccentMainActive - */ - public val OutlineOnDarkTransparentAccentMainActive: Color = Color(0x5624B23E) - - /** - * light outline onDark outlineTransparentAccentAthena - */ - public val OutlineOnDarkTransparentAccentAthena: Color = Color(0x47199AF0) - - /** - * light outline onDark outlineTransparentAccentAthenaHover - */ - public val OutlineOnDarkTransparentAccentAthenaHover: Color = Color(0xFF199AF0) - - /** - * light outline onDark outlineTransparentAccentAthenaActive - */ - public val OutlineOnDarkTransparentAccentAthenaActive: Color = Color(0x56199AF0) - - /** - * light outline onDark outlineTransparentAccentJoy - */ - public val OutlineOnDarkTransparentAccentJoy: Color = Color(0x47C46BFF) - - /** - * light outline onDark outlineTransparentAccentJoyHover - */ - public val OutlineOnDarkTransparentAccentJoyHover: Color = Color(0xFFC46BFF) - - /** - * light outline onDark outlineTransparentAccentJoyActive - */ - public val OutlineOnDarkTransparentAccentJoyActive: Color = Color(0x56C46BFF) - - /** - * light outline onDark outlineTransparentAccentB2E - */ - public val OutlineOnDarkTransparentAccentB2E: Color = Color(0x4724B23E) - - /** - * light outline onDark outlineTransparentAccentB2EHover - */ - public val OutlineOnDarkTransparentAccentB2EHover: Color = Color(0xFF24B23E) - - /** - * light outline onDark outlineTransparentAccentB2EActive - */ - public val OutlineOnDarkTransparentAccentB2EActive: Color = Color(0x5624B23E) - - /** - * light outline onDark outlineTransparentAccentBrand - */ - public val OutlineOnDarkTransparentAccentBrand: Color = Color(0x47528EFF) - - /** - * light outline onDark outlineTransparentAccentBrandHover - */ - public val OutlineOnDarkTransparentAccentBrandHover: Color = Color(0xFF528EFF) - - /** - * light outline onDark outlineTransparentAccentBrandActive - */ - public val OutlineOnDarkTransparentAccentBrandActive: Color = Color(0x56528EFF) - - /** - * Основной непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidPrimary: Color = Color(0xFF262626) - - /** - * Вторичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * Третичный непрозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * Вторичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * Третичный прозрачный цвет обводки на темном фоне - */ - public val OutlineOnDarkTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * light outline onDark outlineSolidDefault - */ - public val OutlineOnDarkSolidDefault: Color = Color(0xFFF9F9F9) - - /** - * Цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositive: Color = Color(0xFF24B23E) - - /** - * Цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarning: Color = Color(0xFFFF7024) - - /** - * Цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegative: Color = Color(0xFFFF3D51) - - /** - * Цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfo: Color = Color(0xFF199AF0) - - /** - * Минорный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkPositiveMinor: Color = Color(0xFF095C18) - - /** - * Минорный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkWarningMinor: Color = Color(0xFF85380C) - - /** - * Минорный цвет обводки ошибка на темном фоне - */ - public val OutlineOnDarkNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Минорный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkInfoMinor: Color = Color(0xFF0D5382) - - /** - * Прозрачный цвет обводки успех на темном фоне - */ - public val OutlineOnDarkTransparentPositive: Color = Color(0x4724B23E) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentWarning: Color = Color(0x47FF7024) - - /** - * Прозрачный цвет обводки предупреждение на темном фоне - */ - public val OutlineOnDarkTransparentNegative: Color = Color(0x47FF3D51) - - /** - * Прозрачный цвет обводки информация на темном фоне - */ - public val OutlineOnDarkTransparentInfo: Color = Color(0x47199AF0) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimaryHover: Color = Color(0xFF000000) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimaryActive: Color = Color(0xFFB3B3B3) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondaryHover: Color = Color(0xFF000000) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondaryActive: Color = Color(0xFF757575) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiaryHover: Color = Color(0xFF000000) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefaultHover: Color = Color(0xFF000000) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefaultActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный цвет обводки по умолчанию на светлом фоне - */ - public val OutlineOnLightTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimaryHover: Color = Color(0xFF080808) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimaryActive: Color = Color(0x3D080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondaryHover: Color = Color(0xFF080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondaryActive: Color = Color(0x7A080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiaryHover: Color = Color(0xFF080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiaryActive: Color = Color(0xAB080808) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClearHover: Color = Color(0xFF000000) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClearActive: Color = Color(0xFFCCCCCC) - - /** - * Бесцветная обводка на светлом фоне - */ - public val OutlineOnLightClear: Color = Color(0xFFFFFFFF) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentHover: Color = Color(0xFF000000) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccent: Color = Color(0xFFFFFFFF) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinorHover: Color = Color(0xFF000000) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Акцентный минорный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccentHover: Color = Color(0xFF000000) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный акцентный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoHover: Color = Color(0xFF000000) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoActive: Color = Color(0xFFCCCCCC) - - /** - * Промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromo: Color = Color(0xFFFFFFFF) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinorHover: Color = Color(0xFF000000) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Минорный промо цвет обводки на светлом фоне - */ - public val OutlineOnLightPromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveHover: Color = Color(0xFF1FC13D) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveActive: Color = Color(0xFF147B27) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningHover: Color = Color(0xFFFB782D) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningActive: Color = Color(0xFFD25004) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeHover: Color = Color(0xFFFF5263) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeActive: Color = Color(0xFFFF001A) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoHover: Color = Color(0xFF2AA0EF) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoActive: Color = Color(0xFF0E75B9) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinorHover: Color = Color(0xFF47DC62) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinorActive: Color = Color(0xFF21B03C) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinorHover: Color = Color(0xFFFDB790) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinorActive: Color = Color(0xFFFC8240) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinorHover: Color = Color(0xFFFFB8BF) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinorActive: Color = Color(0xFFFF6675) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinorHover: Color = Color(0xFF7ACAFF) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinorActive: Color = Color(0xFF29A9FF) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositiveHover: Color = Color(0xFF1A9E32) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositiveActive: Color = Color(0x3D1A9E32) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarningHover: Color = Color(0xFFFA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarningActive: Color = Color(0x3DFA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegativeHover: Color = Color(0xFFFF293E) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegativeActive: Color = Color(0x3DFF293E) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfoHover: Color = Color(0xFF118CDF) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfoActive: Color = Color(0x3D118CDF) - - /** - * light outline onLight outlineSolidDefaultHover - */ - public val OutlineOnLightSolidDefaultHover: Color = Color(0xFF595959) - - /** - * light outline onLight outlineSolidDefaultActive - */ - public val OutlineOnLightSolidDefaultActive: Color = Color(0xFF303030) - - /** - * light outline onLight outlineAccentMain - */ - public val OutlineOnLightAccentMain: Color = Color(0xFF1A9E32) - - /** - * light outline onLight outlineAccentMainHover - */ - public val OutlineOnLightAccentMainHover: Color = Color(0xFF1FC13D) - - /** - * light outline onLight outlineAccentMainActive - */ - public val OutlineOnLightAccentMainActive: Color = Color(0xFF147B27) - - /** - * light outline onLight outlineAccentAthena - */ - public val OutlineOnLightAccentAthena: Color = Color(0xFF118CDF) - - /** - * light outline onLight outlineAccentAthenaHover - */ - public val OutlineOnLightAccentAthenaHover: Color = Color(0xFF2AA0EF) - - /** - * light outline onLight outlineAccentAthenaActive - */ - public val OutlineOnLightAccentAthenaActive: Color = Color(0xFF0E75B9) - - /** - * light outline onLight outlineAccentJoy - */ - public val OutlineOnLightAccentJoy: Color = Color(0xFFB559F3) - - /** - * light outline onLight outlineAccentJoyHover - */ - public val OutlineOnLightAccentJoyHover: Color = Color(0xFFC67EF6) - - /** - * light outline onLight outlineAccentJoyActive - */ - public val OutlineOnLightAccentJoyActive: Color = Color(0xFFA432F1) - - /** - * light outline onLight outlineAccentB2E - */ - public val OutlineOnLightAccentB2E: Color = Color(0xFF1A9E32) - - /** - * light outline onLight outlineAccentB2EHover - */ - public val OutlineOnLightAccentB2EHover: Color = Color(0xFF1FC13D) - - /** - * light outline onLight outlineAccentB2EActive - */ - public val OutlineOnLightAccentB2EActive: Color = Color(0xFF147B27) - - /** - * light outline onLight outlineAccentBrand - */ - public val OutlineOnLightAccentBrand: Color = Color(0xFF3F81FD) - - /** - * light outline onLight outlineAccentBrandHover - */ - public val OutlineOnLightAccentBrandHover: Color = Color(0xFF689CFD) - - /** - * light outline onLight outlineAccentBrandActive - */ - public val OutlineOnLightAccentBrandActive: Color = Color(0xFF1767FD) - - /** - * light outline onLight outlineAccentMainMinor - */ - public val OutlineOnLightAccentMainMinor: Color = Color(0xFF28D247) - - /** - * light outline onLight outlineAccentMainMinorHover - */ - public val OutlineOnLightAccentMainMinorHover: Color = Color(0xFF47DC62) - - /** - * light outline onLight outlineAccentMainMinorActive - */ - public val OutlineOnLightAccentMainMinorActive: Color = Color(0xFF21B03C) - - /** - * light outline onLight outlineAccentAthenaMinor - */ - public val OutlineOnLightAccentAthenaMinor: Color = Color(0xFF52BAFF) - - /** - * light outline onLight outlineAccentAthenaMinorHover - */ - public val OutlineOnLightAccentAthenaMinorHover: Color = Color(0xFF7ACAFF) - - /** - * light outline onLight outlineAccentAthenaMinorActive - */ - public val OutlineOnLightAccentAthenaMinorActive: Color = Color(0xFF29A9FF) - - /** - * light outline onLight outlineAccentJoyMinor - */ - public val OutlineOnLightAccentJoyMinor: Color = Color(0xFFD39CF7) - - /** - * light outline onLight outlineAccentJoyMinorHover - */ - public val OutlineOnLightAccentJoyMinorHover: Color = Color(0xFFE3C2FA) - - /** - * light outline onLight outlineAccentJoyMinorActive - */ - public val OutlineOnLightAccentJoyMinorActive: Color = Color(0xFFC276F4) - - /** - * light outline onLight outlineAccentB2EMinor - */ - public val OutlineOnLightAccentB2EMinor: Color = Color(0xFF28D247) - - /** - * light outline onLight outlineAccentB2EMinorHover - */ - public val OutlineOnLightAccentB2EMinorHover: Color = Color(0xFF47DC62) - - /** - * light outline onLight outlineAccentB2EMinorActive - */ - public val OutlineOnLightAccentB2EMinorActive: Color = Color(0xFF21B03C) - - /** - * light outline onLight outlineAccentBrandMinor - */ - public val OutlineOnLightAccentBrandMinor: Color = Color(0xFF8BB2FC) - - /** - * light outline onLight outlineAccentBrandMinorHover - */ - public val OutlineOnLightAccentBrandMinorHover: Color = Color(0xFFB4CEFD) - - /** - * light outline onLight outlineAccentBrandMinorActive - */ - public val OutlineOnLightAccentBrandMinorActive: Color = Color(0xFF6599FB) - - /** - * light outline onLight outlineTransparentAccentMain - */ - public val OutlineOnLightTransparentAccentMain: Color = Color(0x331A9E32) - - /** - * light outline onLight outlineTransparentAccentMainHover - */ - public val OutlineOnLightTransparentAccentMainHover: Color = Color(0xFF1A9E32) - - /** - * light outline onLight outlineTransparentAccentMainActive - */ - public val OutlineOnLightTransparentAccentMainActive: Color = Color(0x3D1A9E32) - - /** - * light outline onLight outlineTransparentAccentAthena - */ - public val OutlineOnLightTransparentAccentAthena: Color = Color(0x33118CDF) - - /** - * light outline onLight outlineTransparentAccentAthenaHover - */ - public val OutlineOnLightTransparentAccentAthenaHover: Color = Color(0xFF118CDF) - - /** - * light outline onLight outlineTransparentAccentAthenaActive - */ - public val OutlineOnLightTransparentAccentAthenaActive: Color = Color(0x3D118CDF) - - /** - * light outline onLight outlineTransparentAccentJoy - */ - public val OutlineOnLightTransparentAccentJoy: Color = Color(0x33B559F3) - - /** - * light outline onLight outlineTransparentAccentJoyHover - */ - public val OutlineOnLightTransparentAccentJoyHover: Color = Color(0xFFB558F3) - - /** - * light outline onLight outlineTransparentAccentJoyActive - */ - public val OutlineOnLightTransparentAccentJoyActive: Color = Color(0x3DB558F3) - - /** - * light outline onLight outlineTransparentAccentB2E - */ - public val OutlineOnLightTransparentAccentB2E: Color = Color(0x331A9E32) - - /** - * light outline onLight outlineTransparentAccentB2EHover - */ - public val OutlineOnLightTransparentAccentB2EHover: Color = Color(0xFF1A9E32) - - /** - * light outline onLight outlineTransparentAccentB2EActive - */ - public val OutlineOnLightTransparentAccentB2EActive: Color = Color(0x3D1A9E32) - - /** - * light outline onLight outlineTransparentAccentBrand - */ - public val OutlineOnLightTransparentAccentBrand: Color = Color(0x333F81FD) - - /** - * light outline onLight outlineTransparentAccentBrandHover - */ - public val OutlineOnLightTransparentAccentBrandHover: Color = Color(0xFF3F82FD) - - /** - * light outline onLight outlineTransparentAccentBrandActive - */ - public val OutlineOnLightTransparentAccentBrandActive: Color = Color(0x3D3F82FD) - - /** - * Основной непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidPrimary: Color = Color(0xFFDDDDDD) - - /** - * Вторичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidSecondary: Color = Color(0xFF949494) - - /** - * Третичный непрозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightSolidTertiary: Color = Color(0xFF707070) - - /** - * Основной прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentPrimary: Color = Color(0x33080808) - - /** - * Вторичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentSecondary: Color = Color(0x66080808) - - /** - * Третичный прозрачный цвет обводки на светлом фоне - */ - public val OutlineOnLightTransparentTertiary: Color = Color(0x8F080808) - - /** - * light outline onLight outlineSolidDefault - */ - public val OutlineOnLightSolidDefault: Color = Color(0xFF080808) - - /** - * Цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositive: Color = Color(0xFF1A9E32) - - /** - * Цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarning: Color = Color(0xFFFA5F05) - - /** - * Цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegative: Color = Color(0xFFFF293E) - - /** - * Цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfo: Color = Color(0xFF118CDF) - - /** - * Минорный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightPositiveMinor: Color = Color(0xFF28D247) - - /** - * Минорный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightWarningMinor: Color = Color(0xFFFD9C68) - - /** - * Минорный цвет обводки ошибка на светлом фоне - */ - public val OutlineOnLightNegativeMinor: Color = Color(0xFFFF8F9A) - - /** - * Минорный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightInfoMinor: Color = Color(0xFF52BAFF) - - /** - * Прозрачный цвет обводки успех на светлом фоне - */ - public val OutlineOnLightTransparentPositive: Color = Color(0x331A9E32) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentWarning: Color = Color(0x33FA5F05) - - /** - * Прозрачный цвет обводки предупреждение на светлом фоне - */ - public val OutlineOnLightTransparentNegative: Color = Color(0x33FF293E) - - /** - * Прозрачный цвет обводки информация на светлом фоне - */ - public val OutlineOnLightTransparentInfo: Color = Color(0x33118CDF) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimaryHover: Color = Color(0xFF787878) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimaryActive: Color = Color(0xFF4F4F4F) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondaryHover: Color = Color(0xFF000000) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondaryActive: Color = Color(0xFF404040) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiaryHover: Color = Color(0xFF000000) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiaryActive: Color = Color(0xFF595959) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefaultHover: Color = Color(0xFF000000) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefaultActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный прозрачный цвет обводки по умолчанию - */ - public val OutlineInverseTransparentDefault: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimaryActive: Color = Color(0x25FFFFFF) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondaryActive: Color = Color(0x3DFFFFFF) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiaryHover: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiaryActive: Color = Color(0x7AFFFFFF) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClearHover: Color = Color(0xFF000000) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClearActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированная бесцветная обводка - */ - public val OutlineInverseClear: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccentHover: Color = Color(0xFF000000) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный цвет обводки - */ - public val OutlineInverseAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinorHover: Color = Color(0xFF000000) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный акцентный минорный непрозрачный цвет обводки - */ - public val OutlineInverseAccentMinor: Color = Color(0xFFFFFFFF) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccentHover: Color = Color(0xFF000000) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccentActive: Color = Color(0xFFCCCCCC) - - /** - * Прозрачный инвертированный акцентный цвет обводки - */ - public val OutlineInverseTransparentAccent: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromoHover: Color = Color(0xFF000000) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromoActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный промо цвет обводки - */ - public val OutlineInversePromo: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinorHover: Color = Color(0xFF000000) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinorActive: Color = Color(0xFFCCCCCC) - - /** - * Инвертированный минорный промо цвет обводки - */ - public val OutlineInversePromoMinor: Color = Color(0xFFFFFFFF) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositiveHover: Color = Color(0xFF2BD44A) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositiveActive: Color = Color(0xFF1D9032) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarningHover: Color = Color(0xFFFF8B4D) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarningActive: Color = Color(0xFFFA5700) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegativeHover: Color = Color(0xFFFF6675) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegativeActive: Color = Color(0xFFFF142C) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfoHover: Color = Color(0xFF3FABF3) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfoActive: Color = Color(0xFF0D84D3) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinorHover: Color = Color(0xFF11A72C) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinorActive: Color = Color(0xFF0D8222) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinorHover: Color = Color(0xFFCD5713) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinorActive: Color = Color(0xFFA84710) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinorHover: Color = Color(0xFFC2192A) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinorActive: Color = Color(0xFF7A101A) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinorHover: Color = Color(0xFF1483CC) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinorActive: Color = Color(0xFF116BA7) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositiveHover: Color = Color(0xFF24B23E) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositiveActive: Color = Color(0x5624B23E) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarningHover: Color = Color(0xFFFF7024) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarningActive: Color = Color(0x56FF7024) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegativeHover: Color = Color(0xFFFF3D51) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegativeActive: Color = Color(0x56FF3D51) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfoHover: Color = Color(0xFF199AF0) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfoActive: Color = Color(0x56199AF0) - - /** - * light outline inverse outlineAccentMainHover - */ - public val OutlineInverseAccentMainHover: Color = Color(0xFF2BD44A) - - /** - * light outline inverse outlineAccentMainActive - */ - public val OutlineInverseAccentMainActive: Color = Color(0xFF1D9032) - - /** - * light outline inverse outlineAccentAthenaHover - */ - public val OutlineInverseAccentAthenaHover: Color = Color(0xFF3FABF3) - - /** - * light outline inverse outlineAccentAthenaActive - */ - public val OutlineInverseAccentAthenaActive: Color = Color(0xFF0D84D3) - - /** - * light outline inverse outlineAccentJoyHover - */ - public val OutlineInverseAccentJoyHover: Color = Color(0xFFD494FF) - - /** - * light outline inverse outlineAccentJoyActive - */ - public val OutlineInverseAccentJoyActive: Color = Color(0xFFB442FF) - - /** - * light outline inverse outlineAccentB2EHover - */ - public val OutlineInverseAccentB2EHover: Color = Color(0xFF2BD44A) - - /** - * light outline inverse outlineAccentB2EActive - */ - public val OutlineInverseAccentB2EActive: Color = Color(0xFF1D9032) - - /** - * light outline inverse outlineAccentBrandHover - */ - public val OutlineInverseAccentBrandHover: Color = Color(0xFF3FABF3) - - /** - * light outline inverse outlineAccentBrandActive - */ - public val OutlineInverseAccentBrandActive: Color = Color(0xFF0D84D3) - - /** - * light outline inverse outlineAccentMainMinorHover - */ - public val OutlineInverseAccentMainMinorHover: Color = Color(0xFF11A72C) - - /** - * light outline inverse outlineAccentMainMinorActive - */ - public val OutlineInverseAccentMainMinorActive: Color = Color(0xFF0D8222) - - /** - * light outline inverse outlineAccentAthenaMinorHover - */ - public val OutlineInverseAccentAthenaMinorHover: Color = Color(0xFF1483CC) - - /** - * light outline inverse outlineAccentAthenaMinorActive - */ - public val OutlineInverseAccentAthenaMinorActive: Color = Color(0xFF116BA7) - - /** - * light outline inverse outlineAccentJoyMinorHover - */ - public val OutlineInverseAccentJoyMinorHover: Color = Color(0xFF000000) - - /** - * light outline inverse outlineAccentJoyMinorActive - */ - public val OutlineInverseAccentJoyMinorActive: Color = Color(0xFF5B2281) - - /** - * light outline inverse outlineAccentB2EMinorHover - */ - public val OutlineInverseAccentB2EMinorHover: Color = Color(0xFF11A72C) - - /** - * light outline inverse outlineAccentB2EMinorActive - */ - public val OutlineInverseAccentB2EMinorActive: Color = Color(0xFF0D8222) - - /** - * light outline inverse outlineAccentBrandMinorHover - */ - public val OutlineInverseAccentBrandMinorHover: Color = Color(0xFF000000) - - /** - * light outline inverse outlineAccentBrandMinorActive - */ - public val OutlineInverseAccentBrandMinorActive: Color = Color(0xFF113B88) - - /** - * light outline inverse outlineTransparentAccentMainHover - */ - public val OutlineInverseTransparentAccentMainHover: Color = Color(0xFF24B23E) - - /** - * light outline inverse outlineTransparentAccentMainActive - */ - public val OutlineInverseTransparentAccentMainActive: Color = Color(0x5624B23E) - - /** - * light outline inverse outlineTransparentAccentAthenaHover - */ - public val OutlineInverseTransparentAccentAthenaHover: Color = Color(0xFF199AF0) - - /** - * light outline inverse outlineTransparentAccentAthenaActive - */ - public val OutlineInverseTransparentAccentAthenaActive: Color = Color(0x56199AF0) - - /** - * light outline inverse outlineTransparentAccentJoyHover - */ - public val OutlineInverseTransparentAccentJoyHover: Color = Color(0xFFC46BFF) - - /** - * light outline inverse outlineTransparentAccentJoyActive - */ - public val OutlineInverseTransparentAccentJoyActive: Color = Color(0x56C46BFF) - - /** - * light outline inverse outlineTransparentAccentB2EHover - */ - public val OutlineInverseTransparentAccentB2EHover: Color = Color(0xFF24B23E) - - /** - * light outline inverse outlineTransparentAccentB2EActive - */ - public val OutlineInverseTransparentAccentB2EActive: Color = Color(0x5624B23E) - - /** - * light outline inverse outlineTransparentAccentBrandHover - */ - public val OutlineInverseTransparentAccentBrandHover: Color = Color(0xFF528EFF) - - /** - * light outline inverse outlineTransparentAccentBrandActive - */ - public val OutlineInverseTransparentAccentBrandActive: Color = Color(0x56528EFF) - - /** - * Инвертированный основной непрозрачный цвет обводки - */ - public val OutlineInverseSolidPrimary: Color = Color(0xFF262626) - - /** - * Инвертированный вторичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidSecondary: Color = Color(0xFF4E4E4E) - - /** - * Инвертированный третичный непрозрачный цвет обводки - */ - public val OutlineInverseSolidTertiary: Color = Color(0xFF707070) - - /** - * Инвертированный основной прозрачный цвет обводки - */ - public val OutlineInverseTransparentPrimary: Color = Color(0x1FFFFFFF) - - /** - * Инвертированный вторичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentSecondary: Color = Color(0x33FFFFFF) - - /** - * Инвертированный третичный прозрачный цвет обводки - */ - public val OutlineInverseTransparentTertiary: Color = Color(0x66FFFFFF) - - /** - * Инвертированный цвет обводки успех - */ - public val OutlineInversePositive: Color = Color(0xFF24B23E) - - /** - * Инвертированный цвет обводки предупреждение - */ - public val OutlineInverseWarning: Color = Color(0xFFFF7024) - - /** - * Инвертированный цвет обводки ошибка - */ - public val OutlineInverseNegative: Color = Color(0xFFFF3D51) - - /** - * Инвертированный цвет обводки информация - */ - public val OutlineInverseInfo: Color = Color(0xFF199AF0) - - /** - * Инвертированный минорный цвет обводки успех - */ - public val OutlineInversePositiveMinor: Color = Color(0xFF095C18) - - /** - * Инвертированный минорный цвет обводки предупреждение - */ - public val OutlineInverseWarningMinor: Color = Color(0xFF85380C) - - /** - * Инвертированный минорный цвет обводки ошибка - */ - public val OutlineInverseNegativeMinor: Color = Color(0xFF9C1422) - - /** - * Инвертированный минорный цвет обводки информация - */ - public val OutlineInverseInfoMinor: Color = Color(0xFF0D5382) - - /** - * Прозрачный инвертированный цвет обводки успех - */ - public val OutlineInverseTransparentPositive: Color = Color(0x4724B23E) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentWarning: Color = Color(0x47FF7024) - - /** - * Прозрачный инвертированный цвет обводки предупреждение - */ - public val OutlineInverseTransparentNegative: Color = Color(0x47FF3D51) - - /** - * Прозрачный инвертированный цвет обводки информация - */ - public val OutlineInverseTransparentInfo: Color = Color(0x47199AF0) - - /** - * light outline inverse outlineAccentMain - */ - public val OutlineInverseAccentMain: Color = Color(0xFF24B23E) - - /** - * light outline inverse outlineAccentAthena - */ - public val OutlineInverseAccentAthena: Color = Color(0xFF199AF0) - - /** - * light outline inverse outlineAccentJoy - */ - public val OutlineInverseAccentJoy: Color = Color(0xFFC46BFF) - - /** - * light outline inverse outlineAccentB2E - */ - public val OutlineInverseAccentB2E: Color = Color(0xFF24B23E) - - /** - * light outline inverse outlineAccentBrand - */ - public val OutlineInverseAccentBrand: Color = Color(0xFF199AF0) - - /** - * light outline inverse outlineAccentMainMinor - */ - public val OutlineInverseAccentMainMinor: Color = Color(0xFF095C18) - - /** - * light outline inverse outlineAccentAthenaMinor - */ - public val OutlineInverseAccentAthenaMinor: Color = Color(0xFF0D5382) - - /** - * light outline inverse outlineAccentJoyMinor - */ - public val OutlineInverseAccentJoyMinor: Color = Color(0xFF722BA1) - - /** - * light outline inverse outlineAccentB2EMinor - */ - public val OutlineInverseAccentB2EMinor: Color = Color(0xFF095C18) - - /** - * light outline inverse outlineAccentBrandMinor - */ - public val OutlineInverseAccentBrandMinor: Color = Color(0xFF1549AB) - - /** - * light outline inverse outlineTransparentAccentMain - */ - public val OutlineInverseTransparentAccentMain: Color = Color(0x4724B23E) - - /** - * light outline inverse outlineTransparentAccentAthena - */ - public val OutlineInverseTransparentAccentAthena: Color = Color(0x47199AF0) - - /** - * light outline inverse outlineTransparentAccentJoy - */ - public val OutlineInverseTransparentAccentJoy: Color = Color(0x47C46BFF) - - /** - * light outline inverse outlineTransparentAccentB2E - */ - public val OutlineInverseTransparentAccentB2E: Color = Color(0x4724B23E) - - /** - * light outline inverse outlineTransparentAccentBrand - */ - public val OutlineInverseTransparentAccentBrand: Color = Color(0x47528EFF) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных - */ - public val DataDefaultYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных - */ - public val DataDefaultYellowMinorActive: Color = Color(0xFFFFCC66) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных - */ - public val DataDefaultYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinor: Color = Color(0xFFA16B00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Минорный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowMinorActive: Color = Color(0xFF8F5F00) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных на темном фоне - */ - public val DataOnDarkYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellow: Color = Color(0xFFF3A912) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowHover: Color = Color(0xFFF5B638) - - /** - * Желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowActive: Color = Color(0xFFE49C0C) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinor: Color = Color(0xFFFFD37A) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorHover: Color = Color(0xFFFFDA8F) - - /** - * Минорный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowMinorActive: Color = Color(0xFFFFCC66) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Прозрачный желтый цвет для данных на светлом фоне - */ - public val DataOnLightYellowTransparentActive: Color = Color(0x99F3A812) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellow: Color = Color(0xFFF3A912) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowHover: Color = Color(0xFFF5B638) - - /** - * Инвертированный желтый цвет для данных - */ - public val DataInverseYellowActive: Color = Color(0xFFE49C0C) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinor: Color = Color(0xFFA16B00) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorHover: Color = Color(0xFFB87A00) - - /** - * Инвертированный минорный желтый цвет для данных - */ - public val DataInverseYellowMinorActive: Color = Color(0xFF8F5F00) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparent: Color = Color(0x8EF3A912) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentHover: Color = Color(0x7AF3A812) - - /** - * Инвертированный прозрачный желтый цвет для данных - */ - public val DataInverseYellowTransparentActive: Color = Color(0x99F3A812) -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/FontTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/FontTokens.kt deleted file mode 100644 index 18d1e168fc..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/FontTokens.kt +++ /dev/null @@ -1,200 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress("ObjectPropertyNaming") - -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.text.font.Font -import androidx.compose.ui.text.font.FontFamily -import androidx.compose.ui.text.font.FontStyle -import androidx.compose.ui.text.font.FontWeight -import com.sdds.stylessalute.compose.R -import kotlin.Suppress - -/** - * Токены шрифтов - */ -public object FontTokens { - /** - * fontFamily display - */ - public val display: FontFamily = FontFamily( - Font( - R.font.s_b_sans_display_light, - FontWeight(300), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_thin, - FontWeight(100), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_bold, - FontWeight(700), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_regular, - FontWeight(400), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_semibold, - FontWeight(600), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_medium, - FontWeight(500), - FontStyle.Normal, - ), - ) - - /** - * fontFamily header - */ - public val `header`: FontFamily = FontFamily( - Font( - R.font.s_b_sans_display_light, - FontWeight(300), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_thin, - FontWeight(100), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_bold, - FontWeight(700), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_regular, - FontWeight(400), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_semibold, - FontWeight(600), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_display_medium, - FontWeight(500), - FontStyle.Normal, - ), - ) - - /** - * fontFamily text - */ - public val text: FontFamily = FontFamily( - Font( - R.font.s_b_sans_text_light, - FontWeight(300), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_italic, - FontWeight(400), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_semibold_italic, - FontWeight(600), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_thin, - FontWeight(100), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_regular, - FontWeight(400), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_semibold, - FontWeight(600), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_light_italic, - FontWeight(300), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_bold, - FontWeight(700), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_bold_italic, - FontWeight(700), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_medium, - FontWeight(500), - FontStyle.Normal, - ), - ) - - /** - * fontFamily body - */ - public val body: FontFamily = FontFamily( - Font( - R.font.s_b_sans_text_light, - FontWeight(300), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_italic, - FontWeight(400), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_semibold_italic, - FontWeight(600), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_thin, - FontWeight(100), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_regular, - FontWeight(400), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_semibold, - FontWeight(600), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_light_italic, - FontWeight(300), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_bold, - FontWeight(700), - FontStyle.Normal, - ), - Font( - R.font.s_b_sans_text_bold_italic, - FontWeight(700), - FontStyle.Italic, - ), - Font( - R.font.s_b_sans_text_medium, - FontWeight(500), - FontStyle.Normal, - ), - ) -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/GradientTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/GradientTokens.kt deleted file mode 100644 index 2a5df1d4c0..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/GradientTokens.kt +++ /dev/null @@ -1,12377 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.graphics.Color -import kotlin.Float -import kotlin.FloatArray -import kotlin.collections.List - -/** - * Токены градиента для темной темы - */ -public object DarkGradientTokens { - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF52BAFF), Color(0xFFADADFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFD9C68), Color(0xFFF391E2)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF528EFF), Color(0xFF04C6C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент - */ - public object TextDefaultGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент - */ - public object TextDefaultGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент - */ - public object TextDefaultGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF52BAFF), Color(0xFFADADFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFD9C68), Color(0xFFF391E2)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF528EFF), Color(0xFF04C6C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF118CDF), Color(0xFF7A7AFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFCA349), Color(0xFFFF52C5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientMainHover - */ - public object TextInverseGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientMainActive - */ - public object TextInverseGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientAthenaHover - */ - public object TextInverseGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientAthenaActive - */ - public object TextInverseGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientJoyHover - */ - public object TextInverseGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientJoyActive - */ - public object TextInverseGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientBrandHover - */ - public object TextInverseGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientBrandActive - */ - public object TextInverseGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientB2EHover - */ - public object TextInverseGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientB2EActive - */ - public object TextInverseGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientMain - */ - public object TextInverseGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 88.0f - } - - /** - * dark text inverse textGradientAthena - */ - public object TextInverseGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF118CDF), Color(0xFF7A7AFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientJoy - */ - public object TextInverseGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFCA349), Color(0xFFFF52C5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientB2E - */ - public object TextInverseGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark text inverse textGradientBrand - */ - public object TextInverseGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.06f, 0.94f) - - /** - * Угол градиента - */ - public const val angle: Float = 94.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeleton { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x00FFFFFF), - Color(0x03FFFFFF), - Color(0x0DFFFFFF), - Color(0x0FFFFFFF), - Color(0x0DFFFFFF), - Color(0x03FFFFFF), - Color(0x00FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, - 0.17f, - 0.4f, - 0.51f, - 0.62f, - 0.83f, - 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface default surfaceGradientMainHover - */ - public object SurfaceDefaultGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface default surfaceGradientMainActive - */ - public object SurfaceDefaultGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface default surfaceGradientMain - */ - public object SurfaceDefaultGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onDark surfaceGradientMainHover - */ - public object SurfaceOnDarkGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onDark surfaceGradientMainActive - */ - public object SurfaceOnDarkGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onDark surfaceGradientMain - */ - public object SurfaceOnDarkGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onLight surfaceGradientMainHover - */ - public object SurfaceOnLightGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onLight surfaceGradientMainActive - */ - public object SurfaceOnLightGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface onLight surfaceGradientMain - */ - public object SurfaceOnLightGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface inverse surfaceGradientMainHover - */ - public object SurfaceInverseGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface inverse surfaceGradientMainActive - */ - public object SurfaceInverseGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * dark surface inverse surfaceGradientMain - */ - public object SurfaceInverseGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 88.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для модальной шторки - */ - public object BackgroundDefaultModalSheet { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x1AFFFFFF), Color(0x0001B6FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Фон Афины на мобиле - */ - public object BackgroundDefaultMobileAssistantAthena { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0xFF143787)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x706E05C1), Color(0x1A351395)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x69193F98)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.03f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x4D270F6B), Color(0x00080808)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Фон Джой на мобиле - */ - public object BackgroundDefaultMobileAssistantJoy { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x3DFF9C65)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x573D1395), Color(0x1A131895)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x26FFD7B3)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.03f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x336B0F57), Color(0x00080808)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Фоновый градиент B2E-ассистента на мобиле - */ - public object BackgroundDefaultMobileAssistantB2E { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x99147446)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.84f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x3D0085FF), Color(0x080047FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x4D074721)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF061621), Color(0x00080808)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Фоновый градиент бренда на мобиле - */ - public object BackgroundDefaultMobileAssistantBrand { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0xFF184BAB)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x701645A4), Color(0x1A0B272D)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x691645A4)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.03f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x4D1645A4), Color(0x00080808)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 269.47f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Фон ассистента на мобиле - */ - public object BackgroundDefaultMobileAssistantMain { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x99147446)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.84f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x3D0085FF), Color(0x080047FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00080808), Color(0x4D074721)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF061621), Color(0x00080808)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFF080808) - } - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } -} - -/** - * Токены градиента для светлой темы - */ -public object LightGradientTokens { - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом - */ - public object TextDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом - */ - public object TextDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет с градиентом - */ - public object TextDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет с градиентом - */ - public object TextDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины - */ - public object TextDefaultGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF118CDF), Color(0xFF7A7AFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой - */ - public object TextDefaultGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFCA349), Color(0xFFFF52C5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда - */ - public object TextDefaultGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента - */ - public object TextDefaultGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент - */ - public object TextDefaultGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент - */ - public object TextDefaultGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент - */ - public object TextDefaultGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на темном фоне - */ - public object TextOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на темном фоне с градиентом - */ - public object TextOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на темном фоне - */ - public object TextOnDarkGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF52BAFF), Color(0xFFADADFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на темном фоне - */ - public object TextOnDarkGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFD9C68), Color(0xFFF391E2)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на темном фоне - */ - public object TextOnDarkGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент бренда на темном фоне - */ - public object TextOnDarkGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF528EFF), Color(0xFF04C6C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на темном фоне - */ - public object TextOnDarkGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF1CC9C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет с градиентом на светлом фоне - */ - public object TextOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет на светлом фоне с градиентом - */ - public object TextOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Афины на светлом фоне - */ - public object TextOnLightGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF118CDF), Color(0xFF7A7AFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент Джой на светлом фоне - */ - public object TextOnLightGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFCA349), Color(0xFFFF52C5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент B2E-ассистента на светлом фоне - */ - public object TextOnLightGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A6C7)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет бренда на светлом фоне - */ - public object TextOnLightGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF3E79F0), Color(0xFF27C6E5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 93.97f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Градиент на светлом фоне - */ - public object TextOnLightGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A6C7)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет с градиентом - */ - public object TextInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет с градиентом - */ - public object TextInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет с градиентом - */ - public object TextInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет с градиентом - */ - public object TextInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientMainHover - */ - public object TextInverseGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientMainActive - */ - public object TextInverseGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientAthenaHover - */ - public object TextInverseGradientAthenaHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientAthenaActive - */ - public object TextInverseGradientAthenaActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientJoyHover - */ - public object TextInverseGradientJoyHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientJoyActive - */ - public object TextInverseGradientJoyActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientBrandHover - */ - public object TextInverseGradientBrandHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientBrandActive - */ - public object TextInverseGradientBrandActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientB2EHover - */ - public object TextInverseGradientB2EHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientB2EActive - */ - public object TextInverseGradientB2EActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientMain - */ - public object TextInverseGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF05C1F5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientAthena - */ - public object TextInverseGradientAthena { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF52BAFF), Color(0xFFADADFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.06f, 0.94f) - - /** - * Угол градиента - */ - public const val angle: Float = 94.0f - } - - /** - * light text inverse textGradientJoy - */ - public object TextInverseGradientJoy { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFD9C68), Color(0xFFF391E2)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.06f, 0.94f) - - /** - * Угол градиента - */ - public const val angle: Float = 94.0f - } - - /** - * light text inverse textGradientB2E - */ - public object TextInverseGradientB2E { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF05C1F5)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light text inverse textGradientBrand - */ - public object TextInverseGradientBrand { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF528EFF), Color(0xFF04C6C9)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceDefaultTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeleton { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x00000000), - Color(0x03000000), - Color(0x0D000000), - Color(0x0F000000), - Color(0x0D000000), - Color(0x03000000), - Color(0x00000000), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, - 0.17f, - 0.4f, - 0.51f, - 0.62f, - 0.83f, - 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface default surfaceGradientMainHover - */ - public object SurfaceDefaultGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface default surfaceGradientMainActive - */ - public object SurfaceDefaultGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface default surfaceGradientMain - */ - public object SurfaceDefaultGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceDefaultSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceDefaultSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на темном фоне - */ - public object SurfaceOnDarkTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onDark surfaceGradientMainHover - */ - public object SurfaceOnDarkGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onDark surfaceGradientMainActive - */ - public object SurfaceOnDarkGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onDark surfaceGradientMain - */ - public object SurfaceOnDarkGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnDarkSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnDarkSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный промо фон поверхности/контрола с градиентом на светлом фоне - */ - public object SurfaceOnLightTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onLight surfaceGradientMainHover - */ - public object SurfaceOnLightGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onLight surfaceGradientMainActive - */ - public object SurfaceOnLightGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface onLight surfaceGradientMain - */ - public object SurfaceOnLightGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 89.83f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17080808), Color(0x14080808), - Color(0x0D080808), Color(0x03080808), Color(0x0D080808), Color(0x14080808), - Color(0x17080808), Color(0x14080808), Color(0x0D080808), Color(0x03080808), - Color(0x0D080808), Color(0x14080808), Color(0x17080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceOnLightSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5C080808), Color(0x52080808), - Color(0x33080808), Color(0x0A080808), Color(0x33080808), Color(0x52080808), - Color(0x5C080808), Color(0x14080808), Color(0x33080808), Color(0x0A080808), - Color(0x33080808), Color(0x52080808), Color(0x5C080808), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceOnLightSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный прозрачный промо фон поверхности/контрола с градиентом - */ - public object SurfaceInverseTransparentPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface inverse surfaceGradientMainHover - */ - public object SurfaceInverseGradientMainHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface inverse surfaceGradientMainActive - */ - public object SurfaceInverseGradientMainActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * light surface inverse surfaceGradientMain - */ - public object SurfaceInverseGradientMain { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFF24B23E), Color(0xFF00A4D1)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 88.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x17FFFFFF), Color(0x14FFFFFF), - Color(0x0DFFFFFF), Color(0x03FFFFFF), Color(0x0DFFFFFF), Color(0x14FFFFFF), - Color(0x17FFFFFF), Color(0x14FFFFFF), Color(0x0DFFFFFF), Color(0x03FFFFFF), - Color(0x0DFFFFFF), Color(0x14FFFFFF), Color(0x17FFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон для скелетона - */ - public object SurfaceInverseSkeletonGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf( - Color(0x5CFFFFFF), Color(0x52FFFFFF), - Color(0x33FFFFFF), Color(0x0AFFFFFF), Color(0x33FFFFFF), Color(0x52FFFFFF), - Color(0x5CFFFFFF), Color(0x14FFFFFF), Color(0x33FFFFFF), Color(0x0AFFFFFF), - Color(0x33FFFFFF), Color(0x52FFFFFF), Color(0x5CFFFFFF), - ) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf( - 0.0f, 0.0625f, 0.125f, 0.25f, 0.375f, - 0.4375f, 0.5f, 0.5625f, 0.625f, 0.75f, 0.875f, 0.9375f, 1.0f, - ) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Яркий фон для скелетона - */ - public object SurfaceInverseSkeletonDeepGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Фон Афины на мобиле - */ - public object BackgroundDefaultMobileAssistantAthena { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0F00E0FF), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0A0057FF), Color(0x035708FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0F00E0FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x050047FD), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFFFFFFF) - } - } - - /** - * Фон Джой на мобиле - */ - public object BackgroundDefaultMobileAssistantJoy { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0DFFC803), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x059400EE), Color(0x03A004FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0AFFB800)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.03f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x08F000BB), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFFFFFFF) - } - } - - /** - * Фоновый градиент бренда на мобиле - */ - public object BackgroundDefaultMobileAssistantBrand { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0F28C5E6)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0A2A72F8), Color(0x032969E3)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x002A72F8), Color(0x0A2A72F8)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.03f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0828C5E6), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 269.47f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFFFFFFF) - } - } - - /** - * Фон для модальной шторки - */ - public object BackgroundDefaultModalSheet { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0001B6FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFF2F2F2) - } - } - - /** - * Фоновый градиент B2E-ассистента на мобиле - */ - public object BackgroundDefaultMobileAssistantB2E { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0504FF2C), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0F00B3FF), Color(0x0300D1FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0D00FB3B)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0D06C3FF), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFFFFFFF) - } - } - - /** - * Фон ассистента на мобиле - */ - public object BackgroundDefaultMobileAssistantMain { - /** - * Cлой 0 - */ - public object Layer0 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0504FF2C), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 336.9f - } - - /** - * Cлой 1 - */ - public object Layer1 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0F00B3FF), Color(0x0300D1FF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Радиус градиента - */ - public const val radius: Float = 1.0f - - /** - * Координата центра по оси X - */ - public const val centerX: Float = 0.66f - - /** - * Координата центра по оси Y - */ - public const val centerY: Float = 1.0f - } - - /** - * Cлой 2 - */ - public object Layer2 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x00FFFFFF), Color(0x0D00FB3B)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 180.0f - } - - /** - * Cлой 3 - */ - public object Layer3 { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0x0D06C3FF), Color(0x00FFFFFF)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 270.0f - } - - /** - * Cлой 4 - */ - public object Layer4 { - /** - * Фон градиента - */ - public val background: Color = Color(0xFFFFFFFF) - } - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом - */ - public object OutlineDefaultAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом - */ - public object OutlineDefaultAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом - */ - public object OutlineDefaultTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом - */ - public object OutlineDefaultPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на темном фоне - */ - public object OutlineOnDarkPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Акцентный минорный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный акцентный цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Минорный промо цвет обводки с градиентом на светлом фоне - */ - public object OutlineOnLightPromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный акцентный минорный цвет обводки с градиентом - */ - public object OutlineInverseAccentMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Прозрачный инвертированный акцентный цвет обводки с градиентом - */ - public object OutlineInverseTransparentAccentGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный промо цвет обводки с градиентом - */ - public object OutlineInversePromoGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradientHover { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradientActive { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } - - /** - * Инвертированный минорный промо цвет обводки с градиентом - */ - public object OutlineInversePromoMinorGradient { - /** - * Цвета градиента - */ - public val colors: List = listOf(Color(0xFFFFFFFF), Color(0xFF000000)) - - /** - * Точки остановки цветов градиента - */ - public val positions: FloatArray = floatArrayOf(0.0f, 1.0f) - - /** - * Угол градиента - */ - public const val angle: Float = 90.0f - } -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/RoundShapeTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/RoundShapeTokens.kt deleted file mode 100644 index c98419fc41..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/RoundShapeTokens.kt +++ /dev/null @@ -1,46 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.tokens - -import androidx.compose.foundation.shape.CornerSize -import androidx.compose.foundation.shape.RoundedCornerShape -import androidx.compose.ui.unit.dp - -/** - * Токены скруглений - */ -public object RoundShapeTokens { - /** - * borderRadius xxs - */ - public val RoundXxs: RoundedCornerShape = RoundedCornerShape(CornerSize(4.0.dp)) - - /** - * borderRadius xs - */ - public val RoundXs: RoundedCornerShape = RoundedCornerShape(CornerSize(6.0.dp)) - - /** - * borderRadius s - */ - public val RoundS: RoundedCornerShape = RoundedCornerShape(CornerSize(8.0.dp)) - - /** - * borderRadius m - */ - public val RoundM: RoundedCornerShape = RoundedCornerShape(CornerSize(12.0.dp)) - - /** - * borderRadius l - */ - public val RoundL: RoundedCornerShape = RoundedCornerShape(CornerSize(16.0.dp)) - - /** - * borderRadius xl - */ - public val RoundXl: RoundedCornerShape = RoundedCornerShape(CornerSize(20.0.dp)) - - /** - * borderRadius xxl - */ - public val RoundXxl: RoundedCornerShape = RoundedCornerShape(CornerSize(32.0.dp)) -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ShadowTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ShadowTokens.kt deleted file mode 100644 index d9773422f0..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/ShadowTokens.kt +++ /dev/null @@ -1,571 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.graphics.Color -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp - -/** - * Токены теней - */ -public object ShadowTokens { - /** - * shadow down soft s - */ - public object DownSoftSLayer1 { - /** - * shadow down soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val offsetY: Dp = 4.0.dp - - /** - * shadow down soft s - */ - public val spreadRadius: Dp = -4.0.dp - - /** - * shadow down soft s - */ - public val blurRadius: Dp = 14.0.dp - - /** - * shadow down soft s - */ - public val fallbackElevation: Dp = 2.0.dp - - /** - * shadow down soft s - */ - public val color: Color = Color(0x14080808) - } - - /** - * shadow down soft s - */ - public object DownSoftSLayer2 { - /** - * shadow down soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val offsetY: Dp = 1.0.dp - - /** - * shadow down soft s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow down soft s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow down soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow down soft s - */ - public val color: Color = Color(0x0A000000) - } - - /** - * shadow down soft m - */ - public object DownSoftM { - /** - * shadow down soft m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft m - */ - public val offsetY: Dp = 24.0.dp - - /** - * shadow down soft m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down soft m - */ - public val blurRadius: Dp = 48.0.dp - - /** - * shadow down soft m - */ - public val fallbackElevation: Dp = 4.0.dp - - /** - * shadow down soft m - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down soft l - */ - public object DownSoftL { - /** - * shadow down soft l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down soft l - */ - public val offsetY: Dp = 60.0.dp - - /** - * shadow down soft l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down soft l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow down soft l - */ - public val fallbackElevation: Dp = 6.0.dp - - /** - * shadow down soft l - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down hard s - */ - public object DownHardSLayer1 { - /** - * shadow down hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val offsetY: Dp = 4.0.dp - - /** - * shadow down hard s - */ - public val spreadRadius: Dp = -3.0.dp - - /** - * shadow down hard s - */ - public val blurRadius: Dp = 12.0.dp - - /** - * shadow down hard s - */ - public val fallbackElevation: Dp = 2.0.dp - - /** - * shadow down hard s - */ - public val color: Color = Color(0x29080808) - } - - /** - * shadow down hard s - */ - public object DownHardSLayer2 { - /** - * shadow down hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val offsetY: Dp = 1.0.dp - - /** - * shadow down hard s - */ - public val spreadRadius: Dp = -2.0.dp - - /** - * shadow down hard s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow down hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow down hard s - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow down hard m - */ - public object DownHardM { - /** - * shadow down hard m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard m - */ - public val offsetY: Dp = 16.0.dp - - /** - * shadow down hard m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down hard m - */ - public val blurRadius: Dp = 32.0.dp - - /** - * shadow down hard m - */ - public val fallbackElevation: Dp = 4.0.dp - - /** - * shadow down hard m - */ - public val color: Color = Color(0x3D000000) - } - - /** - * shadow down hard l - */ - public object DownHardL { - /** - * shadow down hard l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow down hard l - */ - public val offsetY: Dp = 60.0.dp - - /** - * shadow down hard l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow down hard l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow down hard l - */ - public val fallbackElevation: Dp = 6.0.dp - - /** - * shadow down hard l - */ - public val color: Color = Color(0x66000000) - } - - /** - * shadow up soft s - */ - public object UpSoftSLayer1 { - /** - * shadow up soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val offsetY: Dp = -4.0.dp - - /** - * shadow up soft s - */ - public val spreadRadius: Dp = -4.0.dp - - /** - * shadow up soft s - */ - public val blurRadius: Dp = 14.0.dp - - /** - * shadow up soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val color: Color = Color(0x14080808) - } - - /** - * shadow up soft s - */ - public object UpSoftSLayer2 { - /** - * shadow up soft s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val offsetY: Dp = -1.0.dp - - /** - * shadow up soft s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow up soft s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow up soft s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft s - */ - public val color: Color = Color(0x08000000) - } - - /** - * shadow up soft m - */ - public object UpSoftM { - /** - * shadow up soft m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft m - */ - public val offsetY: Dp = -24.0.dp - - /** - * shadow up soft m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up soft m - */ - public val blurRadius: Dp = 48.0.dp - - /** - * shadow up soft m - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft m - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow up soft l - */ - public object UpSoftL { - /** - * shadow up soft l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up soft l - */ - public val offsetY: Dp = -60.0.dp - - /** - * shadow up soft l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up soft l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow up soft l - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up soft l - */ - public val color: Color = Color(0x14000000) - } - - /** - * shadow up hard s - */ - public object UpHardSLayer1 { - /** - * shadow up hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val offsetY: Dp = -4.0.dp - - /** - * shadow up hard s - */ - public val spreadRadius: Dp = -3.0.dp - - /** - * shadow up hard s - */ - public val blurRadius: Dp = 12.0.dp - - /** - * shadow up hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val color: Color = Color(0x33080808) - } - - /** - * shadow up hard s - */ - public object UpHardSLayer2 { - /** - * shadow up hard s - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val offsetY: Dp = -1.0.dp - - /** - * shadow up hard s - */ - public val spreadRadius: Dp = -1.0.dp - - /** - * shadow up hard s - */ - public val blurRadius: Dp = 4.0.dp - - /** - * shadow up hard s - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard s - */ - public val color: Color = Color(0x08000000) - } - - /** - * shadow up hard m - */ - public object UpHardM { - /** - * shadow up hard m - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard m - */ - public val offsetY: Dp = -16.0.dp - - /** - * shadow up hard m - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up hard m - */ - public val blurRadius: Dp = 32.0.dp - - /** - * shadow up hard m - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard m - */ - public val color: Color = Color(0x3D000000) - } - - /** - * shadow up hard l - */ - public object UpHardL { - /** - * shadow up hard l - */ - public val offsetX: Dp = 0.0.dp - - /** - * shadow up hard l - */ - public val offsetY: Dp = -60.0.dp - - /** - * shadow up hard l - */ - public val spreadRadius: Dp = -8.0.dp - - /** - * shadow up hard l - */ - public val blurRadius: Dp = 112.0.dp - - /** - * shadow up hard l - */ - public val fallbackElevation: Dp = 0.0.dp - - /** - * shadow up hard l - */ - public val color: Color = Color(0x66000000) - } -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/SpacingTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/SpacingTokens.kt deleted file mode 100644 index 7f2a215d6e..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/SpacingTokens.kt +++ /dev/null @@ -1,85 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.unit.Dp -import androidx.compose.ui.unit.dp - -/** - * Токены отступов - */ -public object SpacingTokens { - /** - * spacing 0x - */ - public val spacing0x: Dp = 0.0.dp - - /** - * spacing 1x - */ - public val spacing1x: Dp = 2.0.dp - - /** - * spacing 2x - */ - public val spacing2x: Dp = 4.0.dp - - /** - * spacing 3x - */ - public val spacing3x: Dp = 6.0.dp - - /** - * spacing 4x - */ - public val spacing4x: Dp = 8.0.dp - - /** - * spacing 6x - */ - public val spacing6x: Dp = 12.0.dp - - /** - * spacing 8x - */ - public val spacing8x: Dp = 16.0.dp - - /** - * spacing 10x - */ - public val spacing10x: Dp = 20.0.dp - - /** - * spacing 12x - */ - public val spacing12x: Dp = 24.0.dp - - /** - * spacing 16x - */ - public val spacing16x: Dp = 32.0.dp - - /** - * spacing 20x - */ - public val spacing20x: Dp = 40.0.dp - - /** - * spacing 24x - */ - public val spacing24x: Dp = 48.0.dp - - /** - * spacing 32x - */ - public val spacing32x: Dp = 64.0.dp - - /** - * spacing 40x - */ - public val spacing40x: Dp = 80.0.dp - - /** - * spacing 60x - */ - public val spacing60x: Dp = 120.0.dp -} diff --git a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/TypographyTokens.kt b/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/TypographyTokens.kt deleted file mode 100644 index d5d5d98dfc..0000000000 --- a/tokens/stylessalute.compose/src/main/kotlin/com/sdds/stylessalute/tokens/TypographyTokens.kt +++ /dev/null @@ -1,2024 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -@file:Suppress("DEPRECATION") - -package com.sdds.stylessalute.tokens - -import androidx.compose.ui.text.PlatformTextStyle -import androidx.compose.ui.text.TextStyle -import androidx.compose.ui.text.font.FontWeight -import androidx.compose.ui.text.style.LineHeightStyle -import androidx.compose.ui.unit.sp -import kotlin.Suppress - -/** - * Токены типографии для ScreenClass.SMALL - */ -public object TypographySmallTokens { - /** - * typography s display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 56.0.sp, - lineHeight = 62.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography s text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -/** - * Токены типографии для ScreenClass.MEDIUM - */ -public object TypographyMediumTokens { - /** - * typography m display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 112.0.sp, - lineHeight = 112.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 72.0.sp, - lineHeight = 76.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 40.0.sp, - lineHeight = 46.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 28.0.sp, - lineHeight = 34.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 22.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 28.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 24.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography m text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -/** - * Токены типографии для ScreenClass.LARGE - */ -public object TypographyLargeTokens { - /** - * typography l display-l - */ - public val DisplayLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-l-bold - */ - public val DisplayLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m - */ - public val DisplayMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m-bold - */ - public val DisplayMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s - */ - public val DisplaySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(300), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s-bold - */ - public val DisplaySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1 - */ - public val HeaderH1Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1-bold - */ - public val HeaderH1Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2 - */ - public val HeaderH2Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2-bold - */ - public val HeaderH2Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3 - */ - public val HeaderH3Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3-bold - */ - public val HeaderH3Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4 - */ - public val HeaderH4Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4-bold - */ - public val HeaderH4Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5 - */ - public val HeaderH5Normal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5-bold - */ - public val HeaderH5Bold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l - */ - public val BodyLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l-bold - */ - public val BodyLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m - */ - public val BodyMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m-bold - */ - public val BodyMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s - */ - public val BodySNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s-bold - */ - public val BodySBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs - */ - public val BodyXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs-bold - */ - public val BodyXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs - */ - public val BodyXxsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs-bold - */ - public val BodyXxsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l - */ - public val TextLNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 24.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l-bold - */ - public val TextLBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 24.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m - */ - public val TextMNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m-bold - */ - public val TextMBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s - */ - public val TextSNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s-bold - */ - public val TextSBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs - */ - public val TextXsNormal: TextStyle = TextStyle( - fontWeight = FontWeight(400), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs-bold - */ - public val TextXsBold: TextStyle = TextStyle( - fontWeight = FontWeight(600), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-l-medium - */ - public val DisplayLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 128.0.sp, - lineHeight = 128.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-m-medium - */ - public val DisplayMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 88.0.sp, - lineHeight = 92.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l display-s-medium - */ - public val DisplaySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 64.0.sp, - lineHeight = 68.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.display, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h1-medium - */ - public val HeaderH1Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 48.0.sp, - lineHeight = 54.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h2-medium - */ - public val HeaderH2Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 32.0.sp, - lineHeight = 38.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h3-medium - */ - public val HeaderH3Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 24.0.sp, - lineHeight = 30.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h4-medium - */ - public val HeaderH4Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 20.0.sp, - lineHeight = 26.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l header-h5-medium - */ - public val HeaderH5Medium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 24.0.sp, - letterSpacing = 0.0.sp, - fontFamily = FontTokens.header, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-l-medium - */ - public val BodyLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 22.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-m-medium - */ - public val BodyMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 16.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-s-medium - */ - public val BodySMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 18.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xs-medium - */ - public val BodyXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 14.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l body-xxs-medium - */ - public val BodyXxsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 10.0.sp, - lineHeight = 12.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.body, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-l-medium - */ - public val TextLMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 24.0.sp, - lineHeight = 32.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-m-medium - */ - public val TextMMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 18.0.sp, - lineHeight = 26.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-s-medium - */ - public val TextSMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 14.0.sp, - lineHeight = 20.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) - - /** - * typography l text-xs-medium - */ - public val TextXsMedium: TextStyle = TextStyle( - fontWeight = FontWeight(500), - fontSize = 12.0.sp, - lineHeight = 16.0.sp, - letterSpacing = (-0.02).sp, - fontFamily = FontTokens.text, - lineHeightStyle = TextStyleDefault.lineHeightStyle, - platformStyle = TextStyleDefault.platformStyle, - ) -} - -private object TextStyleDefault { - public val lineHeightStyle: LineHeightStyle = LineHeightStyle( - alignment = LineHeightStyle.Alignment.Center, - trim = LineHeightStyle.Trim.None, - ) - - public val platformStyle: PlatformTextStyle = PlatformTextStyle(includeFontPadding = false) -} diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_bold.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_bold.otf deleted file mode 100644 index 3879d06790..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_bold.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_light.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_light.otf deleted file mode 100644 index 48debb7104..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_light.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_medium.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_medium.otf deleted file mode 100644 index 6051e0bda9..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_medium.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_regular.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_regular.otf deleted file mode 100644 index 440fd77bd4..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_regular.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_semibold.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_semibold.otf deleted file mode 100644 index 34fe5df194..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_semibold.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_thin.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_thin.otf deleted file mode 100644 index bfb3ab6489..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_display_thin.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold.otf deleted file mode 100644 index eabb4605c0..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold_italic.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold_italic.otf deleted file mode 100644 index 09a8373bb2..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_bold_italic.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_italic.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_italic.otf deleted file mode 100644 index c89ce926f1..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_italic.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light.otf deleted file mode 100644 index d55bbccf48..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light_italic.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light_italic.otf deleted file mode 100644 index 3bab1b9ac7..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_light_italic.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_medium.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_medium.otf deleted file mode 100644 index 1ca217343d..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_medium.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_regular.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_regular.otf deleted file mode 100644 index 40ba0fbefc..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_regular.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold.otf deleted file mode 100644 index 338f5c49dd..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold_italic.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold_italic.otf deleted file mode 100644 index b492b920e6..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_semibold_italic.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_thin.otf b/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_thin.otf deleted file mode 100644 index ab036e7ae7..0000000000 Binary files a/tokens/stylessalute.compose/src/main/theme-builder-res/font/s_b_sans_text_thin.otf and /dev/null differ diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAccordionScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAccordionScreenshotTest.kt deleted file mode 100644 index 58c4b7c7c3..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAccordionScreenshotTest.kt +++ /dev/null @@ -1,181 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onAllNodesWithTag -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionEndSizeH4 -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionEndSizeSDivider -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeH2AmountTen -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeH5 -import com.sdds.compose.uikit.fixtures.testcases.AccordionClearActionStartSizeXs -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeH2 -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeL -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLAmountTen -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLLongText -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionEndSizeLNoTextNoContent -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionStartAmountTenSizeM -import com.sdds.compose.uikit.fixtures.testcases.AccordionSolidActionStartSizeH3 -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.accordion.AccordionClearActionEnd -import com.sdds.stylessalute.styles.accordion.AccordionClearActionStart -import com.sdds.stylessalute.styles.accordion.AccordionSolidActionEnd -import com.sdds.stylessalute.styles.accordion.AccordionSolidActionStart -import com.sdds.stylessalute.styles.accordion.H2 -import com.sdds.stylessalute.styles.accordion.H3 -import com.sdds.stylessalute.styles.accordion.H4 -import com.sdds.stylessalute.styles.accordion.H5 -import com.sdds.stylessalute.styles.accordion.L -import com.sdds.stylessalute.styles.accordion.M -import com.sdds.stylessalute.styles.accordion.S -import com.sdds.stylessalute.styles.accordion.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeAccordionScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testAccordionSolidActionEndSizeL() { - composeTestRule.content { - AccordionSolidActionEndSizeL(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionStartAmountTenSizeM() { - composeTestRule.content { - AccordionSolidActionStartAmountTenSizeM(AccordionSolidActionStart.M.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionEndSizeSDivider() { - composeTestRule.content { - AccordionClearActionEndSizeSDivider(AccordionClearActionEnd.S.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionStartSizeXs() { - composeTestRule.content { - AccordionClearActionStartSizeXs(AccordionClearActionStart.Xs.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLNoTextNoContent() { - composeTestRule.content { - AccordionSolidActionEndSizeLNoTextNoContent(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLOpenAll() { - composeTestRule.content { - AccordionSolidActionEndSizeLAmountTen(AccordionSolidActionEnd.L.style()) - } - for (i in 0..8) { - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[i] - .performClick() - composeTestRule.waitForIdle() - } - } - - @Test - fun testAccordionClearActionStartSizeH2AmountTen() { - composeTestRule.content { - AccordionClearActionStartSizeH2AmountTen(AccordionClearActionStart.H2.style()) - } - for (i in 0..9) { - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[i] - .performClick() - composeTestRule.waitForIdle() - } - } - - @Test - fun testAccordionSolidActionEndSizeH2() { - composeTestRule.content { - AccordionSolidActionEndSizeH2(AccordionSolidActionEnd.H2.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionStartSizeH3() { - composeTestRule.content { - AccordionSolidActionStartSizeH3(AccordionSolidActionStart.H3.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionEndSizeH4() { - composeTestRule.content { - AccordionClearActionEndSizeH4(AccordionClearActionEnd.H4.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionClearActionStartSizeH5() { - composeTestRule.content { - AccordionClearActionStartSizeH5(AccordionClearActionStart.H5.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } - - @Test - fun testAccordionSolidActionEndSizeLLongText() { - composeTestRule.content { - AccordionSolidActionEndSizeLLongText(AccordionSolidActionEnd.L.style()) - } - composeTestRule - .onAllNodesWithTag("Accordion", useUnmergedTree = true)[0] - .performClick() - composeTestRule.waitForIdle() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAvatarScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAvatarScreenshotTest.kt deleted file mode 100644 index 116c0aa124..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeAvatarScreenshotTest.kt +++ /dev/null @@ -1,117 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.AvatarGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeLBadgeTopEndContentStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeLCounterTopEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeM -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeMBadgeBottomStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeMCounterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeSCounterBottomStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxl -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlBadgeBottomEndContentEnd -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlBadgeTopStartContentStart -import com.sdds.compose.uikit.fixtures.testcases.AvatarSizeXxlCounterTopStart -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.avatar.Avatar -import com.sdds.stylessalute.styles.avatar.L -import com.sdds.stylessalute.styles.avatar.M -import com.sdds.stylessalute.styles.avatar.S -import com.sdds.stylessalute.styles.avatar.Xxl -import com.sdds.stylessalute.styles.avatargroup.AvatarGroup -import com.sdds.stylessalute.styles.avatargroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeAvatarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testAvatarSizeXxl() { - composeTestRule.content { - AvatarSizeXxl(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeM() { - composeTestRule.content { - AvatarSizeM(style = Avatar.M.style()) - } - } - - @Test - fun testAvatarGroupSizeS() { - composeTestRule.content { - AvatarGroupSizeS(style = AvatarGroup.S.style()) - } - } - - @Test - fun testAvatarSizeXxlCounterTopStart() { - composeTestRule.content { - AvatarSizeXxlCounterTopStart(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeLCounterTopEnd() { - composeTestRule.content { - AvatarSizeLCounterTopEnd(style = Avatar.L.style()) - } - } - - @Test - fun testAvatarSizeMCounterBottomEnd() { - composeTestRule.content { - AvatarSizeMCounterBottomEnd(style = Avatar.M.style()) - } - } - - @Test - fun testAvatarSizeSCounterBottomStart() { - composeTestRule.content { - AvatarSizeSCounterBottomStart(style = Avatar.S.style()) - } - } - - @Test - fun testAvatarSizeXxlBadgeTopStartContentStart() { - composeTestRule.content { - AvatarSizeXxlBadgeTopStartContentStart(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeXxlBadgeBottomEndContentEnd() { - composeTestRule.content { - AvatarSizeXxlBadgeBottomEndContentEnd(style = Avatar.Xxl.style()) - } - } - - @Test - fun testAvatarSizeLBadgeTopEndContentStart() { - composeTestRule.content { - AvatarSizeLBadgeTopEndContentStart(style = Avatar.L.style()) - } - } - - @Test - fun testAvatarSizeMBadgeBottomStart() { - composeTestRule.content { - AvatarSizeMBadgeBottomStart(style = Avatar.M.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBadgeScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBadgeScreenshotTest.kt deleted file mode 100644 index ab25a2a947..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBadgeScreenshotTest.kt +++ /dev/null @@ -1,171 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.BadgeCommon -import com.sdds.compose.uikit.fixtures.testcases.BadgeSizeLDefaultContentLeft -import com.sdds.compose.uikit.fixtures.testcases.BadgeSizeMAccentContentRight -import com.sdds.compose.uikit.fixtures.testcases.IconBadgeCommon -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.badge.Accent -import com.sdds.stylessalute.styles.badge.BadgeClear -import com.sdds.stylessalute.styles.badge.BadgeSolid -import com.sdds.stylessalute.styles.badge.BadgeTransparent -import com.sdds.stylessalute.styles.badge.Dark -import com.sdds.stylessalute.styles.badge.Default -import com.sdds.stylessalute.styles.badge.L -import com.sdds.stylessalute.styles.badge.Light -import com.sdds.stylessalute.styles.badge.M -import com.sdds.stylessalute.styles.badge.Negative -import com.sdds.stylessalute.styles.badge.Pilled -import com.sdds.stylessalute.styles.badge.Positive -import com.sdds.stylessalute.styles.badge.S -import com.sdds.stylessalute.styles.badge.Warning -import com.sdds.stylessalute.styles.badge.Xs -import com.sdds.stylessalute.styles.iconbadge.Accent -import com.sdds.stylessalute.styles.iconbadge.Dark -import com.sdds.stylessalute.styles.iconbadge.Default -import com.sdds.stylessalute.styles.iconbadge.IconBadgeClear -import com.sdds.stylessalute.styles.iconbadge.IconBadgeSolid -import com.sdds.stylessalute.styles.iconbadge.IconBadgeTransparent -import com.sdds.stylessalute.styles.iconbadge.L -import com.sdds.stylessalute.styles.iconbadge.M -import com.sdds.stylessalute.styles.iconbadge.Negative -import com.sdds.stylessalute.styles.iconbadge.Pilled -import com.sdds.stylessalute.styles.iconbadge.Positive -import com.sdds.stylessalute.styles.iconbadge.S -import com.sdds.stylessalute.styles.iconbadge.Warning -import com.sdds.stylessalute.styles.iconbadge.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeBadgeScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testBadgeSizeLDefaultContentLeft() { - composeTestRule.content { - BadgeSizeLDefaultContentLeft(style = BadgeSolid.L.Default.style()) - } - } - - @Test - fun testBadgeSizeMAccentContentRight() { - composeTestRule.content { - BadgeSizeMAccentContentRight(style = BadgeSolid.M.Accent.style()) - } - } - - @Test - fun testBadgeSizeSPositivePilled() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.S.Pilled.Positive.style()) - } - } - - @Test - fun testBadgeSizeXsWarning() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.Xs.Warning.style()) - } - } - - @Test - fun testBadgeSizeLNegative() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.L.Negative.style()) - } - } - - @Test - fun testBadgeSizeMDark() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.M.Dark.style()) - } - } - - @Test - fun testBadgeSizeSLight() { - composeTestRule.content { - BadgeCommon(style = BadgeSolid.S.Light.style()) - } - } - - @Test - fun testBadgeSizeLDefaultClear() { - composeTestRule.content { - BadgeCommon(style = BadgeClear.L.Default.style()) - } - } - - @Test - fun testBadgeSizeLDefaultTransparent() { - composeTestRule.content { - BadgeCommon(style = BadgeTransparent.L.Default.style()) - } - } - - @Test - fun testBadgeSizeMNegativeClear() { - composeTestRule.content { - BadgeCommon(style = BadgeClear.M.Negative.style()) - } - } - - @Test - fun testBadgeSizeSWarningTransparentPilled() { - composeTestRule.content { - BadgeCommon(style = BadgeTransparent.S.Pilled.Warning.style()) - } - } - - @Test - fun testIconBadgeSizeLDefault() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.L.Default.style()) - } - } - - @Test - fun testIconBadgeSizeMAccentPilled() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.M.Pilled.Accent.style()) - } - } - - @Test - fun testIconBadgeSizeSPositiveClear() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeClear.S.Positive.style()) - } - } - - @Test - fun testIconBadgeSizeXsWarningTransparent() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeTransparent.Xs.Warning.style()) - } - } - - @Test - fun testIconBadgeSizeLNegative() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.L.Negative.style()) - } - } - - @Test - fun testIconBadgeSizeMBlack() { - composeTestRule.content { - IconBadgeCommon(style = IconBadgeSolid.M.Dark.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBottomSheetScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBottomSheetScreenshotTest.kt deleted file mode 100644 index 8dca53bca3..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeBottomSheetScreenshotTest.kt +++ /dev/null @@ -1,118 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetFooterAuto -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderAuto -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFixedHandleOuter -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFooterFixedHandleInner -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetHeaderFooterFixedHandleNone -import com.sdds.compose.uikit.fixtures.testcases.BottomSheetNoHeaderFooterAuto -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.bottomsheet.Default -import com.sdds.stylessalute.styles.bottomsheet.ModalBottomSheet -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeBottomSheetScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFooterFixedHandleInner() { - composeTestRule.content { - BottomSheetHeaderFooterFixedHandleInner( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFixedHandleOuter() { - composeTestRule.content { - BottomSheetHeaderFixedHandleOuter( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderFooterFixedHandleNone() { - composeTestRule.content { - BottomSheetHeaderFooterFixedHandleNone( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetFooterAuto() { - composeTestRule.content { - BottomSheetFooterAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetHeaderAuto() { - composeTestRule.content { - BottomSheetHeaderAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testBottomSheetNoHeaderFooterAuto() { - composeTestRule.content { - BottomSheetNoHeaderFooterAuto( - ModalBottomSheet.Default.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonGroupScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonGroupScreenshotTest.kt deleted file mode 100644 index 424cdaf1b3..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonGroupScreenshotTest.kt +++ /dev/null @@ -1,107 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupHorizontal -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupHorizontalMaxAmount -import com.sdds.compose.uikit.fixtures.testcases.ButtonGroupVertical -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupHorizontal -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupHorizontalMaxAmount -import com.sdds.compose.uikit.fixtures.testcases.IconButtonGroupVertical -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.buttongroup.BasicButtonGroup -import com.sdds.stylessalute.styles.buttongroup.Default -import com.sdds.stylessalute.styles.buttongroup.Dense -import com.sdds.stylessalute.styles.buttongroup.IconButtonGroup -import com.sdds.stylessalute.styles.buttongroup.L -import com.sdds.stylessalute.styles.buttongroup.M -import com.sdds.stylessalute.styles.buttongroup.NoGap -import com.sdds.stylessalute.styles.buttongroup.Pilled -import com.sdds.stylessalute.styles.buttongroup.S -import com.sdds.stylessalute.styles.buttongroup.Segmented -import com.sdds.stylessalute.styles.buttongroup.Wide -import com.sdds.stylessalute.styles.buttongroup.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeButtonGroupScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testButtonGroupLNoGapDefault() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.L.NoGap.Default.style()) - } - } - - @Test - fun testButtonGroupMDenseDefault() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.M.Dense.Default.style()) - } - } - - @Test - fun testButtonGroupSWideSegmented() { - composeTestRule.content { - ButtonGroupHorizontal(style = BasicButtonGroup.S.Wide.Segmented.style()) - } - } - - @Test - fun testButtonGroupXsVerticalNoGapDefault() { - composeTestRule.content { - ButtonGroupVertical(style = BasicButtonGroup.Xs.NoGap.Default.style()) - } - } - - @Test - fun testButtonGroupXsNoGapSegmentedMaxAmount() { - composeTestRule.content { - ButtonGroupHorizontalMaxAmount(style = BasicButtonGroup.Xs.NoGap.Segmented.style()) - } - } - - @Test - fun testIconButtonGroupLNoGapDefault() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.L.NoGap.Default.style()) - } - } - - @Test - fun testIconButtonGroupMDensePilled() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.M.Dense.Pilled.style()) - } - } - - @Test - fun testIconButtonGroupSWideSegmented() { - composeTestRule.content { - IconButtonGroupHorizontal(style = IconButtonGroup.S.Wide.Segmented.style()) - } - } - - @Test - fun testIconButtonGroupXsNoGapDefaultVertical() { - composeTestRule.content { - IconButtonGroupVertical(style = IconButtonGroup.Xs.NoGap.Default.style()) - } - } - - @Test - fun testIconButtonGroupLNoGapSegmentedMaxAmount() { - composeTestRule.content { - IconButtonGroupHorizontalMaxAmount(style = IconButtonGroup.L.NoGap.Segmented.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonScreenshotTest.kt deleted file mode 100644 index 0377fabf12..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeButtonScreenshotTest.kt +++ /dev/null @@ -1,293 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLDisabled -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLIsLoading -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLSecondary -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeLWhite -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeMAccent -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeMSpaceBetween -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeSLongText -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeSWarning -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXSDark -import com.sdds.compose.uikit.fixtures.testcases.ButtonSizeXSNegative -import com.sdds.compose.uikit.fixtures.testcases.IconButtonIsLoading -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLDefault -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLDisabled -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLSecondary -import com.sdds.compose.uikit.fixtures.testcases.IconButtonLWhite -import com.sdds.compose.uikit.fixtures.testcases.IconButtonMAccent -import com.sdds.compose.uikit.fixtures.testcases.IconButtonMClear -import com.sdds.compose.uikit.fixtures.testcases.IconButtonSPositive -import com.sdds.compose.uikit.fixtures.testcases.IconButtonSWarning -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXSNegative -import com.sdds.compose.uikit.fixtures.testcases.IconButtonXsDark -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLDisabled -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLIsLoading -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeLSecondary -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeMAccent -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeSWarning -import com.sdds.compose.uikit.fixtures.testcases.LinkButtonSizeXSNegative -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.Accent -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Clear -import com.sdds.stylessalute.styles.basicbutton.Dark -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.L -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.basicbutton.Negative -import com.sdds.stylessalute.styles.basicbutton.Positive -import com.sdds.stylessalute.styles.basicbutton.S -import com.sdds.stylessalute.styles.basicbutton.Secondary -import com.sdds.stylessalute.styles.basicbutton.Warning -import com.sdds.stylessalute.styles.basicbutton.White -import com.sdds.stylessalute.styles.basicbutton.Xs -import com.sdds.stylessalute.styles.iconbutton.Accent -import com.sdds.stylessalute.styles.iconbutton.Clear -import com.sdds.stylessalute.styles.iconbutton.Dark -import com.sdds.stylessalute.styles.iconbutton.Default -import com.sdds.stylessalute.styles.iconbutton.IconButton -import com.sdds.stylessalute.styles.iconbutton.L -import com.sdds.stylessalute.styles.iconbutton.M -import com.sdds.stylessalute.styles.iconbutton.Negative -import com.sdds.stylessalute.styles.iconbutton.Pilled -import com.sdds.stylessalute.styles.iconbutton.Positive -import com.sdds.stylessalute.styles.iconbutton.S -import com.sdds.stylessalute.styles.iconbutton.Secondary -import com.sdds.stylessalute.styles.iconbutton.Warning -import com.sdds.stylessalute.styles.iconbutton.White -import com.sdds.stylessalute.styles.iconbutton.Xs -import com.sdds.stylessalute.styles.linkbutton.Accent -import com.sdds.stylessalute.styles.linkbutton.Default -import com.sdds.stylessalute.styles.linkbutton.L -import com.sdds.stylessalute.styles.linkbutton.LinkButton -import com.sdds.stylessalute.styles.linkbutton.M -import com.sdds.stylessalute.styles.linkbutton.Negative -import com.sdds.stylessalute.styles.linkbutton.S -import com.sdds.stylessalute.styles.linkbutton.Secondary -import com.sdds.stylessalute.styles.linkbutton.Warning -import com.sdds.stylessalute.styles.linkbutton.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeButtonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testButtonSizeLDefault() { - composeTestRule.content { - ButtonSizeLDefault(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeMAccent() { - composeTestRule.content { - ButtonSizeMAccent(style = BasicButton.M.Accent.style()) - } - } - - @Test - fun testButtonSizeSWarning() { - composeTestRule.content { - ButtonSizeSWarning(style = BasicButton.S.Warning.style()) - } - } - - @Test - fun testButtonSizeXS() { - composeTestRule.content { - ButtonSizeXSDark(style = BasicButton.Xs.Dark.style()) - } - } - - @Test - fun testButtonSizeLIsLoading() { - composeTestRule.content { - ButtonSizeLIsLoading(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeLDisabled() { - composeTestRule.content { - ButtonSizeLDisabled(style = BasicButton.L.Default.style()) - } - } - - @Test - fun testButtonSizeLSecondary() { - composeTestRule.content { - ButtonSizeLSecondary(style = BasicButton.L.Secondary.style()) - } - } - - @Test - fun testButtonSizeMSpaceBetween() { - composeTestRule.content { - ButtonSizeMSpaceBetween(style = BasicButton.M.Clear.style()) - } - } - - @Test - fun testButtonSizeSLongText() { - composeTestRule.content { - ButtonSizeSLongText(style = BasicButton.S.Positive.style()) - } - } - - @Test - fun testButtonSizeXSNegative() { - composeTestRule.content { - ButtonSizeXSNegative(style = BasicButton.Xs.Negative.style()) - } - } - - @Test - fun testButtonSizeLWhite() { - composeTestRule.content { - ButtonSizeLWhite(style = BasicButton.L.White.style()) - } - } - - @Test - fun testIconButtonLDefault() { - composeTestRule.content { - IconButtonLDefault(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonMAccent() { - composeTestRule.content { - IconButtonMAccent(iconButtonStyle = IconButton.M.Accent.style()) - } - } - - @Test - fun testIconButtonSWarning() { - composeTestRule.content { - IconButtonSWarning(iconButtonStyle = IconButton.S.Warning.style()) - } - } - - @Test - fun testIconButtonXs() { - composeTestRule.content { - IconButtonXsDark(iconButtonStyle = IconButton.Xs.Dark.style()) - } - } - - @Test - fun testIconButtonLIsLoading() { - composeTestRule.content { - IconButtonIsLoading(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonLDisabled() { - composeTestRule.content { - IconButtonLDisabled(iconButtonStyle = IconButton.L.Default.style()) - } - } - - @Test - fun testIconButtonLSecondary() { - composeTestRule.content { - IconButtonLSecondary(iconButtonStyle = IconButton.L.Pilled.Secondary.style()) - } - } - - @Test - fun testIconButtonMClear() { - composeTestRule.content { - IconButtonMClear(iconButtonStyle = IconButton.M.Clear.style()) - } - } - - @Test - fun testIconButtonSPositive() { - composeTestRule.content { - IconButtonSPositive(iconButtonStyle = IconButton.S.Positive.style()) - } - } - - @Test - fun testIconButtonXSNegative() { - composeTestRule.content { - IconButtonXSNegative(iconButtonStyle = IconButton.Xs.Pilled.Negative.style()) - } - } - - @Test - fun testIconButtonLWhite() { - composeTestRule.content { - IconButtonLWhite(iconButtonStyle = IconButton.L.White.style()) - } - } - - @Test - fun testLinkButtonSizeLDefault() { - composeTestRule.content { - LinkButtonSizeLDefault(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeLIsLoading() { - composeTestRule.content { - LinkButtonSizeLIsLoading(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeLSecondary() { - composeTestRule.content { - LinkButtonSizeLSecondary(linkButtonStyle = LinkButton.L.Secondary.style()) - } - } - - @Test - fun testLinkButtonSizeMAccent() { - composeTestRule.content { - LinkButtonSizeMAccent(linkButtonStyle = LinkButton.M.Accent.style()) - } - } - - @Test - fun testLinkButtonSizeLDisabled() { - composeTestRule.content { - LinkButtonSizeLDisabled(linkButtonStyle = LinkButton.L.Default.style()) - } - } - - @Test - fun testLinkButtonSizeSWarning() { - composeTestRule.content { - LinkButtonSizeSWarning(linkButtonStyle = LinkButton.S.Warning.style()) - } - } - - @Test - fun testLinkButtonSizeXSNegative() { - composeTestRule.content { - LinkButtonSizeXSNegative(linkButtonStyle = LinkButton.Xs.Negative.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCellScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCellScreenshotTest.kt deleted file mode 100644 index 5ccd14afc2..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCellScreenshotTest.kt +++ /dev/null @@ -1,104 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CellMAvatarIcon -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLAvatarHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLHasDisclosureDisclosureText -import com.sdds.compose.uikit.fixtures.testcases.CellSizeLSwitchCheckBox -import com.sdds.compose.uikit.fixtures.testcases.CellSizeMCheckBoxHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeMTitleAvatar -import com.sdds.compose.uikit.fixtures.testcases.CellSizeSIconHasDisclosureDisclosureText -import com.sdds.compose.uikit.fixtures.testcases.CellSizeSSubtitleHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.CellSizeXsLabelAvatar -import com.sdds.compose.uikit.fixtures.testcases.CellSizeXsRadioBoxAvatar -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.cell.Cell -import com.sdds.stylessalute.styles.cell.L -import com.sdds.stylessalute.styles.cell.M -import com.sdds.stylessalute.styles.cell.S -import com.sdds.stylessalute.styles.cell.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCellScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCellLAvatarHasDisclosure() { - composeTestRule.content { - CellSizeLAvatarHasDisclosure(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellSizeMTitleAvatar() { - composeTestRule.content { - CellSizeMTitleAvatar(cellStyle = Cell.M.style()) - } - } - - @Test - fun testCellSizeSSubtitleHasDisclosure() { - composeTestRule.content { - CellSizeSSubtitleHasDisclosure(cellStyle = Cell.S.style()) - } - } - - @Test - fun testCellSizeXsLabelAvatar() { - composeTestRule.content { - CellSizeXsLabelAvatar(cellStyle = Cell.Xs.style()) - } - } - - @Test - fun testCellSizeLHasDisclosureDisclosureText() { - composeTestRule.content { - CellSizeLHasDisclosureDisclosureText(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellMAvatarIcon() { - composeTestRule.content { - CellMAvatarIcon(cellStyle = Cell.M.style()) - } - } - - @Test - fun testCellSizeSIconHasDisclosureDisclosureText() { - composeTestRule.content { - CellSizeSIconHasDisclosureDisclosureText(cellStyle = Cell.S.style()) - } - } - - @Test - fun testCellSizeXsRadioBoxAvatar() { - composeTestRule.content { - CellSizeXsRadioBoxAvatar(cellStyle = Cell.Xs.style()) - } - } - - @Test - fun testCellSizeLSwitchCheckBox() { - composeTestRule.content { - CellSizeLSwitchCheckBox(cellStyle = Cell.L.style()) - } - } - - @Test - fun testCellSizeMCheckBoxHasDisclosure() { - composeTestRule.content { - CellSizeMCheckBoxHasDisclosure(cellStyle = Cell.M.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCheckBoxScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCheckBoxScreenshotTest.kt deleted file mode 100644 index 23898629c8..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCheckBoxScreenshotTest.kt +++ /dev/null @@ -1,93 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeMDisabled -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeMIndeterminate -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeMediumNoLabelAndDesc -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeSDisabled -import com.sdds.compose.uikit.fixtures.testcases.CheckBoxSizeSUnchecked -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.checkbox.CheckBox -import com.sdds.stylessalute.styles.checkbox.Default -import com.sdds.stylessalute.styles.checkbox.M -import com.sdds.stylessalute.styles.checkbox.S -import com.sdds.stylessalute.styles.checkboxgroup.CheckBoxGroup -import com.sdds.stylessalute.styles.checkboxgroup.M -import com.sdds.stylessalute.styles.checkboxgroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCheckBoxScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testCheckBoxSizeM() { - composeTestRule.content { - CheckBoxSizeM(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxSizeSUnchecked() { - composeTestRule.content { - CheckBoxSizeSUnchecked(style = CheckBox.S.Default.style()) - } - } - - @Test - fun testCheckBoxSizeSDisabled() { - composeTestRule.content { - CheckBoxSizeSDisabled(style = CheckBox.S.Default.style()) - } - } - - @Test - fun testCheckBoxSizeMIndeterminate() { - composeTestRule.content { - CheckBoxSizeMIndeterminate(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxSizeMediumNoLabelAndDesc() { - composeTestRule.content { - CheckBoxSizeMediumNoLabelAndDesc(style = CheckBox.M.Default.style()) - } - } - - @Test - fun testCheckBoxGroupSizeM() { - composeTestRule.content { - CheckBoxGroupSizeM(style = CheckBoxGroup.M.style()) - } - } - - @Test - fun testCheckBoxGroupSizeS() { - composeTestRule.content { - CheckBoxGroupSizeS(style = CheckBoxGroup.S.style()) - } - } - - @Test - fun testCheckBoxGroupSizeMDisabled() { - composeTestRule.content { - CheckBoxGroupSizeMDisabled(style = CheckBoxGroup.M.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeChipScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeChipScreenshotTest.kt deleted file mode 100644 index acfb43f953..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeChipScreenshotTest.kt +++ /dev/null @@ -1,112 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ChipDisabled -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeLDense -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeMSecondaryWideWrapped -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeSAccentDense -import com.sdds.compose.uikit.fixtures.testcases.ChipGroupSizeXsDefault -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeLDefault -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeMSecondaryPilled -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeSAccent -import com.sdds.compose.uikit.fixtures.testcases.ChipSizeXSContentLeft -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.chip.Accent -import com.sdds.stylessalute.styles.chip.Chip -import com.sdds.stylessalute.styles.chip.Default -import com.sdds.stylessalute.styles.chip.L -import com.sdds.stylessalute.styles.chip.M -import com.sdds.stylessalute.styles.chip.Pilled -import com.sdds.stylessalute.styles.chip.S -import com.sdds.stylessalute.styles.chip.Secondary -import com.sdds.stylessalute.styles.chip.Xs -import com.sdds.stylessalute.styles.chipgroup.Accent -import com.sdds.stylessalute.styles.chipgroup.ChipGroupDense -import com.sdds.stylessalute.styles.chipgroup.ChipGroupWide -import com.sdds.stylessalute.styles.chipgroup.Default -import com.sdds.stylessalute.styles.chipgroup.L -import com.sdds.stylessalute.styles.chipgroup.M -import com.sdds.stylessalute.styles.chipgroup.S -import com.sdds.stylessalute.styles.chipgroup.Secondary -import com.sdds.stylessalute.styles.chipgroup.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeChipScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testChipSizeLDefault() { - composeTestRule.content { - ChipSizeLDefault(style = Chip.L.Default.style()) - } - } - - @Test - fun testChipSizeMSecondaryPilled() { - composeTestRule.content { - ChipSizeMSecondaryPilled(style = Chip.M.Pilled.Secondary.style()) - } - } - - @Test - fun testChipSizeSAccent() { - composeTestRule.content { - ChipSizeSAccent(style = Chip.S.Accent.style()) - } - } - - @Test - fun testChipSizeXSContentLeft() { - composeTestRule.content { - ChipSizeXSContentLeft(style = Chip.Xs.Default.style()) - } - } - - @Test - fun testChipDisabled() { - composeTestRule.content { - ChipDisabled(style = Chip.L.Default.style()) - } - } - - @Test - fun testChipGroupSizeLDense() { - composeTestRule.content { - ChipGroupSizeLDense(style = ChipGroupDense.L.Default.style()) - } - } - - @Test - fun testChipGroupSizeMSecondaryWideWrapped() { - composeTestRule.content { - ChipGroupSizeMSecondaryWideWrapped(style = ChipGroupWide.M.Secondary.style()) - } - } - - @Test - fun testChipGroupSizeSAccentDense() { - composeTestRule.content { - ChipGroupSizeSAccentDense(style = ChipGroupDense.S.Accent.style()) - } - } - - @Test - fun testChipGroupSizeXsDefault() { - composeTestRule.content { - ChipGroupSizeXsDefault(style = ChipGroupDense.Xs.Default.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCodeInputScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCodeInputScreenshotTest.kt deleted file mode 100644 index b898ab624c..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCodeInputScreenshotTest.kt +++ /dev/null @@ -1,103 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthFive -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthFour -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSix -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSixHidden -import com.sdds.compose.uikit.fixtures.testcases.CodeInputCodeLengthSixNoCaption -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.codeinput.CodeInput -import com.sdds.stylessalute.styles.codeinput.L -import com.sdds.stylessalute.styles.codeinput.M -import com.sdds.stylessalute.styles.codeinput.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCodeInputScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCodeInputSizeLCodeLengthFourCaptionStart() { - composeTestRule.content { - CodeInputCodeLengthFour(style = CodeInput.L.style()) - } - } - - @Test - fun testCodeInputSizeMCodeLengthFiveCaptionCenter() { - composeTestRule.content { - CodeInputCodeLengthFive(style = CodeInput.M.style()) - } - } - - @Test - fun testCodeInputSizeSCodeLengthSix() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.S.style()) - } - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputSizeLNoCaption() { - composeTestRule.content { - CodeInputCodeLengthSixNoCaption(style = CodeInput.L.style()) - } - } - - @Test - fun testCodeInputSizeMHidden() { - composeTestRule.content { - CodeInputCodeLengthSixHidden(style = CodeInput.M.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("2") - } - - @Test - fun testCodeInputCorrectNumber() { - composeTestRule.content { - CodeInputCodeLengthFour(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("1234") - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputWrongCode() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("222333") - composeTestRule.mainClock.autoAdvance = false - composeTestRule.mainClock.advanceTimeBy(100) - } - - @Config(qualifiers = "land") - @Test - fun testCodeInputWrongCodeCaption() { - composeTestRule.content { - CodeInputCodeLengthSix(style = CodeInput.L.style()) - } - composeTestRule - .onNodeWithTag("CodeInput") - .performTextInput("222333") - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCounterScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCounterScreenshotTest.kt deleted file mode 100644 index 960c5d49fa..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeCounterScreenshotTest.kt +++ /dev/null @@ -1,76 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.CounterCommon -import com.sdds.compose.uikit.fixtures.testcases.CounterSizeLWhite -import com.sdds.compose.uikit.fixtures.testcases.CounterSizeSPositiveLongNumber -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.counter.Accent -import com.sdds.stylessalute.styles.counter.Counter -import com.sdds.stylessalute.styles.counter.Default -import com.sdds.stylessalute.styles.counter.L -import com.sdds.stylessalute.styles.counter.M -import com.sdds.stylessalute.styles.counter.Negative -import com.sdds.stylessalute.styles.counter.Positive -import com.sdds.stylessalute.styles.counter.S -import com.sdds.stylessalute.styles.counter.Warning -import com.sdds.stylessalute.styles.counter.White -import com.sdds.stylessalute.styles.counter.Xs -import com.sdds.stylessalute.styles.counter.Xxs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeCounterScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testCounterSizeLDefault() { - composeTestRule.content { - CounterCommon(style = Counter.L.Default.style()) - } - } - - @Test - fun testCounterSizeMAccent() { - composeTestRule.content { - CounterCommon(style = Counter.M.Accent.style()) - } - } - - @Test - fun testCounterSizeSPositive() { - composeTestRule.content { - CounterSizeSPositiveLongNumber(style = Counter.S.Positive.style()) - } - } - - @Test - fun testCounterSizeXsWarning() { - composeTestRule.content { - CounterCommon(style = Counter.Xs.Warning.style()) - } - } - - @Test - fun testCounterSizeLWhite() { - composeTestRule.content { - CounterSizeLWhite(style = Counter.L.White.style()) - } - } - - @Test - fun testCounterSizeXxsNegative() { - composeTestRule.content { - CounterCommon(style = Counter.Xxs.Negative.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeDropDownMenuScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeDropDownMenuScreenshotTest.kt deleted file mode 100644 index 3f002bcdee..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeDropDownMenuScreenshotTest.kt +++ /dev/null @@ -1,184 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuLStrictCenterStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuMStrictBottomStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuSStrictTopCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuTightXsStrictCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlAmountTenLooseBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlAmountTenStrictCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlHasDisclosureTopStart -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlLooseBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXlLooseTopEndDivider -import com.sdds.compose.uikit.fixtures.testcases.DropDownMenuXsStrictCenter -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.dropdownmenu.DropdownMenuNormal -import com.sdds.stylessalute.styles.dropdownmenu.DropdownMenuTight -import com.sdds.stylessalute.styles.dropdownmenu.L -import com.sdds.stylessalute.styles.dropdownmenu.M -import com.sdds.stylessalute.styles.dropdownmenu.S -import com.sdds.stylessalute.styles.dropdownmenu.Xs -import org.junit.Ignore -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeDropDownMenuScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLHasDisclosureTopStart() { - composeTestRule.content { - DropDownMenuXlHasDisclosureTopStart( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLStrictCenterStart() { - composeTestRule.content { - DropDownMenuLStrictCenterStart( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuMStrictBottomStart() { - composeTestRule.content { - DropDownMenuMStrictBottomStart( - DropdownMenuNormal.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuSStrictTopCenter() { - composeTestRule.content { - DropDownMenuSStrictTopCenter( - DropdownMenuNormal.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuXsStrictCenter() { - composeTestRule.content { - DropDownMenuXsStrictCenter( - DropdownMenuNormal.Xs.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLAmountTenLooseBottomCenter() { - composeTestRule.content { - DropDownMenuXlAmountTenLooseBottomCenter( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLLooseTopEndDivider() { - composeTestRule.content { - DropDownMenuXlLooseTopEndDivider( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLAmountTenStrictCenterEnd() { - composeTestRule.content { - DropDownMenuXlAmountTenStrictCenterEnd( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Ignore("Такая же проблема как и в Popover") - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuLLooseBottomEnd() { - composeTestRule.content { - DropDownMenuXlLooseBottomEnd( - DropdownMenuNormal.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testDropDownMenuTightXsStrictCenter() { - composeTestRule.content { - DropDownMenuTightXsStrictCenter( - DropdownMenuTight.Xs.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show DropDownMenu").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeIndicatorScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeIndicatorScreenshotTest.kt deleted file mode 100644 index 7ab066b6d7..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeIndicatorScreenshotTest.kt +++ /dev/null @@ -1,72 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.IndicatorCommon -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.indicator.Accent -import com.sdds.stylessalute.styles.indicator.Default -import com.sdds.stylessalute.styles.indicator.Inactive -import com.sdds.stylessalute.styles.indicator.Indicator -import com.sdds.stylessalute.styles.indicator.L -import com.sdds.stylessalute.styles.indicator.M -import com.sdds.stylessalute.styles.indicator.Negative -import com.sdds.stylessalute.styles.indicator.Positive -import com.sdds.stylessalute.styles.indicator.S -import com.sdds.stylessalute.styles.indicator.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeIndicatorScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testIndicatorSizeLDefault() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Default.style()) - } - } - - @Test - fun testIndicatorSizeMAccent() { - composeTestRule.content { - IndicatorCommon(style = Indicator.M.Accent.style()) - } - } - - @Test - fun testIndicatorSizeSInactive() { - composeTestRule.content { - IndicatorCommon(style = Indicator.S.Inactive.style()) - } - } - - @Test - fun testIndicatorSizeLPositive() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Positive.style()) - } - } - - @Test - fun testIndicatorSizeLWarning() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Warning.style()) - } - } - - @Test - fun testIndicatorSizeLNegative() { - composeTestRule.content { - IndicatorCommon(style = Indicator.L.Negative.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeListScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeListScreenshotTest.kt deleted file mode 100644 index 6c5113404b..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeListScreenshotTest.kt +++ /dev/null @@ -1,71 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ListAmountThreeHasDisclosure -import com.sdds.compose.uikit.fixtures.testcases.ListAmountThreeNoDisclosure -import com.sdds.compose.uikit.fixtures.testcases.ListAmountTwenty -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.list.L -import com.sdds.stylessalute.styles.list.ListNormal -import com.sdds.stylessalute.styles.list.ListTight -import com.sdds.stylessalute.styles.list.M -import com.sdds.stylessalute.styles.list.S -import com.sdds.stylessalute.styles.list.Xl -import com.sdds.stylessalute.styles.list.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeListScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testListNormalXlAmountThreeHasDisclosure() { - composeTestRule.content { - ListAmountThreeHasDisclosure(ListNormal.Xl.style()) - } - } - - @Test - fun testListNormalLAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.L.style()) - } - } - - @Test - fun testListNormalMAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.M.style()) - } - } - - @Test - fun testListNormalSAmountThree() { - composeTestRule.content { - ListAmountThreeNoDisclosure(ListNormal.S.style()) - } - } - - @Test - fun testListNormalXsAmountTwenty() { - composeTestRule.content { - ListAmountTwenty(ListNormal.Xs.style()) - } - } - - @Test - fun testListTightXsAmountThreeHasDisclosure() { - composeTestRule.content { - ListAmountThreeHasDisclosure(ListTight.Xs.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeMaskScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeMaskScreenshotTest.kt deleted file mode 100644 index c71988bab0..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeMaskScreenshotTest.kt +++ /dev/null @@ -1,292 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextClearance -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.MaskDisabledIconAction -import com.sdds.compose.uikit.fixtures.testcases.MaskLongDateAlwaysIconAction -import com.sdds.compose.uikit.fixtures.testcases.MaskNumberAlwaysAction -import com.sdds.compose.uikit.fixtures.testcases.MaskNumberIconAction -import com.sdds.compose.uikit.fixtures.testcases.MaskPhoneDisplayAlwaysPlaceholder -import com.sdds.compose.uikit.fixtures.testcases.MaskPhoneOnInput -import com.sdds.compose.uikit.fixtures.testcases.MaskPhoneType -import com.sdds.compose.uikit.fixtures.testcases.MaskReadOnlyIconAction -import com.sdds.compose.uikit.fixtures.testcases.MaskShortDateAlwaysIconAction -import com.sdds.compose.uikit.fixtures.testcases.MaskTimeAlwaysIcon -import com.sdds.compose.uikit.fixtures.testcases.MaskTimeAlwaysTBTA -import com.sdds.compose.uikit.fixtures.testcases.MaskTimeIconAction -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.textfield.Default -import com.sdds.stylessalute.styles.textfield.Error -import com.sdds.stylessalute.styles.textfield.InnerLabel -import com.sdds.stylessalute.styles.textfield.L -import com.sdds.stylessalute.styles.textfield.M -import com.sdds.stylessalute.styles.textfield.OuterLabel -import com.sdds.stylessalute.styles.textfield.RequiredEnd -import com.sdds.stylessalute.styles.textfield.RequiredStart -import com.sdds.stylessalute.styles.textfield.S -import com.sdds.stylessalute.styles.textfield.Success -import com.sdds.stylessalute.styles.textfield.TextField -import com.sdds.stylessalute.styles.textfield.Warning -import com.sdds.stylessalute.styles.textfield.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeMaskScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testMaskLDefaultOuterPhoneDisplayAlwaysPlaceholder() { - composeTestRule.content { - MaskPhoneDisplayAlwaysPlaceholder(TextField.L.OuterLabel.Default.style()) - } - } - - @Test - fun testMaskMSuccessOuterPhoneDisplayAlwaysPlaceholder() { - composeTestRule.content { - MaskPhoneDisplayAlwaysPlaceholder(TextField.M.OuterLabel.Success.style()) - } - } - - @Test - fun testMaskSWarningRequiredRightPhoneDisplayAlwaysPlaceholder() { - composeTestRule.content { - MaskPhoneDisplayAlwaysPlaceholder(TextField.S.OuterLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testMaskXsErrorRequiredLeftPhoneDisplayAlwaysPlaceholder() { - composeTestRule.content { - MaskPhoneDisplayAlwaysPlaceholder(TextField.Xs.OuterLabel.RequiredStart.Error.style()) - } - } - - @Test - fun testMaskDisabledIconAction() { - composeTestRule.content { - MaskDisabledIconAction(TextField.L.Default.style()) - } - } - - @Test - fun testMaskReadOnlyIconAction() { - composeTestRule.content { - MaskReadOnlyIconAction(TextField.L.Default.style()) - } - } - - @Test - fun testMaskXlDefaultShortDateAlwaysIconAction() { - composeTestRule.content { - MaskShortDateAlwaysIconAction(TextField.L.OuterLabel.Default.style()) - } - } - - @Test - fun testMaskLSuccessRequiredLeftInnerTimeAlwaysIconAction() { - composeTestRule.content { - MaskTimeAlwaysIcon(TextField.L.InnerLabel.RequiredStart.Success.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performClick() - } - - @Test - fun testMaskMWarningRequiredRightOuterNumberAlwaysAction() { - composeTestRule.content { - MaskNumberAlwaysAction(TextField.M.OuterLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testMaskSErrorTimeAlwaysTBTA() { - composeTestRule.content { - MaskTimeAlwaysTBTA(TextField.S.Error.style()) - } - } - - @Test - fun testMaskXsDefaultRequiredLeftPhoneOnInput() { - composeTestRule.content { - MaskPhoneOnInput(TextField.Xs.RequiredStart.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField") - .performClick() - .performTextInput("9") - } - - @Test - fun testMaskTypeLetterInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField") - .performClick() - .performTextInput("a0") - } - - @Test - fun testMaskTypeNumberInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField") - .performClick() - .performTextInput("7") - } - - @Test - fun testMaskTypeAnyOtherNumberInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField") - .performTextInput("495") - } - - @Test - fun testMaskDeleteNumberInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("495") - composeTestRule.onNodeWithTag("MaskedTextField").performTextClearance() - } - - @Test - fun testMaskInputFullNumberInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("1234567890") - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("a") - } - - @Test - fun testMaskInputLetterAndNumbersInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("!w123ф%е45") - } - - @Test - fun testMaskInputPartiallyFilledNumberInTelephone() { - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("123456") - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("!w123ф%е45") - } - - @Test - fun testMaskInputFullyFilledNumberInTelephone() { - val pasteText = "!w123ф%е45" - composeTestRule.content { - MaskPhoneType(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("1234567890") - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput(pasteText) - } - - @Test - fun testMaskShortDateInput() { - composeTestRule.content { - MaskShortDateAlwaysIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("121212") - } - - @Test - fun testMaskShortDateInputNotFull() { - composeTestRule.content { - MaskShortDateAlwaysIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("1212") - } - - @Test - fun testMaskFullDateInput() { - composeTestRule.content { - MaskLongDateAlwaysIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("12122012") - } - - @Test - fun testMaskTimeInput() { - composeTestRule.content { - MaskTimeIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("1234") - } - - @Test - fun testMaskTimeInputStartWithZero() { - composeTestRule.content { - MaskTimeIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("0830") - } - - @Test - fun testMaskTimeInputMaxNumber() { - composeTestRule.content { - MaskTimeIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("9999") - } - - @Test - fun testMaskTimeInputWithLetter() { - val pasteText = "12a34" - composeTestRule.content { - MaskTimeIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput(pasteText) - } - - @Test - fun testMaskNumberInput() { - composeTestRule.content { - MaskNumberIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("12345,00") - } - - @Test - fun testMaskNumberInputMaxNumber() { - composeTestRule.content { - MaskNumberIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("999999999999999999,99999") - } - - @Test - fun testMaskNumberInputOneNumber() { - composeTestRule.content { - MaskNumberIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("1") - } - - @Test - fun testMaskNumberInputSymbolsAndLetters() { - composeTestRule.content { - MaskNumberIconAction(TextField.L.Default.style()) - } - composeTestRule.onNodeWithTag("MaskedTextField").performTextInput("!w123ф%е45") - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeModalScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeModalScreenshotTest.kt deleted file mode 100644 index 24eb19864a..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeModalScreenshotTest.kt +++ /dev/null @@ -1,193 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ModalBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.ModalBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.ModalBottomStart -import com.sdds.compose.uikit.fixtures.testcases.ModalCenter -import com.sdds.compose.uikit.fixtures.testcases.ModalCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.ModalCenterStart -import com.sdds.compose.uikit.fixtures.testcases.ModalNativeBlackoutHasClose -import com.sdds.compose.uikit.fixtures.testcases.ModalTopCenter -import com.sdds.compose.uikit.fixtures.testcases.ModalTopEnd -import com.sdds.compose.uikit.fixtures.testcases.ModalTopStart -import com.sdds.compose.uikit.fixtures.testcases.ModalWithoutNativeBlackout -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.modal.Default -import com.sdds.stylessalute.styles.modal.Modal -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeModalScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalNativeBlackoutHasClose() { - composeTestRule.content { - ModalNativeBlackoutHasClose( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalWithoutNativeBlackout() { - composeTestRule.content { - ModalWithoutNativeBlackout( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalTopStart() { - composeTestRule.content { - ModalTopStart( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalTopCenter() { - composeTestRule.content { - ModalTopCenter( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalTopEnd() { - composeTestRule.content { - ModalTopEnd( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalCenterStart() { - composeTestRule.content { - ModalCenterStart( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalCenter() { - composeTestRule.content { - ModalCenter( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalCenterEnd() { - composeTestRule.content { - ModalCenterEnd( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalBottomStart() { - composeTestRule.content { - ModalBottomStart( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalBottomCenter() { - composeTestRule.content { - ModalBottomCenter( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testModalBottomEnd() { - composeTestRule.content { - ModalBottomEnd( - style = Modal.Default.style(), - buttonStyle = BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationContentScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationContentScreenshotTest.kt deleted file mode 100644 index be7ae50bf7..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationContentScreenshotTest.kt +++ /dev/null @@ -1,90 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentHasAction -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentLongText -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoText -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoTitle -import com.sdds.compose.uikit.fixtures.testcases.NotificationContentNoTitleNoText -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.notificationcontent.ButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.Default -import com.sdds.stylessalute.styles.notificationcontent.IconStart -import com.sdds.stylessalute.styles.notificationcontent.IconTop -import com.sdds.stylessalute.styles.notificationcontent.Info -import com.sdds.stylessalute.styles.notificationcontent.Negative -import com.sdds.stylessalute.styles.notificationcontent.NoButtonStretch -import com.sdds.stylessalute.styles.notificationcontent.NotificationContent -import com.sdds.stylessalute.styles.notificationcontent.Positive -import com.sdds.stylessalute.styles.notificationcontent.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeNotificationContentScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testNotificationContentNoIconDefault() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Default.style()) - } - } - - @Test - fun testNotificationContentIconTopPositiveNoTitle() { - composeTestRule.content { - NotificationContentNoTitle(style = NotificationContent.ButtonStretch.IconTop.Positive.style()) - } - } - - @Test - fun testNotificationContentIconStartNegative() { - composeTestRule.content { - NotificationContentNoText(style = NotificationContent.ButtonStretch.IconStart.Negative.style()) - } - } - - @Test - fun testNotificationContentIconTopWarning() { - composeTestRule.content { - NotificationContentNoTitleNoText(style = NotificationContent.ButtonStretch.IconTop.Warning.style()) - } - } - - @Test - fun testNotificationContentIconStartInfo() { - composeTestRule.content { - NotificationContentLongText(style = NotificationContent.ButtonStretch.IconStart.Info.style()) - } - } - - @Test - fun testNotificationContentLooseIconStartDefault() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.NoButtonStretch.IconStart.Default.style()) - } - } - - @Test - fun testNotificationContentPositive() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Positive.style()) - } - } - - @Test - fun testNotificationContentWarning() { - composeTestRule.content { - NotificationContentHasAction(style = NotificationContent.ButtonStretch.Warning.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationScreenshotTest.kt deleted file mode 100644 index 9436f4a338..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeNotificationScreenshotTest.kt +++ /dev/null @@ -1,167 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactLCenterStartNoTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactLTopStartHasCloseText -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactMTopCenterHasCloseActionButton -import com.sdds.compose.uikit.fixtures.testcases.NotificationCompactSTopEndText -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLBottomCenterTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLBottomEndTextHasCloseActionButton -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseLCenterTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseMCenterEndTextHasClose -import com.sdds.compose.uikit.fixtures.testcases.NotificationLooseSBottomStartText -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.M -import com.sdds.stylessalute.styles.notification.L -import com.sdds.stylessalute.styles.notification.M -import com.sdds.stylessalute.styles.notification.NotificationCompact -import com.sdds.stylessalute.styles.notification.NotificationLoose -import com.sdds.stylessalute.styles.notification.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeNotificationScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactLTopStartHasContentStartEnd() { - composeTestRule.content { - NotificationCompactLTopStartHasCloseText( - NotificationCompact.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactMTopCenterHasCloseActionButton() { - composeTestRule.content { - NotificationCompactMTopCenterHasCloseActionButton( - NotificationCompact.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactSTopEndText() { - composeTestRule.content { - NotificationCompactSTopEndText( - NotificationCompact.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationCompactLCenterStartNoTextHasClose() { - composeTestRule.content { - NotificationCompactLCenterStartNoTextHasClose( - NotificationCompact.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseLCenterTextHasClose() { - composeTestRule.content { - NotificationLooseLCenterTextHasClose( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseMCenterEndTextHasClose() { - composeTestRule.content { - NotificationLooseMCenterEndTextHasClose( - NotificationLoose.M.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseSBottomStartText() { - composeTestRule.content { - NotificationLooseSBottomStartText( - NotificationLoose.S.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testNotificationLooseLBottomCenterTextHasClose() { - composeTestRule.content { - NotificationLooseLBottomCenterTextHasClose( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Config(qualifiers = "+land") - @Test - fun testNotificationLooseLBottomEndTextHasCloseActionButton() { - composeTestRule.content { - NotificationLooseLBottomEndTextHasCloseActionButton( - NotificationLoose.L.style(), - BasicButton.M.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposePopoverScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposePopoverScreenshotTest.kt deleted file mode 100644 index f3a3d17e0c..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposePopoverScreenshotTest.kt +++ /dev/null @@ -1,168 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.PopoverMAccentStrictTopCenterCenterStart -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseStartCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultLooseTopEnd -import com.sdds.compose.uikit.fixtures.testcases.PopoverMDefaultStrictBottomEndTopStart -import com.sdds.compose.uikit.fixtures.testcases.PopoverSAccentStrictBottomStartTopCenter -import com.sdds.compose.uikit.fixtures.testcases.PopoverSDefaultLooseEndBottomStart -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.S -import com.sdds.stylessalute.styles.popover.Accent -import com.sdds.stylessalute.styles.popover.Default -import com.sdds.stylessalute.styles.popover.M -import com.sdds.stylessalute.styles.popover.Popover -import com.sdds.stylessalute.styles.popover.S -import org.junit.Ignore -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposePopoverScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultStrictBottomEndTopStart() { - composeTestRule.content { - PopoverMDefaultStrictBottomEndTopStart( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMAccentStrictTopCenterCenterStart() { - composeTestRule.content { - PopoverMAccentStrictTopCenterCenterStart( - style = Popover.M.Accent.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverSDefaultLooseEndBottomStart() { - composeTestRule.content { - PopoverSDefaultLooseEndBottomStart( - style = Popover.S.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverSAccentStrictBottomStartTopCenter() { - composeTestRule.content { - PopoverSAccentStrictBottomStartTopCenter( - style = Popover.S.Accent.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenter() { - composeTestRule.content { - PopoverMDefaultLooseStartCenter( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartBottomCenter() { - composeTestRule.content { - PopoverMDefaultLooseStartBottomCenter( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Ignore - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseTopEnd() { - composeTestRule.content { - PopoverMDefaultLooseTopEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenterEnd() { - composeTestRule.content { - PopoverMDefaultLooseStartCenterEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testPopoverMDefaultLooseStartCenterBottomEnd() { - composeTestRule.content { - PopoverMDefaultLooseStartCenterBottomEnd( - style = Popover.M.Default.style(), - buttonStyle = BasicButton.S.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeProgressScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeProgressScreenshotTest.kt deleted file mode 100644 index 4887eb6fa5..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeProgressScreenshotTest.kt +++ /dev/null @@ -1,94 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarAccent -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarDefault -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarDefaultValueOne -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarGradientAccent -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarNegative -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarPositive -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarSecondary -import com.sdds.compose.uikit.fixtures.testcases.ProgressBarWarning -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.progressbar.Accent -import com.sdds.stylessalute.styles.progressbar.Default -import com.sdds.stylessalute.styles.progressbar.Gradient -import com.sdds.stylessalute.styles.progressbar.Negative -import com.sdds.stylessalute.styles.progressbar.Positive -import com.sdds.stylessalute.styles.progressbar.ProgressBar -import com.sdds.stylessalute.styles.progressbar.Secondary -import com.sdds.stylessalute.styles.progressbar.Warning -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeProgressScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testProgressBarDefault() { - composeTestRule.content { - ProgressBarDefault(style = ProgressBar.Default.style()) - } - } - - @Test - fun testProgressBarSecondary() { - composeTestRule.content { - ProgressBarSecondary(style = ProgressBar.Secondary.style()) - } - } - - @Test - fun testProgressBarWarning() { - composeTestRule.content { - ProgressBarWarning(style = ProgressBar.Warning.style()) - } - } - - @Test - fun testProgressBarPositive() { - composeTestRule.content { - ProgressBarPositive(style = ProgressBar.Positive.style()) - } - } - - @Test - fun testProgressBarNegative() { - composeTestRule.content { - ProgressBarNegative(style = ProgressBar.Negative.style()) - } - } - - @Test - fun testProgressBarAccent() { - composeTestRule.content { - ProgressBarAccent(style = ProgressBar.Accent.style()) - } - } - - @Test - fun testProgressBarGradientAccent() { - composeTestRule.content { - ProgressBarGradientAccent(style = ProgressBar.Gradient.style()) - } - } - - @Test - fun testProgressBarDefaultValueOne() { - composeTestRule.content { - ProgressBarDefaultValueOne(style = ProgressBar.Default.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRadioBoxScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRadioBoxScreenshotTest.kt deleted file mode 100644 index 9988163d46..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRadioBoxScreenshotTest.kt +++ /dev/null @@ -1,92 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxDisabled -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeM -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeMDescription -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeS -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxGroupSizeSLabel -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeM -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeMNoDescription -import com.sdds.compose.uikit.fixtures.testcases.RadioBoxSizeS -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.radiobox.M -import com.sdds.stylessalute.styles.radiobox.RadioBox -import com.sdds.stylessalute.styles.radiobox.S -import com.sdds.stylessalute.styles.radioboxgroup.M -import com.sdds.stylessalute.styles.radioboxgroup.RadioBoxGroup -import com.sdds.stylessalute.styles.radioboxgroup.S -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeRadioBoxScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testRadioBoxSizeM() { - composeTestRule.content { - RadioBoxSizeM(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxSizeS() { - composeTestRule.content { - RadioBoxSizeS(style = RadioBox.S.style()) - } - } - - @Test - fun testRadioBoxSizeMNoDescription() { - composeTestRule.content { - RadioBoxSizeMNoDescription(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxDisabled() { - composeTestRule.content { - RadioBoxDisabled(style = RadioBox.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeM() { - composeTestRule.content { - RadioBoxGroupSizeM(style = RadioBoxGroup.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeS() { - composeTestRule.content { - RadioBoxGroupSizeS(style = RadioBoxGroup.S.style()) - } - } - - @Test - fun testRadioBoxGroupSizeMDescription() { - composeTestRule.content { - RadioBoxGroupSizeMDescription(style = RadioBoxGroup.M.style()) - } - } - - @Test - fun testRadioBoxGroupSizeSLabel() { - composeTestRule.content { - RadioBoxGroupSizeSLabel(style = RadioBoxGroup.S.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRectSkeletonScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRectSkeletonScreenshotTest.kt deleted file mode 100644 index 5f3ac44e4a..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeRectSkeletonScreenshotTest.kt +++ /dev/null @@ -1,37 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.RectSkeletonTest -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.rectskeleton.Default -import com.sdds.stylessalute.styles.rectskeleton.Lighter -import com.sdds.stylessalute.styles.rectskeleton.RectSkeleton -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeRectSkeletonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testRectSkeleton() { - composeTestRule.content { - RectSkeletonTest(style = RectSkeleton.Default.style()) - } - } - - @Test - fun testRectSkeletonLighter() { - composeTestRule.content { - RectSkeletonTest(style = RectSkeleton.Lighter.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeScrollBarScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeScrollBarScreenshotTest.kt deleted file mode 100644 index 474edb5a7f..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeScrollBarScreenshotTest.kt +++ /dev/null @@ -1,52 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.geometry.Offset -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performTouchInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ScrollBarM -import com.sdds.compose.uikit.fixtures.testcases.ScrollBarS -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.scrollbar.M -import com.sdds.stylessalute.styles.scrollbar.S -import com.sdds.stylessalute.styles.scrollbar.ScrollBar -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeScrollBarScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testScrollBarM() { - composeTestRule.content { - ScrollBarM(style = ScrollBar.M.style()) - } - composeTestRule.onNodeWithTag("scrollBar").performTouchInput { - down(center) - advanceEventTime(500L) - up() - } - } - - @Test - fun testScrollBarS() { - composeTestRule.content { - ScrollBarS(style = ScrollBar.S.style()) - } - composeTestRule.onNodeWithTag("scrollBar").performTouchInput { - down(center) - advanceEventTime(500L) - moveBy(Offset(0f, 300f)) - up() - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSegmentScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSegmentScreenshotTest.kt deleted file mode 100644 index 1b6144e2ef..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSegmentScreenshotTest.kt +++ /dev/null @@ -1,139 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.SegmentDisabled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemDisabled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeLPrimary -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeMSecondaryPilled -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeS -import com.sdds.compose.uikit.fixtures.testcases.SegmentItemSizeXs -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeL -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeLCounter -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeMPilled -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeOrientationVertical -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeS -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeSStretch -import com.sdds.compose.uikit.fixtures.testcases.SegmentSizeXs -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.segment.L -import com.sdds.stylessalute.styles.segment.M -import com.sdds.stylessalute.styles.segment.Pilled -import com.sdds.stylessalute.styles.segment.Primary -import com.sdds.stylessalute.styles.segment.S -import com.sdds.stylessalute.styles.segment.Secondary -import com.sdds.stylessalute.styles.segment.Segment -import com.sdds.stylessalute.styles.segment.Xs -import com.sdds.stylessalute.styles.segmentitem.L -import com.sdds.stylessalute.styles.segmentitem.M -import com.sdds.stylessalute.styles.segmentitem.Pilled -import com.sdds.stylessalute.styles.segmentitem.Primary -import com.sdds.stylessalute.styles.segmentitem.S -import com.sdds.stylessalute.styles.segmentitem.Secondary -import com.sdds.stylessalute.styles.segmentitem.SegmentItem -import com.sdds.stylessalute.styles.segmentitem.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeSegmentScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testSegmentItemSizeLPrimary() { - composeTestRule.content { - SegmentItemSizeLPrimary(style = SegmentItem.L.Primary.style()) - } - } - - @Test - fun testSegmentItemSizeMSecondary() { - composeTestRule.content { - SegmentItemSizeMSecondaryPilled(style = SegmentItem.M.Pilled.Secondary.style()) - } - } - - @Test - fun testSegmentItemSizeS() { - composeTestRule.content { - SegmentItemSizeS(style = SegmentItem.S.Primary.style()) - } - } - - @Test - fun testSegmentItemSizeXs() { - composeTestRule.content { - SegmentItemSizeXs(style = SegmentItem.Xs.Pilled.Primary.style()) - } - } - - @Test - fun testSegmentItemDisabled() { - composeTestRule.content { - SegmentItemDisabled(style = SegmentItem.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeL() { - composeTestRule.content { - SegmentSizeL(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeM() { - composeTestRule.content { - SegmentSizeMPilled(style = Segment.M.Pilled.Secondary.style()) - } - } - - @Test - fun testSegmentSizeS() { - composeTestRule.content { - SegmentSizeS(style = Segment.S.Primary.style()) - } - } - - @Test - fun testSegmentSizeXs() { - composeTestRule.content { - SegmentSizeXs(style = Segment.Xs.Primary.style()) - } - } - - @Test - fun testSegmentOrientationVertical() { - composeTestRule.content { - SegmentSizeOrientationVertical(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentDisabled() { - composeTestRule.content { - SegmentDisabled(style = Segment.L.Primary.style()) - } - } - - @Test - fun testSegmentSizeSStretch() { - composeTestRule.content { - SegmentSizeSStretch(style = Segment.S.Primary.style()) - } - } - - @Test - fun testSegmentSizeLCounter() { - composeTestRule.content { - SegmentSizeLCounter(style = Segment.L.Primary.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSwitchScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSwitchScreenshotTest.kt deleted file mode 100644 index 95493eb0b9..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeSwitchScreenshotTest.kt +++ /dev/null @@ -1,81 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.SwitchLOn -import com.sdds.compose.uikit.fixtures.testcases.SwitchMOff -import com.sdds.compose.uikit.fixtures.testcases.SwitchOffDisabled -import com.sdds.compose.uikit.fixtures.testcases.SwitchOnDisabled -import com.sdds.compose.uikit.fixtures.testcases.SwitchS -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.switcher.L -import com.sdds.stylessalute.styles.switcher.M -import com.sdds.stylessalute.styles.switcher.S -import com.sdds.stylessalute.styles.switcher.Switch -import com.sdds.stylessalute.styles.switcher.ToggleS -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeSwitchScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testSwitchOn() { - composeTestRule.content { - SwitchLOn(style = Switch.L.style()) - } - } - - @Test - fun testSwitchOff() { - composeTestRule.content { - SwitchMOff(style = Switch.M.style()) - } - } - - @Test - fun testSwitchS() { - composeTestRule.content { - SwitchS(style = Switch.S.style()) - } - } - - @Test - fun testSwitchOnDisabled() { - composeTestRule.content { - SwitchOnDisabled(style = Switch.M.style()) - } - } - - @Test - fun testSwitchOffDisabled() { - composeTestRule.content { - SwitchOffDisabled(style = Switch.M.style()) - } - } - - @Test - fun testSwitchLToggleS() { - composeTestRule.content { - SwitchLOn(style = Switch.L.ToggleS.style()) - } - } - - @Test - fun testSwitchSToggleS() { - composeTestRule.content { - SwitchMOff(style = Switch.S.ToggleS.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextAreaScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextAreaScreenshotTest.kt deleted file mode 100644 index 4321dcc982..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextAreaScreenshotTest.kt +++ /dev/null @@ -1,215 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearLDefaultChipsInnerRequiredEnd -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearLErrorInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearMErrorInnerRequiredStart -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearMWarningRequiredStartInner -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaClearXsDefaultOuterRequireEndFocused -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDefaultInnerLeft -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDefaultTBTA -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLDisabled -import com.sdds.compose.uikit.fixtures.testcases.TextAreaLReadOnly -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMErrorOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMInnerOptionalChips -import com.sdds.compose.uikit.fixtures.testcases.TextAreaMWarningInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSDefaultInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSDefaultOuterRightChips -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSLongText -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSWarningInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextAreaSWarningInnerRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextAreaXSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextAreaXsErrorInnerOptional -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.textarea.Default -import com.sdds.stylessalute.styles.textarea.Error -import com.sdds.stylessalute.styles.textarea.InnerLabel -import com.sdds.stylessalute.styles.textarea.L -import com.sdds.stylessalute.styles.textarea.M -import com.sdds.stylessalute.styles.textarea.OuterLabel -import com.sdds.stylessalute.styles.textarea.RequiredEnd -import com.sdds.stylessalute.styles.textarea.RequiredStart -import com.sdds.stylessalute.styles.textarea.S -import com.sdds.stylessalute.styles.textarea.TextArea -import com.sdds.stylessalute.styles.textarea.TextAreaClear -import com.sdds.stylessalute.styles.textarea.Warning -import com.sdds.stylessalute.styles.textarea.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextAreaScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testTextAreaLDefaultInnerLeft() { - composeTestRule.content { - TextAreaLDefaultInnerLeft(style = TextArea.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMDefaultOuterOptional() { - composeTestRule.content { - TextAreaMDefaultOuterOptional(style = TextArea.M.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaSWarningInnerRight() { - composeTestRule.content { - TextAreaSWarningInnerRight(style = TextArea.S.InnerLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testTextAreaXsErrorInnerOptional() { - composeTestRule.content { - TextAreaXsErrorInnerOptional(style = TextArea.Xs.Error.style()) - } - } - - @Test - fun testTextAreaLReadOnly() { - composeTestRule.content { - TextAreaLReadOnly(style = TextArea.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMWarningInnerOptional() { - composeTestRule.content { - TextAreaMWarningInnerOptional(style = TextArea.M.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextAreaSDefaultInnerRight() { - composeTestRule.content { - TextAreaSDefaultInnerRight(style = TextArea.S.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaXSDefaultOuterOptional() { - composeTestRule.content { - TextAreaXSDefaultOuterOptional(style = TextArea.Xs.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaDisabled() { - composeTestRule.content { - TextAreaLDisabled(style = TextArea.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextAreaMErrorOuterOptional() { - composeTestRule.content { - TextAreaMErrorOuterOptional(style = TextArea.M.OuterLabel.Error.style()) - } - } - - @Test - fun testTextAreaSWarningInnerRightFocused() { - composeTestRule.content { - TextAreaSWarningInnerRightFocused(style = TextArea.S.InnerLabel.RequiredEnd.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - composeTestRule.mainClock.advanceTimeByFrame() - } - - @Test - fun testTextAreaMInnerOptionalChips() { - composeTestRule.content { - TextAreaMInnerOptionalChips(style = TextArea.M.Default.style()) - } - } - - @Test - fun testTextAreaSDefaultOuterRightChips() { - composeTestRule.content { - TextAreaSDefaultOuterRightChips(style = TextArea.S.OuterLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaSLongText() { - composeTestRule.content { - TextAreaSLongText(style = TextArea.S.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextAreaLDefaultTBTA() { - composeTestRule.content { - TextAreaLDefaultTBTA(style = TextArea.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaClearLErrorInnerOptional() { - composeTestRule.content { - TextAreaClearLErrorInnerOptional(style = TextAreaClear.L.InnerLabel.Error.style()) - } - } - - @Test - fun testTextAreaClearMWarningRequiredStartInner() { - composeTestRule.content { - TextAreaClearMWarningRequiredStartInner(style = TextAreaClear.M.InnerLabel.RequiredStart.Warning.style()) - } - } - - @Test - fun testTextAreaClearSDefaultOuterOptional() { - composeTestRule.content { - TextAreaClearSDefaultOuterOptional(style = TextAreaClear.S.OuterLabel.Default.style()) - } - } - - @Test - fun testTextAreaClearXsDefaultOuterRequireEndFocused() { - composeTestRule.content { - TextAreaClearXsDefaultOuterRequireEndFocused( - style = TextAreaClear.Xs.OuterLabel.RequiredEnd.Default.style(), - ) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("Value") - composeTestRule.mainClock.advanceTimeByFrame() - } - - @Test - fun testTextAreaClearLDefaultChipsInnerRequiredEnd() { - composeTestRule.content { - TextAreaClearLDefaultChipsInnerRequiredEnd(style = TextAreaClear.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextAreaClearMErrorInnerRequiredStart() { - composeTestRule.content { - TextAreaClearMErrorInnerRequiredStart(style = TextAreaClear.M.InnerLabel.RequiredStart.Error.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextFieldScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextFieldScreenshotTest.kt deleted file mode 100644 index 096dfc5df3..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextFieldScreenshotTest.kt +++ /dev/null @@ -1,249 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.performClick -import androidx.compose.ui.test.performTextInput -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLDefaultInnerRequiredRight -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLErrorInnerOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearLErrorTBTA -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearMErrorInnerRequiredLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearMWarningInnerRequiredLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearSDefaultOuterOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldClearXSSuccessOuterRequiredRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDefaultInnerLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDisabled -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLDisabledOuterLeft -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLInputText -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuccessRequiredLeftOuter -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefix -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefixCyrillic -import com.sdds.compose.uikit.fixtures.testcases.TextFieldLSuffixPrefixNoValue -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMErrorOuterLabelOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMSuccessInnerLabelChips -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMSuccessOuterLabel -import com.sdds.compose.uikit.fixtures.testcases.TextFieldMWarningInnerLabelOptional -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSOuterLabelRightChips -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSReadOnly -import com.sdds.compose.uikit.fixtures.testcases.TextFieldSWarningInnerLabelRightFocused -import com.sdds.compose.uikit.fixtures.testcases.TextFieldWarningInnerRight -import com.sdds.compose.uikit.fixtures.testcases.TextFieldXSErrorInner -import com.sdds.compose.uikit.fixtures.testcases.TextFieldXSSuccessOuterLabelOptional -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.textfield.Default -import com.sdds.stylessalute.styles.textfield.Error -import com.sdds.stylessalute.styles.textfield.InnerLabel -import com.sdds.stylessalute.styles.textfield.L -import com.sdds.stylessalute.styles.textfield.M -import com.sdds.stylessalute.styles.textfield.OuterLabel -import com.sdds.stylessalute.styles.textfield.RequiredEnd -import com.sdds.stylessalute.styles.textfield.RequiredStart -import com.sdds.stylessalute.styles.textfield.S -import com.sdds.stylessalute.styles.textfield.Success -import com.sdds.stylessalute.styles.textfield.TextField -import com.sdds.stylessalute.styles.textfield.TextFieldClear -import com.sdds.stylessalute.styles.textfield.Warning -import com.sdds.stylessalute.styles.textfield.Xs -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextFieldScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - /** - * Запуск скриншот тестов - */ - @Test - fun testTextFieldLDefaultInnerLeft() { - composeTestRule.content { - TextFieldLDefaultInnerLeft(style = TextField.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldMSuccessOuterLabel() { - composeTestRule.content { - TextFieldMSuccessOuterLabel(style = TextField.M.OuterLabel.Success.style()) - } - } - - @Test - fun testTextFieldSWarningInnerRight() { - composeTestRule.content { - TextFieldWarningInnerRight(style = TextField.S.InnerLabel.RequiredEnd.Warning.style()) - } - } - - @Test - fun testTextFieldXSErrorInner() { - composeTestRule.content { - TextFieldXSErrorInner(style = TextField.Xs.Error.style()) - } - } - - @Test - fun testTextFieldLSuccessRequiredLeftOuter() { - composeTestRule.content { - TextFieldLSuccessRequiredLeftOuter(style = TextField.L.OuterLabel.RequiredStart.Success.style()) - } - } - - @Test - fun testTextFieldMWarningInnerLabelOptional() { - composeTestRule.content { - TextFieldMWarningInnerLabelOptional(style = TextField.M.InnerLabel.Warning.style()) - } - } - - @Test - fun testTextFieldReadOnly() { - composeTestRule.content { - TextFieldSReadOnly(style = TextField.S.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldXSSuccessOuterLabelOptional() { - composeTestRule.content { - TextFieldXSSuccessOuterLabelOptional(style = TextField.Xs.OuterLabel.Success.style()) - } - } - - @Test - fun testTextFieldLDisabled() { - composeTestRule.content { - TextFieldLDisabled(style = TextField.L.InnerLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldMErrorOuterLabelOptional() { - composeTestRule.content { - TextFieldMErrorOuterLabelOptional(style = TextField.M.OuterLabel.Error.style()) - } - } - - @Test - fun testTextFieldFocused() { - composeTestRule.content { - TextFieldSWarningInnerLabelRightFocused(style = TextField.S.InnerLabel.RequiredEnd.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("Value") - } - - @Test - fun testTextFieldMSuccessInnerLabelChips() { - composeTestRule.content { - TextFieldMSuccessInnerLabelChips(style = TextField.M.InnerLabel.Success.style()) - } - } - - @Test - fun testTextFieldSOuterLabelRightChips() { - composeTestRule.content { - TextFieldSOuterLabelRightChips(style = TextField.S.OuterLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldLInputText() { - composeTestRule.content { - TextFieldLInputText(style = TextField.L.InnerLabel.Warning.style()) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - .performTextInput("абвгдежзabcdefg@#643!#\$") - } - - @Test - fun testTextFieldLSuffixPrefix() { - composeTestRule.content { - TextFieldLSuffixPrefix(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldClearLErrorInnerOptional() { - composeTestRule.content { - TextFieldClearLErrorInnerOptional(style = TextFieldClear.L.InnerLabel.Error.style()) - } - } - - @Test - fun testTextFieldClearMWarningInnerRequiredLeft() { - composeTestRule.content { - TextFieldClearMWarningInnerRequiredLeft(style = TextFieldClear.M.InnerLabel.RequiredStart.Warning.style()) - } - } - - @Test - fun testTextFieldClearSDefaultOuterOptional() { - composeTestRule.content { - TextFieldClearSDefaultOuterOptional(style = TextFieldClear.S.OuterLabel.Default.style()) - } - } - - @Test - fun testTextFieldClearXSSuccessOuterRequiredRightFocused() { - composeTestRule.content { - TextFieldClearXSSuccessOuterRequiredRightFocused( - style = TextFieldClear.Xs.OuterLabel.RequiredEnd.Success.style(), - ) - } - composeTestRule.onNodeWithTag("textField") - .performClick() - } - - @Test - fun testTextFieldClearLDefaultInnerRequiredRight() { - composeTestRule.content { - TextFieldClearLDefaultInnerRequiredRight(style = TextFieldClear.L.InnerLabel.RequiredEnd.Default.style()) - } - } - - @Test - fun testTextFieldClearMErrorInnerRequiredLeft() { - composeTestRule.content { - TextFieldClearMErrorInnerRequiredLeft(style = TextFieldClear.M.InnerLabel.RequiredStart.Error.style()) - } - } - - @Test - fun testTextFieldLSuffixPrefixCyrillic() { - composeTestRule.content { - TextFieldLSuffixPrefixCyrillic(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldLDisabledOuterLeft() { - composeTestRule.content { - TextFieldLDisabledOuterLeft(style = TextField.L.OuterLabel.RequiredStart.Default.style()) - } - } - - @Test - fun testTextFieldClearLErrorTBTA() { - composeTestRule.content { - TextFieldClearLErrorTBTA(style = TextFieldClear.L.RequiredStart.Error.style()) - } - } - - @Test - fun testTextFieldTBTANoValue() { - composeTestRule.content { - TextFieldLSuffixPrefixNoValue(style = TextField.L.Default.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextSkeletonScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextSkeletonScreenshotTest.kt deleted file mode 100644 index 1aa911a769..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTextSkeletonScreenshotTest.kt +++ /dev/null @@ -1,45 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TextSkeletonDefaultFullWidth -import com.sdds.compose.uikit.fixtures.testcases.TextSkeletonDefaultNoTextRandom -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.textskeleton.Default -import com.sdds.stylessalute.styles.textskeleton.Lighter -import com.sdds.stylessalute.styles.textskeleton.TextSkeleton -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTextSkeletonScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @Test - fun testTextSkeletonDefaultNoTextRandom() { - composeTestRule.content { - TextSkeletonDefaultNoTextRandom(style = TextSkeleton.Default.style()) - } - } - - @Test - fun testTextSkeletonDefaultFullWidth() { - composeTestRule.content { - TextSkeletonDefaultFullWidth(style = TextSkeleton.Default.style()) - } - } - - @Test - fun testTextSkeletonLighterNoTextRandom() { - composeTestRule.content { - TextSkeletonDefaultNoTextRandom(style = TextSkeleton.Lighter.style()) - } - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeToastScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeToastScreenshotTest.kt deleted file mode 100644 index c7ff9b9909..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeToastScreenshotTest.kt +++ /dev/null @@ -1,164 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledDefaultCenterStart -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledNegativeCenterHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastPilledPositiveCenterEndHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomCenterHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomEndHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultBottomStartHasContentEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedDefaultTopStartHasContentStartEnd -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedNegativeTopCenterHasContentStart -import com.sdds.compose.uikit.fixtures.testcases.ToastRoundedPositiveTopEndHasContentStartEnd -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.L -import com.sdds.stylessalute.styles.toast.Pilled -import com.sdds.stylessalute.styles.toast.Rounded -import com.sdds.stylessalute.styles.toast.Toast -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeToastScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultTopStartHasContentStartHasContentEnd() { - composeTestRule.content { - ToastRoundedDefaultTopStartHasContentStartEnd( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedNegativeTopCenterHasContentStart() { - composeTestRule.content { - ToastRoundedNegativeTopCenterHasContentStart( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedPositiveTopEndHasContentStartEnd() { - composeTestRule.content { - ToastRoundedPositiveTopEndHasContentStartEnd( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledDefaultCenterStart() { - composeTestRule.content { - ToastPilledDefaultCenterStart( - style = Toast.Pilled.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledNegativeCenterHasContentStartEnd() { - composeTestRule.content { - ToastPilledNegativeCenterHasContentStartEnd( - style = Toast.Pilled.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastPilledPositiveCenterEndHasContentStartEnd() { - composeTestRule.content { - ToastPilledPositiveCenterEndHasContentStartEnd( - style = Toast.Pilled.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomStartHasContentEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomStartHasContentEnd( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomCenterHasContentStartEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomCenterHasContentStartEnd( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testToastRoundedDefaultBottomEndHasContentStartEnd() { - composeTestRule.content { - ToastRoundedDefaultBottomEndHasContentStartEnd( - style = Toast.Rounded.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTooltipScreenshotTest.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTooltipScreenshotTest.kt deleted file mode 100644 index fdba7555c2..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ComposeTooltipScreenshotTest.kt +++ /dev/null @@ -1,180 +0,0 @@ -package com.sdds.stylessalute - -import androidx.compose.ui.test.assertIsNotDisplayed -import androidx.compose.ui.test.onNodeWithTag -import androidx.compose.ui.test.onNodeWithText -import androidx.compose.ui.test.performClick -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.compose.uikit.fixtures.RoborazziConfigCompose -import com.sdds.compose.uikit.fixtures.SDK_NUMBER -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartBottomCenter -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenter -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenterBottomEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseStartCenterEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseTopEnd -import com.sdds.compose.uikit.fixtures.testcases.TooltipMLooseTopEndNotVisible -import com.sdds.compose.uikit.fixtures.testcases.TooltipMStrictBottomEndTopStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipMStrictTopCenterCenterStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipSLooseEndBottomStart -import com.sdds.compose.uikit.fixtures.testcases.TooltipSStrictBottomStartTopCenter -import com.sdds.compose.uikit.style.style -import com.sdds.stylessalute.styles.basicbutton.BasicButton -import com.sdds.stylessalute.styles.basicbutton.Default -import com.sdds.stylessalute.styles.basicbutton.L -import com.sdds.stylessalute.styles.tooltip.M -import com.sdds.stylessalute.styles.tooltip.S -import com.sdds.stylessalute.styles.tooltip.Tooltip -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ComposeTooltipScreenshotTest( - theme: String, -) : RoborazziConfigCompose(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMStrictBottomEndTopStart() { - composeTestRule.content { - TooltipMStrictBottomEndTopStart( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMStrictTopCenterCenterStart() { - composeTestRule.content { - TooltipMStrictTopCenterCenterStart( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipSLooseEndBottomStart() { - composeTestRule.content { - TooltipSLooseEndBottomStart( - style = Tooltip.S.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipSStrictBottomStartTopCenter() { - composeTestRule.content { - TooltipSStrictBottomStartTopCenter( - style = Tooltip.S.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseTopEnd() { - composeTestRule.content { - TooltipMLooseTopEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenter() { - composeTestRule.content { - TooltipMLooseStartCenter( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartBottomCenter() { - composeTestRule.content { - TooltipMLooseStartBottomCenter( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenterEnd() { - composeTestRule.content { - TooltipMLooseStartCenterEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - fun testTooltipMLooseStartCenterBottomEnd() { - composeTestRule.content { - TooltipMLooseStartCenterBottomEnd( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - captureScreenRoboImage() - } - - @Test - fun testTooltipMLooseTopEndNotVisible() { - composeTestRule.content { - TooltipMLooseTopEndNotVisible( - style = Tooltip.M.style(), - buttonStyle = BasicButton.L.Default.style(), - ) - } - composeTestRule.onNodeWithText("Show").performClick() - composeTestRule.waitForIdle() - composeTestRule.onNodeWithTag("Tooltip").assertIsNotDisplayed() - } -} diff --git a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt b/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt deleted file mode 100644 index 8611f7e5a8..0000000000 --- a/tokens/stylessalute.compose/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt +++ /dev/null @@ -1,62 +0,0 @@ -package com.sdds.stylessalute - -import android.app.Activity -import android.graphics.Color -import androidx.activity.ComponentActivity -import androidx.compose.foundation.isSystemInDarkTheme -import androidx.compose.runtime.Composable -import androidx.compose.runtime.SideEffect -import androidx.compose.ui.graphics.toArgb -import androidx.compose.ui.platform.LocalView -import androidx.compose.ui.test.junit4.AndroidComposeTestRule -import androidx.core.view.WindowCompat -import androidx.test.ext.junit.rules.ActivityScenarioRule -import com.sdds.stylessalute.theme.StylesSaluteTheme -import com.sdds.stylessalute.theme.darkStylesSaluteColors -import com.sdds.stylessalute.theme.darkStylesSaluteGradients -import com.sdds.stylessalute.theme.lightStylesSaluteColors -import com.sdds.stylessalute.theme.lightStylesSaluteGradients - -private val DarkColors = darkStylesSaluteColors() -private val LightColors = lightStylesSaluteColors() -private val DarkGradients = darkStylesSaluteGradients() -private val LightGradients = lightStylesSaluteGradients() - -@Composable -private fun ThemeSetup( - darkTheme: Boolean = isSystemInDarkTheme(), - content: @Composable () -> Unit, -) { - val colorScheme = when { - darkTheme -> DarkColors - else -> LightColors - } - val view = LocalView.current - if (!view.isInEditMode) { - SideEffect { - val window = (view.context as Activity).window - window.statusBarColor = Color.TRANSPARENT - window.navigationBarColor = Color.TRANSPARENT - window.decorView.setBackgroundColor(colorScheme.backgroundDefaultPrimary.toArgb()) - WindowCompat.getInsetsController(window, view).apply { - isAppearanceLightStatusBars = !darkTheme - isAppearanceLightNavigationBars = !darkTheme - } - } - } - StylesSaluteTheme( - colors = colorScheme, - gradients = if (darkTheme) DarkGradients else LightGradients, - content = content, - ) -} - -internal fun AndroidComposeTestRule, ComponentActivity>.content( - content: @Composable () -> Unit, -) { - setContent { - ThemeSetup { - content() - } - } -} diff --git a/tokens/stylessalute.view/README.md b/tokens/stylessalute.view/README.md deleted file mode 100644 index c2b2ba9cc8..0000000000 --- a/tokens/stylessalute.view/README.md +++ /dev/null @@ -1,87 +0,0 @@ -## Быстрый старт -1. Добавить в build.gradle файл следующие зависимости -```kotlin - implementation("io.github.salute-developers:stylessalute:$saluteVersion") - implementation("io.github.salute-developers:sdds-uikit:$uikitVersion") -``` - -Дополнительно, если Вам нужен набор иконок: -```kotlin - implementation("io.github.salute-developers:sdds-icons:$iconsVersion") -``` - -2. Унаследовать тему вашего приложения от `Salute.StylesSalute.MaterialComponents.DayNight`, например: -```xml - -``` -`MaterialComponents` в названии означает, что тема `Salute.StylesSalute` имеет совместимость с Material, что может быть полезно -при переходе на Salute.StylesSalute или при использовании компонентов из Material совместно с компонентами из `sdds-uikit`. - -3. Done - -## Как использовать токены цвета и градиента -Токены цвета делятся на несколько логических групп, согласно назначению элемента: `text`, `surface`, `background` и `outline`. - -Эти группы в свою очередь делятся на подтемы: -- `Default` - По умолчанию, значения токенов меняются в зависимости от темы -- `OnDark` - Статические значения токенов из тёмной темы, не меняются при переключении темы, -- `OnLight` - Статические значения токенов из светлой темы, не меняются при переключении темы, -- `Inverse` Инвертированные значения токенов подтемы `Default`. - -Токены цвета представляют из себя hex значения, токены градиента - XML ShapeDrawable файлы и стили, описывающие шейдеры градиентов. - -### Структура именования токена цвета -``` -область применения + подтема + название состояния -``` - -Например, -- Figma токену с названием `🌕 Surfaces Default/Accent/surfaceAccent` в коде будет соответствовать аттрибут `?salute_surfaceDefaultAccent`. -- Figma токену c названием `🌕 Surfaces Default/Transparent/surfaceTransparentSecondary` в коде будет соответствовать аттрибут `?salute_surfaceDefaultTransparentSecondary` - ->Для поддержки возможности изменения тем приложения, а также использования механизм ThemeOverlay, рекомендуется использовать токены цвета через атрибуты темы. - -## Как использовать токены скруглений -Большинство компонентов из `sdds-uikit` поддерживают установку аттрибута `sd_shapeAppearance`, который работает по аналогии с Material shapeAppearance. -Если кратко, то компоненту с аттрибутом `sd_shapeAppearance` устанавливается ShapeDrawable в качестве background. В отличие от Material, атрибуты `sd_shapeAppearance` и `android:background` могут быть использованы вместе только, если в `android:background` устанавливается экземпляр ShapeDrawable (например, токены градиентов). В этом случае sd_shapeAppearace переопределить скругления в установленном ShapeDrawable. Во всех остальных случаях `sd_shapeAppearance` нужно использовать в связке с `android:backgroundTint`. - -Значение аттрибута `sd_shapeAppearance` - это ссылка на стили, у которых родительский стиль `Salute.StylesSalute.Shape`. Рекомендуется использовать стили НЕ напрямую, а через аттрибуты темы. - -Токены скруглений разделяются на группы согласно размеру скругления: Xxs, Xs, S, M, L, Xl, Xxl и Rounded. Токен скругления в фигма имеет следующую структуру названия: -``` -CornerRadius/cR<название размера> -``` - -Допускаются также вычисляемые значения: -``` -CornerRadius/calc:[cR<название размера> - 2] -``` - -Т.е. Figma токену `CornerRadius/cRm` будет соответствовать в коде стиль `@style/Salute.StylesSalute.Shape.Round.M` и аттрибут `?salute_shapeRoundM`. - -А Figma токену `CornerRadius/calc:[cRl - 2]` будет соответствовать в коде стиль `@style/Salute.StylesSalute.Shape.Round.L` и аттрибут `?salute_shapeRoundL`, но уже с дополнительно установленным параметром `sd_shapeAppearanceAdjustment = -2dp`. - - -## Как использовать токены начертаний: -В Figma токены типографики делятся на группы: `Display`, `Body`, `Header`, `Text`. -И на подгруппы: `Large Screens`, `Medium Screens`, `Small Screens`. - -## Структура названия токена начертания -``` -Группа + Подгруппа + Уникальное название токена -``` - -Figma токену с названием `Body/BodyL B` будет соответствовать в коде стили `@style/Salute.StylesSalute.Typography.BodyLBold`, `@style/Salute.StylesSalute.TextAppearance.BodyLBold` и аттрибут `salute_typographyBodyLBold`. - ->Важно отметить, что выбор подгруппы `Large Screens`, `Medium Screens`, `Small Screens` разруливается автоматически при помощи переопределенных ресурсов. - - -## Как использовать стилизованные компоненты -Библиотека `star_designsystem` предоставляет только токены и стили для компонентов, но не сами компоненты. Поэтому `star_designsystem` должна использоваться в связке с `sdds-uikit`. Т.е. важно понимать, что в своих layout нужно использовать компоненты из пакета com.sdds.uikit. Стоит отметить также, что некоторые андроид компоненты могут быть автоматически подменены на соответствующие компоненты из com.sdds.uikit при помощи StarLayoutInflater. - -Стили компонентов начинаются с префикса `Salute.StylesSalute.Components`. -Например, figma компоненту `BasicButton M` с view = Accent будет в коде соответствовать стиль @style/Salute.StylesSalute.Components.BasicButton.M.Accent. - -Перечень доступных компонентов и примеры их использования можно посмотреть в демо-приложении `:sandbox-compose`. - -Исходный код компонентов доступен [здесь](https://github.com/salute-developers/plasma-android/tree/develop/sdds-core/uikit). diff --git a/tokens/stylessalute.view/build.gradle.kts b/tokens/stylessalute.view/build.gradle.kts deleted file mode 100644 index c153707b0a..0000000000 --- a/tokens/stylessalute.view/build.gradle.kts +++ /dev/null @@ -1,48 +0,0 @@ -import com.sdds.plugin.themebuilder.OutputLocation.SRC -import com.sdds.plugin.themebuilder.ShapeAppearanceConfig.Companion.sddsShape -import com.sdds.plugin.themebuilder.ThemeBuilderMode.THEME -import utils.componentsName -import utils.componentsVersion -import utils.themeAlias -import utils.themeName -import utils.themeResPrefix -import utils.themeVersion - -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.android-lib") - id(libs.plugins.themebuilder.get().pluginId) - id("convention.maven-publish") - id("convention.auto-bump") - id("convention.testing") - alias(libs.plugins.roborazzi) - id("convention.docusaurus") -} - -android { - namespace = "com.sdds.stylessalute" - resourcePrefix = themeResPrefix -} - -themeBuilder { - themeSource(name = themeName, version = themeVersion, alias = themeAlias) - componentSource(name = componentsName, version = componentsVersion, alias = themeAlias) - autoGenerate(false) - ktPackage("com.sdds.stylessalute") - mode(THEME) - outputLocation(SRC) - view { - themeParents { - materialComponentsTheme() - } - setupShapeAppearance(sddsShape()) - } -} - -dependencies { - testImplementation("sdds-core:uikit-fixtures") - implementation(icons.sdds.icons) - implementation(libs.sdds.uikit) - implementation(libs.base.androidX.core) - implementation(libs.base.androidX.appcompat) -} diff --git a/tokens/stylessalute.view/config-info-view-system.json b/tokens/stylessalute.view/config-info-view-system.json deleted file mode 100644 index 018215611d..0000000000 --- a/tokens/stylessalute.view/config-info-view-system.json +++ /dev/null @@ -1,7550 +0,0 @@ -{ - "name": "stylesSalute", - "packageName": "com.sdds.stylessalute", - "components": [ - { - "key": "avatar", - "coreName": "Avatar", - "styleName": "Avatar", - "variations": [ - { - "name": "xxl", - "viewReference": "Salute.StylesSalute.Components.Avatar.Xxl", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AvatarXxl" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Avatar.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AvatarL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Avatar.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AvatarM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Avatar.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AvatarS" - } - ] - }, - { - "key": "avatar-group", - "coreName": "AvatarGroup", - "styleName": "AvatarGroup", - "variations": [ - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AvatarGroup.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AvatarGroupS" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeClear", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeClear.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeClearXsPilledLight" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeSolid", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeSolid.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeSolidXsPilledLight" - } - ] - }, - { - "key": "badge", - "coreName": "Badge", - "styleName": "BadgeTransparent", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.BadgeTransparent.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BadgeTransparentXsPilledLight" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeClear", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeClear.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeClearXsPilledLight" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeSolid", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeSolid.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeSolidXsPilledLight" - } - ] - }, - { - "key": "icon-badge", - "coreName": "IconBadge", - "styleName": "IconBadgeTransparent", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLAccent" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLNegative" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLWarning" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLDark" - }, - { - "name": "l.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLLight" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledAccent" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledNegative" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledPositive" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledWarning" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledDark" - }, - { - "name": "l.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.L.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentLPilledLight" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMAccent" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMNegative" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMWarning" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMDark" - }, - { - "name": "m.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMLight" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledAccent" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledNegative" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledPositive" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledWarning" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledDark" - }, - { - "name": "m.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.M.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentMPilledLight" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSAccent" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSNegative" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSWarning" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSDark" - }, - { - "name": "s.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSLight" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledAccent" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledNegative" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledPositive" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledWarning" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledDark" - }, - { - "name": "s.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.S.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentSPilledLight" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsAccent" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsNegative" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsWarning" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsDark" - }, - { - "name": "xs.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsLight" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledAccent" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledNegative" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledPositive" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledWarning" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledDark" - }, - { - "name": "xs.pilled.light", - "viewReference": "Salute.StylesSalute.Components.IconBadgeTransparent.Xs.Pilled.Light", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconBadgeTransparentXsPilledLight" - } - ] - }, - { - "key": "basic-button", - "coreName": "Button", - "styleName": "BasicButton", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLDefault" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLSecondary" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLAccent" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLPositive" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLNegative" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLWarning" - }, - { - "name": "l.clear", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLClear" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLDark" - }, - { - "name": "l.black", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLBlack" - }, - { - "name": "l.white", - "viewReference": "Salute.StylesSalute.Components.BasicButton.L.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonLWhite" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMDefault" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMSecondary" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMAccent" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMPositive" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMNegative" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMWarning" - }, - { - "name": "m.clear", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMClear" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMDark" - }, - { - "name": "m.black", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMBlack" - }, - { - "name": "m.white", - "viewReference": "Salute.StylesSalute.Components.BasicButton.M.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonMWhite" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSDefault" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSSecondary" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSAccent" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSPositive" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSNegative" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSWarning" - }, - { - "name": "s.clear", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSClear" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSDark" - }, - { - "name": "s.black", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSBlack" - }, - { - "name": "s.white", - "viewReference": "Salute.StylesSalute.Components.BasicButton.S.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonSWhite" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsDefault" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsSecondary" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsAccent" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsPositive" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsNegative" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsWarning" - }, - { - "name": "xs.clear", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsClear" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsDark" - }, - { - "name": "xs.black", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsBlack" - }, - { - "name": "xs.white", - "viewReference": "Salute.StylesSalute.Components.BasicButton.Xs.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonXsWhite" - } - ] - }, - { - "key": "icon-button", - "coreName": "IconButton", - "styleName": "IconButton", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.IconButton.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLDefault" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLSecondary" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLAccent" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPositive" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLNegative" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLWarning" - }, - { - "name": "l.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLClear" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLDark" - }, - { - "name": "l.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLBlack" - }, - { - "name": "l.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLWhite" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledDefault" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledSecondary" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledAccent" - }, - { - "name": "l.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledPositive" - }, - { - "name": "l.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledNegative" - }, - { - "name": "l.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledWarning" - }, - { - "name": "l.pilled.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledClear" - }, - { - "name": "l.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledDark" - }, - { - "name": "l.pilled.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledBlack" - }, - { - "name": "l.pilled.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.L.Pilled.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonLPilledWhite" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.IconButton.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMDefault" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMSecondary" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMAccent" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPositive" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMNegative" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMWarning" - }, - { - "name": "m.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMClear" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMDark" - }, - { - "name": "m.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMBlack" - }, - { - "name": "m.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMWhite" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledDefault" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledSecondary" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledAccent" - }, - { - "name": "m.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledPositive" - }, - { - "name": "m.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledNegative" - }, - { - "name": "m.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledWarning" - }, - { - "name": "m.pilled.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledClear" - }, - { - "name": "m.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledDark" - }, - { - "name": "m.pilled.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledBlack" - }, - { - "name": "m.pilled.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.M.Pilled.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonMPilledWhite" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.IconButton.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSDefault" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSSecondary" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSAccent" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPositive" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSNegative" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSWarning" - }, - { - "name": "s.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSClear" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSDark" - }, - { - "name": "s.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSBlack" - }, - { - "name": "s.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSWhite" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledDefault" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledSecondary" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledAccent" - }, - { - "name": "s.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledPositive" - }, - { - "name": "s.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledNegative" - }, - { - "name": "s.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledWarning" - }, - { - "name": "s.pilled.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledClear" - }, - { - "name": "s.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledDark" - }, - { - "name": "s.pilled.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledBlack" - }, - { - "name": "s.pilled.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.S.Pilled.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonSPilledWhite" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsDefault" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsSecondary" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsAccent" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPositive" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsNegative" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsWarning" - }, - { - "name": "xs.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsClear" - }, - { - "name": "xs.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsDark" - }, - { - "name": "xs.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsBlack" - }, - { - "name": "xs.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsWhite" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledDefault" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledSecondary" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledAccent" - }, - { - "name": "xs.pilled.positive", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledPositive" - }, - { - "name": "xs.pilled.negative", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledNegative" - }, - { - "name": "xs.pilled.warning", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledWarning" - }, - { - "name": "xs.pilled.clear", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Clear", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledClear" - }, - { - "name": "xs.pilled.dark", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledDark" - }, - { - "name": "xs.pilled.black", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledBlack" - }, - { - "name": "xs.pilled.white", - "viewReference": "Salute.StylesSalute.Components.IconButton.Xs.Pilled.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonXsPilledWhite" - } - ] - }, - { - "key": "link-button", - "coreName": "LinkButton", - "styleName": "LinkButton", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLDefault" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLSecondary" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLAccent" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLPositive" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLNegative" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.LinkButton.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonLWarning" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMDefault" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMSecondary" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMAccent" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMPositive" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMNegative" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.LinkButton.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonMWarning" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSDefault" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSSecondary" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSAccent" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSPositive" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSNegative" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.LinkButton.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonSWarning" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsDefault" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsSecondary" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsAccent" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsPositive" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsNegative" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.LinkButton.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.LinkButtonXsWarning" - } - ] - }, - { - "key": "cell", - "coreName": "Cell", - "styleName": "Cell", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Cell.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CellL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Cell.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CellM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Cell.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CellS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.Cell.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CellXs" - } - ] - }, - { - "key": "check-box", - "coreName": "CheckBox", - "styleName": "CheckBox", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.CheckBox.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.CheckBox.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxMDefault" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.CheckBox.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.CheckBox.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxSDefault" - } - ] - }, - { - "key": "check-box-group", - "coreName": "CheckBoxGroup", - "styleName": "CheckBoxGroup", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.CheckBoxGroup.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxGroupM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.CheckBoxGroup.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CheckBoxGroupS" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "Chip", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Chip.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLSecondary" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLPilledAccent" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipLPilledSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Chip.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMSecondary" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMPilledAccent" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipMPilledSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Chip.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSSecondary" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSPilledAccent" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipSPilledSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsSecondary" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsPilledAccent" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Chip.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipXsPilledSecondary" - } - ] - }, - { - "key": "chip", - "coreName": "Chip", - "styleName": "EmbeddedChip", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipLSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipMSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipSSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChip.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipXsSecondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupDense", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLSecondary" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLPilledAccent" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseLPilledSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMSecondary" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMPilledAccent" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseMPilledSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSSecondary" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSPilledAccent" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseSPilledSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsSecondary" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsPilledAccent" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupDense.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupDenseXsPilledSecondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "ChipGroupWide", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLSecondary" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLPilled" - }, - { - "name": "l.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLPilledDefault" - }, - { - "name": "l.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLPilledAccent" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideLPilledSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMSecondary" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMPilled" - }, - { - "name": "m.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMPilledDefault" - }, - { - "name": "m.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMPilledAccent" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideMPilledSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSSecondary" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSPilled" - }, - { - "name": "s.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSPilledDefault" - }, - { - "name": "s.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSPilledAccent" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideSPilledSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsSecondary" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsPilled" - }, - { - "name": "xs.pilled.default", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Pilled.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsPilledDefault" - }, - { - "name": "xs.pilled.accent", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Pilled.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsPilledAccent" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.ChipGroupWide.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ChipGroupWideXsPilledSecondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupDense", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseLSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseMSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseSSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupDense.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupDenseXsSecondary" - } - ] - }, - { - "key": "chip-group", - "coreName": "ChipGroup", - "styleName": "EmbeddedChipGroupWide", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideLAccent" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideLSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideMAccent" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideMSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideSAccent" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideSSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideXsAccent" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.EmbeddedChipGroupWide.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.EmbeddedChipGroupWideXsSecondary" - } - ] - }, - { - "key": "counter", - "coreName": "Counter", - "styleName": "Counter", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Counter.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLAccent" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLWarning" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLNegative" - }, - { - "name": "l.black", - "viewReference": "Salute.StylesSalute.Components.Counter.L.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLBlack" - }, - { - "name": "l.white", - "viewReference": "Salute.StylesSalute.Components.Counter.L.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterLWhite" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Counter.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMAccent" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMWarning" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMNegative" - }, - { - "name": "m.black", - "viewReference": "Salute.StylesSalute.Components.Counter.M.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMBlack" - }, - { - "name": "m.white", - "viewReference": "Salute.StylesSalute.Components.Counter.M.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterMWhite" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Counter.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSAccent" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSWarning" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSNegative" - }, - { - "name": "s.black", - "viewReference": "Salute.StylesSalute.Components.Counter.S.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSBlack" - }, - { - "name": "s.white", - "viewReference": "Salute.StylesSalute.Components.Counter.S.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterSWhite" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsDefault" - }, - { - "name": "xs.accent", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsAccent" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsPositive" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsWarning" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsNegative" - }, - { - "name": "xs.black", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsBlack" - }, - { - "name": "xs.white", - "viewReference": "Salute.StylesSalute.Components.Counter.Xs.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXsWhite" - }, - { - "name": "xxs", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxs" - }, - { - "name": "xxs.default", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsDefault" - }, - { - "name": "xxs.accent", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsAccent" - }, - { - "name": "xxs.positive", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsPositive" - }, - { - "name": "xxs.warning", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsWarning" - }, - { - "name": "xxs.negative", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsNegative" - }, - { - "name": "xxs.black", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsBlack" - }, - { - "name": "xxs.white", - "viewReference": "Salute.StylesSalute.Components.Counter.Xxs.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CounterXxsWhite" - } - ] - }, - { - "key": "divider", - "coreName": "Divider", - "styleName": "Divider", - "variations": [ - { - "name": "default", - "viewReference": "Salute.StylesSalute.Components.Divider", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.Divider" - } - ] - }, - { - "key": "indicator", - "coreName": "Indicator", - "styleName": "Indicator", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Indicator.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLDefault" - }, - { - "name": "l.accent", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLAccent" - }, - { - "name": "l.inactive", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Inactive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLInactive" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLPositive" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLWarning" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLNegative" - }, - { - "name": "l.dark", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLDark" - }, - { - "name": "l.black", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLBlack" - }, - { - "name": "l.white", - "viewReference": "Salute.StylesSalute.Components.Indicator.L.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorLWhite" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Indicator.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMAccent" - }, - { - "name": "m.inactive", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Inactive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMInactive" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMPositive" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMWarning" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMNegative" - }, - { - "name": "m.dark", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMDark" - }, - { - "name": "m.black", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMBlack" - }, - { - "name": "m.white", - "viewReference": "Salute.StylesSalute.Components.Indicator.M.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorMWhite" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Indicator.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSAccent" - }, - { - "name": "s.inactive", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Inactive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSInactive" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSPositive" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSWarning" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSNegative" - }, - { - "name": "s.dark", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Dark", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSDark" - }, - { - "name": "s.black", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.Black", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSBlack" - }, - { - "name": "s.white", - "viewReference": "Salute.StylesSalute.Components.Indicator.S.White", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IndicatorSWhite" - } - ] - }, - { - "key": "progress-bar", - "coreName": "ProgressBar", - "styleName": "ProgressBar", - "variations": [ - { - "name": ".default", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarDefault" - }, - { - "name": ".secondary", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarSecondary" - }, - { - "name": ".accent", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarAccent" - }, - { - "name": ".gradient", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Gradient", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarGradient" - }, - { - "name": ".negative", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarNegative" - }, - { - "name": ".positive", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarPositive" - }, - { - "name": ".warning", - "viewReference": "Salute.StylesSalute.Components.ProgressBar.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ProgressBarWarning" - } - ] - }, - { - "key": "popover", - "coreName": "Popover", - "styleName": "Popover", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Popover.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.Popover.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverMDefault" - }, - { - "name": "m.accent", - "viewReference": "Salute.StylesSalute.Components.Popover.M.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverMAccent" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Popover.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.Popover.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverSDefault" - }, - { - "name": "s.accent", - "viewReference": "Salute.StylesSalute.Components.Popover.S.Accent", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.PopoverSAccent" - } - ] - }, - { - "key": "radio-box", - "coreName": "RadioBox", - "styleName": "RadioBox", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.RadioBox.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RadioBoxM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.RadioBox.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RadioBoxS" - } - ] - }, - { - "key": "radio-box-group", - "coreName": "RadioBoxGroup", - "styleName": "RadioBoxGroup", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.RadioBoxGroup.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RadioBoxGroupM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.RadioBoxGroup.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RadioBoxGroupS" - } - ] - }, - { - "key": "segment", - "coreName": "Segment", - "styleName": "Segment", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Segment.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentL" - }, - { - "name": "l.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.L.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentLPrimary" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentLSecondary" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.Segment.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentLPilled" - }, - { - "name": "l.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.L.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentLPilledPrimary" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentLPilledSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Segment.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentM" - }, - { - "name": "m.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.M.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentMPrimary" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentMSecondary" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.Segment.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentMPilled" - }, - { - "name": "m.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.M.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentMPilledPrimary" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentMPilledSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Segment.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentS" - }, - { - "name": "s.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.S.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentSPrimary" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentSSecondary" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.Segment.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentSPilled" - }, - { - "name": "s.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.S.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentSPilledPrimary" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentSPilledSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXs" - }, - { - "name": "xs.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXsPrimary" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXsSecondary" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXsPilled" - }, - { - "name": "xs.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXsPilledPrimary" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.Segment.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentXsPilledSecondary" - } - ] - }, - { - "key": "segment-item", - "coreName": "SegmentItem", - "styleName": "SegmentItem", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemL" - }, - { - "name": "l.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemLPrimary" - }, - { - "name": "l.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemLSecondary" - }, - { - "name": "l.pilled", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemLPilled" - }, - { - "name": "l.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemLPilledPrimary" - }, - { - "name": "l.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.L.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemLPilledSecondary" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemM" - }, - { - "name": "m.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemMPrimary" - }, - { - "name": "m.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemMSecondary" - }, - { - "name": "m.pilled", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemMPilled" - }, - { - "name": "m.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemMPilledPrimary" - }, - { - "name": "m.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.M.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemMPilledSecondary" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemS" - }, - { - "name": "s.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemSPrimary" - }, - { - "name": "s.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemSSecondary" - }, - { - "name": "s.pilled", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemSPilled" - }, - { - "name": "s.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemSPilledPrimary" - }, - { - "name": "s.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.S.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemSPilledSecondary" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXs" - }, - { - "name": "xs.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXsPrimary" - }, - { - "name": "xs.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXsSecondary" - }, - { - "name": "xs.pilled", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXsPilled" - }, - { - "name": "xs.pilled.primary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs.Pilled.Primary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXsPilledPrimary" - }, - { - "name": "xs.pilled.secondary", - "viewReference": "Salute.StylesSalute.Components.SegmentItem.Xs.Pilled.Secondary", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SegmentItemXsPilledSecondary" - } - ] - }, - { - "key": "switch", - "coreName": "Switch", - "styleName": "Switch", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.Switch.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchL" - }, - { - "name": "l.toggle-s", - "viewReference": "Salute.StylesSalute.Components.Switch.L.ToggleS", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchLToggleS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Switch.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchM" - }, - { - "name": "m.toggle-s", - "viewReference": "Salute.StylesSalute.Components.Switch.M.ToggleS", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchMToggleS" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Switch.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchS" - }, - { - "name": "s.toggle-s", - "viewReference": "Salute.StylesSalute.Components.Switch.S.ToggleS", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.SwitchSToggleS" - } - ] - }, - { - "key": "text-field", - "coreName": "TextField", - "styleName": "TextField", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsDefault" - }, - { - "name": "xs.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsSuccess" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsWarning" - }, - { - "name": "xs.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsError" - }, - { - "name": "xs.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredStart" - }, - { - "name": "xs.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredStartDefault" - }, - { - "name": "xs.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredStartSuccess" - }, - { - "name": "xs.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredStartWarning" - }, - { - "name": "xs.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredStartError" - }, - { - "name": "xs.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredEnd" - }, - { - "name": "xs.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredEndDefault" - }, - { - "name": "xs.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredEndSuccess" - }, - { - "name": "xs.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredEndWarning" - }, - { - "name": "xs.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsRequiredEndError" - }, - { - "name": "xs.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabel" - }, - { - "name": "xs.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelDefault" - }, - { - "name": "xs.outer-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelSuccess" - }, - { - "name": "xs.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelWarning" - }, - { - "name": "xs.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelError" - }, - { - "name": "xs.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredStart" - }, - { - "name": "xs.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredStartDefault" - }, - { - "name": "xs.outer-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredStartSuccess" - }, - { - "name": "xs.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredStartWarning" - }, - { - "name": "xs.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredStartError" - }, - { - "name": "xs.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredEnd" - }, - { - "name": "xs.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredEndDefault" - }, - { - "name": "xs.outer-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredEndSuccess" - }, - { - "name": "xs.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredEndWarning" - }, - { - "name": "xs.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.Xs.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldXsOuterLabelRequiredEndError" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.TextField.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSDefault" - }, - { - "name": "s.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSSuccess" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSWarning" - }, - { - "name": "s.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSError" - }, - { - "name": "s.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredStart" - }, - { - "name": "s.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredStartDefault" - }, - { - "name": "s.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredStartSuccess" - }, - { - "name": "s.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredStartWarning" - }, - { - "name": "s.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredStartError" - }, - { - "name": "s.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredEnd" - }, - { - "name": "s.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredEndDefault" - }, - { - "name": "s.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredEndSuccess" - }, - { - "name": "s.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredEndWarning" - }, - { - "name": "s.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSRequiredEndError" - }, - { - "name": "s.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabel" - }, - { - "name": "s.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelDefault" - }, - { - "name": "s.outer-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelSuccess" - }, - { - "name": "s.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelWarning" - }, - { - "name": "s.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelError" - }, - { - "name": "s.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredStart" - }, - { - "name": "s.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredStartDefault" - }, - { - "name": "s.outer-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredStartSuccess" - }, - { - "name": "s.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredStartWarning" - }, - { - "name": "s.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredStartError" - }, - { - "name": "s.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredEnd" - }, - { - "name": "s.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredEndDefault" - }, - { - "name": "s.outer-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredEndSuccess" - }, - { - "name": "s.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredEndWarning" - }, - { - "name": "s.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSOuterLabelRequiredEndError" - }, - { - "name": "s.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabel" - }, - { - "name": "s.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelDefault" - }, - { - "name": "s.inner-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelSuccess" - }, - { - "name": "s.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelWarning" - }, - { - "name": "s.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelError" - }, - { - "name": "s.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredStart" - }, - { - "name": "s.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredStartDefault" - }, - { - "name": "s.inner-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredStartSuccess" - }, - { - "name": "s.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredStartWarning" - }, - { - "name": "s.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredStartError" - }, - { - "name": "s.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredEnd" - }, - { - "name": "s.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredEndDefault" - }, - { - "name": "s.inner-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredEndSuccess" - }, - { - "name": "s.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredEndWarning" - }, - { - "name": "s.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.S.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldSInnerLabelRequiredEndError" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.TextField.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMDefault" - }, - { - "name": "m.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMSuccess" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMWarning" - }, - { - "name": "m.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMError" - }, - { - "name": "m.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredStart" - }, - { - "name": "m.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredStartDefault" - }, - { - "name": "m.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredStartSuccess" - }, - { - "name": "m.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredStartWarning" - }, - { - "name": "m.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredStartError" - }, - { - "name": "m.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredEnd" - }, - { - "name": "m.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredEndDefault" - }, - { - "name": "m.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredEndSuccess" - }, - { - "name": "m.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredEndWarning" - }, - { - "name": "m.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMRequiredEndError" - }, - { - "name": "m.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabel" - }, - { - "name": "m.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelDefault" - }, - { - "name": "m.outer-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelSuccess" - }, - { - "name": "m.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelWarning" - }, - { - "name": "m.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelError" - }, - { - "name": "m.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredStart" - }, - { - "name": "m.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredStartDefault" - }, - { - "name": "m.outer-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredStartSuccess" - }, - { - "name": "m.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredStartWarning" - }, - { - "name": "m.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredStartError" - }, - { - "name": "m.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredEnd" - }, - { - "name": "m.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredEndDefault" - }, - { - "name": "m.outer-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredEndSuccess" - }, - { - "name": "m.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredEndWarning" - }, - { - "name": "m.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMOuterLabelRequiredEndError" - }, - { - "name": "m.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabel" - }, - { - "name": "m.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelDefault" - }, - { - "name": "m.inner-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelSuccess" - }, - { - "name": "m.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelWarning" - }, - { - "name": "m.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelError" - }, - { - "name": "m.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredStart" - }, - { - "name": "m.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredStartDefault" - }, - { - "name": "m.inner-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredStartSuccess" - }, - { - "name": "m.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredStartWarning" - }, - { - "name": "m.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredStartError" - }, - { - "name": "m.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredEnd" - }, - { - "name": "m.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredEndDefault" - }, - { - "name": "m.inner-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredEndSuccess" - }, - { - "name": "m.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredEndWarning" - }, - { - "name": "m.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.M.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldMInnerLabelRequiredEndError" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.TextField.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLDefault" - }, - { - "name": "l.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLSuccess" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLWarning" - }, - { - "name": "l.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLError" - }, - { - "name": "l.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredStart" - }, - { - "name": "l.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredStartDefault" - }, - { - "name": "l.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredStartSuccess" - }, - { - "name": "l.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredStartWarning" - }, - { - "name": "l.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredStartError" - }, - { - "name": "l.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredEnd" - }, - { - "name": "l.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredEndDefault" - }, - { - "name": "l.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredEndSuccess" - }, - { - "name": "l.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredEndWarning" - }, - { - "name": "l.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLRequiredEndError" - }, - { - "name": "l.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabel" - }, - { - "name": "l.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelDefault" - }, - { - "name": "l.outer-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelSuccess" - }, - { - "name": "l.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelWarning" - }, - { - "name": "l.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelError" - }, - { - "name": "l.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredStart" - }, - { - "name": "l.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredStartDefault" - }, - { - "name": "l.outer-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredStartSuccess" - }, - { - "name": "l.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredStartWarning" - }, - { - "name": "l.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredStartError" - }, - { - "name": "l.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredEnd" - }, - { - "name": "l.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredEndDefault" - }, - { - "name": "l.outer-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredEndSuccess" - }, - { - "name": "l.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredEndWarning" - }, - { - "name": "l.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLOuterLabelRequiredEndError" - }, - { - "name": "l.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabel" - }, - { - "name": "l.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelDefault" - }, - { - "name": "l.inner-label.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelSuccess" - }, - { - "name": "l.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelWarning" - }, - { - "name": "l.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelError" - }, - { - "name": "l.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredStart" - }, - { - "name": "l.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredStartDefault" - }, - { - "name": "l.inner-label.required-start.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredStart.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredStartSuccess" - }, - { - "name": "l.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredStartWarning" - }, - { - "name": "l.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredStartError" - }, - { - "name": "l.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredEnd" - }, - { - "name": "l.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredEndDefault" - }, - { - "name": "l.inner-label.required-end.success", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredEnd.Success", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredEndSuccess" - }, - { - "name": "l.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredEndWarning" - }, - { - "name": "l.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextField.L.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextFieldLInnerLabelRequiredEndError" - } - ] - }, - { - "key": "text-area", - "coreName": "TextArea", - "styleName": "TextArea", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsDefault" - }, - { - "name": "xs.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsWarning" - }, - { - "name": "xs.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsError" - }, - { - "name": "xs.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredStart" - }, - { - "name": "xs.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredStartDefault" - }, - { - "name": "xs.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredStartWarning" - }, - { - "name": "xs.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredStartError" - }, - { - "name": "xs.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredEnd" - }, - { - "name": "xs.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredEndDefault" - }, - { - "name": "xs.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredEndWarning" - }, - { - "name": "xs.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsRequiredEndError" - }, - { - "name": "xs.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabel" - }, - { - "name": "xs.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelDefault" - }, - { - "name": "xs.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelWarning" - }, - { - "name": "xs.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelError" - }, - { - "name": "xs.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredStart" - }, - { - "name": "xs.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredStartDefault" - }, - { - "name": "xs.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredStartWarning" - }, - { - "name": "xs.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredStartError" - }, - { - "name": "xs.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredEnd" - }, - { - "name": "xs.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredEndDefault" - }, - { - "name": "xs.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredEndWarning" - }, - { - "name": "xs.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.Xs.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaXsOuterLabelRequiredEndError" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.TextArea.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSDefault" - }, - { - "name": "s.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSWarning" - }, - { - "name": "s.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSError" - }, - { - "name": "s.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredStart" - }, - { - "name": "s.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredStartDefault" - }, - { - "name": "s.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredStartWarning" - }, - { - "name": "s.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredStartError" - }, - { - "name": "s.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredEnd" - }, - { - "name": "s.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredEndDefault" - }, - { - "name": "s.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredEndWarning" - }, - { - "name": "s.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSRequiredEndError" - }, - { - "name": "s.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabel" - }, - { - "name": "s.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelDefault" - }, - { - "name": "s.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelWarning" - }, - { - "name": "s.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelError" - }, - { - "name": "s.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredStart" - }, - { - "name": "s.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredStartDefault" - }, - { - "name": "s.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredStartWarning" - }, - { - "name": "s.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredStartError" - }, - { - "name": "s.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredEnd" - }, - { - "name": "s.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredEndDefault" - }, - { - "name": "s.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredEndWarning" - }, - { - "name": "s.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSOuterLabelRequiredEndError" - }, - { - "name": "s.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabel" - }, - { - "name": "s.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelDefault" - }, - { - "name": "s.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelWarning" - }, - { - "name": "s.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelError" - }, - { - "name": "s.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredStart" - }, - { - "name": "s.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredStartDefault" - }, - { - "name": "s.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredStartWarning" - }, - { - "name": "s.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredStartError" - }, - { - "name": "s.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredEnd" - }, - { - "name": "s.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredEndDefault" - }, - { - "name": "s.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredEndWarning" - }, - { - "name": "s.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.S.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaSInnerLabelRequiredEndError" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.TextArea.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMDefault" - }, - { - "name": "m.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMWarning" - }, - { - "name": "m.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMError" - }, - { - "name": "m.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredStart" - }, - { - "name": "m.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredStartDefault" - }, - { - "name": "m.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredStartWarning" - }, - { - "name": "m.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredStartError" - }, - { - "name": "m.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredEnd" - }, - { - "name": "m.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredEndDefault" - }, - { - "name": "m.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredEndWarning" - }, - { - "name": "m.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMRequiredEndError" - }, - { - "name": "m.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabel" - }, - { - "name": "m.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelDefault" - }, - { - "name": "m.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelWarning" - }, - { - "name": "m.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelError" - }, - { - "name": "m.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredStart" - }, - { - "name": "m.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredStartDefault" - }, - { - "name": "m.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredStartWarning" - }, - { - "name": "m.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredStartError" - }, - { - "name": "m.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredEnd" - }, - { - "name": "m.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredEndDefault" - }, - { - "name": "m.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredEndWarning" - }, - { - "name": "m.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMOuterLabelRequiredEndError" - }, - { - "name": "m.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabel" - }, - { - "name": "m.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelDefault" - }, - { - "name": "m.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelWarning" - }, - { - "name": "m.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelError" - }, - { - "name": "m.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredStart" - }, - { - "name": "m.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredStartDefault" - }, - { - "name": "m.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredStartWarning" - }, - { - "name": "m.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredStartError" - }, - { - "name": "m.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredEnd" - }, - { - "name": "m.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredEndDefault" - }, - { - "name": "m.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredEndWarning" - }, - { - "name": "m.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.M.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaMInnerLabelRequiredEndError" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.TextArea.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLDefault" - }, - { - "name": "l.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLWarning" - }, - { - "name": "l.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLError" - }, - { - "name": "l.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredStart" - }, - { - "name": "l.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredStartDefault" - }, - { - "name": "l.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredStartWarning" - }, - { - "name": "l.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredStartError" - }, - { - "name": "l.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredEnd" - }, - { - "name": "l.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredEndDefault" - }, - { - "name": "l.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredEndWarning" - }, - { - "name": "l.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLRequiredEndError" - }, - { - "name": "l.outer-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabel" - }, - { - "name": "l.outer-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelDefault" - }, - { - "name": "l.outer-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelWarning" - }, - { - "name": "l.outer-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelError" - }, - { - "name": "l.outer-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredStart" - }, - { - "name": "l.outer-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredStartDefault" - }, - { - "name": "l.outer-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredStartWarning" - }, - { - "name": "l.outer-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredStartError" - }, - { - "name": "l.outer-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredEnd" - }, - { - "name": "l.outer-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredEndDefault" - }, - { - "name": "l.outer-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredEndWarning" - }, - { - "name": "l.outer-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.OuterLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLOuterLabelRequiredEndError" - }, - { - "name": "l.inner-label", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabel" - }, - { - "name": "l.inner-label.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelDefault" - }, - { - "name": "l.inner-label.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelWarning" - }, - { - "name": "l.inner-label.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelError" - }, - { - "name": "l.inner-label.required-start", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredStart" - }, - { - "name": "l.inner-label.required-start.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredStartDefault" - }, - { - "name": "l.inner-label.required-start.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredStartWarning" - }, - { - "name": "l.inner-label.required-start.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredStart.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredStartError" - }, - { - "name": "l.inner-label.required-end", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredEnd", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredEnd" - }, - { - "name": "l.inner-label.required-end.default", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredEnd.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredEndDefault" - }, - { - "name": "l.inner-label.required-end.warning", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredEnd.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredEndWarning" - }, - { - "name": "l.inner-label.required-end.error", - "viewReference": "Salute.StylesSalute.Components.TextArea.L.InnerLabel.RequiredEnd.Error", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextAreaLInnerLabelRequiredEndError" - } - ] - }, - { - "key": "tooltip", - "coreName": "Tooltip", - "styleName": "Tooltip", - "variations": [ - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.Tooltip.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TooltipM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.Tooltip.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TooltipS" - } - ] - }, - { - "key": "toast", - "coreName": "Toast", - "styleName": "Toast", - "variations": [ - { - "name": "rounded", - "viewReference": "Salute.StylesSalute.Components.Toast.Rounded", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ToastRounded" - }, - { - "name": "pilled", - "viewReference": "Salute.StylesSalute.Components.Toast.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ToastPilled" - } - ] - }, - { - "key": "modal", - "coreName": "Modal", - "styleName": "Modal", - "variations": [ - { - "name": "default", - "viewReference": "Salute.StylesSalute.Components.Modal", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.Modal" - } - ] - }, - { - "key": "rect-skeleton", - "coreName": "RectSkeleton", - "styleName": "RectSkeleton", - "variations": [ - { - "name": ".default", - "viewReference": "Salute.StylesSalute.Components.RectSkeleton.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RectSkeletonDefault" - }, - { - "name": ".lighter", - "viewReference": "Salute.StylesSalute.Components.RectSkeleton.Lighter", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.RectSkeletonLighter" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationCompact", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.NotificationCompact.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationCompactL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.NotificationCompact.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationCompactM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.NotificationCompact.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationCompactS" - } - ] - }, - { - "key": "notification", - "coreName": "Notification", - "styleName": "NotificationLoose", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.NotificationLoose.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationLooseL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.NotificationLoose.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationLooseM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.NotificationLoose.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationLooseS" - } - ] - }, - { - "key": "notification-content", - "coreName": "NotificationContent", - "styleName": "NotificationContent", - "variations": [ - { - "name": "button-stretch", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretch" - }, - { - "name": "button-stretch.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchDefault" - }, - { - "name": "button-stretch.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchPositive" - }, - { - "name": "button-stretch.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchNegative" - }, - { - "name": "button-stretch.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchWarning" - }, - { - "name": "button-stretch.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchInfo" - }, - { - "name": "button-stretch.icon-top", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTop" - }, - { - "name": "button-stretch.icon-top.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTopDefault" - }, - { - "name": "button-stretch.icon-top.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTopPositive" - }, - { - "name": "button-stretch.icon-top.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTopNegative" - }, - { - "name": "button-stretch.icon-top.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTopWarning" - }, - { - "name": "button-stretch.icon-top.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconTop.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconTopInfo" - }, - { - "name": "button-stretch.icon-start", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStart" - }, - { - "name": "button-stretch.icon-start.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStartDefault" - }, - { - "name": "button-stretch.icon-start.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStartPositive" - }, - { - "name": "button-stretch.icon-start.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStartNegative" - }, - { - "name": "button-stretch.icon-start.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStartWarning" - }, - { - "name": "button-stretch.icon-start.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.ButtonStretch.IconStart.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentButtonStretchIconStartInfo" - }, - { - "name": "no-button-stretch", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretch" - }, - { - "name": "no-button-stretch.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchDefault" - }, - { - "name": "no-button-stretch.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchPositive" - }, - { - "name": "no-button-stretch.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchNegative" - }, - { - "name": "no-button-stretch.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchWarning" - }, - { - "name": "no-button-stretch.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchInfo" - }, - { - "name": "no-button-stretch.icon-top", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTop" - }, - { - "name": "no-button-stretch.icon-top.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTopDefault" - }, - { - "name": "no-button-stretch.icon-top.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTopPositive" - }, - { - "name": "no-button-stretch.icon-top.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTopNegative" - }, - { - "name": "no-button-stretch.icon-top.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTopWarning" - }, - { - "name": "no-button-stretch.icon-top.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconTop.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconTopInfo" - }, - { - "name": "no-button-stretch.icon-start", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStart" - }, - { - "name": "no-button-stretch.icon-start.default", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStartDefault" - }, - { - "name": "no-button-stretch.icon-start.positive", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStartPositive" - }, - { - "name": "no-button-stretch.icon-start.negative", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStartNegative" - }, - { - "name": "no-button-stretch.icon-start.warning", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart.Warning", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStartWarning" - }, - { - "name": "no-button-stretch.icon-start.info", - "viewReference": "Salute.StylesSalute.Components.NotificationContent.NoButtonStretch.IconStart.Info", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.NotificationContentNoButtonStretchIconStartInfo" - } - ] - }, - { - "key": "list", - "coreName": "ListView", - "styleName": "ListNormal", - "variations": [ - { - "name": "xl", - "viewReference": "Salute.StylesSalute.Components.ListNormal.Xl", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListNormalXl" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ListNormal.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListNormalL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ListNormal.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListNormalM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ListNormal.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListNormalS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ListNormal.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListNormalXs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItemView", - "styleName": "ListItemNormal", - "variations": [ - { - "name": "xl", - "viewReference": "Salute.StylesSalute.Components.ListItemNormal.Xl", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemNormalXl" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ListItemNormal.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemNormalL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ListItemNormal.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemNormalM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ListItemNormal.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemNormalS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ListItemNormal.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemNormalXs" - } - ] - }, - { - "key": "list", - "coreName": "ListView", - "styleName": "ListTight", - "variations": [ - { - "name": "xl", - "viewReference": "Salute.StylesSalute.Components.ListTight.Xl", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListTightXl" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ListTight.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListTightL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ListTight.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListTightM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ListTight.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListTightS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ListTight.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListTightXs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItemView", - "styleName": "ListItemTight", - "variations": [ - { - "name": "xl", - "viewReference": "Salute.StylesSalute.Components.ListItemTight.Xl", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemTightXl" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.ListItemTight.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemTightL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ListItemTight.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemTightM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ListItemTight.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemTightS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.ListItemTight.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ListItemTightXs" - } - ] - }, - { - "key": "text-skeleton", - "coreName": "TextSkeleton", - "styleName": "TextSkeleton", - "variations": [ - { - "name": ".default", - "viewReference": "Salute.StylesSalute.Components.TextSkeleton.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextSkeletonDefault" - }, - { - "name": ".lighter", - "viewReference": "Salute.StylesSalute.Components.TextSkeleton.Lighter", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.TextSkeletonLighter" - } - ] - }, - { - "key": "list", - "coreName": "ListView", - "styleName": "DropdownMenuListNormal", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListNormal.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListNormalL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListNormal.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListNormalM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListNormal.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListNormalS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListNormal.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListNormalXs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItemView", - "styleName": "DropdownMenuItemNormal", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalLDefault" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalLPositive" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalLNegative" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalMDefault" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalMPositive" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalMNegative" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalSDefault" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalSPositive" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalSNegative" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalXsDefault" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalXsPositive" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemNormal.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemNormalXsNegative" - } - ] - }, - { - "key": "list", - "coreName": "ListView", - "styleName": "DropdownMenuListTight", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListTight.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListTightL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListTight.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListTightM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListTight.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListTightS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuListTight.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuListTightXs" - } - ] - }, - { - "key": "list-item", - "coreName": "ListItemView", - "styleName": "DropdownMenuItemTight", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightL" - }, - { - "name": "l.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.L.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightLDefault" - }, - { - "name": "l.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.L.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightLPositive" - }, - { - "name": "l.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.L.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightLNegative" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightM" - }, - { - "name": "m.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.M.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightMDefault" - }, - { - "name": "m.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.M.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightMPositive" - }, - { - "name": "m.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.M.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightMNegative" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightS" - }, - { - "name": "s.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.S.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightSDefault" - }, - { - "name": "s.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.S.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightSPositive" - }, - { - "name": "s.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.S.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightSNegative" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightXs" - }, - { - "name": "xs.default", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.Xs.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightXsDefault" - }, - { - "name": "xs.positive", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.Xs.Positive", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightXsPositive" - }, - { - "name": "xs.negative", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuItemTight.Xs.Negative", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuItemTightXsNegative" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuTight", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuTight.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuTightL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuTight.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuTightM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuTight.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuTightS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuTight.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuTightXs" - } - ] - }, - { - "key": "dropdown-menu", - "coreName": "DropdownMenu", - "styleName": "DropdownMenuNormal", - "variations": [ - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuNormal.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuNormalL" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuNormal.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuNormalM" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuNormal.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuNormalS" - }, - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.DropdownMenuNormal.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.DropdownMenuNormalXs" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItemView", - "styleName": "AccordionItemSolidActionStart", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionStart.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionStartH5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItemView", - "styleName": "AccordionItemSolidActionEnd", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionItemSolidActionEnd.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemSolidActionEndH5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItemView", - "styleName": "AccordionItemClearActionStart", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionStart.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionStartH5" - } - ] - }, - { - "key": "accordion-item", - "coreName": "AccordionItemView", - "styleName": "AccordionItemClearActionEnd", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionItemClearActionEnd.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionItemClearActionEndH5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionStart", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionStart.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionStartH5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionSolidActionEnd", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionSolidActionEnd.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionSolidActionEndH5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionStart", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionStart.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionStartH5" - } - ] - }, - { - "key": "accordion", - "coreName": "Accordion", - "styleName": "AccordionClearActionEnd", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndXs" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndL" - }, - { - "name": "h2", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.H2", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndH2" - }, - { - "name": "h3", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.H3", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndH3" - }, - { - "name": "h4", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.H4", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndH4" - }, - { - "name": "h5", - "viewReference": "Salute.StylesSalute.Components.AccordionClearActionEnd.H5", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.AccordionClearActionEndH5" - } - ] - }, - { - "key": "scroll-bar", - "coreName": "ScrollBar", - "styleName": "ScrollBar", - "variations": [ - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.ScrollBar.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ScrollBarS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.ScrollBar.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.ScrollBarM" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "BasicButtonGroup", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXs" - }, - { - "name": "xs.wide", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsWide" - }, - { - "name": "xs.wide.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsWideDefault" - }, - { - "name": "xs.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsWideSegmented" - }, - { - "name": "xs.dense", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsDense" - }, - { - "name": "xs.dense.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsDenseDefault" - }, - { - "name": "xs.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsDenseSegmented" - }, - { - "name": "xs.no-gap", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsNoGap" - }, - { - "name": "xs.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsNoGapDefault" - }, - { - "name": "xs.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.Xs.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupXsNoGapSegmented" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupS" - }, - { - "name": "s.wide", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSWide" - }, - { - "name": "s.wide.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSWideDefault" - }, - { - "name": "s.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSWideSegmented" - }, - { - "name": "s.dense", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSDense" - }, - { - "name": "s.dense.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSDenseDefault" - }, - { - "name": "s.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSDenseSegmented" - }, - { - "name": "s.no-gap", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSNoGap" - }, - { - "name": "s.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSNoGapDefault" - }, - { - "name": "s.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.S.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupSNoGapSegmented" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupM" - }, - { - "name": "m.wide", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMWide" - }, - { - "name": "m.wide.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMWideDefault" - }, - { - "name": "m.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMWideSegmented" - }, - { - "name": "m.dense", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMDense" - }, - { - "name": "m.dense.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMDenseDefault" - }, - { - "name": "m.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMDenseSegmented" - }, - { - "name": "m.no-gap", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMNoGap" - }, - { - "name": "m.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMNoGapDefault" - }, - { - "name": "m.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.M.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupMNoGapSegmented" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupL" - }, - { - "name": "l.wide", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLWide" - }, - { - "name": "l.wide.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLWideDefault" - }, - { - "name": "l.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLWideSegmented" - }, - { - "name": "l.dense", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLDense" - }, - { - "name": "l.dense.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLDenseDefault" - }, - { - "name": "l.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLDenseSegmented" - }, - { - "name": "l.no-gap", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLNoGap" - }, - { - "name": "l.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLNoGapDefault" - }, - { - "name": "l.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.BasicButtonGroup.L.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.BasicButtonGroupLNoGapSegmented" - } - ] - }, - { - "key": "button-group", - "coreName": "ButtonGroup", - "styleName": "IconButtonGroup", - "variations": [ - { - "name": "xs", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXs" - }, - { - "name": "xs.wide", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsWide" - }, - { - "name": "xs.wide.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsWideDefault" - }, - { - "name": "xs.wide.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Wide.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsWidePilled" - }, - { - "name": "xs.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsWideSegmented" - }, - { - "name": "xs.dense", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsDense" - }, - { - "name": "xs.dense.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsDenseDefault" - }, - { - "name": "xs.dense.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Dense.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsDensePilled" - }, - { - "name": "xs.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsDenseSegmented" - }, - { - "name": "xs.no-gap", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsNoGap" - }, - { - "name": "xs.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsNoGapDefault" - }, - { - "name": "xs.no-gap.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.NoGap.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsNoGapPilled" - }, - { - "name": "xs.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.Xs.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupXsNoGapSegmented" - }, - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupS" - }, - { - "name": "s.wide", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSWide" - }, - { - "name": "s.wide.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSWideDefault" - }, - { - "name": "s.wide.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Wide.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSWidePilled" - }, - { - "name": "s.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSWideSegmented" - }, - { - "name": "s.dense", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSDense" - }, - { - "name": "s.dense.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSDenseDefault" - }, - { - "name": "s.dense.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Dense.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSDensePilled" - }, - { - "name": "s.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSDenseSegmented" - }, - { - "name": "s.no-gap", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSNoGap" - }, - { - "name": "s.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSNoGapDefault" - }, - { - "name": "s.no-gap.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.NoGap.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSNoGapPilled" - }, - { - "name": "s.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.S.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupSNoGapSegmented" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupM" - }, - { - "name": "m.wide", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMWide" - }, - { - "name": "m.wide.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMWideDefault" - }, - { - "name": "m.wide.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Wide.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMWidePilled" - }, - { - "name": "m.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMWideSegmented" - }, - { - "name": "m.dense", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMDense" - }, - { - "name": "m.dense.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMDenseDefault" - }, - { - "name": "m.dense.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Dense.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMDensePilled" - }, - { - "name": "m.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMDenseSegmented" - }, - { - "name": "m.no-gap", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMNoGap" - }, - { - "name": "m.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMNoGapDefault" - }, - { - "name": "m.no-gap.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.NoGap.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMNoGapPilled" - }, - { - "name": "m.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.M.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupMNoGapSegmented" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupL" - }, - { - "name": "l.wide", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Wide", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLWide" - }, - { - "name": "l.wide.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Wide.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLWideDefault" - }, - { - "name": "l.wide.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Wide.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLWidePilled" - }, - { - "name": "l.wide.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Wide.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLWideSegmented" - }, - { - "name": "l.dense", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Dense", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLDense" - }, - { - "name": "l.dense.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Dense.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLDenseDefault" - }, - { - "name": "l.dense.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Dense.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLDensePilled" - }, - { - "name": "l.dense.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.Dense.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLDenseSegmented" - }, - { - "name": "l.no-gap", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.NoGap", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLNoGap" - }, - { - "name": "l.no-gap.default", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.NoGap.Default", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLNoGapDefault" - }, - { - "name": "l.no-gap.pilled", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.NoGap.Pilled", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLNoGapPilled" - }, - { - "name": "l.no-gap.segmented", - "viewReference": "Salute.StylesSalute.Components.IconButtonGroup.L.NoGap.Segmented", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.IconButtonGroupLNoGapSegmented" - } - ] - }, - { - "key": "code-input", - "coreName": "CodeInput", - "styleName": "CodeInput", - "variations": [ - { - "name": "s", - "viewReference": "Salute.StylesSalute.Components.CodeInput.S", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CodeInputS" - }, - { - "name": "m", - "viewReference": "Salute.StylesSalute.Components.CodeInput.M", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CodeInputM" - }, - { - "name": "l", - "viewReference": "Salute.StylesSalute.Components.CodeInput.L", - "viewOverlayReference": "Salute.StylesSalute.ComponentOverlays.CodeInputL" - } - ] - } - ] -} \ No newline at end of file diff --git a/tokens/stylessalute.view/docs/build.gradle.kts b/tokens/stylessalute.view/docs/build.gradle.kts deleted file mode 100644 index 6f09639185..0000000000 --- a/tokens/stylessalute.view/docs/build.gradle.kts +++ /dev/null @@ -1,14 +0,0 @@ -@Suppress("DSL_SCOPE_VIOLATION") -plugins { - id("convention.documentation-view") - id("convention.testing") -} - -android { - namespace = "com.sdds.stylessalute.docs" -} - -dependencies { - implementation(project(":stylessalute.view")) - implementation(libs.sdds.uikit) -} diff --git a/tokens/stylessalute.view/docs/gradle.properties b/tokens/stylessalute.view/docs/gradle.properties deleted file mode 100644 index b6aaed8e2f..0000000000 --- a/tokens/stylessalute.view/docs/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -docs-theme-name=Plasma Salute Service -docs-theme-codeReference=Salute.StylesSalute.MaterialComponents.DayNight -docs-theme-prefix=Salute.StylesSalute diff --git a/tokens/stylessalute.view/docs/override-docs/versionsArchived.json b/tokens/stylessalute.view/docs/override-docs/versionsArchived.json deleted file mode 100644 index 7a642d93aa..0000000000 --- a/tokens/stylessalute.view/docs/override-docs/versionsArchived.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "0.10.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.10.0/", - "0.11.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.11.0/", - "0.12.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.12.0/", - "0.13.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.13.0/", - "0.14.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.14.0/", - "0.15.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.15.0/", - "0.16.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.16.0/", - "0.17.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.17.0/", - "0.18.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.18.0/", - "0.19.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.19.0/", - "0.20.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.20.0/", - "0.21.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.21.0/", - "0.22.0": "https://plasma.sberdevices.ru/xml/stylessalute/0.22.0/" -} \ No newline at end of file diff --git a/tokens/stylessalute.view/gradle.properties b/tokens/stylessalute.view/gradle.properties deleted file mode 100644 index 82da48dd8b..0000000000 --- a/tokens/stylessalute.view/gradle.properties +++ /dev/null @@ -1,16 +0,0 @@ -nexus.artifactId=stylessalute -nexus.snapshot=false -nexus.description=stylessalute token library for view framework -versionMajor=0 -versionMinor=23 -versionPatch=0 - -theme-version=0.7.0-alpha -components-version=0.10.0 - -summary.key=plasmaStylesSalute - -components-name=stylesSalute -theme-name=stylesSalute -theme-alias=StylesSalute -theme-resPrefix=salute diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_dark.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_dark.png deleted file mode 100644 index 33acb0b03d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_light.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_light.png deleted file mode 100644 index f307944037..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeH4HasDivider_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_dark.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_dark.png deleted file mode 100644 index ed1a4a242c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_light.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_light.png deleted file mode 100644 index 3cde5a5b61..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionEndSizeSHasDivider_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_dark.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_dark.png deleted file mode 100644 index bfe50e8d0c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_light.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_light.png deleted file mode 100644 index 265e4e63d7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH2AmountTen_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_dark.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_dark.png deleted file mode 100644 index c348579fc5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_light.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_light.png deleted file mode 100644 index b3534d6cb5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeH5_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_dark.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_dark.png deleted file mode 100644 index 3f8b4d8f17..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_light.png b/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_light.png deleted file mode 100644 index c306a276da..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionClearActionStartSizeXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_dark.png deleted file mode 100644 index debfe8e0a7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_light.png deleted file mode 100644 index 71aeb75540..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeH2_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_dark.png deleted file mode 100644 index 5a5b3d7b0a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_light.png deleted file mode 100644 index e03a07cbd8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLAmountTen_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_dark.png deleted file mode 100644 index 86a9fdd492..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_light.png deleted file mode 100644 index ae96561255..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png deleted file mode 100644 index b7d4459c0e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_light.png deleted file mode 100644 index 6d8053c551..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeLNoTextNoContent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_dark.png deleted file mode 100644 index 6a7a72c9f4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_light.png deleted file mode 100644 index 3aa8d45e8c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionEndSizeL_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_dark.png deleted file mode 100644 index 4b661639bb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_light.png deleted file mode 100644 index 23ff6192b5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeH3_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_dark.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_dark.png deleted file mode 100644 index bc4b2fe3c9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_light.png b/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_light.png deleted file mode 100644 index 8b350d2d8f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAccordionSolidActionStartSizeMAmountTen_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_dark.png b/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_dark.png deleted file mode 100644 index f2b7bdfeb1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_light.png b/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_light.png deleted file mode 100644 index e450a4bc08..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_dark.png deleted file mode 100644 index 450af9ab06..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_light.png deleted file mode 100644 index e5bf889c77..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeLBadgeTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_dark.png deleted file mode 100644 index fb94b15ca2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_light.png deleted file mode 100644 index 6d88a0d23a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeLCounterTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_dark.png deleted file mode 100644 index 02ac27a578..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_light.png deleted file mode 100644 index fcbb27408c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeMBadgeBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_dark.png deleted file mode 100644 index 8614b4bcd9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_light.png deleted file mode 100644 index 9934b7ecea..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeMCounterBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeM_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeM_dark.png deleted file mode 100644 index e65dc11352..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeM_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeM_light.png deleted file mode 100644 index 6e06ca10a4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_dark.png deleted file mode 100644 index bcf3ed58a3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_light.png deleted file mode 100644 index 769450246b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeSCounterBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_dark.png deleted file mode 100644 index 111bb3119e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_light.png deleted file mode 100644 index 7d5ea32adf..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_dark.png deleted file mode 100644 index 0b1d45dfe5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_light.png deleted file mode 100644 index ec10822290..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLBadgeTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_dark.png deleted file mode 100644 index b6a2aeadfe..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_light.png deleted file mode 100644 index dbf4b900f5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXLCounterTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_dark.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_dark.png deleted file mode 100644 index 23434165a1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_light.png b/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_light.png deleted file mode 100644 index 5458a79ce1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testAvatarSizeXXL_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_dark.png deleted file mode 100644 index 6fb0d8fe8a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_light.png deleted file mode 100644 index 7ef7475536..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_dark.png deleted file mode 100644 index 5b3ee60655..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_light.png deleted file mode 100644 index 5103719a30..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultContentLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_dark.png deleted file mode 100644 index 14205667f4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_light.png deleted file mode 100644 index dab787c348..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLDefaultTransparent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_dark.png deleted file mode 100644 index 734df8237b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_light.png deleted file mode 100644 index 3fd053ff92..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_dark.png deleted file mode 100644 index b35aa02830..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_light.png deleted file mode 100644 index 6ef354826c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMAccentContentRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_dark.png deleted file mode 100644 index 80115b2e4e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_light.png deleted file mode 100644 index f58e47e289..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMDark_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_dark.png deleted file mode 100644 index c7544ffaf6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_light.png deleted file mode 100644 index f882a97c35..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeMNegativeClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_dark.png deleted file mode 100644 index aa0c80c33b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_light.png deleted file mode 100644 index ef13cd0358..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSLight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_dark.png deleted file mode 100644 index 7a5babb452..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_light.png deleted file mode 100644 index c8a8d14063..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSPositivePilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_dark.png deleted file mode 100644 index dc68509043..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_light.png deleted file mode 100644 index 8322014930..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeSWarningPilledTransparent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_dark.png b/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_dark.png deleted file mode 100644 index 1f39674c0e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_light.png b/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_light.png deleted file mode 100644 index a7215ef238..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testBadgeSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_dark.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_dark.png deleted file mode 100644 index bebd692eb4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_light.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_light.png deleted file mode 100644 index 9a6b35083b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeLDefaultNoGap_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_dark.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_dark.png deleted file mode 100644 index db3ed40461..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_light.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_light.png deleted file mode 100644 index a5f8e5b8c5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeMDefaultDense_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_dark.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_dark.png deleted file mode 100644 index 9100893617..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_light.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_light.png deleted file mode 100644 index 5d4c90077f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeSWideSegmented_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_dark.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_dark.png deleted file mode 100644 index 8c918a4281..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_light.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_light.png deleted file mode 100644 index e758c09748..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXsDefaultNoGap_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_dark.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_dark.png deleted file mode 100644 index bedde45444..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_light.png b/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_light.png deleted file mode 100644 index 5267491ced..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonGroupSizeXxsNoGapSegmented_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonLWhite_dark.png b/tokens/stylessalute.view/screenshots/testButtonLWhite_dark.png deleted file mode 100644 index 6cc2567a30..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonLWhite_light.png b/tokens/stylessalute.view/screenshots/testButtonLWhite_light.png deleted file mode 100644 index 5b94ff4691..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_dark.png deleted file mode 100644 index d4efe6d4b8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_light.png deleted file mode 100644 index 584f1206f6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_dark.png deleted file mode 100644 index acb305ec0d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_light.png deleted file mode 100644 index fccbe0d793..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_dark.png deleted file mode 100644 index 61e8dd79c2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_light.png deleted file mode 100644 index 3856e149df..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_dark.png deleted file mode 100644 index fdb2d98f2d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_light.png deleted file mode 100644 index f7deea869b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeLSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_dark.png deleted file mode 100644 index ac0649ae32..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_light.png deleted file mode 100644 index f8be79b39a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_dark.png deleted file mode 100644 index 7bb6f02bd4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_light.png deleted file mode 100644 index 1d737376d9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeMSpaceBetween_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_dark.png deleted file mode 100644 index 521797a5ce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_light.png deleted file mode 100644 index d918c6573e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeSLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_dark.png deleted file mode 100644 index 2d5abc38c7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_light.png deleted file mode 100644 index 3a86285d7a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_dark.png b/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_dark.png deleted file mode 100644 index 045e38ebab..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_light.png b/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_light.png deleted file mode 100644 index 086644a048..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonSizeXSDark_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonXSNegative_dark.png b/tokens/stylessalute.view/screenshots/testButtonXSNegative_dark.png deleted file mode 100644 index 5a52d1afff..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonXSNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testButtonXSNegative_light.png b/tokens/stylessalute.view/screenshots/testButtonXSNegative_light.png deleted file mode 100644 index 4ebc863d1e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testButtonXSNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_dark.png deleted file mode 100644 index c666481366..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_light.png b/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_light.png deleted file mode 100644 index d71e81bf0a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLAvatarHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_dark.png deleted file mode 100644 index fcfe195d27..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_light.png b/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_light.png deleted file mode 100644 index 862e659a64..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_dark.png deleted file mode 100644 index 967587548e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_light.png b/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_light.png deleted file mode 100644 index 354de217b3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeLSwitchCheckBox_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_dark.png deleted file mode 100644 index 83943ef720..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_light.png b/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_light.png deleted file mode 100644 index e0f22d254f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMAvatarIcon_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_dark.png deleted file mode 100644 index 752d2d6764..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_light.png b/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_light.png deleted file mode 100644 index ed5fb69b06..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMCheckBoxHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_dark.png deleted file mode 100644 index 6017a0e039..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_light.png b/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_light.png deleted file mode 100644 index 78196a0c5a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeMTitleAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_dark.png deleted file mode 100644 index b5cb21f497..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_light.png b/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_light.png deleted file mode 100644 index 45f048c259..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeSIconHasDisclosureDisclosureText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_dark.png deleted file mode 100644 index 8c2d82c848..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_light.png b/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_light.png deleted file mode 100644 index 479cb46723..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeSSubtitleHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_dark.png deleted file mode 100644 index b543b56ec3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_light.png b/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_light.png deleted file mode 100644 index a9c28c655a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeXSLabelAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_dark.png b/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_dark.png deleted file mode 100644 index be60e0ea77..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_light.png b/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_light.png deleted file mode 100644 index 5e65b5e4bc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCellSizeXSRadioBoxAvatar_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_dark.png deleted file mode 100644 index c42047c3bb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_light.png deleted file mode 100644 index ad754315e9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_dark.png deleted file mode 100644 index 2aee44c57c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_light.png deleted file mode 100644 index cc97dc715a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupMDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_dark.png deleted file mode 100644 index 3feb0bdf75..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_light.png deleted file mode 100644 index 2fed7a3820..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_dark.png deleted file mode 100644 index 4bd742c706..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_light.png deleted file mode 100644 index 4848139eb1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_dark.png deleted file mode 100644 index de5e5299df..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_light.png deleted file mode 100644 index 93b3991ca2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxNoLabelAndDesc_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_dark.png deleted file mode 100644 index 51a37b8752..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_light.png deleted file mode 100644 index 3660f58ba6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeMIndeterminate_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_dark.png deleted file mode 100644 index d46b0e647b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_light.png deleted file mode 100644 index acea0562e4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_dark.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_dark.png deleted file mode 100644 index c5810fa792..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_light.png b/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_light.png deleted file mode 100644 index 0adf0cdef2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCheckBoxSizeSUnchecked_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipDisabled_dark.png b/tokens/stylessalute.view/screenshots/testChipDisabled_dark.png deleted file mode 100644 index 19c7db6be3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipDisabled_light.png b/tokens/stylessalute.view/screenshots/testChipDisabled_light.png deleted file mode 100644 index 7217d56750..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLDefault_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupLDefault_dark.png deleted file mode 100644 index f1c4a03bef..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLDefault_light.png b/tokens/stylessalute.view/screenshots/testChipGroupLDefault_light.png deleted file mode 100644 index bb7bfb1340..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_dark.png deleted file mode 100644 index bc324c1422..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_light.png b/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_light.png deleted file mode 100644 index df1d434ff4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLPilledSecondaryCheckedStateAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_dark.png deleted file mode 100644 index 000a80e6fa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_light.png b/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_light.png deleted file mode 100644 index e0bbe30a99..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupLSecondaryCheckedStateDefaultMultiple_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_dark.png deleted file mode 100644 index 0e5e473aa3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_light.png b/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_light.png deleted file mode 100644 index 1b3df4b2c3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupMAccentCheckedStateSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_dark.png deleted file mode 100644 index 001e8b2d94..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_light.png b/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_light.png deleted file mode 100644 index 1d5972a3ea..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupMSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupSAccent_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupSAccent_dark.png deleted file mode 100644 index 3eb96dabc0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupSAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupSAccent_light.png b/tokens/stylessalute.view/screenshots/testChipGroupSAccent_light.png deleted file mode 100644 index db5c632f17..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupSAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_dark.png b/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_dark.png deleted file mode 100644 index 217803eb51..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_light.png b/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_light.png deleted file mode 100644 index 97e9998835..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipGroupXSDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipLDefault_dark.png b/tokens/stylessalute.view/screenshots/testChipLDefault_dark.png deleted file mode 100644 index 89466ca94b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipLDefault_light.png b/tokens/stylessalute.view/screenshots/testChipLDefault_light.png deleted file mode 100644 index 670091c8c0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipMSecondary_dark.png b/tokens/stylessalute.view/screenshots/testChipMSecondary_dark.png deleted file mode 100644 index fe45d065bf..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipMSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipMSecondary_light.png b/tokens/stylessalute.view/screenshots/testChipMSecondary_light.png deleted file mode 100644 index efe0a5b533..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipMSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipSAccent_dark.png b/tokens/stylessalute.view/screenshots/testChipSAccent_dark.png deleted file mode 100644 index debb545729..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipSAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipSAccent_light.png b/tokens/stylessalute.view/screenshots/testChipSAccent_light.png deleted file mode 100644 index ad7586d8f3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipSAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipXsDefault_dark.png b/tokens/stylessalute.view/screenshots/testChipXsDefault_dark.png deleted file mode 100644 index 09df887452..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipXsDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testChipXsDefault_light.png b/tokens/stylessalute.view/screenshots/testChipXsDefault_light.png deleted file mode 100644 index d5afb34469..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testChipXsDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_dark.png deleted file mode 100644 index 2b57745e20..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_light.png b/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_light.png deleted file mode 100644 index 4d6ee1528f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputCodeMLengthSixHidden_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_dark.png deleted file mode 100644 index 8d8d04e85d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_light.png deleted file mode 100644 index d013d0037c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthFourCaptionLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_dark.png deleted file mode 100644 index aa2de31fb3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_light.png deleted file mode 100644 index 2a1a1cbfaa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixErrorKeep_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_dark.png deleted file mode 100644 index 43f7b6c8f4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_light.png deleted file mode 100644 index 1682cdc48b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixNoCaption_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_dark.png deleted file mode 100644 index b20f2c927a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_light.png deleted file mode 100644 index ed19ea171f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveCode_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_dark.png deleted file mode 100644 index 2e1fee87d8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_light.png deleted file mode 100644 index 241d95ec03..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCodeLengthSixRemoveSymbol_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_dark.png deleted file mode 100644 index d46c3e160d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_light.png deleted file mode 100644 index 40abff6d06..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLCorrectCode_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLLongText_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputLLongText_dark.png deleted file mode 100644 index a680a1c71d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputLLongText_light.png b/tokens/stylessalute.view/screenshots/testCodeInputLLongText_light.png deleted file mode 100644 index 32a92cc1e1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputLLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_dark.png deleted file mode 100644 index 22bcd90580..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_light.png b/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_light.png deleted file mode 100644 index 54f58f89f2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputMCodeLengthFiveCaptionCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_dark.png b/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_dark.png deleted file mode 100644 index a5bc98343b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_light.png b/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_light.png deleted file mode 100644 index 8e4376954f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCodeInputSCodeLengthSixCaptionCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_dark.png deleted file mode 100644 index c889748440..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_light.png deleted file mode 100644 index 9c23adab18..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_dark.png deleted file mode 100644 index de78e9f0f7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_light.png deleted file mode 100644 index b11e8c3a35..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_dark.png deleted file mode 100644 index d64ebd3909..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_light.png deleted file mode 100644 index a66a937346..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_dark.png deleted file mode 100644 index 9f4888acce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_light.png deleted file mode 100644 index 4bcd78bfa2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_dark.png deleted file mode 100644 index 4c432ab49a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_light.png deleted file mode 100644 index 6ac1e48371..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeSPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_dark.png deleted file mode 100644 index 7054b8a550..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_light.png deleted file mode 100644 index e8a970748c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeXsWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_dark.png b/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_dark.png deleted file mode 100644 index 4727639bc9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_light.png b/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_light.png deleted file mode 100644 index 0f48ec5cfe..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testCounterSizeXxsNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_dark.png deleted file mode 100644 index 26a2f8de42..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_light.png deleted file mode 100644 index 0546031ffe..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuLPositiveStrictStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_dark.png deleted file mode 100644 index 3c22291a8a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_light.png deleted file mode 100644 index 10fab22319..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuMNegativeStrictStartBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_dark.png deleted file mode 100644 index bc259070c3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_light.png deleted file mode 100644 index 93bf575e4b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuSNoTextNoDisclosureStrictCenterTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_dark.png deleted file mode 100644 index 811e0f0e37..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_light.png deleted file mode 100644 index 81ae55a119..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuTightXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_dark.png deleted file mode 100644 index bf9b46aabc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_light.png deleted file mode 100644 index 463d85151b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlAmountTwentyLooseCenterBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_dark.png deleted file mode 100644 index 840fb20d42..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_light.png deleted file mode 100644 index 963959876b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlHasLooseStartTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_dark.png deleted file mode 100644 index c73e6c5c82..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_light.png deleted file mode 100644 index e7ed1824b1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_dark.png deleted file mode 100644 index cb1d34f8b7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_light.png deleted file mode 100644 index 5b3cec084d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlLooseEndTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_dark.png deleted file mode 100644 index aa149a00ac..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_light.png deleted file mode 100644 index b70eef1105..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXlStrictEndCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_dark.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_dark.png deleted file mode 100644 index c924113964..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_light.png b/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_light.png deleted file mode 100644 index a58377e2a3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testDropDownMenuXsStrictCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowCenterVertical_dark.png b/tokens/stylessalute.view/screenshots/testFlowCenterVertical_dark.png deleted file mode 100644 index acf03a7916..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowCenterVertical_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowCenterVertical_light.png b/tokens/stylessalute.view/screenshots/testFlowCenterVertical_light.png deleted file mode 100644 index 6f70399be5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowCenterVertical_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_dark.png deleted file mode 100644 index 0cad167e61..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_light.png b/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_light.png deleted file mode 100644 index 41d6e8abc8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowEndHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_dark.png b/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_dark.png deleted file mode 100644 index a37fc16e0d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_light.png b/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_light.png deleted file mode 100644 index 6d2b7588fd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowItemsPerLineOne_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_dark.png deleted file mode 100644 index a22f21ac78..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_light.png b/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_light.png deleted file mode 100644 index c626c2c440..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowSpaceAroundStartHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_dark.png deleted file mode 100644 index dc34b1e8ad..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_light.png b/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_light.png deleted file mode 100644 index 5e16727077..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowSpaceBetweenStartHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_dark.png deleted file mode 100644 index 923b22cf0b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_light.png b/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_light.png deleted file mode 100644 index c829b36a73..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testFlowStartHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_dark.png deleted file mode 100644 index f7ffb9563a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_light.png deleted file mode 100644 index 0d9963c414..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_dark.png deleted file mode 100644 index dff72ccfa0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_light.png deleted file mode 100644 index 19e095eb12..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_dark.png deleted file mode 100644 index b27e41554f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_light.png deleted file mode 100644 index 1afbb6ada2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMAccentPilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_dark.png deleted file mode 100644 index 00d3fe0882..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_light.png deleted file mode 100644 index 84d4517017..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeMBlack_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_dark.png deleted file mode 100644 index 32307849fd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_light.png deleted file mode 100644 index de7c35ca20..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSPositiveClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_dark.png deleted file mode 100644 index bda3491124..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_light.png deleted file mode 100644 index ad1f781633..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeSWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_dark.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_dark.png deleted file mode 100644 index 336d7e2317..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_light.png b/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_light.png deleted file mode 100644 index cf9430f2ad..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconBadgeSizeXsWarningTransparent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonDisabled_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonDisabled_dark.png deleted file mode 100644 index 6c5e57c95e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonDisabled_light.png b/tokens/stylessalute.view/screenshots/testIconButtonDisabled_light.png deleted file mode 100644 index db3e69f118..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_dark.png deleted file mode 100644 index c790661949..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_light.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_light.png deleted file mode 100644 index eb2be3f117..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_dark.png deleted file mode 100644 index 59db1a1e6e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_light.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_light.png deleted file mode 100644 index 3d9742edc6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeLNoGapDefaultHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_dark.png deleted file mode 100644 index 7ca2b4b5aa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_light.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_light.png deleted file mode 100644 index c20c64dcc6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeMDensePilledHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_dark.png deleted file mode 100644 index b76969604e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_light.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_light.png deleted file mode 100644 index d90eef8ec0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeSWideSegmentedHorizontal_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_dark.png deleted file mode 100644 index b18b152853..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_light.png b/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_light.png deleted file mode 100644 index 0493d7dd82..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonGroupSizeXsNoGapDefaultVertical_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLDefault_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonLDefault_dark.png deleted file mode 100644 index e6e75f6768..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLDefault_light.png b/tokens/stylessalute.view/screenshots/testIconButtonLDefault_light.png deleted file mode 100644 index 6c67825d44..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_dark.png deleted file mode 100644 index 0ae9df590c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_light.png b/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_light.png deleted file mode 100644 index 98acc0d981..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_dark.png deleted file mode 100644 index 1352237cd4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_light.png b/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_light.png deleted file mode 100644 index 6cb7a81deb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLPilledSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLWhite_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonLWhite_dark.png deleted file mode 100644 index e6e75f6768..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLWhite_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonLWhite_light.png b/tokens/stylessalute.view/screenshots/testIconButtonLWhite_light.png deleted file mode 100644 index 33d0033808..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonLWhite_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonMAccent_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonMAccent_dark.png deleted file mode 100644 index 027795ff8e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonMAccent_light.png b/tokens/stylessalute.view/screenshots/testIconButtonMAccent_light.png deleted file mode 100644 index 05f8f3b512..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonMClear_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonMClear_dark.png deleted file mode 100644 index 2268599ec4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonMClear_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonMClear_light.png b/tokens/stylessalute.view/screenshots/testIconButtonMClear_light.png deleted file mode 100644 index 07f71c93bd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonMClear_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonSPositive_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonSPositive_dark.png deleted file mode 100644 index a4f268d6a2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonSPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonSPositive_light.png b/tokens/stylessalute.view/screenshots/testIconButtonSPositive_light.png deleted file mode 100644 index 2538ba3ae2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonSPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonSWarning_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonSWarning_dark.png deleted file mode 100644 index 2dd8797474..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonSWarning_light.png b/tokens/stylessalute.view/screenshots/testIconButtonSWarning_light.png deleted file mode 100644 index d4fea824fa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonXSDark_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonXSDark_dark.png deleted file mode 100644 index 697d85fc62..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonXSDark_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonXSDark_light.png b/tokens/stylessalute.view/screenshots/testIconButtonXSDark_light.png deleted file mode 100644 index ead00b9b18..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonXSDark_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_dark.png b/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_dark.png deleted file mode 100644 index 0a9bbcbbfc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_light.png b/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_light.png deleted file mode 100644 index 852cf4d21b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIconButtonXSNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLNegative_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorLNegative_dark.png deleted file mode 100644 index d9092ccee7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLNegative_light.png b/tokens/stylessalute.view/screenshots/testIndicatorLNegative_light.png deleted file mode 100644 index ac24a65cc6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLPositive_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorLPositive_dark.png deleted file mode 100644 index 1abba93f8a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLPositive_light.png b/tokens/stylessalute.view/screenshots/testIndicatorLPositive_light.png deleted file mode 100644 index 04c838e18f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLWarning_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorLWarning_dark.png deleted file mode 100644 index 36ad900924..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorLWarning_light.png b/tokens/stylessalute.view/screenshots/testIndicatorLWarning_light.png deleted file mode 100644 index eef202df74..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorLWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_dark.png deleted file mode 100644 index f92d74dcf6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_light.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_light.png deleted file mode 100644 index e7604b8909..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_dark.png deleted file mode 100644 index 543fbaf494..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_light.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_light.png deleted file mode 100644 index 82dd7700ba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_dark.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_dark.png deleted file mode 100644 index 0aa78fa631..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_light.png b/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_light.png deleted file mode 100644 index 2fad89e72d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testIndicatorSizeSInactive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_dark.png deleted file mode 100644 index 217856196e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_light.png deleted file mode 100644 index dac601c759..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_dark.png deleted file mode 100644 index ab337cad5a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_light.png deleted file mode 100644 index c51752c7a3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonIsLoading_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_dark.png deleted file mode 100644 index 0ef2368629..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_light.png deleted file mode 100644 index 7a2f4a8710..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonLDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_dark.png deleted file mode 100644 index d9ed1a4afc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_light.png deleted file mode 100644 index 028e9b0ce1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonLSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_dark.png deleted file mode 100644 index a77037e020..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_light.png deleted file mode 100644 index 38a6797765..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonMAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_dark.png deleted file mode 100644 index 87a8ecc43f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_light.png deleted file mode 100644 index 9f1d4bc3fb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonSWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_dark.png b/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_dark.png deleted file mode 100644 index e32b512cf8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_light.png b/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_light.png deleted file mode 100644 index 7432757c8d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testLinkButtonXsNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalL_dark.png b/tokens/stylessalute.view/screenshots/testListNormalL_dark.png deleted file mode 100644 index 4af337854e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalL_light.png b/tokens/stylessalute.view/screenshots/testListNormalL_light.png deleted file mode 100644 index 09d114ed70..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalL_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalM_dark.png b/tokens/stylessalute.view/screenshots/testListNormalM_dark.png deleted file mode 100644 index 95ec4b7f83..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalM_light.png b/tokens/stylessalute.view/screenshots/testListNormalM_light.png deleted file mode 100644 index d8f5798b49..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalS_dark.png b/tokens/stylessalute.view/screenshots/testListNormalS_dark.png deleted file mode 100644 index 008f258718..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalS_light.png b/tokens/stylessalute.view/screenshots/testListNormalS_light.png deleted file mode 100644 index f1d59264f3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_dark.png b/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_dark.png deleted file mode 100644 index 38729edb7f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_light.png b/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_light.png deleted file mode 100644 index c43d1c80c9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalXlHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalXs_dark.png b/tokens/stylessalute.view/screenshots/testListNormalXs_dark.png deleted file mode 100644 index 0a27b775b8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalXs_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListNormalXs_light.png b/tokens/stylessalute.view/screenshots/testListNormalXs_light.png deleted file mode 100644 index 0fc15b7d8d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListNormalXs_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_dark.png b/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_dark.png deleted file mode 100644 index 1d90cd0df6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_light.png b/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_light.png deleted file mode 100644 index dcbcb52179..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testListTightXsHasDisclosure_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_dark.png b/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_dark.png deleted file mode 100644 index 98e2a53185..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_light.png b/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_light.png deleted file mode 100644 index 55e960b4e6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDefaultLOuterLabelMaskPlaceholderPhone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_dark.png deleted file mode 100644 index c33e1c3ffa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_light.png deleted file mode 100644 index 20bf51d974..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDeleteNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_dark.png b/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_dark.png deleted file mode 100644 index 56cfccb2b3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_light.png b/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_light.png deleted file mode 100644 index 2ca2035a5e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskDisabledIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_dark.png b/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_dark.png deleted file mode 100644 index 35a8729eba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_light.png b/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_light.png deleted file mode 100644 index e4e485883c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskErrorSuffixPrefixPhone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_dark.png b/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_dark.png deleted file mode 100644 index f4fcb2e293..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_light.png b/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_light.png deleted file mode 100644 index e91f8d892d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskErrorXsRequiredLeftPlaceholderPhone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskFullDateInput_dark.png b/tokens/stylessalute.view/screenshots/testMaskFullDateInput_dark.png deleted file mode 100644 index 83e50eb253..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskFullDateInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskFullDateInput_light.png b/tokens/stylessalute.view/screenshots/testMaskFullDateInput_light.png deleted file mode 100644 index 5a0e88f155..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskFullDateInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_dark.png deleted file mode 100644 index ddbb266483..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_light.png deleted file mode 100644 index 236cbf1302..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputFullNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_dark.png deleted file mode 100644 index ee0d0245a9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_light.png deleted file mode 100644 index 4a798c69bd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputFullyFilledNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_dark.png deleted file mode 100644 index 1e5e0636ba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_light.png deleted file mode 100644 index e1cedd7590..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputLettersAndNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_dark.png deleted file mode 100644 index 10f348faec..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_light.png deleted file mode 100644 index 1a144bdacd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskInputPartiallyFilledNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_dark.png b/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_dark.png deleted file mode 100644 index 16af87b046..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_light.png b/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_light.png deleted file mode 100644 index 587c0eae88..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_dark.png b/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_dark.png deleted file mode 100644 index cdb36a20e8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_light.png b/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_light.png deleted file mode 100644 index 728b1574fa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_dark.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_dark.png deleted file mode 100644 index a85ea365a2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_light.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_light.png deleted file mode 100644 index 0d5b4afd2f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputMaxNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_dark.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_dark.png deleted file mode 100644 index 822682de1c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_light.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_light.png deleted file mode 100644 index 4b51d3ad19..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputOneNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_dark.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_dark.png deleted file mode 100644 index d76ffb720c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_light.png b/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_light.png deleted file mode 100644 index 1ce288e75b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInputSymbolsAndLetters_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInput_dark.png b/tokens/stylessalute.view/screenshots/testMaskNumberInput_dark.png deleted file mode 100644 index 25e10b442a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskNumberInput_light.png b/tokens/stylessalute.view/screenshots/testMaskNumberInput_light.png deleted file mode 100644 index 40f82e6a42..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskNumberInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_dark.png b/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_dark.png deleted file mode 100644 index 13135ebb2d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_light.png b/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_light.png deleted file mode 100644 index 65ddaa8ca3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskReadOnlyIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_dark.png b/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_dark.png deleted file mode 100644 index 7b8d552a21..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_light.png b/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_light.png deleted file mode 100644 index bfb16dfe0b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskShortDateInputNotFull_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskShortDateInput_dark.png b/tokens/stylessalute.view/screenshots/testMaskShortDateInput_dark.png deleted file mode 100644 index 1a357ee281..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskShortDateInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskShortDateInput_light.png b/tokens/stylessalute.view/screenshots/testMaskShortDateInput_light.png deleted file mode 100644 index 8451d00f5d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskShortDateInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_dark.png b/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_dark.png deleted file mode 100644 index 9760e4e914..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_light.png b/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_light.png deleted file mode 100644 index dab01471c6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskSuccessMOuterLabelMaskPlaceholderPhone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_dark.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_dark.png deleted file mode 100644 index 20539b5f93..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_light.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_light.png deleted file mode 100644 index 3588c08c3a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputMaxNumber_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_dark.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_dark.png deleted file mode 100644 index 2b183ae766..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_light.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_light.png deleted file mode 100644 index 537bdace6a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputStartWithZero_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_dark.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_dark.png deleted file mode 100644 index f70a62789c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_light.png b/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_light.png deleted file mode 100644 index 2a64c2fb1e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInputWithLetter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInput_dark.png b/tokens/stylessalute.view/screenshots/testMaskTimeInput_dark.png deleted file mode 100644 index f70a62789c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInput_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTimeInput_light.png b/tokens/stylessalute.view/screenshots/testMaskTimeInput_light.png deleted file mode 100644 index 2a64c2fb1e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTimeInput_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_dark.png deleted file mode 100644 index 82ab8fda8c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_light.png deleted file mode 100644 index c13f6fa2e4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeAnyOtherNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_dark.png deleted file mode 100644 index ce40a952d5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_light.png deleted file mode 100644 index 39864251b8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeLettersInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_dark.png b/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_dark.png deleted file mode 100644 index 46dc02e73b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_light.png b/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_light.png deleted file mode 100644 index 2b0d9e7b95..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskTypeNumberInTelephone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_dark.png b/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_dark.png deleted file mode 100644 index 0b9ade80dd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_light.png b/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_light.png deleted file mode 100644 index 60160594f9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskWarningSRequiredRightPlaceholderPhone_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_dark.png b/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_dark.png deleted file mode 100644 index eab6f36a22..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_light.png b/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_light.png deleted file mode 100644 index 1b22507bae..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskXlDefaultOuterLabelDateIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_dark.png b/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_dark.png deleted file mode 100644 index 97d6ec700c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_light.png b/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_light.png deleted file mode 100644 index 88accd6c4b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testMaskXsDefaultRequiredLeftPhoneOnInputIconAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomCenter_dark.png b/tokens/stylessalute.view/screenshots/testModalBottomCenter_dark.png deleted file mode 100644 index 6ba2a71034..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomCenter_light.png b/tokens/stylessalute.view/screenshots/testModalBottomCenter_light.png deleted file mode 100644 index 822e4415f5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomEnd_dark.png b/tokens/stylessalute.view/screenshots/testModalBottomEnd_dark.png deleted file mode 100644 index e4c1cae8d8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomEnd_light.png b/tokens/stylessalute.view/screenshots/testModalBottomEnd_light.png deleted file mode 100644 index 4fc664c510..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomStart_dark.png b/tokens/stylessalute.view/screenshots/testModalBottomStart_dark.png deleted file mode 100644 index ffae672ef7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalBottomStart_light.png b/tokens/stylessalute.view/screenshots/testModalBottomStart_light.png deleted file mode 100644 index baefe2bc08..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenterEnd_dark.png b/tokens/stylessalute.view/screenshots/testModalCenterEnd_dark.png deleted file mode 100644 index c08834b3c8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenterEnd_light.png b/tokens/stylessalute.view/screenshots/testModalCenterEnd_light.png deleted file mode 100644 index cfaec7f593..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenterStart_dark.png b/tokens/stylessalute.view/screenshots/testModalCenterStart_dark.png deleted file mode 100644 index 207376e039..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenterStart_light.png b/tokens/stylessalute.view/screenshots/testModalCenterStart_light.png deleted file mode 100644 index 0fbc12e511..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenter_dark.png b/tokens/stylessalute.view/screenshots/testModalCenter_dark.png deleted file mode 100644 index c10968f629..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalCenter_light.png b/tokens/stylessalute.view/screenshots/testModalCenter_light.png deleted file mode 100644 index 8ee51b950e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_dark.png b/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_dark.png deleted file mode 100644 index c10968f629..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_light.png b/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_light.png deleted file mode 100644 index 8ee51b950e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalNoCloseNoBlackout_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopCenter_dark.png b/tokens/stylessalute.view/screenshots/testModalTopCenter_dark.png deleted file mode 100644 index b60c12360e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopCenter_light.png b/tokens/stylessalute.view/screenshots/testModalTopCenter_light.png deleted file mode 100644 index 74762ff34f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopEnd_dark.png b/tokens/stylessalute.view/screenshots/testModalTopEnd_dark.png deleted file mode 100644 index 8526e322f3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopEnd_light.png b/tokens/stylessalute.view/screenshots/testModalTopEnd_light.png deleted file mode 100644 index b550b3a37f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopStart_dark.png b/tokens/stylessalute.view/screenshots/testModalTopStart_dark.png deleted file mode 100644 index 55c729a6d6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalTopStart_light.png b/tokens/stylessalute.view/screenshots/testModalTopStart_light.png deleted file mode 100644 index 152303d458..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_dark.png b/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_dark.png deleted file mode 100644 index 96b4b1acd5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_light.png b/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_light.png deleted file mode 100644 index 7f3f909260..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testModalUseNativeBlackoutHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_dark.png b/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_dark.png deleted file mode 100644 index e855e6fd94..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_light.png b/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_light.png deleted file mode 100644 index db9cd52685..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactLCenterStartHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_dark.png b/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_dark.png deleted file mode 100644 index 79ddf2e1d9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_light.png b/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_light.png deleted file mode 100644 index 0dbffba6e5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactLTopStartHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_dark.png b/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_dark.png deleted file mode 100644 index 40f2fa63b3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_light.png b/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_light.png deleted file mode 100644 index c260ff81ef..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactMTopCenterHasCloseFocusable_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_dark.png b/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_dark.png deleted file mode 100644 index 7a0987fb27..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_light.png b/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_light.png deleted file mode 100644 index 1268959059..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationCompactSTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_dark.png deleted file mode 100644 index 91937f8009..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_light.png deleted file mode 100644 index d3a57c5bfc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchDefaultTitleTextHasAction_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_dark.png deleted file mode 100644 index e8255e3e96..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_light.png deleted file mode 100644 index 6d7532fd23..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_dark.png deleted file mode 100644 index 0497fc7c20..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_light.png deleted file mode 100644 index f497b89d87..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentButtonStretchWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_dark.png deleted file mode 100644 index 40ac3098e5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_light.png deleted file mode 100644 index 03401580c8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentLongTextButtonStretchIconStartInfo_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_dark.png deleted file mode 100644 index 6ffe836832..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_light.png deleted file mode 100644 index 5560f2f3fd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoButtonStretchIconStartDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_dark.png deleted file mode 100644 index 44f2dd6024..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_light.png deleted file mode 100644 index bae410c32e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextButtonStretchIconStartNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_dark.png deleted file mode 100644 index 8b4c2b1739..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_light.png deleted file mode 100644 index abdb06c4b0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTextTitleButtonStretchIconTopWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_dark.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_dark.png deleted file mode 100644 index f49271512e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_light.png b/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_light.png deleted file mode 100644 index 6b62e6b115..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationContentNoTitleButtonStretchIconTopPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_dark.png b/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_dark.png deleted file mode 100644 index bffb7ccc8b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_light.png b/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_light.png deleted file mode 100644 index abafe55278..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseBottomCenterHasCloseFocusable_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_dark.png b/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_dark.png deleted file mode 100644 index eab857fb41..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_light.png b/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_light.png deleted file mode 100644 index 8ab569bab1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseLBottomEndHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_dark.png b/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_dark.png deleted file mode 100644 index 4d2fab0de0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_light.png b/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_light.png deleted file mode 100644 index 2d599f31df..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseLCenterHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_dark.png b/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_dark.png deleted file mode 100644 index 4551f24f92..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_light.png b/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_light.png deleted file mode 100644 index c8a3c63933..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseMCenterEndHasClose_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_dark.png b/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_dark.png deleted file mode 100644 index bbb85e1f11..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_light.png b/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_light.png deleted file mode 100644 index b3f2008340..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testNotificationLooseSBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_dark.png deleted file mode 100644 index 06cb772d8f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_light.png b/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_light.png deleted file mode 100644 index b14ef7c7c1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMAccentStrictTopCenterStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_dark.png deleted file mode 100644 index db8036ecfd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_light.png deleted file mode 100644 index 6b5a168787..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_dark.png deleted file mode 100644 index 56dced6d89..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_light.png deleted file mode 100644 index a6c23d5c96..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenterEndBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_dark.png deleted file mode 100644 index 06bd5979a7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_light.png deleted file mode 100644 index 424fbe3a6a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_dark.png deleted file mode 100644 index c5e7a4416b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_light.png deleted file mode 100644 index 3161b657be..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseStartEndCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_dark.png deleted file mode 100644 index 7ab837df93..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_light.png deleted file mode 100644 index 8f1afd162e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultLooseTopEndEndTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_dark.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_dark.png deleted file mode 100644 index 56fae6e250..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_light.png b/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_light.png deleted file mode 100644 index 501b33904e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverMDefaultStrictBottomEndStartTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_dark.png b/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_dark.png deleted file mode 100644 index 80964e601a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_light.png b/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_light.png deleted file mode 100644 index adca0a018c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverSAccentStrictBottomStartCenterTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_dark.png b/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_dark.png deleted file mode 100644 index 980e8acb12..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_light.png b/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_light.png deleted file mode 100644 index f40992db22..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testPopoverSDefaultLooseEndStartBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressAccent_dark.png b/tokens/stylessalute.view/screenshots/testProgressAccent_dark.png deleted file mode 100644 index 7650e57117..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressAccent_light.png b/tokens/stylessalute.view/screenshots/testProgressAccent_light.png deleted file mode 100644 index f917de1111..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_dark.png b/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_dark.png deleted file mode 100644 index e2bfe89f4a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_light.png b/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_light.png deleted file mode 100644 index 86ca5cb9c2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressDefaultValueOne_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressDefault_dark.png b/tokens/stylessalute.view/screenshots/testProgressDefault_dark.png deleted file mode 100644 index 72729441fe..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressDefault_light.png b/tokens/stylessalute.view/screenshots/testProgressDefault_light.png deleted file mode 100644 index 9a29ad9961..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressGradientAccent_dark.png b/tokens/stylessalute.view/screenshots/testProgressGradientAccent_dark.png deleted file mode 100644 index bd7bac8eef..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressGradientAccent_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressGradientAccent_light.png b/tokens/stylessalute.view/screenshots/testProgressGradientAccent_light.png deleted file mode 100644 index f21df7f1ed..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressGradientAccent_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressNegative_dark.png b/tokens/stylessalute.view/screenshots/testProgressNegative_dark.png deleted file mode 100644 index 9c69c9f054..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressNegative_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressNegative_light.png b/tokens/stylessalute.view/screenshots/testProgressNegative_light.png deleted file mode 100644 index 4d61488884..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressNegative_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressPositive_dark.png b/tokens/stylessalute.view/screenshots/testProgressPositive_dark.png deleted file mode 100644 index af717dac58..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressPositive_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressPositive_light.png b/tokens/stylessalute.view/screenshots/testProgressPositive_light.png deleted file mode 100644 index 84c98fc584..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressPositive_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressSecondary_dark.png b/tokens/stylessalute.view/screenshots/testProgressSecondary_dark.png deleted file mode 100644 index 4090ea0655..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressSecondary_light.png b/tokens/stylessalute.view/screenshots/testProgressSecondary_light.png deleted file mode 100644 index 5c5f4d4ffa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressWarning_dark.png b/tokens/stylessalute.view/screenshots/testProgressWarning_dark.png deleted file mode 100644 index c2953ebc94..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressWarning_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testProgressWarning_light.png b/tokens/stylessalute.view/screenshots/testProgressWarning_light.png deleted file mode 100644 index 8f111a795f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testProgressWarning_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_dark.png deleted file mode 100644 index ffce6a42e4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_light.png deleted file mode 100644 index 60667dae3e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_dark.png deleted file mode 100644 index 10bb7b9cc8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_light.png deleted file mode 100644 index 65c391d896..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeMDescription_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_dark.png deleted file mode 100644 index 64d4deed8e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_light.png deleted file mode 100644 index 635d5b2be2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_dark.png deleted file mode 100644 index e145f28b36..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_light.png deleted file mode 100644 index 0f40d99f07..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeSLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_dark.png deleted file mode 100644 index 2f6ddacbda..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_light.png deleted file mode 100644 index caccecfbce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxGroupSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_dark.png deleted file mode 100644 index 2df616d303..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_light.png deleted file mode 100644 index 011ab0fb64..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeMNoDescription_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_dark.png deleted file mode 100644 index fb09993cd6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_light.png deleted file mode 100644 index 12c1509406..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_dark.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_dark.png deleted file mode 100644 index 926997d548..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_light.png b/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_light.png deleted file mode 100644 index 219f69d702..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRadioBoxSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_dark.png b/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_dark.png deleted file mode 100644 index 70f91cdbba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_light.png b/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_light.png deleted file mode 100644 index b8624b425f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRectSkeletonLighter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRectSkeleton_dark.png b/tokens/stylessalute.view/screenshots/testRectSkeleton_dark.png deleted file mode 100644 index 7a78fc4f65..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRectSkeleton_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testRectSkeleton_light.png b/tokens/stylessalute.view/screenshots/testRectSkeleton_light.png deleted file mode 100644 index b263c39f12..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testRectSkeleton_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_dark.png b/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_dark.png deleted file mode 100644 index 5241b3d91f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_light.png b/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_light.png deleted file mode 100644 index b6ee0fd766..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarMHasTrackHoverExpand_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarManyItems_dark.png b/tokens/stylessalute.view/screenshots/testScrollBarManyItems_dark.png deleted file mode 100644 index b655aa9d42..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarManyItems_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarManyItems_light.png b/tokens/stylessalute.view/screenshots/testScrollBarManyItems_light.png deleted file mode 100644 index 3815c366c2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarManyItems_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_dark.png b/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_dark.png deleted file mode 100644 index 20c8b4c622..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_light.png b/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_light.png deleted file mode 100644 index 86e5ed2279..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testScrollBarSNoTrackHoverExpand_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentDisabled_dark.png b/tokens/stylessalute.view/screenshots/testSegmentDisabled_dark.png deleted file mode 100644 index 180a9b3f15..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentDisabled_light.png b/tokens/stylessalute.view/screenshots/testSegmentDisabled_light.png deleted file mode 100644 index e375222d2a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_dark.png b/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_dark.png deleted file mode 100644 index 229d8ea573..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_light.png b/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_light.png deleted file mode 100644 index 2f4cd9d7f5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_dark.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_dark.png deleted file mode 100644 index 15cb5561b7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_light.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_light.png deleted file mode 100644 index 3cb6826946..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeLPrimary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_dark.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_dark.png deleted file mode 100644 index 64d24c32fd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_light.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_light.png deleted file mode 100644 index f8572d8282..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeMSecondary_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_dark.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_dark.png deleted file mode 100644 index 2e9c66ad78..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_light.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_light.png deleted file mode 100644 index f0f95b0144..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeSDefault_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_dark.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_dark.png deleted file mode 100644 index c6c6927aad..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_light.png b/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_light.png deleted file mode 100644 index c3ad30a8ee..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentItemSizeXSPrimaryCounter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_dark.png b/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_dark.png deleted file mode 100644 index a5e4b372a7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_light.png b/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_light.png deleted file mode 100644 index 996db6b0f9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentOrientationVertical_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_dark.png deleted file mode 100644 index 8b0e29aa2a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_light.png deleted file mode 100644 index 3a95334fe6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeLCounter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeL_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeL_dark.png deleted file mode 100644 index e5d4015ce2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeL_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeL_light.png deleted file mode 100644 index 285bbebdbc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeL_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_dark.png deleted file mode 100644 index 6c694c00ae..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_light.png deleted file mode 100644 index 6f47583fdd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeMPilled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_dark.png deleted file mode 100644 index 74d4717a98..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_light.png deleted file mode 100644 index 91ace22264..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeSStretch_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeS_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeS_dark.png deleted file mode 100644 index 521e7b2561..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeS_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeS_light.png deleted file mode 100644 index 26e9229dea..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeXS_dark.png b/tokens/stylessalute.view/screenshots/testSegmentSizeXS_dark.png deleted file mode 100644 index 16e56fc769..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeXS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSegmentSizeXS_light.png b/tokens/stylessalute.view/screenshots/testSegmentSizeXS_light.png deleted file mode 100644 index 6937033f82..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSegmentSizeXS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchDisabled_dark.png b/tokens/stylessalute.view/screenshots/testSwitchDisabled_dark.png deleted file mode 100644 index db7e1374c7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchDisabled_light.png b/tokens/stylessalute.view/screenshots/testSwitchDisabled_light.png deleted file mode 100644 index 2bf4cc3432..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_dark.png b/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_dark.png deleted file mode 100644 index 3638cbdc63..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_light.png b/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_light.png deleted file mode 100644 index d321ef2a5a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeLToggleS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeL_dark.png b/tokens/stylessalute.view/screenshots/testSwitchSizeL_dark.png deleted file mode 100644 index 71437eeaaf..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeL_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeL_light.png b/tokens/stylessalute.view/screenshots/testSwitchSizeL_light.png deleted file mode 100644 index e9651e984d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeL_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeM_dark.png b/tokens/stylessalute.view/screenshots/testSwitchSizeM_dark.png deleted file mode 100644 index 586e84ba95..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeM_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeM_light.png b/tokens/stylessalute.view/screenshots/testSwitchSizeM_light.png deleted file mode 100644 index e783b1a008..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeM_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_dark.png b/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_dark.png deleted file mode 100644 index 18f82f1d11..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_light.png b/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_light.png deleted file mode 100644 index 8791e56ff0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeSToggleS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeS_dark.png b/tokens/stylessalute.view/screenshots/testSwitchSizeS_dark.png deleted file mode 100644 index fc0777b8bb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeS_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testSwitchSizeS_light.png b/tokens/stylessalute.view/screenshots/testSwitchSizeS_light.png deleted file mode 100644 index 629b671848..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testSwitchSizeS_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_dark.png deleted file mode 100644 index 3be5f20339..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_light.png b/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_light.png deleted file mode 100644 index 4d24c81f58..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultInnerRequiredLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_dark.png deleted file mode 100644 index d9f779f9ad..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_light.png b/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_light.png deleted file mode 100644 index eb4f73c54a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDefaultTBTA_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_dark.png deleted file mode 100644 index c1f2bbacb8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_light.png b/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_light.png deleted file mode 100644 index e7ca0bd475..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_dark.png deleted file mode 100644 index a2e8d54332..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_light.png b/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_light.png deleted file mode 100644 index 7a37d79a54..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaLReadOnly_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_dark.png deleted file mode 100644 index c5f7a025f8..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_light.png b/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_light.png deleted file mode 100644 index ca8eb0b630..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultChipsInner_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_dark.png deleted file mode 100644 index 8144f0c08d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_light.png b/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_light.png deleted file mode 100644 index 50856b189c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMDefaultOuter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_dark.png deleted file mode 100644 index 73fe4a5f83..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_light.png b/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_light.png deleted file mode 100644 index a89a3c88fd..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMErrorOuter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_dark.png deleted file mode 100644 index 7a0e05c99d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_light.png b/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_light.png deleted file mode 100644 index 31f3b79937..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaMWarningInner_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_dark.png deleted file mode 100644 index 2953f6c24e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_light.png b/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_light.png deleted file mode 100644 index 71fbf5cfa3..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultChipsOuterRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_dark.png deleted file mode 100644 index 9fd7f1276e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_light.png b/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_light.png deleted file mode 100644 index e9ffa321b6..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSDefaultInnerRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSFocused_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaSFocused_dark.png deleted file mode 100644 index a223d24f6a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSFocused_light.png b/tokens/stylessalute.view/screenshots/testTextAreaSFocused_light.png deleted file mode 100644 index 387a1a9065..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_dark.png deleted file mode 100644 index 1925d3ac1c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_light.png b/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_light.png deleted file mode 100644 index ed0bbdce4a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaSWarningInnerRequiredRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_dark.png deleted file mode 100644 index 38b66d7c36..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_light.png b/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_light.png deleted file mode 100644 index 087b224f59..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaTextSLongText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_dark.png deleted file mode 100644 index 671d12cf30..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_light.png b/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_light.png deleted file mode 100644 index 45fd77feba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaXSDefaultOuter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaXsError_dark.png b/tokens/stylessalute.view/screenshots/testTextAreaXsError_dark.png deleted file mode 100644 index 5e060f8810..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaXsError_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextAreaXsError_light.png b/tokens/stylessalute.view/screenshots/testTextAreaXsError_light.png deleted file mode 100644 index 076839f5c9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextAreaXsError_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_dark.png deleted file mode 100644 index 091759d4e2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_light.png deleted file mode 100644 index 231fc46a56..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDefaultInnerLeft_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_dark.png deleted file mode 100644 index ad225ee768..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_light.png deleted file mode 100644 index 90a2442975..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDisabledOuterLabelStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_dark.png deleted file mode 100644 index 6a83e10548..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_light.png deleted file mode 100644 index 385936652e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLDisabled_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLInputText_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLInputText_dark.png deleted file mode 100644 index 60eed5c8c5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLInputText_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLInputText_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLInputText_light.png deleted file mode 100644 index 55bc2b873e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLInputText_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_dark.png deleted file mode 100644 index 409c0cde36..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_light.png deleted file mode 100644 index e7ee351bf2..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLSuccessRequiredOuterLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_dark.png deleted file mode 100644 index 62957953ec..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_light.png b/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_light.png deleted file mode 100644 index b07d04df46..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldLSuffixPrefix_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_dark.png deleted file mode 100644 index 5de524366f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_light.png b/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_light.png deleted file mode 100644 index 36d480a718..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMErrorOuterLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_dark.png deleted file mode 100644 index b3f0e6b2ba..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_light.png b/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_light.png deleted file mode 100644 index e95063435c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessInnerLabelChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_dark.png deleted file mode 100644 index 17964ac373..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_light.png b/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_light.png deleted file mode 100644 index 4dee787c09..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMSuccessOuterLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_dark.png deleted file mode 100644 index ab24d92e7a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_light.png b/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_light.png deleted file mode 100644 index a6e97d1272..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldMWarningInnerLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_dark.png deleted file mode 100644 index b7492ec69f..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_light.png b/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_light.png deleted file mode 100644 index fd548b4edb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultOuterLabelRightChips_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_dark.png deleted file mode 100644 index f2df550810..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_light.png b/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_light.png deleted file mode 100644 index 4ab7277368..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSDefaultReadOnly_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_dark.png deleted file mode 100644 index 36735a5e1c..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_light.png b/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_light.png deleted file mode 100644 index a15d72d264..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerLabelRightFocused_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_dark.png deleted file mode 100644 index adf79062c4..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_light.png b/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_light.png deleted file mode 100644 index dd3c34b31a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSWarningInnerRight_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_dark.png deleted file mode 100644 index e5b66480e7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_light.png b/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_light.png deleted file mode 100644 index e6a7aacb54..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldSuffixPrefixNoValue_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_dark.png deleted file mode 100644 index 86cffe0075..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_light.png b/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_light.png deleted file mode 100644 index 323071c199..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldTBTACyrillic_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_dark.png deleted file mode 100644 index d1885e197b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_light.png b/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_light.png deleted file mode 100644 index b723bcc83e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldXSSuccessOuterLabel_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldXsError_dark.png b/tokens/stylessalute.view/screenshots/testTextFieldXsError_dark.png deleted file mode 100644 index c593875ffc..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldXsError_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextFieldXsError_light.png b/tokens/stylessalute.view/screenshots/testTextFieldXsError_light.png deleted file mode 100644 index aef447128a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextFieldXsError_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_dark.png b/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_dark.png deleted file mode 100644 index 5fb3f97ae1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_light.png b/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_light.png deleted file mode 100644 index be6b163c67..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultFullWidth_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_dark.png b/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_dark.png deleted file mode 100644 index 26245580d5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_light.png b/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_light.png deleted file mode 100644 index 5a586ea130..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonDefaultNoTextRandom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_dark.png b/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_dark.png deleted file mode 100644 index a8e47f1d8d..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_light.png b/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_light.png deleted file mode 100644 index dfa32e6098..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTextSkeletonLighterNoTextRandom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_dark.png b/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_dark.png deleted file mode 100644 index cd309f5e39..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_light.png b/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_light.png deleted file mode 100644 index 23e56e3638..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledDefaultCenterStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_dark.png b/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_dark.png deleted file mode 100644 index 782dea08f1..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_light.png b/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_light.png deleted file mode 100644 index 5bfb87c183..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledNegativeCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_dark.png b/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_dark.png deleted file mode 100644 index 4f0bca2882..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_light.png b/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_light.png deleted file mode 100644 index 6dac0d2f62..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastPilledPositiveCenterEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_dark.png deleted file mode 100644 index ab32a493ea..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_light.png deleted file mode 100644 index dac8b164c5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_dark.png deleted file mode 100644 index 341559125e..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_light.png deleted file mode 100644 index 1cd6882ca9..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_dark.png deleted file mode 100644 index 3d0fdd0a53..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_light.png deleted file mode 100644 index 9b799c7ae0..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultBottomStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_dark.png deleted file mode 100644 index ce0f96ccce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_light.png deleted file mode 100644 index 72c597d6ad..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedDefaultTopStart_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_dark.png deleted file mode 100644 index 1ee520e3df..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_light.png deleted file mode 100644 index 83be30de28..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedNegativeTopCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_dark.png b/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_dark.png deleted file mode 100644 index aa28bcaafb..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_light.png b/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_light.png deleted file mode 100644 index c0568b63c7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testToastRoundedPositiveTopEnd_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_dark.png deleted file mode 100644 index a40c9e3b04..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_light.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_light.png deleted file mode 100644 index d98ae101fa..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_dark.png deleted file mode 100644 index ea5b477a80..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_light.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_light.png deleted file mode 100644 index 5cc30bbb76..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenterEndBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_dark.png deleted file mode 100644 index f7ab1983ce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_light.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_light.png deleted file mode 100644 index 51beed8bf7..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_dark.png deleted file mode 100644 index dd9cc68389..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_light.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_light.png deleted file mode 100644 index 33b9d5aef5..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseStartEndCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_dark.png deleted file mode 100644 index 35817ee72b..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_light.png b/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_light.png deleted file mode 100644 index 07f138c3be..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMLooseTopEndEndTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_dark.png deleted file mode 100644 index b97a9587ce..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_light.png b/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_light.png deleted file mode 100644 index c096288283..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMStrictBottomEndStartTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_dark.png b/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_dark.png deleted file mode 100644 index 5b2c6e35bf..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_light.png b/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_light.png deleted file mode 100644 index 51998f4c7a..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipMStrictTopCenterStartCenter_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_dark.png b/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_dark.png deleted file mode 100644 index 32fb4c4808..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_light.png b/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_light.png deleted file mode 100644 index 75118a3e65..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipSLooseEndStartBottom_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_dark.png b/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_dark.png deleted file mode 100644 index 1f259923de..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_dark.png and /dev/null differ diff --git a/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_light.png b/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_light.png deleted file mode 100644 index d7b2c99a47..0000000000 Binary files a/tokens/stylessalute.view/screenshots/testTooltipSStrictBottomStartCenterTop_light.png and /dev/null differ diff --git a/tokens/stylessalute.view/src/main/AndroidManifest.xml b/tokens/stylessalute.view/src/main/AndroidManifest.xml deleted file mode 100644 index 10728cc703..0000000000 --- a/tokens/stylessalute.view/src/main/AndroidManifest.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/BadgeColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/BadgeColorState.kt deleted file mode 100644 index 1adee42618..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/BadgeColorState.kt +++ /dev/null @@ -1,49 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Badge - */ -public enum class BadgeColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_badge_state_default)), - ACCENT(intArrayOf(R.attr.salute_badge_state_accent)), - NEGATIVE(intArrayOf(R.attr.salute_badge_state_negative)), - POSITIVE(intArrayOf(R.attr.salute_badge_state_positive)), - WARNING(intArrayOf(R.attr.salute_badge_state_warning)), - DARK(intArrayOf(R.attr.salute_badge_state_dark)), - LIGHT(intArrayOf(R.attr.salute_badge_state_light)), -} - -/** - * Реализация [ColorStateProvider] для BadgeColorState - */ -@Keep -internal class BadgeColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): BadgeColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Badge, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Badge_salute_badgeColors, 0) - typedArray.recycle() - return BadgeColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ButtonColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ButtonColorState.kt deleted file mode 100644 index 0bc8ced269..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ButtonColorState.kt +++ /dev/null @@ -1,52 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Button - */ -public enum class ButtonColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_button_state_default)), - SECONDARY(intArrayOf(R.attr.salute_button_state_secondary)), - ACCENT(intArrayOf(R.attr.salute_button_state_accent)), - POSITIVE(intArrayOf(R.attr.salute_button_state_positive)), - NEGATIVE(intArrayOf(R.attr.salute_button_state_negative)), - WARNING(intArrayOf(R.attr.salute_button_state_warning)), - CLEAR(intArrayOf(R.attr.salute_button_state_clear)), - DARK(intArrayOf(R.attr.salute_button_state_dark)), - BLACK(intArrayOf(R.attr.salute_button_state_black)), - WHITE(intArrayOf(R.attr.salute_button_state_white)), -} - -/** - * Реализация [ColorStateProvider] для ButtonColorState - */ -@Keep -internal class ButtonColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): ButtonColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Button, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Button_salute_buttonColors, 0) - typedArray.recycle() - return ButtonColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CheckBoxColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CheckBoxColorState.kt deleted file mode 100644 index 8935678ebb..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CheckBoxColorState.kt +++ /dev/null @@ -1,43 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента CheckBox - */ -public enum class CheckBoxColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_checkbox_state_default)), -} - -/** - * Реализация [ColorStateProvider] для CheckBoxColorState - */ -@Keep -internal class CheckBoxColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): CheckBoxColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.CheckBox, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.CheckBox_salute_checkboxColors, 0) - typedArray.recycle() - return CheckBoxColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipColorState.kt deleted file mode 100644 index 19d3ca7eab..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipColorState.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Chip - */ -public enum class ChipColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_chip_state_default)), - ACCENT(intArrayOf(R.attr.salute_chip_state_accent)), - SECONDARY(intArrayOf(R.attr.salute_chip_state_secondary)), -} - -/** - * Реализация [ColorStateProvider] для ChipColorState - */ -@Keep -internal class ChipColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): ChipColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Chip, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Chip_salute_chipColors, 0) - typedArray.recycle() - return ChipColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipGroupColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipGroupColorState.kt deleted file mode 100644 index 0280794218..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ChipGroupColorState.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента ChipGroup - */ -public enum class ChipGroupColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_chipgroup_state_default)), - ACCENT(intArrayOf(R.attr.salute_chipgroup_state_accent)), - SECONDARY(intArrayOf(R.attr.salute_chipgroup_state_secondary)), -} - -/** - * Реализация [ColorStateProvider] для ChipGroupColorState - */ -@Keep -internal class ChipGroupColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): ChipGroupColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.ChipGroup, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.ChipGroup_salute_chipgroupColors, 0) - typedArray.recycle() - return ChipGroupColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CounterColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CounterColorState.kt deleted file mode 100644 index 36bb5735f8..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/CounterColorState.kt +++ /dev/null @@ -1,49 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Counter - */ -public enum class CounterColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_counter_state_default)), - ACCENT(intArrayOf(R.attr.salute_counter_state_accent)), - POSITIVE(intArrayOf(R.attr.salute_counter_state_positive)), - WARNING(intArrayOf(R.attr.salute_counter_state_warning)), - NEGATIVE(intArrayOf(R.attr.salute_counter_state_negative)), - BLACK(intArrayOf(R.attr.salute_counter_state_black)), - WHITE(intArrayOf(R.attr.salute_counter_state_white)), -} - -/** - * Реализация [ColorStateProvider] для CounterColorState - */ -@Keep -internal class CounterColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): CounterColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Counter, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Counter_salute_counterColors, 0) - typedArray.recycle() - return CounterColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconBadgeColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconBadgeColorState.kt deleted file mode 100644 index 51875b8a05..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconBadgeColorState.kt +++ /dev/null @@ -1,49 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента IconBadge - */ -public enum class IconBadgeColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_iconbadge_state_default)), - ACCENT(intArrayOf(R.attr.salute_iconbadge_state_accent)), - NEGATIVE(intArrayOf(R.attr.salute_iconbadge_state_negative)), - POSITIVE(intArrayOf(R.attr.salute_iconbadge_state_positive)), - WARNING(intArrayOf(R.attr.salute_iconbadge_state_warning)), - DARK(intArrayOf(R.attr.salute_iconbadge_state_dark)), - LIGHT(intArrayOf(R.attr.salute_iconbadge_state_light)), -} - -/** - * Реализация [ColorStateProvider] для IconBadgeColorState - */ -@Keep -internal class IconBadgeColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): IconBadgeColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.IconBadge, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.IconBadge_salute_iconbadgeColors, 0) - typedArray.recycle() - return IconBadgeColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconButtonColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconButtonColorState.kt deleted file mode 100644 index 35c029a7a7..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IconButtonColorState.kt +++ /dev/null @@ -1,52 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента IconButton - */ -public enum class IconButtonColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_iconbutton_state_default)), - SECONDARY(intArrayOf(R.attr.salute_iconbutton_state_secondary)), - ACCENT(intArrayOf(R.attr.salute_iconbutton_state_accent)), - POSITIVE(intArrayOf(R.attr.salute_iconbutton_state_positive)), - NEGATIVE(intArrayOf(R.attr.salute_iconbutton_state_negative)), - WARNING(intArrayOf(R.attr.salute_iconbutton_state_warning)), - CLEAR(intArrayOf(R.attr.salute_iconbutton_state_clear)), - DARK(intArrayOf(R.attr.salute_iconbutton_state_dark)), - BLACK(intArrayOf(R.attr.salute_iconbutton_state_black)), - WHITE(intArrayOf(R.attr.salute_iconbutton_state_white)), -} - -/** - * Реализация [ColorStateProvider] для IconButtonColorState - */ -@Keep -internal class IconButtonColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): IconButtonColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.IconButton, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.IconButton_salute_iconbuttonColors, 0) - typedArray.recycle() - return IconButtonColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IndicatorColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IndicatorColorState.kt deleted file mode 100644 index e0ee79a9a6..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/IndicatorColorState.kt +++ /dev/null @@ -1,51 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Indicator - */ -public enum class IndicatorColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_indicator_state_default)), - ACCENT(intArrayOf(R.attr.salute_indicator_state_accent)), - INACTIVE(intArrayOf(R.attr.salute_indicator_state_inactive)), - POSITIVE(intArrayOf(R.attr.salute_indicator_state_positive)), - WARNING(intArrayOf(R.attr.salute_indicator_state_warning)), - NEGATIVE(intArrayOf(R.attr.salute_indicator_state_negative)), - DARK(intArrayOf(R.attr.salute_indicator_state_dark)), - BLACK(intArrayOf(R.attr.salute_indicator_state_black)), - WHITE(intArrayOf(R.attr.salute_indicator_state_white)), -} - -/** - * Реализация [ColorStateProvider] для IndicatorColorState - */ -@Keep -internal class IndicatorColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): IndicatorColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Indicator, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Indicator_salute_indicatorColors, 0) - typedArray.recycle() - return IndicatorColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/LinkButtonColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/LinkButtonColorState.kt deleted file mode 100644 index 70b8548e37..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/LinkButtonColorState.kt +++ /dev/null @@ -1,48 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента LinkButton - */ -public enum class LinkButtonColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_linkbutton_state_default)), - SECONDARY(intArrayOf(R.attr.salute_linkbutton_state_secondary)), - ACCENT(intArrayOf(R.attr.salute_linkbutton_state_accent)), - POSITIVE(intArrayOf(R.attr.salute_linkbutton_state_positive)), - NEGATIVE(intArrayOf(R.attr.salute_linkbutton_state_negative)), - WARNING(intArrayOf(R.attr.salute_linkbutton_state_warning)), -} - -/** - * Реализация [ColorStateProvider] для LinkButtonColorState - */ -@Keep -internal class LinkButtonColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): LinkButtonColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.LinkButton, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.LinkButton_salute_linkbuttonColors, 0) - typedArray.recycle() - return LinkButtonColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ListItemViewColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ListItemViewColorState.kt deleted file mode 100644 index b42c1b4ec7..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ListItemViewColorState.kt +++ /dev/null @@ -1,46 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента ListItemView - */ -public enum class ListItemViewColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_listitemview_state_default)), - POSITIVE(intArrayOf(R.attr.salute_listitemview_state_positive)), - NEGATIVE(intArrayOf(R.attr.salute_listitemview_state_negative)), -} - -/** - * Реализация [ColorStateProvider] для ListItemViewColorState - */ -@Keep -internal class ListItemViewColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): ListItemViewColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.ListItemView, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = - typedArray.getInt(R.styleable.ListItemView_salute_listitemviewColors, 0) - typedArray.recycle() - return ListItemViewColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/NotificationContentColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/NotificationContentColorState.kt deleted file mode 100644 index 49fc314bf7..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/NotificationContentColorState.kt +++ /dev/null @@ -1,51 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента NotificationContent - */ -public enum class NotificationContentColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_notificationcontent_state_default)), - POSITIVE(intArrayOf(R.attr.salute_notificationcontent_state_positive)), - NEGATIVE(intArrayOf(R.attr.salute_notificationcontent_state_negative)), - WARNING(intArrayOf(R.attr.salute_notificationcontent_state_warning)), - INFO(intArrayOf(R.attr.salute_notificationcontent_state_info)), -} - -/** - * Реализация [ColorStateProvider] для NotificationContentColorState - */ -@Keep -internal class NotificationContentColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): NotificationContentColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.NotificationContent, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = - typedArray.getInt( - R.styleable.NotificationContent_salute_notificationcontentColors, - 0, - ) - typedArray.recycle() - return NotificationContentColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/PopoverColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/PopoverColorState.kt deleted file mode 100644 index 1285d81023..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/PopoverColorState.kt +++ /dev/null @@ -1,44 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Popover - */ -public enum class PopoverColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_popover_state_default)), - ACCENT(intArrayOf(R.attr.salute_popover_state_accent)), -} - -/** - * Реализация [ColorStateProvider] для PopoverColorState - */ -@Keep -internal class PopoverColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): PopoverColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Popover, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Popover_salute_popoverColors, 0) - typedArray.recycle() - return PopoverColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ProgressBarColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ProgressBarColorState.kt deleted file mode 100644 index d85e1c9b2c..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/ProgressBarColorState.kt +++ /dev/null @@ -1,52 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента ProgressBar - */ -public enum class ProgressBarColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_progressbar_state_default)), - SECONDARY(intArrayOf(R.attr.salute_progressbar_state_secondary)), - ACCENT(intArrayOf(R.attr.salute_progressbar_state_accent)), - GRADIENT(intArrayOf(R.attr.salute_progressbar_state_gradient)), - NEGATIVE(intArrayOf(R.attr.salute_progressbar_state_negative)), - POSITIVE(intArrayOf(R.attr.salute_progressbar_state_positive)), - WARNING(intArrayOf(R.attr.salute_progressbar_state_warning)), -} - -/** - * Реализация [ColorStateProvider] для ProgressBarColorState - */ -@Keep -internal class ProgressBarColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): ProgressBarColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.ProgressBar, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt( - R.styleable.ProgressBar_salute_progressbarColors, - 0, - ) - typedArray.recycle() - return ProgressBarColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/RectSkeletonColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/RectSkeletonColorState.kt deleted file mode 100644 index a5b3392a31..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/RectSkeletonColorState.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента RectSkeleton - */ -public enum class RectSkeletonColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_rectskeleton_state_default)), - LIGHTER(intArrayOf(R.attr.salute_rectskeleton_state_lighter)), -} - -/** - * Реализация [ColorStateProvider] для RectSkeletonColorState - */ -@Keep -internal class RectSkeletonColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): RectSkeletonColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.RectSkeleton, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = - typedArray.getInt(R.styleable.RectSkeleton_salute_rectskeletonColors, 0) - typedArray.recycle() - return RectSkeletonColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentColorState.kt deleted file mode 100644 index 814c905232..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentColorState.kt +++ /dev/null @@ -1,44 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента Segment - */ -public enum class SegmentColorState( - public override val attrs: IntArray, -) : ColorState { - PRIMARY(intArrayOf(R.attr.salute_segment_state_primary)), - SECONDARY(intArrayOf(R.attr.salute_segment_state_secondary)), -} - -/** - * Реализация [ColorStateProvider] для SegmentColorState - */ -@Keep -internal class SegmentColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): SegmentColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.Segment, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.Segment_salute_segmentColors, 0) - typedArray.recycle() - return SegmentColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentItemColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentItemColorState.kt deleted file mode 100644 index 93a0fe2d5a..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/SegmentItemColorState.kt +++ /dev/null @@ -1,47 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента SegmentItem - */ -public enum class SegmentItemColorState( - public override val attrs: IntArray, -) : ColorState { - PRIMARY(intArrayOf(R.attr.salute_segmentitem_state_primary)), - SECONDARY(intArrayOf(R.attr.salute_segmentitem_state_secondary)), -} - -/** - * Реализация [ColorStateProvider] для SegmentItemColorState - */ -@Keep -internal class SegmentItemColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): SegmentItemColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.SegmentItem, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt( - R.styleable.SegmentItem_salute_segmentitemColors, - 0, - ) - typedArray.recycle() - return SegmentItemColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextAreaColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextAreaColorState.kt deleted file mode 100644 index 2d4dc6a2ff..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextAreaColorState.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента TextArea - */ -public enum class TextAreaColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_textarea_state_default)), - WARNING(intArrayOf(R.attr.salute_textarea_state_warning)), - ERROR(intArrayOf(R.attr.salute_textarea_state_error)), -} - -/** - * Реализация [ColorStateProvider] для TextAreaColorState - */ -@Keep -internal class TextAreaColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): TextAreaColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.TextArea, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.TextArea_salute_textareaColors, 0) - typedArray.recycle() - return TextAreaColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextFieldColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextFieldColorState.kt deleted file mode 100644 index 9b0027a33a..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextFieldColorState.kt +++ /dev/null @@ -1,46 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента TextField - */ -public enum class TextFieldColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_textfield_state_default)), - SUCCESS(intArrayOf(R.attr.salute_textfield_state_success)), - WARNING(intArrayOf(R.attr.salute_textfield_state_warning)), - ERROR(intArrayOf(R.attr.salute_textfield_state_error)), -} - -/** - * Реализация [ColorStateProvider] для TextFieldColorState - */ -@Keep -internal class TextFieldColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): TextFieldColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.TextField, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = typedArray.getInt(R.styleable.TextField_salute_textfieldColors, 0) - typedArray.recycle() - return TextFieldColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextSkeletonColorState.kt b/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextSkeletonColorState.kt deleted file mode 100644 index 17b53ec40e..0000000000 --- a/tokens/stylessalute.view/src/main/kotlin/com/sdds/stylessalute/colorstate/TextSkeletonColorState.kt +++ /dev/null @@ -1,45 +0,0 @@ -// AUTO-GENERATED. DO NOT MODIFY this file. -package com.sdds.stylessalute.colorstate - -import android.content.Context -import android.util.AttributeSet -import androidx.`annotation`.Keep -import com.sdds.stylessalute.R -import com.sdds.uikit.colorstate.ColorState -import com.sdds.uikit.colorstate.ColorStateProvider -import kotlin.Int -import kotlin.IntArray - -/** - * Реализация [ColorState] для компонента TextSkeleton - */ -public enum class TextSkeletonColorState( - public override val attrs: IntArray, -) : ColorState { - DEFAULT(intArrayOf(R.attr.salute_textskeleton_state_default)), - LIGHTER(intArrayOf(R.attr.salute_textskeleton_state_lighter)), -} - -/** - * Реализация [ColorStateProvider] для TextSkeletonColorState - */ -@Keep -internal class TextSkeletonColorStateProvider : ColorStateProvider { - public override fun obtain( - context: Context, - attrs: AttributeSet?, - defStyleAttr: Int, - defStyleRes: Int, - ): TextSkeletonColorState? { - val typedArray = context.obtainStyledAttributes( - attrs, - R.styleable.TextSkeleton, - defStyleAttr, - defStyleRes, - ) - val stateOrdinal: Int = - typedArray.getInt(R.styleable.TextSkeleton_salute_textskeletonColors, 0) - typedArray.recycle() - return TextSkeletonColorState.values().getOrNull(stateOrdinal) - } -} diff --git a/tokens/stylessalute.view/src/main/res/color/salute_color_avatar_status.xml b/tokens/stylessalute.view/src/main/res/color/salute_color_avatar_status.xml deleted file mode 100644 index 7f1238805c..0000000000 --- a/tokens/stylessalute.view/src/main/res/color/salute_color_avatar_status.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/color/salute_color_checkable_border.xml b/tokens/stylessalute.view/src/main/res/color/salute_color_checkable_border.xml deleted file mode 100644 index 08876b707d..0000000000 --- a/tokens/stylessalute.view/src/main/res/color/salute_color_checkable_border.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_badge.xml b/tokens/stylessalute.view/src/main/res/values/overlays_badge.xml deleted file mode 100644 index 0a2cfaf086..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_badge.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_badge_clear.xml b/tokens/stylessalute.view/src/main/res/values/overlays_badge_clear.xml deleted file mode 100644 index 76c4f6acd5..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_badge_clear.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_badge_transparent.xml b/tokens/stylessalute.view/src/main/res/values/overlays_badge_transparent.xml deleted file mode 100644 index 2f3b433a71..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_badge_transparent.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge.xml b/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge.xml deleted file mode 100644 index 4a16b61edd..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_clear.xml b/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_clear.xml deleted file mode 100644 index 6722de0285..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_clear.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_transparent.xml b/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_transparent.xml deleted file mode 100644 index f3e1ec8c79..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/overlays_icon_badge_transparent.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tokens/stylessalute.view/src/main/res/values/styles_badge.xml b/tokens/stylessalute.view/src/main/res/values/styles_badge.xml deleted file mode 100644 index f5c177609f..0000000000 --- a/tokens/stylessalute.view/src/main/res/values/styles_badge.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values-w960dp/text-appearances.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values-w960dp/text-appearances.xml deleted file mode 100644 index bac74affea..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values-w960dp/text-appearances.xml +++ /dev/null @@ -1,515 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/badge-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/badge-attributes.xml deleted file mode 100644 index 9168118f9e..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/badge-attributes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/button-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/button-attributes.xml deleted file mode 100644 index 689f5abea9..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/button-attributes.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/checkbox-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/checkbox-attributes.xml deleted file mode 100644 index a5d477b2cc..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/checkbox-attributes.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/chip-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/chip-attributes.xml deleted file mode 100644 index 07c616232f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/chip-attributes.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/chipgroup-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/chipgroup-attributes.xml deleted file mode 100644 index 12d8a2bc0a..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/chipgroup-attributes.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/color-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/color-attributes.xml deleted file mode 100644 index 735c81e936..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/color-attributes.xml +++ /dev/null @@ -1,1426 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/colors.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/colors.xml deleted file mode 100644 index 4586b335f5..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/colors.xml +++ /dev/null @@ -1,5669 +0,0 @@ - - - - - - #93FFFFFF - - #C4FFFFFF - - #F5FFFFFF - - #F5FFFFFF - - #FFFFFFFF - - #ABFFFFFF - - #8FFFFFFF - - #FFFFFFFF - - #56FFFFFF - - #47FFFFFF - - #7AFFFFFF - - #A3FFFFFF - - #CCFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFFF8442 - - #FFFF5D05 - - #FFFF7024 - - #FFFF475A - - #FFFF0A23 - - #FFFF293E - - #FF66BCF5 - - #FF0E8ADD - - #FF0F9527 - - #FF0C7920 - - #FFBB4F11 - - #FF9F440F - - #FFB91828 - - #FF83111C - - #FF1277BA - - #FF10659E - - #FF66BCF5 - - #FF0E8ADD - - #FF199AF0 - - #FFE4BDFF - - #FFB84DFF - - #FFC46BFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFA3C3FF - - #FF337AFF - - #FF528EFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF0D5382 - - #FF1277BA - - #FF10659E - - #FF1549AB - - #FFFFFFFF - - #FF1C62E3 - - #FFD39CF7 - - #FFF4E7FD - - #FFC680F5 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #93FFFFFF - - #C4FFFFFF - - #F5FFFFFF - - #F5FFFFFF - - #FFFFFFFF - - #ABFFFFFF - - #8FFFFFFF - - #FFFFFFFF - - #56FFFFFF - - #47FFFFFF - - #7AFFFFFF - - #A3FFFFFF - - #CCFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFFF8442 - - #FFFF5D05 - - #FFFF7024 - - #FFFF475A - - #FFFF0A23 - - #FFFF293E - - #FF66BCF5 - - #FF0E8ADD - - #FF0F9527 - - #FF0C7920 - - #FFBB4F11 - - #FF9F440F - - #FFB91828 - - #FF83111C - - #FF1277BA - - #FF10659E - - #FF66BCF5 - - #FF0E8ADD - - #FF199AF0 - - #FFE4BDFF - - #FFB84DFF - - #FFC46BFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FFA3C3FF - - #FF337AFF - - #FF528EFF - - #FF2ACB47 - - #FF1F9835 - - #FF24B23E - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF0D5382 - - #FF1277BA - - #FF10659E - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF1549AB - - #FFFFFFFF - - #FF1C62E3 - - #FF722BA1 - - #FFFFFFFF - - #FF8933C1 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #93080808 - - #C4080808 - - #F5080808 - - #F5080808 - - #FF080808 - - #AB080808 - - #8F080808 - - #FF080808 - - #56080808 - - #47080808 - - #7A080808 - - #A3080808 - - #CC080808 - - #FF1EB83A - - #FF15842A - - #FF1A9E32 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF1EB83A - - #FF15842A - - #FF1A9E32 - - #FFFB7223 - - #FFDC5304 - - #FFFA5F05 - - #FFFF475A - - #FFFF0A23 - - #FFFF293E - - #FF50B1F2 - - #FF0F7BC2 - - #FF3EDA5B - - #FF23B83E - - #FFFDB086 - - #FFFC884A - - #FFFFADB6 - - #FFFF707E - - #FFA3DAFF - - #FF33ADFF - - #FF50B1F2 - - #FF0F7BC2 - - #FF118CDF - - #FFD7A4F9 - - #FFA93BF1 - - #FFB559F3 - - #FF1EB83A - - #FF15842A - - #FF1A9E32 - - #FF90B6FE - - #FF216EFD - - #FF3F81FD - - #FF1EB83A - - #FF15842A - - #FF1A9E32 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF52BAFF - - #FFA3DAFF - - #FF33ADFF - - #FFD39CF7 - - #FFF4E7FD - - #FFC680F5 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF8BB2FC - - #FFDCE8FE - - #FF6FA0FB - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #93080808 - - #C4080808 - - #F5080808 - - #F5080808 - - #FF080808 - - #AB080808 - - #8F080808 - - #FF080808 - - #56080808 - - #47080808 - - #7A080808 - - #A3080808 - - #CC080808 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF1EB83A - - #FF15842A - - #FFFB7223 - - #FFDC5304 - - #FFFF475A - - #FFFF0A23 - - #FF50B1F2 - - #FF0F7BC2 - - #FF3EDA5B - - #FF23B83E - - #FFFDB086 - - #FFFC884A - - #FFFFADB6 - - #FFFF707E - - #FFA3DAFF - - #FF33ADFF - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF118CDF - - #FF50B1F2 - - #FF0F7BC2 - - #FFB559F3 - - #FFD7A4F9 - - #FFA93BF1 - - #FF3F81FD - - #FF90B6FE - - #FF216EFD - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FFD39CF7 - - #FFF4E7FD - - #FFC680F5 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF52BAFF - - #FFA3DAFF - - #FF33ADFF - - #FF8BB2FC - - #FFDCE8FE - - #FF6FA0FB - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF1C1C1C - - #FF121212 - - #FF171717 - - #FF262626 - - #FF303030 - - #FF212121 - - #FF262626 - - #FF404040 - - #FF303030 - - #FF363636 - - #FF1C1C1C - - #FF121212 - - #FF171717 - - #FF262626 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #1FFFFFFF - - #0AFFFFFF - - #0FFFFFFF - - #3DFFFFFF - - #0FFFFFFF - - #1FFFFFFF - - #52FFFFFF - - #24FFFFFF - - #33FFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #1FFFFFFF - - #0AFFFFFF - - #0FFFFFFF - - #0FFFFFFF - - #00000000 - - #00000000 - - #00000000 - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFB7223 - - #FFF05B05 - - #FFFA5F05 - - #FFFF475A - - #FFFF1F35 - - #FFFF293E - - #FF1798EE - - #FF1086D5 - - #FF0E3A16 - - #FF08210C - - #FF4F250D - - #FF351909 - - #FF5B1018 - - #FF410B11 - - #FF10344C - - #FF0A2333 - - #521A9E32 - - #241A9E32 - - #52FA5F05 - - #24FA5F05 - - #52FF293E - - #24FF293E - - #52118CDF - - #24118CDF - - #FF1798EE - - #FF1086D5 - - #FF118CDF - - #FFC275F5 - - #FFB14FF3 - - #FFB559F3 - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF5D95FD - - #FF357BFD - - #FF3F81FD - - #66080808 - - #38080808 - - #47080808 - - #1FFFFFFF - - #0AFFFFFF - - #0FFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF118CDF - - #FF0A2B10 - - #FF3D1D0A - - #FF4A0D13 - - #FF0C283B - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF0A2B10 - - #FF0E3A16 - - #FF08210C - - #FF0C283B - - #FF10344C - - #FF0A2333 - - #FF36154C - - #FF41195C - - #FF301344 - - #FF0A2B10 - - #FF0E3A16 - - #FF08210C - - #FF082254 - - #FF0A2A67 - - #FF071F4B - - #33118CDF - - #52118CDF - - #24118CDF - - #33B559F3 - - #52B558F3 - - #24B558F3 - - #331A9E32 - - #521A9E32 - - #241A9E32 - - #333F81FD - - #523F82FD - - #243F82FD - - #331A9E32 - - #521A9E32 - - #241A9E32 - - #FF1C1C1C - - #FF121212 - - #FF171717 - - #FF262626 - - #FF303030 - - #FF212121 - - #FF262626 - - #FF404040 - - #FF303030 - - #FF363636 - - #FF1C1C1C - - #FF121212 - - #FF171717 - - #FF262626 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #1FFFFFFF - - #0AFFFFFF - - #0FFFFFFF - - #3DFFFFFF - - #0FFFFFFF - - #1FFFFFFF - - #52FFFFFF - - #24FFFFFF - - #33FFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #1FFFFFFF - - #0AFFFFFF - - #0FFFFFFF - - #0FFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFB7223 - - #FFF05B05 - - #FFFA5F05 - - #FFFF475A - - #FFFF1F35 - - #FFFF293E - - #FF1798EE - - #FF1086D5 - - #FF0E3A16 - - #FF08210C - - #FF4F250D - - #FF351909 - - #FF5B1018 - - #FF410B11 - - #FF10344C - - #FF0A2333 - - #521A9E32 - - #241A9E32 - - #52FA5F05 - - #24FA5F05 - - #52FF293E - - #24FF293E - - #52118CDF - - #24118CDF - - #FF1798EE - - #FF1086D5 - - #FF118CDF - - #FFC275F5 - - #FFB14FF3 - - #FFB559F3 - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF5D95FD - - #FF357BFD - - #FF3F81FD - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF118CDF - - #FF0A2B10 - - #FF3D1D0A - - #FF4A0D13 - - #FF0C283B - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF0A2B10 - - #FF0E3A16 - - #FF08210C - - #FF0C283B - - #FF10344C - - #FF0A2333 - - #FF36154C - - #FF41195C - - #FF301344 - - #FF0A2B10 - - #FF0E3A16 - - #FF08210C - - #FF082254 - - #FF0A2A67 - - #FF071F4B - - #331A9E32 - - #521A9E32 - - #241A9E32 - - #33118CDF - - #52118CDF - - #24118CDF - - #33B559F3 - - #52B558F3 - - #24B558F3 - - #331A9E32 - - #521A9E32 - - #241A9E32 - - #333F81FD - - #523F82FD - - #243F82FD - - #FFFAFAFA - - #FFF0F0F0 - - #FFF5F5F5 - - #FFFFFFFF - - #FFF7F7F7 - - #FFE8E8E8 - - #FFECECEC - - #FFE8E8E8 - - #FFD9D9D9 - - #FFDDDDDD - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF0D0D0D - - #FF030303 - - #FF080808 - - #12080808 - - #03080808 - - #08080808 - - #1F080808 - - #0A080808 - - #0F080808 - - #3D080808 - - #0F080808 - - #1F080808 - - #C2080808 - - #94080808 - - #A2080808 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FFFB7223 - - #FFF05B05 - - #FFFA5F05 - - #FFFF475A - - #FFFF1F35 - - #FFFF293E - - #FF1798EE - - #FF1086D5 - - #FFB1FBBF - - #FF94F9A7 - - #FFFEE9DC - - #FFFEDCC8 - - #FFFFEBED - - #FFFFD6DA - - #FFDBF1FF - - #FFC7E9FF - - #3D1A9E32 - - #0F1A9E32 - - #3DFA5F05 - - #0FFA5F05 - - #3DFF293E - - #0FFF293E - - #3D118CDF - - #0F118CDF - - #FF1798EE - - #FF1086D5 - - #FF118CDF - - #FFC275F5 - - #FFB14FF3 - - #FFB559F3 - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF5D95FD - - #FF357BFD - - #FF3F81FD - - #FF1DAF37 - - #FF18952F - - #FF1A9E32 - - #FF118CDF - - #FF9EFAAF - - #FFFEE2D2 - - #FFFFE0E3 - - #FFCFECFF - - #1F1A9E32 - - #1FFA5F05 - - #1FFF293E - - #1F118CDF - - #FF9EFAAF - - #FFB1FBBF - - #FF94F9A7 - - #FFCFECFF - - #FFDBF1FF - - #FFC7E9FF - - #FFF4E3FF - - #FFF9F0FF - - #FFF1DBFF - - #FF9EFAAF - - #FFB1FBBF - - #FF94F9A7 - - #FFDEE9FF - - #FFEBF1FF - - #FFD6E4FF - - #1F1A9E32 - - #3D1A9E32 - - #0F1A9E32 - - #1F118CDF - - #3D118CDF - - #0F118CDF - - #1FB559F3 - - #3DB558F3 - - #0FB558F3 - - #1F1A9E32 - - #3D1A9E32 - - #0F1A9E32 - - #1F3F81FD - - #3D3F82FD - - #0F3F82FD - - #FFFAFAFA - - #FFF0F0F0 - - #FFFFFFFF - - #FFF7F7F7 - - #FFE8E8E8 - - #FFE8E8E8 - - #FFD9D9D9 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF000000 - - #FF000000 - - #12080808 - - #03080808 - - #1F080808 - - #0A080808 - - #3D080808 - - #0F080808 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1DAF37 - - #FF18952F - - #FFFB7223 - - #FFF05B05 - - #FFFF475A - - #FFFF1F35 - - #FF1798EE - - #FF1086D5 - - #FFB1FBBF - - #FF94F9A7 - - #FFFEE9DC - - #FFFEDCC8 - - #FFFFEBED - - #FFFFD6DA - - #FFDBF1FF - - #FFC7E9FF - - #3D1A9E32 - - #0F1A9E32 - - #3DFA5F05 - - #0FFA5F05 - - #3DFF293E - - #0FFF293E - - #3D118CDF - - #0F118CDF - - #FFF5F5F5 - - #FFECECEC - - #FFDDDDDD - - #FFFFFFFF - - #FF000000 - - #08080808 - - #0F080808 - - #1F080808 - - #FFFFFFFF - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF9EFAAF - - #FFFEE2D2 - - #FFFFE0E3 - - #FFCFECFF - - #1F1A9E32 - - #1FFA5F05 - - #1FFF293E - - #1F118CDF - - #FF1A9E32 - - #FF1DAF37 - - #FF18952F - - #FF118CDF - - #FF1798EE - - #FF1086D5 - - #FFB559F3 - - #FFC275F5 - - #FFB14FF3 - - #FF1A9E32 - - #FF1DAF37 - - #FF18952F - - #FF3F81FD - - #FF5D95FD - - #FF357BFD - - #FF9EFAAF - - #FFB1FBBF - - #FF94F9A7 - - #FFCFECFF - - #FFDBF1FF - - #FFC7E9FF - - #FFF4E3FF - - #FFF9F0FF - - #FFF1DBFF - - #FF9EFAAF - - #FFB1FBBF - - #FF94F9A7 - - #FFDEE9FF - - #FFEBF1FF - - #FFD6E4FF - - #1F1A9E32 - - #3D1A9E32 - - #0F1A9E32 - - #1F118CDF - - #3D118CDF - - #0F118CDF - - #1FB559F3 - - #3DB558F3 - - #0FB558F3 - - #1F1A9E32 - - #3D1A9E32 - - #0F1A9E32 - - #1F3F81FD - - #3D3F82FD - - #0F3F82FD - - #FF000000 - - #FF0F0FFF - - #FF171717 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFF2F2F2 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #8F000000 - - #EB000000 - - #47262626 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFADADAD - - #FFFFFFFF - - #FF8C8C8C - - #FFFFFFFF - - #FF737373 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFFFFFFF - - #25FFFFFF - - #FFFFFFFF - - #3DFFFFFF - - #FFFFFFFF - - #7AFFFFFF - - #00FFFFFF - - #00FFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FFFF8442 - - #FFFF5D05 - - #FFFF5C6C - - #FFFF1F35 - - #FF66BCF5 - - #FF0E8ADD - - #FF0F9527 - - #FF0C7920 - - #FFBB4F11 - - #FF9F440F - - #FFB91828 - - #FF83111C - - #FF1277BA - - #FF10659E - - #FF24B23E - - #5624B23E - - #FFFF7024 - - #56FF7024 - - #FFFF3D51 - - #56FF3D51 - - #FF199AF0 - - #56199AF0 - - #FF262626 - - #FF4E4E4E - - #FF707070 - - #1FFFFFFF - - #33FFFFFF - - #66FFFFFF - - #00FFFFFF - - #FFF9F9F9 - - #FFC7C7C7 - - #FFE0E0E0 - - #FF24B23E - - #FFFF7024 - - #FFFF3D51 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #4724B23E - - #47FF7024 - - #47FF3D51 - - #47199AF0 - - #FF24B23E - - #FF2ACB47 - - #FF1F9835 - - #FF199AF0 - - #FF66BCF5 - - #FF0E8ADD - - #FFC46BFF - - #FFE4BDFF - - #FFB84DFF - - #FF24B23E - - #FF2ACB47 - - #FF1F9835 - - #FF528EFF - - #FFA3C3FF - - #FF337AFF - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF0D5382 - - #FF1277BA - - #FF10659E - - #FF722BA1 - - #FFFFFFFF - - #FF8933C1 - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF1549AB - - #FFFFFFFF - - #FF1C62E3 - - #4724B23E - - #FF24B23E - - #5624B23E - - #47199AF0 - - #FF199AF0 - - #56199AF0 - - #47C46BFF - - #FFC46BFF - - #56C46BFF - - #4724B23E - - #FF24B23E - - #5624B23E - - #47528EFF - - #FF528EFF - - #56528EFF - - #FFFFFFFF - - #FFADADAD - - #FFFFFFFF - - #FF8C8C8C - - #FFFFFFFF - - #FF737373 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFFFFFFF - - #25FFFFFF - - #FFFFFFFF - - #3DFFFFFF - - #FFFFFFFF - - #7AFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF2ACB47 - - #FF1F9835 - - #FFFF8442 - - #FFFF5D05 - - #FFFF5C6C - - #FFFF1F35 - - #FF66BCF5 - - #FF0E8ADD - - #FF0F9527 - - #FF0C7920 - - #FFBB4F11 - - #FF9F440F - - #FFB91828 - - #FF83111C - - #FF1277BA - - #FF10659E - - #FF24B23E - - #5624B23E - - #FFFF7024 - - #56FF7024 - - #FFFF3D51 - - #56FF3D51 - - #FF199AF0 - - #56199AF0 - - #FF262626 - - #FF4E4E4E - - #FF707070 - - #1FFFFFFF - - #33FFFFFF - - #66FFFFFF - - #FFF9F9F9 - - #FFC7C7C7 - - #FFE0E0E0 - - #FF24B23E - - #FFFF7024 - - #FFFF3D51 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #4724B23E - - #47FF7024 - - #47FF3D51 - - #47199AF0 - - #FF24B23E - - #FF2ACB47 - - #FF1F9835 - - #FF199AF0 - - #FF66BCF5 - - #FF0E8ADD - - #FFC46BFF - - #FFE4BDFF - - #FFB84DFF - - #FF24B23E - - #FF2ACB47 - - #FF1F9835 - - #FF528EFF - - #FFA3C3FF - - #FF337AFF - - #FF0F9527 - - #FF0C7920 - - #FF0D5382 - - #FF1277BA - - #FF10659E - - #FF095C18 - - #FF722BA1 - - #FFFFFFFF - - #FF8933C1 - - #FF095C18 - - #FF0F9527 - - #FF0C7920 - - #FF1549AB - - #FFFFFFFF - - #FF1C62E3 - - #4724B23E - - #FF24B23E - - #5624B23E - - #47199AF0 - - #FF199AF0 - - #56199AF0 - - #47C46BFF - - #FFC46BFF - - #56C46BFF - - #4724B23E - - #FF24B23E - - #5624B23E - - #47528EFF - - #FF528EFF - - #56528EFF - - #FFABABAB - - #FFC4C4C4 - - #FFFFFFFF - - #FF575757 - - #FFFFFFFF - - #FF737373 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF080808 - - #3D080808 - - #FF080808 - - #7A080808 - - #FF080808 - - #AB080808 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF1EB83A - - #FF15842A - - #FFFB7223 - - #FFDC5304 - - #FFFF475A - - #FFFF0A23 - - #FF50B1F2 - - #FF0F7BC2 - - #FF3EDA5B - - #FF23B83E - - #FFFDB086 - - #FFFC884A - - #FFFFADB6 - - #FFFF707E - - #FFA3DAFF - - #FF33ADFF - - #FF1A9E32 - - #3D1A9E32 - - #FFFA5F05 - - #3DFA5F05 - - #FFFF293E - - #3DFF293E - - #FF118CDF - - #3D118CDF - - #FFDDDDDD - - #FF949494 - - #FF707070 - - #33080808 - - #66080808 - - #8F080808 - - #FF080808 - - #FFFFFFFF - - #FFC7C7C7 - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF118CDF - - #FF50B1F2 - - #FF0F7BC2 - - #FFB559F3 - - #FFD7A4F9 - - #FFA93BF1 - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF3F81FD - - #FF90B6FE - - #FF216EFD - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF52BAFF - - #FFA3DAFF - - #FF33ADFF - - #FFD39CF7 - - #FFF4E7FD - - #FFC680F5 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF8BB2FC - - #FFDCE8FE - - #FF6FA0FB - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #33118CDF - - #FF118CDF - - #3D118CDF - - #33B559F3 - - #FFB558F3 - - #3DB558F3 - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #333F81FD - - #FF3F82FD - - #3D3F82FD - - #FFABABAB - - #FFC4C4C4 - - #FFFFFFFF - - #FF575757 - - #FFFFFFFF - - #FF737373 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF080808 - - #3D080808 - - #FF080808 - - #7A080808 - - #FF080808 - - #AB080808 - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FFCCCCCC - - #FFE6E6E6 - - #FFFFFFFF - - #FF1EB83A - - #FF15842A - - #FFFB7223 - - #FFDC5304 - - #FFFF475A - - #FFFF0A23 - - #FF50B1F2 - - #FF0F7BC2 - - #FF3EDA5B - - #FF23B83E - - #FFFDB086 - - #FFFC884A - - #FFFFADB6 - - #FFFF707E - - #FFA3DAFF - - #FF33ADFF - - #FF1A9E32 - - #3D1A9E32 - - #FFFA5F05 - - #3DFA5F05 - - #FFFF293E - - #3DFF293E - - #FF118CDF - - #3D118CDF - - #FFDDDDDD - - #FF949494 - - #FF707070 - - #33080808 - - #66080808 - - #8F080808 - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF118CDF - - #FF50B1F2 - - #FF0F7BC2 - - #FFB559F3 - - #FFD7A4F9 - - #FFA93BF1 - - #FF1A9E32 - - #FF1EB83A - - #FF15842A - - #FF118CDF - - #FF50B1F2 - - #FF0F7BC2 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF52BAFF - - #FFA3DAFF - - #FF33ADFF - - #FFD39CF7 - - #FFF4E7FD - - #FFC680F5 - - #FF28D247 - - #FF3EDA5B - - #FF23B83E - - #FF8BB2FC - - #FFDCE8FE - - #FF6FA0FB - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #33118CDF - - #FF118CDF - - #3D118CDF - - #33B559F3 - - #FFB558F3 - - #3DB558F3 - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #333F81FD - - #FF3F82FD - - #3D3F82FD - - #FFF3A912 - - #FFF4B22F - - #FFEDA20C - - #FFA16B00 - - #FFB87A00 - - #FF996600 - - #8EF3A912 - - #ADF3A812 - - #80F3A812 - - #FFF3A912 - - #FFF4B22F - - #FFEDA20C - - #FFA16B00 - - #FFB87A00 - - #FF996600 - - #8EF3A912 - - #ADF3A812 - - #80F3A812 - - #FFF3A912 - - #FFF4B22F - - #FFEDA20C - - #FFFFD37A - - #FFFFDA8F - - #FFFFCF70 - - #8EF3A912 - - #ADF3A812 - - #80F3A812 - - #FFF3A912 - - #FFF4B22F - - #FFEDA20C - - #FFFFD37A - - #FFFFDA8F - - #FFFFCF70 - - #8EF3A912 - - #ADF3A812 - - #80F3A812 - - #93080808 - - #C4080808 - - #F5080808 - - #F5080808 - - #FF080808 - - #AB080808 - - #8F080808 - - #FF080808 - - #56080808 - - #47080808 - - #7A080808 - - #A3080808 - - #CC080808 - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FFFB782D - - #FFD25004 - - #FFFA5F05 - - #FFFF5263 - - #FFFF001A - - #FFFF293E - - #FF2AA0EF - - #FF0E75B9 - - #FF47DC62 - - #FF21B03C - - #FFFDB790 - - #FFFC8240 - - #FFFFB8BF - - #FFFF6675 - - #FF7ACAFF - - #FF29A9FF - - #FF2AA0EF - - #FF0E75B9 - - #FF118CDF - - #FFC67EF6 - - #FFA432F1 - - #FFB559F3 - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF689CFD - - #FF1767FD - - #FF3F81FD - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF28D247 - - #FF47DC62 - - #FF21B03C - - #FF52BAFF - - #FF7ACAFF - - #FF29A9FF - - #FFD39CF7 - - #FF28D247 - - #FF8BB2FC - - #FFB4CEFD - - #FF6599FB - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #FFE3C2FA - - #FFC276F4 - - #FF47DC62 - - #FF21B03C - - #93FFFFFF - - #C4FFFFFF - - #F5FFFFFF - - #F5FFFFFF - - #FFFFFFFF - - #ABFFFFFF - - #8FFFFFFF - - #FFFFFFFF - - #56FFFFFF - - #47FFFFFF - - #7AFFFFFF - - #A3FFFFFF - - #CCFFFFFF - - #FF2BD44A - - #FF1D9032 - - #FF24B23E - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF2BD44A - - #FF1D9032 - - #FF24B23E - - #FFFF8B4D - - #FFFA5700 - - #FFFF7024 - - #FFFF5263 - - #FFFF001A - - #FFFF293E - - #FF3FABF3 - - #FF0D84D3 - - #FF11A72C - - #FF0D8222 - - #FFCD5713 - - #FFA84710 - - #FFC2192A - - #FF7A101A - - #FF1483CC - - #FF116BA7 - - #FF3FABF3 - - #FF0D84D3 - - #FF199AF0 - - #FFD494FF - - #FFB442FF - - #FFC46BFF - - #FF2BD44A - - #FF1D9032 - - #FF24B23E - - #FF7AA9FF - - #FF2974FF - - #FF528EFF - - #FF2BD44A - - #FF1D9032 - - #FF24B23E - - #FF095C18 - - #FF11A72C - - #FF0D8222 - - #FF0D5382 - - #FF1483CC - - #FF116BA7 - - #FF095C18 - - #FF11A72C - - #FF0D8222 - - #FF1549AB - - #FF000000 - - #FF113B88 - - #FF722BA1 - - #FF000000 - - #FF5B2281 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #93080808 - - #C4080808 - - #F5080808 - - #F5080808 - - #FF080808 - - #AB080808 - - #8F080808 - - #FF080808 - - #56080808 - - #47080808 - - #7A080808 - - #A3080808 - - #CC080808 - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FFFB782D - - #FFD25004 - - #FFFA5F05 - - #FFFF5263 - - #FFFF001A - - #FFFF293E - - #FF2AA0EF - - #FF0E75B9 - - #FF47DC62 - - #FF21B03C - - #FFFDB790 - - #FFFC8240 - - #FFFFB8BF - - #FFFF6675 - - #FF7ACAFF - - #FF29A9FF - - #FF2AA0EF - - #FF0E75B9 - - #FF118CDF - - #FFC67EF6 - - #FFA432F1 - - #FFB559F3 - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF689CFD - - #FF1767FD - - #FF3F81FD - - #FF1FC13D - - #FF147B27 - - #FF1A9E32 - - #FF28D247 - - #FF47DC62 - - #FF21B03C - - #FF52BAFF - - #FF7ACAFF - - #FF29A9FF - - #FFD39CF7 - - #FFE3C2FA - - #FFC276F4 - - #FF28D247 - - #FF47DC62 - - #FF21B03C - - #FF8BB2FC - - #FFB4CEFD - - #FF6599FB - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #93FFFFFF - - #C4FFFFFF - - #F5FFFFFF - - #F5FFFFFF - - #FFFFFFFF - - #ABFFFFFF - - #8FFFFFFF - - #FFFFFFFF - - #56FFFFFF - - #47FFFFFF - - #7AFFFFFF - - #A3FFFFFF - - #CCFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF2BD44A - - #FF1D9032 - - #FFFF8B4D - - #FFFA5700 - - #FFFF6675 - - #FFFF142C - - #FF3FABF3 - - #FF0D84D3 - - #FF11A72C - - #FF0D8222 - - #FFCD5713 - - #FFA84710 - - #FFC2192A - - #FF7A101A - - #FF1483CC - - #FF116BA7 - - #FF1A9E32 - - #FF1FC13D - - #FF147B27 - - #FF118CDF - - #FF2AA0EF - - #FF0E75B9 - - #FFB559F3 - - #FFC67EF6 - - #FFA432F1 - - #FF3F81FD - - #FF689CFD - - #FF1767FD - - #FF11A72C - - #FF0D8222 - - #FF1483CC - - #FF116BA7 - - #FF000000 - - #FF5B2281 - - #FF11A72C - - #FF0D8222 - - #FF000000 - - #FF113B88 - - #FF1A9E32 - - #FF1FC13D - - #FF147B27 - - #FF24B23E - - #FFFF7024 - - #FFFF3D51 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #FF095C18 - - #FF722BA1 - - #FF095C18 - - #FF0D5382 - - #FF1549AB - - #FFFAFAFA - - #FFF0F0F0 - - #FFF5F5F5 - - #FFFFFFFF - - #FFF7F7F7 - - #FFE8E8E8 - - #FFECECEC - - #FFEDEDED - - #FFD4D4D4 - - #FFDDDDDD - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF262626 - - #FF030303 - - #FF080808 - - #03080808 - - #0D080808 - - #08080808 - - #05080808 - - #1A080808 - - #0F080808 - - #0A080808 - - #29080808 - - #1F080808 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #00000000 - - #00000000 - - #00000000 - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFB782D - - #FFE65705 - - #FFFA5F05 - - #FFFF5263 - - #FFFF142C - - #FFFF293E - - #FF1798EE - - #FF0F81CC - - #FFB1FBBF - - #FF8BF99F - - #FFFEEFE6 - - #FFFEDCC8 - - #FFFFF5F6 - - #FFFFD6DA - - #FFE5F5FF - - #FFC7E9FF - - #0A1A9E32 - - #291A9E32 - - #0AFA5F05 - - #29FA5F05 - - #0AFF293E - - #29FF293E - - #0A118CDF - - #29118CDF - - #FF1798EE - - #FF0F81CC - - #FF118CDF - - #FFC275F5 - - #FFAD45F2 - - #FFB559F3 - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FF689CFD - - #FF2B74FD - - #FF3F81FD - - #52080808 - - #70080808 - - #66080808 - - #03080808 - - #0D080808 - - #08080808 - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFB1FBBF - - #FF8BF99F - - #FFE5F5FF - - #FFC7E9FF - - #FFF9F0FF - - #FFF1DBFF - - #FFB1FBBF - - #FF8BF99F - - #FFF5F8FF - - #FFD6E4FF - - #1F1A9E32 - - #3D1A9E32 - - #0A118CDF - - #29118CDF - - #0AB558F3 - - #29B558F3 - - #0A1A9E32 - - #291A9E32 - - #0A3F82FD - - #293F82FD - - #0A1A9E32 - - #291A9E32 - - #FF118CDF - - #FF9EFAAF - - #FFFEE2D2 - - #FFFFE0E3 - - #FFCFECFF - - #1F1A9E32 - - #1FFA5F05 - - #1FFF293E - - #1F118CDF - - #FF9EFAAF - - #FFCFECFF - - #FFF4E3FF - - #FF9EFAAF - - #FFDEE9FF - - #1F118CDF - - #1FB559F3 - - #1F1A9E32 - - #1F3F81FD - - #1F1A9E32 - - #FF363636 - - #FF0D0D0D - - #FF171717 - - #FF262626 - - #FF3B3B3B - - #FF1C1C1C - - #FF262626 - - #FF4A4A4A - - #FF2B2B2B - - #FF363636 - - #FF363636 - - #FF0D0D0D - - #FF171717 - - #FF262626 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #05FFFFFF - - #1AFFFFFF - - #0FFFFFFF - - #0AFFFFFF - - #29FFFFFF - - #1FFFFFFF - - #1FFFFFFF - - #3DFFFFFF - - #33FFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #05FFFFFF - - #1AFFFFFF - - #0FFFFFFF - - #0FFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFB782D - - #FFE65705 - - #FFFA5F05 - - #FFFF5263 - - #FFFF142C - - #FFFF293E - - #FF1798EE - - #FF0F81CC - - #FF0E3A16 - - #FF061909 - - #FF58290E - - #FF2C1507 - - #FF64121A - - #FF380A0F - - #FF10344C - - #FF091D2A - - #1F1A9E32 - - #3D1A9E32 - - #1FFA5F05 - - #3DFA5F05 - - #1FFF293E - - #3DFF293E - - #1F118CDF - - #3D118CDF - - #FF1798EE - - #FF0F81CC - - #FF118CDF - - #FFC275F5 - - #FFAD45F2 - - #FFB559F3 - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FF689CFD - - #FF2B74FD - - #FF3F81FD - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FF0A2B10 - - #FF0E3A16 - - #FF061909 - - #FF0C283B - - #FF10344C - - #FF091D2A - - #FF36154C - - #FF41195C - - #FF2B103C - - #FF0A2B10 - - #FF0E3A16 - - #FF061909 - - #FF082254 - - #FF0A2A67 - - #FF061B41 - - #331A9E32 - - #1F1A9E32 - - #3D1A9E32 - - #33118CDF - - #1F118CDF - - #3D118CDF - - #33B559F3 - - #1FB558F3 - - #3DB558F3 - - #331A9E32 - - #1F1A9E32 - - #3D1A9E32 - - #333F81FD - - #1F3F82FD - - #3D3F82FD - - #FF118CDF - - #FF0A2B10 - - #FF3D1D0A - - #FF4A0D13 - - #FF0C283B - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FFFAFAFA - - #FFF0F0F0 - - #FFF5F5F5 - - #FFFFFFFF - - #FFF7F7F7 - - #FFE8E8E8 - - #FFECECEC - - #FFEDEDED - - #FFD4D4D4 - - #FFDDDDDD - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF262626 - - #FF030303 - - #FF080808 - - #03080808 - - #0D080808 - - #08080808 - - #05080808 - - #1A080808 - - #0F080808 - - #0A080808 - - #29080808 - - #1F080808 - - #8F080808 - - #AD080808 - - #A2080808 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FFFB782D - - #FFE65705 - - #FFFA5F05 - - #FFFF5263 - - #FFFF142C - - #FFFF293E - - #FF1798EE - - #FF0F81CC - - #FFB1FBBF - - #FF8BF99F - - #FFFEEFE6 - - #FFFEDCC8 - - #FFFFF5F6 - - #FFFFD6DA - - #FFE5F5FF - - #FFC7E9FF - - #0A1A9E32 - - #291A9E32 - - #0AFA5F05 - - #29FA5F05 - - #0AFF293E - - #29FF293E - - #0A118CDF - - #29118CDF - - #FF1798EE - - #FF0F81CC - - #FF118CDF - - #FFC275F5 - - #FFAD45F2 - - #FFB559F3 - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FF689CFD - - #FF2B74FD - - #FF3F81FD - - #FF1EB83A - - #FF178C2C - - #FF1A9E32 - - #FF9EFAAF - - #FFB1FBBF - - #FF8BF99F - - #FFCFECFF - - #FFE5F5FF - - #FFC7E9FF - - #FFF4E3FF - - #FFF9F0FF - - #FFF1DBFF - - #FF9EFAAF - - #FFB1FBBF - - #FF8BF99F - - #FFDEE9FF - - #FFF5F8FF - - #FFD6E4FF - - #1F1A9E32 - - #0A1A9E32 - - #291A9E32 - - #1F118CDF - - #0A118CDF - - #29118CDF - - #1FB559F3 - - #0AB558F3 - - #29B558F3 - - #1F1A9E32 - - #0A1A9E32 - - #291A9E32 - - #1F3F81FD - - #0A3F82FD - - #293F82FD - - #FF118CDF - - #FF9EFAAF - - #FFFEE2D2 - - #FFFFE0E3 - - #FFCFECFF - - #1F1A9E32 - - #1FFA5F05 - - #1FFF293E - - #1F118CDF - - #FF363636 - - #FF0D0D0D - - #FF262626 - - #FF3B3B3B - - #FF1C1C1C - - #FF4A4A4A - - #FF2B2B2B - - #FF363636 - - #FF0D0D0D - - #FF262626 - - #FFFFFFFF - - #FFFFFFFF - - #05FFFFFF - - #1AFFFFFF - - #0AFFFFFF - - #29FFFFFF - - #1FFFFFFF - - #3DFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #05FFFFFF - - #1AFFFFFF - - #0FFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF1EB83A - - #FF178C2C - - #FFFB782D - - #FFE65705 - - #FFFF5263 - - #FFFF142C - - #FF1798EE - - #FF0F81CC - - #FF0E3A16 - - #FF061909 - - #FF58290E - - #FF2C1507 - - #FF64121A - - #FF380A0F - - #FF10344C - - #FF091D2A - - #1F1A9E32 - - #3D1A9E32 - - #1FFA5F05 - - #3DFA5F05 - - #1FFF293E - - #3DFF293E - - #1F118CDF - - #3D118CDF - - #FF1A9E32 - - #FF1EB83A - - #FF178C2C - - #FF118CDF - - #FF1798EE - - #FF0F81CC - - #FFB559F3 - - #FFC275F5 - - #FFAD45F2 - - #FF1A9E32 - - #FF1EB83A - - #FF178C2C - - #FF3F81FD - - #FF689CFD - - #FF2B74FD - - #FF0E3A16 - - #FF061909 - - #FF10344C - - #FF091D2A - - #FF41195C - - #FF2B103C - - #FF0E3A16 - - #FF061909 - - #FF0A2A67 - - #FF061B41 - - #1F1A9E32 - - #3D1A9E32 - - #1F118CDF - - #3D118CDF - - #1FB558F3 - - #3DB558F3 - - #1F1A9E32 - - #3D1A9E32 - - #1F3F82FD - - #3D3F82FD - - #FF171717 - - #FF171717 - - #FF262626 - - #FF363636 - - #FFFFFFFF - - #0FFFFFFF - - #1FFFFFFF - - #33FFFFFF - - #0FFFFFFF - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF0A2B10 - - #FF3D1D0A - - #FF4A0D13 - - #FF0C283B - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF0A2B10 - - #FF0C283B - - #FF36154C - - #FF082254 - - #FF0A2B10 - - #331A9E32 - - #33118CDF - - #33B559F3 - - #331A9E32 - - #333F81FD - - #FFF2F2F2 - - #FFF3F3F3 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF000000 - - #FF171717 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #8F000000 - - #EB000000 - - #47262626 - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FFFFFFFF - - #FF000000 - - #FFB3B3B3 - - #FF000000 - - #FF757575 - - #FF000000 - - #FF595959 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF080808 - - #3D080808 - - #FF080808 - - #7A080808 - - #FF080808 - - #AB080808 - - #00FFFFFF - - #00FFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF1FC13D - - #FF147B27 - - #FFFB782D - - #FFD25004 - - #FFFF5263 - - #FFFF001A - - #FF2AA0EF - - #FF0E75B9 - - #FF47DC62 - - #FF21B03C - - #FFFDB790 - - #FFFC8240 - - #FFFFB8BF - - #FFFF6675 - - #FF7ACAFF - - #FF29A9FF - - #FF1A9E32 - - #3D1A9E32 - - #FFFA5F05 - - #3DFA5F05 - - #FFFF293E - - #3DFF293E - - #FF118CDF - - #3D118CDF - - #FF595959 - - #FF303030 - - #FF1FC13D - - #FF147B27 - - #FF2AA0EF - - #FF0E75B9 - - #FFC67EF6 - - #FFA432F1 - - #FF1FC13D - - #FF147B27 - - #FF689CFD - - #FF1767FD - - #FF47DC62 - - #FF21B03C - - #FF7ACAFF - - #FF29A9FF - - #FFE3C2FA - - #FFC276F4 - - #FF47DC62 - - #FF21B03C - - #FFB4CEFD - - #FF6599FB - - #FF1A9E32 - - #3D1A9E32 - - #FF118CDF - - #3D118CDF - - #FFB558F3 - - #3DB558F3 - - #FF1A9E32 - - #3D1A9E32 - - #FF3F82FD - - #3D3F82FD - - #FFDDDDDD - - #FF949494 - - #FF707070 - - #33080808 - - #66080808 - - #8F080808 - - #00FFFFFF - - #FF080808 - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF1A9E32 - - #FF118CDF - - #FFB559F3 - - #FF1A9E32 - - #FF3F81FD - - #FF28D247 - - #FF52BAFF - - #FFD39CF7 - - #FF28D247 - - #FF8BB2FC - - #331A9E32 - - #33118CDF - - #33B559F3 - - #331A9E32 - - #333F81FD - - #FF787878 - - #FF4F4F4F - - #FF000000 - - #FF404040 - - #FF000000 - - #FF595959 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FFFFFFFF - - #25FFFFFF - - #FFFFFFFF - - #3DFFFFFF - - #FFFFFFFF - - #7AFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF2BD44A - - #FF1D9032 - - #FFFF8B4D - - #FFFA5700 - - #FFFF6675 - - #FFFF142C - - #FF3FABF3 - - #FF0D84D3 - - #FF11A72C - - #FF0D8222 - - #FFCD5713 - - #FFA84710 - - #FFC2192A - - #FF7A101A - - #FF1483CC - - #FF116BA7 - - #FF24B23E - - #5624B23E - - #FFFF7024 - - #56FF7024 - - #FFFF3D51 - - #56FF3D51 - - #FF199AF0 - - #56199AF0 - - #FF000000 - - #FFC7C7C7 - - #FF24B23E - - #FF2BD44A - - #FF1D9032 - - #FF199AF0 - - #FF3FABF3 - - #FF0D84D3 - - #FFC46BFF - - #FFD494FF - - #FFB442FF - - #FF24B23E - - #FF2BD44A - - #FF1D9032 - - #FF528EFF - - #FF7AA9FF - - #FF2974FF - - #FF24B23E - - #FF2BD44A - - #FF1D9032 - - #FF0D5382 - - #FF1483CC - - #FF116BA7 - - #FF722BA1 - - #FF000000 - - #FF5B2281 - - #FF095C18 - - #FF11A72C - - #FF0D8222 - - #FF1549AB - - #FF000000 - - #FF113B88 - - #4724B23E - - #FF24B23E - - #5624B23E - - #47199AF0 - - #FF199AF0 - - #56199AF0 - - #47C46BFF - - #FFC46BFF - - #56C46BFF - - #4724B23E - - #FF24B23E - - #5624B23E - - #47528EFF - - #FF528EFF - - #56528EFF - - #FF262626 - - #FF4E4E4E - - #FF707070 - - #1FFFFFFF - - #33FFFFFF - - #66FFFFFF - - #FFF9F9F9 - - #FF24B23E - - #FFFF7024 - - #FFFF3D51 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #4724B23E - - #47FF7024 - - #47FF3D51 - - #47199AF0 - - #FF000000 - - #FFB3B3B3 - - #FF000000 - - #FF757575 - - #FF000000 - - #FF595959 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF080808 - - #3D080808 - - #FF080808 - - #7A080808 - - #FF080808 - - #AB080808 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF1FC13D - - #FF147B27 - - #FFFB782D - - #FFD25004 - - #FFFF5263 - - #FFFF001A - - #FF2AA0EF - - #FF0E75B9 - - #FF47DC62 - - #FF21B03C - - #FFFDB790 - - #FFFC8240 - - #FFFFB8BF - - #FFFF6675 - - #FF7ACAFF - - #FF29A9FF - - #FF1A9E32 - - #3D1A9E32 - - #FFFA5F05 - - #3DFA5F05 - - #FFFF293E - - #3DFF293E - - #FF118CDF - - #3D118CDF - - #FF595959 - - #FF303030 - - #FF1A9E32 - - #FF1FC13D - - #FF147B27 - - #FF118CDF - - #FF2AA0EF - - #FF0E75B9 - - #FFB559F3 - - #FFC67EF6 - - #FFA432F1 - - #FF1A9E32 - - #FF1FC13D - - #FF147B27 - - #FF3F81FD - - #FF689CFD - - #FF1767FD - - #FF28D247 - - #FF47DC62 - - #FF21B03C - - #FF52BAFF - - #FF7ACAFF - - #FF29A9FF - - #FFD39CF7 - - #FFE3C2FA - - #FFC276F4 - - #FF28D247 - - #FF47DC62 - - #FF21B03C - - #FF8BB2FC - - #FFB4CEFD - - #FF6599FB - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #33118CDF - - #FF118CDF - - #3D118CDF - - #33B559F3 - - #FFB558F3 - - #3DB558F3 - - #331A9E32 - - #FF1A9E32 - - #3D1A9E32 - - #333F81FD - - #FF3F82FD - - #3D3F82FD - - #FFDDDDDD - - #FF949494 - - #FF707070 - - #33080808 - - #66080808 - - #8F080808 - - #FF080808 - - #FF1A9E32 - - #FFFA5F05 - - #FFFF293E - - #FF118CDF - - #FF28D247 - - #FFFD9C68 - - #FFFF8F9A - - #FF52BAFF - - #331A9E32 - - #33FA5F05 - - #33FF293E - - #33118CDF - - #FF787878 - - #FF4F4F4F - - #FF000000 - - #FF404040 - - #FF000000 - - #FF595959 - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FFFFFFFF - - #25FFFFFF - - #FFFFFFFF - - #3DFFFFFF - - #FFFFFFFF - - #7AFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF000000 - - #FFCCCCCC - - #FFFFFFFF - - #FF2BD44A - - #FF1D9032 - - #FFFF8B4D - - #FFFA5700 - - #FFFF6675 - - #FFFF142C - - #FF3FABF3 - - #FF0D84D3 - - #FF11A72C - - #FF0D8222 - - #FFCD5713 - - #FFA84710 - - #FFC2192A - - #FF7A101A - - #FF1483CC - - #FF116BA7 - - #FF24B23E - - #5624B23E - - #FFFF7024 - - #56FF7024 - - #FFFF3D51 - - #56FF3D51 - - #FF199AF0 - - #56199AF0 - - #FF2BD44A - - #FF1D9032 - - #FF3FABF3 - - #FF0D84D3 - - #FFD494FF - - #FFB442FF - - #FF2BD44A - - #FF1D9032 - - #FF3FABF3 - - #FF0D84D3 - - #FF11A72C - - #FF0D8222 - - #FF1483CC - - #FF116BA7 - - #FF000000 - - #FF5B2281 - - #FF11A72C - - #FF0D8222 - - #FF000000 - - #FF113B88 - - #FF24B23E - - #5624B23E - - #FF199AF0 - - #56199AF0 - - #FFC46BFF - - #56C46BFF - - #FF24B23E - - #5624B23E - - #FF528EFF - - #56528EFF - - #FF262626 - - #FF4E4E4E - - #FF707070 - - #1FFFFFFF - - #33FFFFFF - - #66FFFFFF - - #FF24B23E - - #FFFF7024 - - #FFFF3D51 - - #FF199AF0 - - #FF095C18 - - #FF85380C - - #FF9C1422 - - #FF0D5382 - - #4724B23E - - #47FF7024 - - #47FF3D51 - - #47199AF0 - - #FF24B23E - - #FF199AF0 - - #FFC46BFF - - #FF24B23E - - #FF199AF0 - - #FF095C18 - - #FF0D5382 - - #FF722BA1 - - #FF095C18 - - #FF1549AB - - #4724B23E - - #47199AF0 - - #47C46BFF - - #4724B23E - - #47528EFF - - #FFF3A912 - - #FFF5B638 - - #FFE49C0C - - #FFFFD37A - - #FFFFDA8F - - #FFFFCC66 - - #8EF3A912 - - #7AF3A812 - - #99F3A812 - - #FFF3A912 - - #FFF5B638 - - #FFE49C0C - - #FFA16B00 - - #FFB87A00 - - #FF8F5F00 - - #8EF3A912 - - #7AF3A812 - - #99F3A812 - - #FFF3A912 - - #FFF5B638 - - #FFE49C0C - - #FFFFD37A - - #FFFFDA8F - - #FFFFCC66 - - #8EF3A912 - - #7AF3A812 - - #99F3A812 - - #FFF3A912 - - #FFF5B638 - - #FFE49C0C - - #FFA16B00 - - #FFB87A00 - - #FF8F5F00 - - #8EF3A912 - - #7AF3A812 - - #99F3A812 - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/counter-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/counter-attributes.xml deleted file mode 100644 index daf45f0d1a..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/counter-attributes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/dimens.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/dimens.xml deleted file mode 100644 index 75262700d7..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/dimens.xml +++ /dev/null @@ -1,333 +0,0 @@ - - - - - 4.0dp - 6.0dp - 8.0dp - 12.0dp - 16.0dp - 20.0dp - 32.0dp - 0.0dp - 2.0dp - 4.0dp - 6.0dp - 8.0dp - 12.0dp - 16.0dp - 20.0dp - 24.0dp - 32.0dp - 40.0dp - 48.0dp - 64.0dp - 80.0dp - 120.0dp - 88.0sp - 92.0sp - 112.0sp - 112.0sp - 128.0sp - 128.0sp - 88.0sp - 92.0sp - 112.0sp - 112.0sp - 128.0sp - 128.0sp - 56.0sp - 62.0sp - 72.0sp - 76.0sp - 88.0sp - 92.0sp - 56.0sp - 62.0sp - 72.0sp - 76.0sp - 88.0sp - 92.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 64.0sp - 68.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 64.0sp - 68.0sp - 28.0sp - 34.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 28.0sp - 34.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 24.0sp - 30.0sp - 28.0sp - 34.0sp - 32.0sp - 38.0sp - 24.0sp - 30.0sp - 28.0sp - 34.0sp - 32.0sp - 38.0sp - 20.0sp - 26.0sp - 20.0sp - 26.0sp - 24.0sp - 30.0sp - 20.0sp - 26.0sp - 20.0sp - 26.0sp - 24.0sp - 30.0sp - 18.0sp - 24.0sp - 18.0sp - 24.0sp - 20.0sp - 26.0sp - 18.0sp - 24.0sp - 18.0sp - 24.0sp - 20.0sp - 26.0sp - 16.0sp - 22.0sp - 16.0sp - 22.0sp - 18.0sp - 24.0sp - 16.0sp - 22.0sp - 16.0sp - 22.0sp - 18.0sp - 24.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 18.0sp - 26.0sp - 20.0sp - 28.0sp - 24.0sp - 32.0sp - 18.0sp - 26.0sp - 20.0sp - 28.0sp - 24.0sp - 32.0sp - 16.0sp - 24.0sp - 16.0sp - 24.0sp - 18.0sp - 26.0sp - 16.0sp - 24.0sp - 16.0sp - 24.0sp - 18.0sp - 26.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 88.0sp - 92.0sp - 112.0sp - 112.0sp - 128.0sp - 128.0sp - 56.0sp - 62.0sp - 72.0sp - 76.0sp - 88.0sp - 92.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 64.0sp - 68.0sp - 28.0sp - 34.0sp - 40.0sp - 46.0sp - 48.0sp - 54.0sp - 24.0sp - 30.0sp - 28.0sp - 34.0sp - 32.0sp - 38.0sp - 20.0sp - 26.0sp - 20.0sp - 26.0sp - 24.0sp - 30.0sp - 18.0sp - 24.0sp - 18.0sp - 24.0sp - 20.0sp - 26.0sp - 16.0sp - 22.0sp - 16.0sp - 22.0sp - 18.0sp - 24.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 18.0sp - 22.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 16.0sp - 20.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 14.0sp - 18.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 12.0sp - 14.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 10.0sp - 12.0sp - 18.0sp - 26.0sp - 20.0sp - 28.0sp - 24.0sp - 32.0sp - 16.0sp - 24.0sp - 16.0sp - 24.0sp - 18.0sp - 26.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 14.0sp - 20.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - 12.0sp - 16.0sp - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-attributes.xml deleted file mode 100644 index 0a3d1bca4b..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-attributes.xml +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-parameters.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-parameters.xml deleted file mode 100644 index a3ee9be248..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-parameters.xml +++ /dev/null @@ -1,8403 +0,0 @@ - - - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_gradient_hover_color_0 - @color/salute_dark_text_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_gradient_active_color_0 - @color/salute_dark_text_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_gradient_color_0 - @color/salute_dark_text_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_minor_gradient_hover_color_0 - @color/salute_dark_text_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_minor_gradient_active_color_0 - @color/salute_dark_text_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_accent_minor_gradient_color_0 - @color/salute_dark_text_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_gradient_hover_color_0 - @color/salute_dark_text_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_gradient_active_color_0 - @color/salute_dark_text_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_gradient_color_0 - @color/salute_dark_text_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_minor_gradient_hover_color_0 - @color/salute_dark_text_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_minor_gradient_active_color_0 - @color/salute_dark_text_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_promo_minor_gradient_color_0 - @color/salute_dark_text_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_athena_hover_color_0 - @color/salute_dark_text_default_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_athena_active_color_0 - @color/salute_dark_text_default_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF52BAFF - #FFADADFF - - @color/salute_dark_text_default_gradient_athena_color_0 - @color/salute_dark_text_default_gradient_athena_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_joy_hover_color_0 - @color/salute_dark_text_default_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_joy_active_color_0 - @color/salute_dark_text_default_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFD9C68 - #FFF391E2 - - @color/salute_dark_text_default_gradient_joy_color_0 - @color/salute_dark_text_default_gradient_joy_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_b2_e_hover_color_0 - @color/salute_dark_text_default_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_b2_e_active_color_0 - @color/salute_dark_text_default_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_dark_text_default_gradient_b2_e_color_0 - @color/salute_dark_text_default_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_brand_hover_color_0 - @color/salute_dark_text_default_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_brand_active_color_0 - @color/salute_dark_text_default_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF528EFF - #FF04C6C9 - - @color/salute_dark_text_default_gradient_brand_color_0 - @color/salute_dark_text_default_gradient_brand_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_main_hover_color_0 - @color/salute_dark_text_default_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_default_gradient_main_active_color_0 - @color/salute_dark_text_default_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_dark_text_default_gradient_main_color_0 - @color/salute_dark_text_default_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_gradient_hover_color_0 - @color/salute_dark_text_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_gradient_active_color_0 - @color/salute_dark_text_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_gradient_color_0 - @color/salute_dark_text_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_dark_text_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_minor_gradient_active_color_0 - @color/salute_dark_text_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_accent_minor_gradient_color_0 - @color/salute_dark_text_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_gradient_hover_color_0 - @color/salute_dark_text_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_gradient_active_color_0 - @color/salute_dark_text_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_gradient_color_0 - @color/salute_dark_text_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_dark_text_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_minor_gradient_active_color_0 - @color/salute_dark_text_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_promo_minor_gradient_color_0 - @color/salute_dark_text_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_athena_hover_color_0 - @color/salute_dark_text_on_dark_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_athena_active_color_0 - @color/salute_dark_text_on_dark_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF52BAFF - #FFADADFF - - @color/salute_dark_text_on_dark_gradient_athena_color_0 - @color/salute_dark_text_on_dark_gradient_athena_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_joy_hover_color_0 - @color/salute_dark_text_on_dark_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_joy_active_color_0 - @color/salute_dark_text_on_dark_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFD9C68 - #FFF391E2 - - @color/salute_dark_text_on_dark_gradient_joy_color_0 - @color/salute_dark_text_on_dark_gradient_joy_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_b2_e_hover_color_0 - @color/salute_dark_text_on_dark_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_b2_e_active_color_0 - @color/salute_dark_text_on_dark_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_dark_text_on_dark_gradient_b2_e_color_0 - @color/salute_dark_text_on_dark_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_brand_hover_color_0 - @color/salute_dark_text_on_dark_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_brand_active_color_0 - @color/salute_dark_text_on_dark_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF528EFF - #FF04C6C9 - - @color/salute_dark_text_on_dark_gradient_brand_color_0 - @color/salute_dark_text_on_dark_gradient_brand_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_main_hover_color_0 - @color/salute_dark_text_on_dark_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_dark_gradient_main_active_color_0 - @color/salute_dark_text_on_dark_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_dark_text_on_dark_gradient_main_color_0 - @color/salute_dark_text_on_dark_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_gradient_hover_color_0 - @color/salute_dark_text_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_gradient_active_color_0 - @color/salute_dark_text_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_gradient_color_0 - @color/salute_dark_text_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_minor_gradient_hover_color_0 - @color/salute_dark_text_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_minor_gradient_active_color_0 - @color/salute_dark_text_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_accent_minor_gradient_color_0 - @color/salute_dark_text_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_gradient_hover_color_0 - @color/salute_dark_text_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_gradient_active_color_0 - @color/salute_dark_text_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_gradient_color_0 - @color/salute_dark_text_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_minor_gradient_hover_color_0 - @color/salute_dark_text_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_minor_gradient_active_color_0 - @color/salute_dark_text_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_promo_minor_gradient_color_0 - @color/salute_dark_text_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_athena_hover_color_0 - @color/salute_dark_text_on_light_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_athena_active_color_0 - @color/salute_dark_text_on_light_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF118CDF - #FF7A7AFF - - @color/salute_dark_text_on_light_gradient_athena_color_0 - @color/salute_dark_text_on_light_gradient_athena_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_joy_hover_color_0 - @color/salute_dark_text_on_light_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_joy_active_color_0 - @color/salute_dark_text_on_light_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFCA349 - #FFFF52C5 - - @color/salute_dark_text_on_light_gradient_joy_color_0 - @color/salute_dark_text_on_light_gradient_joy_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_b2_e_hover_color_0 - @color/salute_dark_text_on_light_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_b2_e_active_color_0 - @color/salute_dark_text_on_light_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_text_on_light_gradient_b2_e_color_0 - @color/salute_dark_text_on_light_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_brand_hover_color_0 - @color/salute_dark_text_on_light_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_brand_active_color_0 - @color/salute_dark_text_on_light_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF3E79F0 - #FF27C6E5 - - @color/salute_dark_text_on_light_gradient_brand_color_0 - @color/salute_dark_text_on_light_gradient_brand_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_main_hover_color_0 - @color/salute_dark_text_on_light_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_on_light_gradient_main_active_color_0 - @color/salute_dark_text_on_light_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_text_on_light_gradient_main_color_0 - @color/salute_dark_text_on_light_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_gradient_hover_color_0 - @color/salute_dark_text_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_gradient_active_color_0 - @color/salute_dark_text_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_gradient_color_0 - @color/salute_dark_text_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_minor_gradient_hover_color_0 - @color/salute_dark_text_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_minor_gradient_active_color_0 - @color/salute_dark_text_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_accent_minor_gradient_color_0 - @color/salute_dark_text_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_gradient_hover_color_0 - @color/salute_dark_text_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_gradient_active_color_0 - @color/salute_dark_text_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_gradient_color_0 - @color/salute_dark_text_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_minor_gradient_hover_color_0 - @color/salute_dark_text_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_minor_gradient_active_color_0 - @color/salute_dark_text_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_promo_minor_gradient_color_0 - @color/salute_dark_text_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_main_hover_color_0 - @color/salute_dark_text_inverse_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_main_active_color_0 - @color/salute_dark_text_inverse_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_athena_hover_color_0 - @color/salute_dark_text_inverse_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_athena_active_color_0 - @color/salute_dark_text_inverse_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_joy_hover_color_0 - @color/salute_dark_text_inverse_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_joy_active_color_0 - @color/salute_dark_text_inverse_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_brand_hover_color_0 - @color/salute_dark_text_inverse_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_brand_active_color_0 - @color/salute_dark_text_inverse_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_b2_e_hover_color_0 - @color/salute_dark_text_inverse_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_text_inverse_gradient_b2_e_active_color_0 - @color/salute_dark_text_inverse_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_text_inverse_gradient_main_color_0 - @color/salute_dark_text_inverse_gradient_main_color_1 - - 88.0 - - 0.0 - 1.0 - - - - #FF118CDF - #FF7A7AFF - - @color/salute_dark_text_inverse_gradient_athena_color_0 - @color/salute_dark_text_inverse_gradient_athena_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFCA349 - #FFFF52C5 - - @color/salute_dark_text_inverse_gradient_joy_color_0 - @color/salute_dark_text_inverse_gradient_joy_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_text_inverse_gradient_b2_e_color_0 - @color/salute_dark_text_inverse_gradient_b2_e_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF3E79F0 - #FF27C6E5 - - @color/salute_dark_text_inverse_gradient_brand_color_0 - @color/salute_dark_text_inverse_gradient_brand_color_1 - - 94.0 - - 0.06 - 0.94 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_gradient_hover_color_0 - @color/salute_dark_surface_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_gradient_active_color_0 - @color/salute_dark_surface_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_gradient_color_0 - @color/salute_dark_surface_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_minor_gradient_hover_color_0 - @color/salute_dark_surface_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_minor_gradient_active_color_0 - @color/salute_dark_surface_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_accent_minor_gradient_color_0 - @color/salute_dark_surface_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_accent_gradient_hover_color_0 - @color/salute_dark_surface_default_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_accent_gradient_active_color_0 - @color/salute_dark_surface_default_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_accent_gradient_color_0 - @color/salute_dark_surface_default_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_gradient_hover_color_0 - @color/salute_dark_surface_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_gradient_active_color_0 - @color/salute_dark_surface_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_gradient_color_0 - @color/salute_dark_surface_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_minor_gradient_hover_color_0 - @color/salute_dark_surface_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_minor_gradient_active_color_0 - @color/salute_dark_surface_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_promo_minor_gradient_color_0 - @color/salute_dark_surface_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_promo_gradient_hover_color_0 - @color/salute_dark_surface_default_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_promo_gradient_active_color_0 - @color/salute_dark_surface_default_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_transparent_promo_gradient_color_0 - @color/salute_dark_surface_default_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #00FFFFFF - #03FFFFFF - #0DFFFFFF - #0FFFFFFF - #0DFFFFFF - #03FFFFFF - #00FFFFFF - - @color/salute_dark_surface_default_skeleton_color_0 - @color/salute_dark_surface_default_skeleton_color_1 - @color/salute_dark_surface_default_skeleton_color_2 - @color/salute_dark_surface_default_skeleton_color_3 - @color/salute_dark_surface_default_skeleton_color_4 - @color/salute_dark_surface_default_skeleton_color_5 - @color/salute_dark_surface_default_skeleton_color_6 - - 90.0 - - 0.0 - 0.17 - 0.4 - 0.51 - 0.62 - 0.83 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_gradient_main_hover_color_0 - @color/salute_dark_surface_default_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_gradient_main_active_color_0 - @color/salute_dark_surface_default_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_surface_default_gradient_main_color_0 - @color/salute_dark_surface_default_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - - @color/salute_dark_surface_default_skeleton_gradient_color_0 - @color/salute_dark_surface_default_skeleton_gradient_color_1 - @color/salute_dark_surface_default_skeleton_gradient_color_2 - @color/salute_dark_surface_default_skeleton_gradient_color_3 - @color/salute_dark_surface_default_skeleton_gradient_color_4 - @color/salute_dark_surface_default_skeleton_gradient_color_5 - @color/salute_dark_surface_default_skeleton_gradient_color_6 - @color/salute_dark_surface_default_skeleton_gradient_color_7 - @color/salute_dark_surface_default_skeleton_gradient_color_8 - @color/salute_dark_surface_default_skeleton_gradient_color_9 - @color/salute_dark_surface_default_skeleton_gradient_color_10 - @color/salute_dark_surface_default_skeleton_gradient_color_11 - @color/salute_dark_surface_default_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_skeleton_gradient_hover_color_0 - @color/salute_dark_surface_default_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_skeleton_gradient_active_color_0 - @color/salute_dark_surface_default_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5CFFFFFF - #52FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - #14FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - - @color/salute_dark_surface_default_skeleton_deep_gradient_color_0 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_1 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_2 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_3 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_4 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_5 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_6 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_7 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_8 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_9 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_10 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_11 - @color/salute_dark_surface_default_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_skeleton_deep_gradient_hover_color_0 - @color/salute_dark_surface_default_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_default_skeleton_deep_gradient_active_color_0 - @color/salute_dark_surface_default_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_gradient_active_color_0 - @color/salute_dark_surface_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_gradient_color_0 - @color/salute_dark_surface_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_minor_gradient_active_color_0 - @color/salute_dark_surface_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_accent_minor_gradient_color_0 - @color/salute_dark_surface_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_accent_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_accent_gradient_active_color_0 - @color/salute_dark_surface_on_dark_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_accent_gradient_color_0 - @color/salute_dark_surface_on_dark_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_gradient_active_color_0 - @color/salute_dark_surface_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_gradient_color_0 - @color/salute_dark_surface_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_minor_gradient_active_color_0 - @color/salute_dark_surface_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_promo_minor_gradient_color_0 - @color/salute_dark_surface_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_promo_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_promo_gradient_active_color_0 - @color/salute_dark_surface_on_dark_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_transparent_promo_gradient_color_0 - @color/salute_dark_surface_on_dark_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_gradient_main_hover_color_0 - @color/salute_dark_surface_on_dark_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_gradient_main_active_color_0 - @color/salute_dark_surface_on_dark_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_surface_on_dark_gradient_main_color_0 - @color/salute_dark_surface_on_dark_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - - @color/salute_dark_surface_on_dark_skeleton_gradient_color_0 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_1 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_2 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_3 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_4 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_5 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_6 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_7 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_8 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_9 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_10 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_11 - @color/salute_dark_surface_on_dark_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_skeleton_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_skeleton_gradient_active_color_0 - @color/salute_dark_surface_on_dark_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5CFFFFFF - #52FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - #14FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_0 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_1 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_2 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_3 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_4 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_5 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_6 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_7 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_8 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_9 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_10 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_11 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_hover_color_0 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_active_color_0 - @color/salute_dark_surface_on_dark_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_gradient_hover_color_0 - @color/salute_dark_surface_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_gradient_active_color_0 - @color/salute_dark_surface_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_gradient_color_0 - @color/salute_dark_surface_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_minor_gradient_hover_color_0 - @color/salute_dark_surface_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_minor_gradient_active_color_0 - @color/salute_dark_surface_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_accent_minor_gradient_color_0 - @color/salute_dark_surface_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_accent_gradient_hover_color_0 - @color/salute_dark_surface_on_light_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_accent_gradient_active_color_0 - @color/salute_dark_surface_on_light_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_accent_gradient_color_0 - @color/salute_dark_surface_on_light_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_gradient_hover_color_0 - @color/salute_dark_surface_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_gradient_active_color_0 - @color/salute_dark_surface_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_gradient_color_0 - @color/salute_dark_surface_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_minor_gradient_hover_color_0 - @color/salute_dark_surface_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_minor_gradient_active_color_0 - @color/salute_dark_surface_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_promo_minor_gradient_color_0 - @color/salute_dark_surface_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_promo_gradient_hover_color_0 - @color/salute_dark_surface_on_light_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_promo_gradient_active_color_0 - @color/salute_dark_surface_on_light_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_transparent_promo_gradient_color_0 - @color/salute_dark_surface_on_light_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_gradient_main_hover_color_0 - @color/salute_dark_surface_on_light_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_gradient_main_active_color_0 - @color/salute_dark_surface_on_light_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_surface_on_light_gradient_main_color_0 - @color/salute_dark_surface_on_light_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - - @color/salute_dark_surface_on_light_skeleton_gradient_color_0 - @color/salute_dark_surface_on_light_skeleton_gradient_color_1 - @color/salute_dark_surface_on_light_skeleton_gradient_color_2 - @color/salute_dark_surface_on_light_skeleton_gradient_color_3 - @color/salute_dark_surface_on_light_skeleton_gradient_color_4 - @color/salute_dark_surface_on_light_skeleton_gradient_color_5 - @color/salute_dark_surface_on_light_skeleton_gradient_color_6 - @color/salute_dark_surface_on_light_skeleton_gradient_color_7 - @color/salute_dark_surface_on_light_skeleton_gradient_color_8 - @color/salute_dark_surface_on_light_skeleton_gradient_color_9 - @color/salute_dark_surface_on_light_skeleton_gradient_color_10 - @color/salute_dark_surface_on_light_skeleton_gradient_color_11 - @color/salute_dark_surface_on_light_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_skeleton_gradient_hover_color_0 - @color/salute_dark_surface_on_light_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_skeleton_gradient_active_color_0 - @color/salute_dark_surface_on_light_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5C080808 - #52080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - #14080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_0 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_1 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_2 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_3 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_4 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_5 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_6 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_7 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_8 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_9 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_10 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_11 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_skeleton_deep_gradient_hover_color_0 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_on_light_skeleton_deep_gradient_active_color_0 - @color/salute_dark_surface_on_light_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_gradient_hover_color_0 - @color/salute_dark_surface_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_gradient_active_color_0 - @color/salute_dark_surface_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_gradient_color_0 - @color/salute_dark_surface_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_minor_gradient_hover_color_0 - @color/salute_dark_surface_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_minor_gradient_active_color_0 - @color/salute_dark_surface_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_accent_minor_gradient_color_0 - @color/salute_dark_surface_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_accent_gradient_hover_color_0 - @color/salute_dark_surface_inverse_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_accent_gradient_active_color_0 - @color/salute_dark_surface_inverse_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_accent_gradient_color_0 - @color/salute_dark_surface_inverse_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_gradient_hover_color_0 - @color/salute_dark_surface_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_gradient_active_color_0 - @color/salute_dark_surface_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_gradient_color_0 - @color/salute_dark_surface_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_minor_gradient_hover_color_0 - @color/salute_dark_surface_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_minor_gradient_active_color_0 - @color/salute_dark_surface_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_promo_minor_gradient_color_0 - @color/salute_dark_surface_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_promo_gradient_hover_color_0 - @color/salute_dark_surface_inverse_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_promo_gradient_active_color_0 - @color/salute_dark_surface_inverse_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_transparent_promo_gradient_color_0 - @color/salute_dark_surface_inverse_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_gradient_main_hover_color_0 - @color/salute_dark_surface_inverse_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_gradient_main_active_color_0 - @color/salute_dark_surface_inverse_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_dark_surface_inverse_gradient_main_color_0 - @color/salute_dark_surface_inverse_gradient_main_color_1 - - 88.0 - - 0.0 - 1.0 - - - - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - - @color/salute_dark_surface_inverse_skeleton_gradient_color_0 - @color/salute_dark_surface_inverse_skeleton_gradient_color_1 - @color/salute_dark_surface_inverse_skeleton_gradient_color_2 - @color/salute_dark_surface_inverse_skeleton_gradient_color_3 - @color/salute_dark_surface_inverse_skeleton_gradient_color_4 - @color/salute_dark_surface_inverse_skeleton_gradient_color_5 - @color/salute_dark_surface_inverse_skeleton_gradient_color_6 - @color/salute_dark_surface_inverse_skeleton_gradient_color_7 - @color/salute_dark_surface_inverse_skeleton_gradient_color_8 - @color/salute_dark_surface_inverse_skeleton_gradient_color_9 - @color/salute_dark_surface_inverse_skeleton_gradient_color_10 - @color/salute_dark_surface_inverse_skeleton_gradient_color_11 - @color/salute_dark_surface_inverse_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_skeleton_gradient_hover_color_0 - @color/salute_dark_surface_inverse_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_skeleton_gradient_active_color_0 - @color/salute_dark_surface_inverse_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5C080808 - #52080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - #14080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_0 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_1 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_2 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_3 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_4 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_5 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_6 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_7 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_8 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_9 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_10 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_11 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_skeleton_deep_gradient_hover_color_0 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_surface_inverse_skeleton_deep_gradient_active_color_0 - @color/salute_dark_surface_inverse_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #1AFFFFFF - #0001B6FF - - @color/salute_dark_background_default_modal_sheet_layer_0_color_0 - @color/salute_dark_background_default_modal_sheet_layer_0_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_modal_sheet_layer_1 - - - - #00080808 - #FF143787 - - @color/salute_dark_background_default_mobile_assistant_athena_layer_0_color_0 - @color/salute_dark_background_default_mobile_assistant_athena_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #706E05C1 - #1A351395 - - @color/salute_dark_background_default_mobile_assistant_athena_layer_1_color_0 - @color/salute_dark_background_default_mobile_assistant_athena_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00080808 - #69193F98 - - @color/salute_dark_background_default_mobile_assistant_athena_layer_2_color_0 - @color/salute_dark_background_default_mobile_assistant_athena_layer_2_color_1 - - 180.03 - - 0.0 - 1.0 - - - - #4D270F6B - #00080808 - - @color/salute_dark_background_default_mobile_assistant_athena_layer_3_color_0 - @color/salute_dark_background_default_mobile_assistant_athena_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_mobile_assistant_athena_layer_4 - - - - #00080808 - #3DFF9C65 - - @color/salute_dark_background_default_mobile_assistant_joy_layer_0_color_0 - @color/salute_dark_background_default_mobile_assistant_joy_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #573D1395 - #1A131895 - - @color/salute_dark_background_default_mobile_assistant_joy_layer_1_color_0 - @color/salute_dark_background_default_mobile_assistant_joy_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00080808 - #26FFD7B3 - - @color/salute_dark_background_default_mobile_assistant_joy_layer_2_color_0 - @color/salute_dark_background_default_mobile_assistant_joy_layer_2_color_1 - - 180.03 - - 0.0 - 1.0 - - - - #336B0F57 - #00080808 - - @color/salute_dark_background_default_mobile_assistant_joy_layer_3_color_0 - @color/salute_dark_background_default_mobile_assistant_joy_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_mobile_assistant_joy_layer_4 - - - - #00080808 - #99147446 - - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_0_color_0 - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_0_color_1 - - 336.84 - - 0.0 - 1.0 - - - - #3D0085FF - #080047FF - - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_1_color_0 - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00080808 - #4D074721 - - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_2_color_0 - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_2_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #FF061621 - #00080808 - - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_3_color_0 - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_mobile_assistant_b2_e_layer_4 - - - - #00080808 - #FF184BAB - - @color/salute_dark_background_default_mobile_assistant_brand_layer_0_color_0 - @color/salute_dark_background_default_mobile_assistant_brand_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #701645A4 - #1A0B272D - - @color/salute_dark_background_default_mobile_assistant_brand_layer_1_color_0 - @color/salute_dark_background_default_mobile_assistant_brand_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00080808 - #691645A4 - - @color/salute_dark_background_default_mobile_assistant_brand_layer_2_color_0 - @color/salute_dark_background_default_mobile_assistant_brand_layer_2_color_1 - - 180.03 - - 0.0 - 1.0 - - - - #4D1645A4 - #00080808 - - @color/salute_dark_background_default_mobile_assistant_brand_layer_3_color_0 - @color/salute_dark_background_default_mobile_assistant_brand_layer_3_color_1 - - 269.47 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_mobile_assistant_brand_layer_4 - - - - #00080808 - #99147446 - - @color/salute_dark_background_default_mobile_assistant_main_layer_0_color_0 - @color/salute_dark_background_default_mobile_assistant_main_layer_0_color_1 - - 336.84 - - 0.0 - 1.0 - - - - #3D0085FF - #080047FF - - @color/salute_dark_background_default_mobile_assistant_main_layer_1_color_0 - @color/salute_dark_background_default_mobile_assistant_main_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00080808 - #4D074721 - - @color/salute_dark_background_default_mobile_assistant_main_layer_2_color_0 - @color/salute_dark_background_default_mobile_assistant_main_layer_2_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #FF061621 - #00080808 - - @color/salute_dark_background_default_mobile_assistant_main_layer_3_color_0 - @color/salute_dark_background_default_mobile_assistant_main_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FF080808 - - @color/salute_dark_background_default_mobile_assistant_main_layer_4 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_gradient_hover_color_0 - @color/salute_dark_outline_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_gradient_active_color_0 - @color/salute_dark_outline_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_gradient_color_0 - @color/salute_dark_outline_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_minor_gradient_hover_color_0 - @color/salute_dark_outline_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_minor_gradient_active_color_0 - @color/salute_dark_outline_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_accent_minor_gradient_color_0 - @color/salute_dark_outline_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_transparent_accent_gradient_hover_color_0 - @color/salute_dark_outline_default_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_transparent_accent_gradient_active_color_0 - @color/salute_dark_outline_default_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_transparent_accent_gradient_color_0 - @color/salute_dark_outline_default_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_gradient_hover_color_0 - @color/salute_dark_outline_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_gradient_active_color_0 - @color/salute_dark_outline_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_gradient_color_0 - @color/salute_dark_outline_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_minor_gradient_hover_color_0 - @color/salute_dark_outline_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_minor_gradient_active_color_0 - @color/salute_dark_outline_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_default_promo_minor_gradient_color_0 - @color/salute_dark_outline_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_gradient_hover_color_0 - @color/salute_dark_outline_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_gradient_active_color_0 - @color/salute_dark_outline_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_gradient_color_0 - @color/salute_dark_outline_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_dark_outline_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_minor_gradient_active_color_0 - @color/salute_dark_outline_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_accent_minor_gradient_color_0 - @color/salute_dark_outline_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_transparent_accent_gradient_hover_color_0 - @color/salute_dark_outline_on_dark_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_transparent_accent_gradient_active_color_0 - @color/salute_dark_outline_on_dark_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_transparent_accent_gradient_color_0 - @color/salute_dark_outline_on_dark_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_gradient_hover_color_0 - @color/salute_dark_outline_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_gradient_active_color_0 - @color/salute_dark_outline_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_gradient_color_0 - @color/salute_dark_outline_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_dark_outline_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_minor_gradient_active_color_0 - @color/salute_dark_outline_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_dark_promo_minor_gradient_color_0 - @color/salute_dark_outline_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_gradient_hover_color_0 - @color/salute_dark_outline_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_gradient_active_color_0 - @color/salute_dark_outline_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_gradient_color_0 - @color/salute_dark_outline_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_minor_gradient_hover_color_0 - @color/salute_dark_outline_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_minor_gradient_active_color_0 - @color/salute_dark_outline_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_accent_minor_gradient_color_0 - @color/salute_dark_outline_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_transparent_accent_gradient_hover_color_0 - @color/salute_dark_outline_on_light_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_transparent_accent_gradient_active_color_0 - @color/salute_dark_outline_on_light_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_transparent_accent_gradient_color_0 - @color/salute_dark_outline_on_light_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_gradient_hover_color_0 - @color/salute_dark_outline_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_gradient_active_color_0 - @color/salute_dark_outline_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_gradient_color_0 - @color/salute_dark_outline_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_minor_gradient_hover_color_0 - @color/salute_dark_outline_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_minor_gradient_active_color_0 - @color/salute_dark_outline_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_on_light_promo_minor_gradient_color_0 - @color/salute_dark_outline_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_gradient_hover_color_0 - @color/salute_dark_outline_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_gradient_active_color_0 - @color/salute_dark_outline_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_gradient_color_0 - @color/salute_dark_outline_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_minor_gradient_hover_color_0 - @color/salute_dark_outline_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_minor_gradient_active_color_0 - @color/salute_dark_outline_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_accent_minor_gradient_color_0 - @color/salute_dark_outline_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_transparent_accent_gradient_hover_color_0 - @color/salute_dark_outline_inverse_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_transparent_accent_gradient_active_color_0 - @color/salute_dark_outline_inverse_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_transparent_accent_gradient_color_0 - @color/salute_dark_outline_inverse_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_gradient_hover_color_0 - @color/salute_dark_outline_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_gradient_active_color_0 - @color/salute_dark_outline_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_gradient_color_0 - @color/salute_dark_outline_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_minor_gradient_hover_color_0 - @color/salute_dark_outline_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_minor_gradient_active_color_0 - @color/salute_dark_outline_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_dark_outline_inverse_promo_minor_gradient_color_0 - @color/salute_dark_outline_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_gradient_hover_color_0 - @color/salute_light_text_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_gradient_active_color_0 - @color/salute_light_text_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_gradient_color_0 - @color/salute_light_text_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_minor_gradient_hover_color_0 - @color/salute_light_text_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_minor_gradient_active_color_0 - @color/salute_light_text_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_accent_minor_gradient_color_0 - @color/salute_light_text_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_gradient_hover_color_0 - @color/salute_light_text_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_gradient_active_color_0 - @color/salute_light_text_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_gradient_color_0 - @color/salute_light_text_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_minor_gradient_hover_color_0 - @color/salute_light_text_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_minor_gradient_active_color_0 - @color/salute_light_text_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_promo_minor_gradient_color_0 - @color/salute_light_text_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_athena_hover_color_0 - @color/salute_light_text_default_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_athena_active_color_0 - @color/salute_light_text_default_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF118CDF - #FF7A7AFF - - @color/salute_light_text_default_gradient_athena_color_0 - @color/salute_light_text_default_gradient_athena_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_joy_hover_color_0 - @color/salute_light_text_default_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_joy_active_color_0 - @color/salute_light_text_default_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFCA349 - #FFFF52C5 - - @color/salute_light_text_default_gradient_joy_color_0 - @color/salute_light_text_default_gradient_joy_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_brand_hover_color_0 - @color/salute_light_text_default_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_brand_active_color_0 - @color/salute_light_text_default_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF3E79F0 - #FF27C6E5 - - @color/salute_light_text_default_gradient_brand_color_0 - @color/salute_light_text_default_gradient_brand_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_b2_e_hover_color_0 - @color/salute_light_text_default_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_b2_e_active_color_0 - @color/salute_light_text_default_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_text_default_gradient_b2_e_color_0 - @color/salute_light_text_default_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_main_hover_color_0 - @color/salute_light_text_default_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_default_gradient_main_active_color_0 - @color/salute_light_text_default_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_text_default_gradient_main_color_0 - @color/salute_light_text_default_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_gradient_hover_color_0 - @color/salute_light_text_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_gradient_active_color_0 - @color/salute_light_text_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_gradient_color_0 - @color/salute_light_text_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_light_text_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_minor_gradient_active_color_0 - @color/salute_light_text_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_accent_minor_gradient_color_0 - @color/salute_light_text_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_gradient_hover_color_0 - @color/salute_light_text_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_gradient_active_color_0 - @color/salute_light_text_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_gradient_color_0 - @color/salute_light_text_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_light_text_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_minor_gradient_active_color_0 - @color/salute_light_text_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_promo_minor_gradient_color_0 - @color/salute_light_text_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_athena_hover_color_0 - @color/salute_light_text_on_dark_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_athena_active_color_0 - @color/salute_light_text_on_dark_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF52BAFF - #FFADADFF - - @color/salute_light_text_on_dark_gradient_athena_color_0 - @color/salute_light_text_on_dark_gradient_athena_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_joy_hover_color_0 - @color/salute_light_text_on_dark_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_joy_active_color_0 - @color/salute_light_text_on_dark_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFD9C68 - #FFF391E2 - - @color/salute_light_text_on_dark_gradient_joy_color_0 - @color/salute_light_text_on_dark_gradient_joy_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_b2_e_hover_color_0 - @color/salute_light_text_on_dark_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_b2_e_active_color_0 - @color/salute_light_text_on_dark_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_light_text_on_dark_gradient_b2_e_color_0 - @color/salute_light_text_on_dark_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_brand_hover_color_0 - @color/salute_light_text_on_dark_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_brand_active_color_0 - @color/salute_light_text_on_dark_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF528EFF - #FF04C6C9 - - @color/salute_light_text_on_dark_gradient_brand_color_0 - @color/salute_light_text_on_dark_gradient_brand_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_main_hover_color_0 - @color/salute_light_text_on_dark_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_dark_gradient_main_active_color_0 - @color/salute_light_text_on_dark_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF1CC9C9 - - @color/salute_light_text_on_dark_gradient_main_color_0 - @color/salute_light_text_on_dark_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_gradient_hover_color_0 - @color/salute_light_text_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_gradient_active_color_0 - @color/salute_light_text_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_gradient_color_0 - @color/salute_light_text_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_minor_gradient_hover_color_0 - @color/salute_light_text_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_minor_gradient_active_color_0 - @color/salute_light_text_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_accent_minor_gradient_color_0 - @color/salute_light_text_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_gradient_hover_color_0 - @color/salute_light_text_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_gradient_active_color_0 - @color/salute_light_text_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_gradient_color_0 - @color/salute_light_text_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_minor_gradient_hover_color_0 - @color/salute_light_text_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_minor_gradient_active_color_0 - @color/salute_light_text_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_promo_minor_gradient_color_0 - @color/salute_light_text_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_athena_hover_color_0 - @color/salute_light_text_on_light_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_athena_active_color_0 - @color/salute_light_text_on_light_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF118CDF - #FF7A7AFF - - @color/salute_light_text_on_light_gradient_athena_color_0 - @color/salute_light_text_on_light_gradient_athena_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_joy_hover_color_0 - @color/salute_light_text_on_light_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_joy_active_color_0 - @color/salute_light_text_on_light_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFCA349 - #FFFF52C5 - - @color/salute_light_text_on_light_gradient_joy_color_0 - @color/salute_light_text_on_light_gradient_joy_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_b2_e_hover_color_0 - @color/salute_light_text_on_light_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_b2_e_active_color_0 - @color/salute_light_text_on_light_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A6C7 - - @color/salute_light_text_on_light_gradient_b2_e_color_0 - @color/salute_light_text_on_light_gradient_b2_e_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_brand_hover_color_0 - @color/salute_light_text_on_light_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_brand_active_color_0 - @color/salute_light_text_on_light_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF3E79F0 - #FF27C6E5 - - @color/salute_light_text_on_light_gradient_brand_color_0 - @color/salute_light_text_on_light_gradient_brand_color_1 - - 93.97 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_main_hover_color_0 - @color/salute_light_text_on_light_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_on_light_gradient_main_active_color_0 - @color/salute_light_text_on_light_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A6C7 - - @color/salute_light_text_on_light_gradient_main_color_0 - @color/salute_light_text_on_light_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_gradient_hover_color_0 - @color/salute_light_text_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_gradient_active_color_0 - @color/salute_light_text_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_gradient_color_0 - @color/salute_light_text_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_minor_gradient_hover_color_0 - @color/salute_light_text_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_minor_gradient_active_color_0 - @color/salute_light_text_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_accent_minor_gradient_color_0 - @color/salute_light_text_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_gradient_hover_color_0 - @color/salute_light_text_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_gradient_active_color_0 - @color/salute_light_text_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_gradient_color_0 - @color/salute_light_text_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_minor_gradient_hover_color_0 - @color/salute_light_text_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_minor_gradient_active_color_0 - @color/salute_light_text_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_promo_minor_gradient_color_0 - @color/salute_light_text_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_main_hover_color_0 - @color/salute_light_text_inverse_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_main_active_color_0 - @color/salute_light_text_inverse_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_athena_hover_color_0 - @color/salute_light_text_inverse_gradient_athena_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_athena_active_color_0 - @color/salute_light_text_inverse_gradient_athena_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_joy_hover_color_0 - @color/salute_light_text_inverse_gradient_joy_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_joy_active_color_0 - @color/salute_light_text_inverse_gradient_joy_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_brand_hover_color_0 - @color/salute_light_text_inverse_gradient_brand_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_brand_active_color_0 - @color/salute_light_text_inverse_gradient_brand_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_b2_e_hover_color_0 - @color/salute_light_text_inverse_gradient_b2_e_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_text_inverse_gradient_b2_e_active_color_0 - @color/salute_light_text_inverse_gradient_b2_e_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF05C1F5 - - @color/salute_light_text_inverse_gradient_main_color_0 - @color/salute_light_text_inverse_gradient_main_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF52BAFF - #FFADADFF - - @color/salute_light_text_inverse_gradient_athena_color_0 - @color/salute_light_text_inverse_gradient_athena_color_1 - - 94.0 - - 0.06 - 0.94 - - - - #FFFD9C68 - #FFF391E2 - - @color/salute_light_text_inverse_gradient_joy_color_0 - @color/salute_light_text_inverse_gradient_joy_color_1 - - 94.0 - - 0.06 - 0.94 - - - - #FF24B23E - #FF05C1F5 - - @color/salute_light_text_inverse_gradient_b2_e_color_0 - @color/salute_light_text_inverse_gradient_b2_e_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF528EFF - #FF04C6C9 - - @color/salute_light_text_inverse_gradient_brand_color_0 - @color/salute_light_text_inverse_gradient_brand_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_gradient_hover_color_0 - @color/salute_light_surface_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_gradient_active_color_0 - @color/salute_light_surface_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_gradient_color_0 - @color/salute_light_surface_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_minor_gradient_hover_color_0 - @color/salute_light_surface_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_minor_gradient_active_color_0 - @color/salute_light_surface_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_accent_minor_gradient_color_0 - @color/salute_light_surface_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_accent_gradient_hover_color_0 - @color/salute_light_surface_default_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_accent_gradient_active_color_0 - @color/salute_light_surface_default_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_accent_gradient_color_0 - @color/salute_light_surface_default_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_gradient_hover_color_0 - @color/salute_light_surface_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_gradient_active_color_0 - @color/salute_light_surface_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_gradient_color_0 - @color/salute_light_surface_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_minor_gradient_hover_color_0 - @color/salute_light_surface_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_minor_gradient_active_color_0 - @color/salute_light_surface_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_promo_minor_gradient_color_0 - @color/salute_light_surface_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_promo_gradient_hover_color_0 - @color/salute_light_surface_default_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_promo_gradient_active_color_0 - @color/salute_light_surface_default_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_transparent_promo_gradient_color_0 - @color/salute_light_surface_default_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #00000000 - #03000000 - #0D000000 - #0F000000 - #0D000000 - #03000000 - #00000000 - - @color/salute_light_surface_default_skeleton_color_0 - @color/salute_light_surface_default_skeleton_color_1 - @color/salute_light_surface_default_skeleton_color_2 - @color/salute_light_surface_default_skeleton_color_3 - @color/salute_light_surface_default_skeleton_color_4 - @color/salute_light_surface_default_skeleton_color_5 - @color/salute_light_surface_default_skeleton_color_6 - - 90.0 - - 0.0 - 0.17 - 0.4 - 0.51 - 0.62 - 0.83 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_gradient_main_hover_color_0 - @color/salute_light_surface_default_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_gradient_main_active_color_0 - @color/salute_light_surface_default_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_surface_default_gradient_main_color_0 - @color/salute_light_surface_default_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - - @color/salute_light_surface_default_skeleton_gradient_color_0 - @color/salute_light_surface_default_skeleton_gradient_color_1 - @color/salute_light_surface_default_skeleton_gradient_color_2 - @color/salute_light_surface_default_skeleton_gradient_color_3 - @color/salute_light_surface_default_skeleton_gradient_color_4 - @color/salute_light_surface_default_skeleton_gradient_color_5 - @color/salute_light_surface_default_skeleton_gradient_color_6 - @color/salute_light_surface_default_skeleton_gradient_color_7 - @color/salute_light_surface_default_skeleton_gradient_color_8 - @color/salute_light_surface_default_skeleton_gradient_color_9 - @color/salute_light_surface_default_skeleton_gradient_color_10 - @color/salute_light_surface_default_skeleton_gradient_color_11 - @color/salute_light_surface_default_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_skeleton_gradient_hover_color_0 - @color/salute_light_surface_default_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_skeleton_gradient_active_color_0 - @color/salute_light_surface_default_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5C080808 - #52080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - #14080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - - @color/salute_light_surface_default_skeleton_deep_gradient_color_0 - @color/salute_light_surface_default_skeleton_deep_gradient_color_1 - @color/salute_light_surface_default_skeleton_deep_gradient_color_2 - @color/salute_light_surface_default_skeleton_deep_gradient_color_3 - @color/salute_light_surface_default_skeleton_deep_gradient_color_4 - @color/salute_light_surface_default_skeleton_deep_gradient_color_5 - @color/salute_light_surface_default_skeleton_deep_gradient_color_6 - @color/salute_light_surface_default_skeleton_deep_gradient_color_7 - @color/salute_light_surface_default_skeleton_deep_gradient_color_8 - @color/salute_light_surface_default_skeleton_deep_gradient_color_9 - @color/salute_light_surface_default_skeleton_deep_gradient_color_10 - @color/salute_light_surface_default_skeleton_deep_gradient_color_11 - @color/salute_light_surface_default_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_skeleton_deep_gradient_hover_color_0 - @color/salute_light_surface_default_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_default_skeleton_deep_gradient_active_color_0 - @color/salute_light_surface_default_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_gradient_hover_color_0 - @color/salute_light_surface_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_gradient_active_color_0 - @color/salute_light_surface_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_gradient_color_0 - @color/salute_light_surface_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_light_surface_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_minor_gradient_active_color_0 - @color/salute_light_surface_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_accent_minor_gradient_color_0 - @color/salute_light_surface_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_accent_gradient_hover_color_0 - @color/salute_light_surface_on_dark_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_accent_gradient_active_color_0 - @color/salute_light_surface_on_dark_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_accent_gradient_color_0 - @color/salute_light_surface_on_dark_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_gradient_hover_color_0 - @color/salute_light_surface_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_gradient_active_color_0 - @color/salute_light_surface_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_gradient_color_0 - @color/salute_light_surface_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_light_surface_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_minor_gradient_active_color_0 - @color/salute_light_surface_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_promo_minor_gradient_color_0 - @color/salute_light_surface_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_promo_gradient_hover_color_0 - @color/salute_light_surface_on_dark_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_promo_gradient_active_color_0 - @color/salute_light_surface_on_dark_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_transparent_promo_gradient_color_0 - @color/salute_light_surface_on_dark_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_gradient_main_hover_color_0 - @color/salute_light_surface_on_dark_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_gradient_main_active_color_0 - @color/salute_light_surface_on_dark_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_surface_on_dark_gradient_main_color_0 - @color/salute_light_surface_on_dark_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - - @color/salute_light_surface_on_dark_skeleton_gradient_color_0 - @color/salute_light_surface_on_dark_skeleton_gradient_color_1 - @color/salute_light_surface_on_dark_skeleton_gradient_color_2 - @color/salute_light_surface_on_dark_skeleton_gradient_color_3 - @color/salute_light_surface_on_dark_skeleton_gradient_color_4 - @color/salute_light_surface_on_dark_skeleton_gradient_color_5 - @color/salute_light_surface_on_dark_skeleton_gradient_color_6 - @color/salute_light_surface_on_dark_skeleton_gradient_color_7 - @color/salute_light_surface_on_dark_skeleton_gradient_color_8 - @color/salute_light_surface_on_dark_skeleton_gradient_color_9 - @color/salute_light_surface_on_dark_skeleton_gradient_color_10 - @color/salute_light_surface_on_dark_skeleton_gradient_color_11 - @color/salute_light_surface_on_dark_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_skeleton_gradient_hover_color_0 - @color/salute_light_surface_on_dark_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_skeleton_gradient_active_color_0 - @color/salute_light_surface_on_dark_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5CFFFFFF - #52FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - #14FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_0 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_1 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_2 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_3 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_4 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_5 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_6 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_7 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_8 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_9 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_10 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_11 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_skeleton_deep_gradient_hover_color_0 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_dark_skeleton_deep_gradient_active_color_0 - @color/salute_light_surface_on_dark_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_gradient_hover_color_0 - @color/salute_light_surface_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_gradient_active_color_0 - @color/salute_light_surface_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_gradient_color_0 - @color/salute_light_surface_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_minor_gradient_hover_color_0 - @color/salute_light_surface_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_minor_gradient_active_color_0 - @color/salute_light_surface_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_accent_minor_gradient_color_0 - @color/salute_light_surface_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_accent_gradient_hover_color_0 - @color/salute_light_surface_on_light_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_accent_gradient_active_color_0 - @color/salute_light_surface_on_light_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_accent_gradient_color_0 - @color/salute_light_surface_on_light_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_gradient_hover_color_0 - @color/salute_light_surface_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_gradient_active_color_0 - @color/salute_light_surface_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_gradient_color_0 - @color/salute_light_surface_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_minor_gradient_hover_color_0 - @color/salute_light_surface_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_minor_gradient_active_color_0 - @color/salute_light_surface_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_promo_minor_gradient_color_0 - @color/salute_light_surface_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_promo_gradient_hover_color_0 - @color/salute_light_surface_on_light_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_promo_gradient_active_color_0 - @color/salute_light_surface_on_light_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_transparent_promo_gradient_color_0 - @color/salute_light_surface_on_light_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_gradient_main_hover_color_0 - @color/salute_light_surface_on_light_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_gradient_main_active_color_0 - @color/salute_light_surface_on_light_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_surface_on_light_gradient_main_color_0 - @color/salute_light_surface_on_light_gradient_main_color_1 - - 89.83 - - 0.0 - 1.0 - - - - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - #14080808 - #0D080808 - #03080808 - #0D080808 - #14080808 - #17080808 - - @color/salute_light_surface_on_light_skeleton_gradient_color_0 - @color/salute_light_surface_on_light_skeleton_gradient_color_1 - @color/salute_light_surface_on_light_skeleton_gradient_color_2 - @color/salute_light_surface_on_light_skeleton_gradient_color_3 - @color/salute_light_surface_on_light_skeleton_gradient_color_4 - @color/salute_light_surface_on_light_skeleton_gradient_color_5 - @color/salute_light_surface_on_light_skeleton_gradient_color_6 - @color/salute_light_surface_on_light_skeleton_gradient_color_7 - @color/salute_light_surface_on_light_skeleton_gradient_color_8 - @color/salute_light_surface_on_light_skeleton_gradient_color_9 - @color/salute_light_surface_on_light_skeleton_gradient_color_10 - @color/salute_light_surface_on_light_skeleton_gradient_color_11 - @color/salute_light_surface_on_light_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_skeleton_gradient_hover_color_0 - @color/salute_light_surface_on_light_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_skeleton_gradient_active_color_0 - @color/salute_light_surface_on_light_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5C080808 - #52080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - #14080808 - #33080808 - #0A080808 - #33080808 - #52080808 - #5C080808 - - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_0 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_1 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_2 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_3 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_4 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_5 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_6 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_7 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_8 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_9 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_10 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_11 - @color/salute_light_surface_on_light_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_skeleton_deep_gradient_hover_color_0 - @color/salute_light_surface_on_light_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_on_light_skeleton_deep_gradient_active_color_0 - @color/salute_light_surface_on_light_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_gradient_hover_color_0 - @color/salute_light_surface_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_gradient_active_color_0 - @color/salute_light_surface_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_gradient_color_0 - @color/salute_light_surface_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_minor_gradient_hover_color_0 - @color/salute_light_surface_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_minor_gradient_active_color_0 - @color/salute_light_surface_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_accent_minor_gradient_color_0 - @color/salute_light_surface_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_accent_gradient_hover_color_0 - @color/salute_light_surface_inverse_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_accent_gradient_active_color_0 - @color/salute_light_surface_inverse_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_accent_gradient_color_0 - @color/salute_light_surface_inverse_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_gradient_hover_color_0 - @color/salute_light_surface_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_gradient_active_color_0 - @color/salute_light_surface_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_gradient_color_0 - @color/salute_light_surface_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_minor_gradient_hover_color_0 - @color/salute_light_surface_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_minor_gradient_active_color_0 - @color/salute_light_surface_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_promo_minor_gradient_color_0 - @color/salute_light_surface_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_promo_gradient_hover_color_0 - @color/salute_light_surface_inverse_transparent_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_promo_gradient_active_color_0 - @color/salute_light_surface_inverse_transparent_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_transparent_promo_gradient_color_0 - @color/salute_light_surface_inverse_transparent_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_gradient_main_hover_color_0 - @color/salute_light_surface_inverse_gradient_main_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_gradient_main_active_color_0 - @color/salute_light_surface_inverse_gradient_main_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FF24B23E - #FF00A4D1 - - @color/salute_light_surface_inverse_gradient_main_color_0 - @color/salute_light_surface_inverse_gradient_main_color_1 - - 88.0 - - 0.0 - 1.0 - - - - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - #14FFFFFF - #0DFFFFFF - #03FFFFFF - #0DFFFFFF - #14FFFFFF - #17FFFFFF - - @color/salute_light_surface_inverse_skeleton_gradient_color_0 - @color/salute_light_surface_inverse_skeleton_gradient_color_1 - @color/salute_light_surface_inverse_skeleton_gradient_color_2 - @color/salute_light_surface_inverse_skeleton_gradient_color_3 - @color/salute_light_surface_inverse_skeleton_gradient_color_4 - @color/salute_light_surface_inverse_skeleton_gradient_color_5 - @color/salute_light_surface_inverse_skeleton_gradient_color_6 - @color/salute_light_surface_inverse_skeleton_gradient_color_7 - @color/salute_light_surface_inverse_skeleton_gradient_color_8 - @color/salute_light_surface_inverse_skeleton_gradient_color_9 - @color/salute_light_surface_inverse_skeleton_gradient_color_10 - @color/salute_light_surface_inverse_skeleton_gradient_color_11 - @color/salute_light_surface_inverse_skeleton_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_skeleton_gradient_hover_color_0 - @color/salute_light_surface_inverse_skeleton_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_skeleton_gradient_active_color_0 - @color/salute_light_surface_inverse_skeleton_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #5CFFFFFF - #52FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - #14FFFFFF - #33FFFFFF - #0AFFFFFF - #33FFFFFF - #52FFFFFF - #5CFFFFFF - - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_0 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_1 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_2 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_3 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_4 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_5 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_6 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_7 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_8 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_9 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_10 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_11 - @color/salute_light_surface_inverse_skeleton_deep_gradient_color_12 - - 90.0 - - 0.0 - 0.0625 - 0.125 - 0.25 - 0.375 - 0.4375 - 0.5 - 0.5625 - 0.625 - 0.75 - 0.875 - 0.9375 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_skeleton_deep_gradient_hover_color_0 - @color/salute_light_surface_inverse_skeleton_deep_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_surface_inverse_skeleton_deep_gradient_active_color_0 - @color/salute_light_surface_inverse_skeleton_deep_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #0F00E0FF - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_athena_layer_0_color_0 - @color/salute_light_background_default_mobile_assistant_athena_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #0A0057FF - #035708FF - - @color/salute_light_background_default_mobile_assistant_athena_layer_1_color_0 - @color/salute_light_background_default_mobile_assistant_athena_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00FFFFFF - #0F00E0FF - - @color/salute_light_background_default_mobile_assistant_athena_layer_2_color_0 - @color/salute_light_background_default_mobile_assistant_athena_layer_2_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #050047FD - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_athena_layer_3_color_0 - @color/salute_light_background_default_mobile_assistant_athena_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - - @color/salute_light_background_default_mobile_assistant_athena_layer_4 - - - - #0DFFC803 - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_joy_layer_0_color_0 - @color/salute_light_background_default_mobile_assistant_joy_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #059400EE - #03A004FF - - @color/salute_light_background_default_mobile_assistant_joy_layer_1_color_0 - @color/salute_light_background_default_mobile_assistant_joy_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00FFFFFF - #0AFFB800 - - @color/salute_light_background_default_mobile_assistant_joy_layer_2_color_0 - @color/salute_light_background_default_mobile_assistant_joy_layer_2_color_1 - - 180.03 - - 0.0 - 1.0 - - - - #08F000BB - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_joy_layer_3_color_0 - @color/salute_light_background_default_mobile_assistant_joy_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - - @color/salute_light_background_default_mobile_assistant_joy_layer_4 - - - - #00FFFFFF - #0F28C5E6 - - @color/salute_light_background_default_mobile_assistant_brand_layer_0_color_0 - @color/salute_light_background_default_mobile_assistant_brand_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #0A2A72F8 - #032969E3 - - @color/salute_light_background_default_mobile_assistant_brand_layer_1_color_0 - @color/salute_light_background_default_mobile_assistant_brand_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #002A72F8 - #0A2A72F8 - - @color/salute_light_background_default_mobile_assistant_brand_layer_2_color_0 - @color/salute_light_background_default_mobile_assistant_brand_layer_2_color_1 - - 180.03 - - 0.0 - 1.0 - - - - #0828C5E6 - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_brand_layer_3_color_0 - @color/salute_light_background_default_mobile_assistant_brand_layer_3_color_1 - - 269.47 - - 0.0 - 1.0 - - - - #FFFFFFFF - - @color/salute_light_background_default_mobile_assistant_brand_layer_4 - - - - #00FFFFFF - #0001B6FF - - @color/salute_light_background_default_modal_sheet_layer_0_color_0 - @color/salute_light_background_default_modal_sheet_layer_0_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #FFF2F2F2 - - @color/salute_light_background_default_modal_sheet_layer_1 - - - - #0504FF2C - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_b2_e_layer_0_color_0 - @color/salute_light_background_default_mobile_assistant_b2_e_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #0F00B3FF - #0300D1FF - - @color/salute_light_background_default_mobile_assistant_b2_e_layer_1_color_0 - @color/salute_light_background_default_mobile_assistant_b2_e_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00FFFFFF - #0D00FB3B - - @color/salute_light_background_default_mobile_assistant_b2_e_layer_2_color_0 - @color/salute_light_background_default_mobile_assistant_b2_e_layer_2_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #0D06C3FF - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_b2_e_layer_3_color_0 - @color/salute_light_background_default_mobile_assistant_b2_e_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - - @color/salute_light_background_default_mobile_assistant_b2_e_layer_4 - - - - #0504FF2C - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_main_layer_0_color_0 - @color/salute_light_background_default_mobile_assistant_main_layer_0_color_1 - - 336.9 - - 0.0 - 1.0 - - - - #0F00B3FF - #0300D1FF - - @color/salute_light_background_default_mobile_assistant_main_layer_1_color_0 - @color/salute_light_background_default_mobile_assistant_main_layer_1_color_1 - - 0.66 - 1.0 - 1.0 - - 0.0 - 1.0 - - - - #00FFFFFF - #0D00FB3B - - @color/salute_light_background_default_mobile_assistant_main_layer_2_color_0 - @color/salute_light_background_default_mobile_assistant_main_layer_2_color_1 - - 180.0 - - 0.0 - 1.0 - - - - #0D06C3FF - #00FFFFFF - - @color/salute_light_background_default_mobile_assistant_main_layer_3_color_0 - @color/salute_light_background_default_mobile_assistant_main_layer_3_color_1 - - 270.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - - @color/salute_light_background_default_mobile_assistant_main_layer_4 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_gradient_hover_color_0 - @color/salute_light_outline_default_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_gradient_active_color_0 - @color/salute_light_outline_default_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_gradient_color_0 - @color/salute_light_outline_default_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_minor_gradient_hover_color_0 - @color/salute_light_outline_default_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_minor_gradient_active_color_0 - @color/salute_light_outline_default_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_accent_minor_gradient_color_0 - @color/salute_light_outline_default_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_transparent_accent_gradient_hover_color_0 - @color/salute_light_outline_default_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_transparent_accent_gradient_active_color_0 - @color/salute_light_outline_default_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_transparent_accent_gradient_color_0 - @color/salute_light_outline_default_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_gradient_hover_color_0 - @color/salute_light_outline_default_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_gradient_active_color_0 - @color/salute_light_outline_default_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_gradient_color_0 - @color/salute_light_outline_default_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_minor_gradient_hover_color_0 - @color/salute_light_outline_default_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_minor_gradient_active_color_0 - @color/salute_light_outline_default_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_default_promo_minor_gradient_color_0 - @color/salute_light_outline_default_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_gradient_hover_color_0 - @color/salute_light_outline_on_dark_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_gradient_active_color_0 - @color/salute_light_outline_on_dark_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_gradient_color_0 - @color/salute_light_outline_on_dark_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_minor_gradient_hover_color_0 - @color/salute_light_outline_on_dark_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_minor_gradient_active_color_0 - @color/salute_light_outline_on_dark_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_accent_minor_gradient_color_0 - @color/salute_light_outline_on_dark_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_transparent_accent_gradient_hover_color_0 - @color/salute_light_outline_on_dark_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_transparent_accent_gradient_active_color_0 - @color/salute_light_outline_on_dark_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_transparent_accent_gradient_color_0 - @color/salute_light_outline_on_dark_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_gradient_hover_color_0 - @color/salute_light_outline_on_dark_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_gradient_active_color_0 - @color/salute_light_outline_on_dark_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_gradient_color_0 - @color/salute_light_outline_on_dark_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_minor_gradient_hover_color_0 - @color/salute_light_outline_on_dark_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_minor_gradient_active_color_0 - @color/salute_light_outline_on_dark_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_dark_promo_minor_gradient_color_0 - @color/salute_light_outline_on_dark_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_gradient_hover_color_0 - @color/salute_light_outline_on_light_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_gradient_active_color_0 - @color/salute_light_outline_on_light_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_gradient_color_0 - @color/salute_light_outline_on_light_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_minor_gradient_hover_color_0 - @color/salute_light_outline_on_light_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_minor_gradient_active_color_0 - @color/salute_light_outline_on_light_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_accent_minor_gradient_color_0 - @color/salute_light_outline_on_light_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_transparent_accent_gradient_hover_color_0 - @color/salute_light_outline_on_light_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_transparent_accent_gradient_active_color_0 - @color/salute_light_outline_on_light_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_transparent_accent_gradient_color_0 - @color/salute_light_outline_on_light_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_gradient_hover_color_0 - @color/salute_light_outline_on_light_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_gradient_active_color_0 - @color/salute_light_outline_on_light_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_gradient_color_0 - @color/salute_light_outline_on_light_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_minor_gradient_hover_color_0 - @color/salute_light_outline_on_light_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_minor_gradient_active_color_0 - @color/salute_light_outline_on_light_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_on_light_promo_minor_gradient_color_0 - @color/salute_light_outline_on_light_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_gradient_hover_color_0 - @color/salute_light_outline_inverse_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_gradient_active_color_0 - @color/salute_light_outline_inverse_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_gradient_color_0 - @color/salute_light_outline_inverse_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_minor_gradient_hover_color_0 - @color/salute_light_outline_inverse_accent_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_minor_gradient_active_color_0 - @color/salute_light_outline_inverse_accent_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_accent_minor_gradient_color_0 - @color/salute_light_outline_inverse_accent_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_transparent_accent_gradient_hover_color_0 - @color/salute_light_outline_inverse_transparent_accent_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_transparent_accent_gradient_active_color_0 - @color/salute_light_outline_inverse_transparent_accent_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_transparent_accent_gradient_color_0 - @color/salute_light_outline_inverse_transparent_accent_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_gradient_hover_color_0 - @color/salute_light_outline_inverse_promo_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_gradient_active_color_0 - @color/salute_light_outline_inverse_promo_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_gradient_color_0 - @color/salute_light_outline_inverse_promo_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_minor_gradient_hover_color_0 - @color/salute_light_outline_inverse_promo_minor_gradient_hover_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_minor_gradient_active_color_0 - @color/salute_light_outline_inverse_promo_minor_gradient_active_color_1 - - 90.0 - - 0.0 - 1.0 - - - - #FFFFFFFF - #FF000000 - - @color/salute_light_outline_inverse_promo_minor_gradient_color_0 - @color/salute_light_outline_inverse_promo_minor_gradient_color_1 - - 90.0 - - 0.0 - 1.0 - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-styles.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-styles.xml deleted file mode 100644 index 78873e1e14..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/gradient-styles.xml +++ /dev/null @@ -1,4896 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantAthenaLayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantAthenaLayer1 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantAthenaLayer2 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantAthenaLayer3 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantAthenaLayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantJoyLayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantJoyLayer1 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantJoyLayer2 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantJoyLayer3 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantJoyLayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantBrandLayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantBrandLayer1 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantBrandLayer2 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantBrandLayer3 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantBrandLayer4 - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultModalSheetLayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultModalSheetLayer1 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantB2ELayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantB2ELayer1 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantB2ELayer2 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantB2ELayer3 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantB2ELayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantMainLayer0 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantMainLayer1 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantMainLayer2 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantMainLayer3 - @style/Salute.StylesSalute.Gradient.DarkBackgroundDefaultMobileAssistantMainLayer4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantAthenaLayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantAthenaLayer1 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantAthenaLayer2 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantAthenaLayer3 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantAthenaLayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantJoyLayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantJoyLayer1 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantJoyLayer2 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantJoyLayer3 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantJoyLayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantBrandLayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantBrandLayer1 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantBrandLayer2 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantBrandLayer3 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantBrandLayer4 - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultModalSheetLayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultModalSheetLayer1 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantB2ELayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantB2ELayer1 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantB2ELayer2 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantB2ELayer3 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantB2ELayer4 - - - - - - - - - - - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantMainLayer0 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantMainLayer1 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantMainLayer2 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantMainLayer3 - @style/Salute.StylesSalute.Gradient.LightBackgroundDefaultMobileAssistantMainLayer4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbadge-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbadge-attributes.xml deleted file mode 100644 index 7d3f332709..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbadge-attributes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbutton-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbutton-attributes.xml deleted file mode 100644 index dc89ea9d87..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/iconbutton-attributes.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/indicator-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/indicator-attributes.xml deleted file mode 100644 index 95767beff0..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/indicator-attributes.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/linkbutton-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/linkbutton-attributes.xml deleted file mode 100644 index 60ffc53c6e..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/linkbutton-attributes.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/listitemview-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/listitemview-attributes.xml deleted file mode 100644 index a5e1b2907d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/listitemview-attributes.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/notificationcontent-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/notificationcontent-attributes.xml deleted file mode 100644 index 0bd8e574ea..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/notificationcontent-attributes.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/popover-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/popover-attributes.xml deleted file mode 100644 index 0752795b6f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/popover-attributes.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/progressbar-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/progressbar-attributes.xml deleted file mode 100644 index e45c872c0e..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/progressbar-attributes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/rectskeleton-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/rectskeleton-attributes.xml deleted file mode 100644 index c01e04536b..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/rectskeleton-attributes.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/segment-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/segment-attributes.xml deleted file mode 100644 index d1addcc168..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/segment-attributes.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/segmentitem-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/segmentitem-attributes.xml deleted file mode 100644 index 8e08f53d9f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/segmentitem-attributes.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/shadow-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/shadow-attributes.xml deleted file mode 100644 index e442478444..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/shadow-attributes.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/shadows.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/shadows.xml deleted file mode 100644 index 1285928b67..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/shadows.xml +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - #14080808 - 0.0dp - 4.0dp - -4.0dp - 14.0dp - 2.0dp - #0A000000 - 0.0dp - 1.0dp - -1.0dp - 4.0dp - 0.0dp - - - #14000000 - 0.0dp - 24.0dp - -8.0dp - 48.0dp - 4.0dp - - - #14000000 - 0.0dp - 60.0dp - -8.0dp - 112.0dp - 6.0dp - - - #29080808 - 0.0dp - 4.0dp - -3.0dp - 12.0dp - 2.0dp - #14000000 - 0.0dp - 1.0dp - -2.0dp - 4.0dp - 0.0dp - - - #3D000000 - 0.0dp - 16.0dp - -8.0dp - 32.0dp - 4.0dp - - - #66000000 - 0.0dp - 60.0dp - -8.0dp - 112.0dp - 6.0dp - - - #14080808 - 0.0dp - -4.0dp - -4.0dp - 14.0dp - 0.0dp - #08000000 - 0.0dp - -1.0dp - -1.0dp - 4.0dp - 0.0dp - - - #14000000 - 0.0dp - -24.0dp - -8.0dp - 48.0dp - 0.0dp - - - #14000000 - 0.0dp - -60.0dp - -8.0dp - 112.0dp - 0.0dp - - - #33080808 - 0.0dp - -4.0dp - -3.0dp - 12.0dp - 0.0dp - #08000000 - 0.0dp - -1.0dp - -1.0dp - 4.0dp - 0.0dp - - - #3D000000 - 0.0dp - -16.0dp - -8.0dp - 32.0dp - 0.0dp - - - #66000000 - 0.0dp - -60.0dp - -8.0dp - 112.0dp - 0.0dp - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/shape-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/shape-attributes.xml deleted file mode 100644 index 4d928cae48..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/shape-attributes.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/shapes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/shapes.xml deleted file mode 100644 index 66b198f5af..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/shapes.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/spacing-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/spacing-attributes.xml deleted file mode 100644 index 6078493559..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/spacing-attributes.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/style-dimens.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/style-dimens.xml deleted file mode 100644 index 01575f28a8..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/style-dimens.xml +++ /dev/null @@ -1,1213 +0,0 @@ - - - - - 88.0dp - 88.0dp - 88.0dp - 88.0dp - 1.0dp - 7.0dp - 48.0dp - 48.0dp - 48.0dp - 48.0dp - 1.0dp - 3.0dp - 36.0dp - 36.0dp - 36.0dp - 36.0dp - 0.0dp - 2.0dp - 24.0dp - 24.0dp - 24.0dp - 24.0dp - 0.0dp - 0.0dp - 2.0dp - 16.0dp - 28.0dp - 11.0dp - 11.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - 24.0dp - 9.0dp - 9.0dp - 3.0dp - 3.0dp - 12.0dp - 12.0dp - 20.0dp - 7.0dp - 7.0dp - 2.0dp - 2.0dp - 12.0dp - 12.0dp - 16.0dp - 4.0dp - 4.0dp - 2.0dp - 2.0dp - 10.0dp - 10.0dp - 28.0dp - 11.0dp - 11.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - 24.0dp - 9.0dp - 9.0dp - 3.0dp - 3.0dp - 12.0dp - 12.0dp - 20.0dp - 7.0dp - 7.0dp - 2.0dp - 2.0dp - 12.0dp - 12.0dp - 16.0dp - 4.0dp - 4.0dp - 2.0dp - 2.0dp - 10.0dp - 10.0dp - 28.0dp - 11.0dp - 11.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - 24.0dp - 9.0dp - 9.0dp - 3.0dp - 3.0dp - 12.0dp - 12.0dp - 20.0dp - 7.0dp - 7.0dp - 2.0dp - 2.0dp - 12.0dp - 12.0dp - 16.0dp - 4.0dp - 4.0dp - 2.0dp - 2.0dp - 10.0dp - 10.0dp - 28.0dp - 6.0dp - 6.0dp - 16.0dp - 24.0dp - 6.0dp - 6.0dp - 12.0dp - 20.0dp - 4.0dp - 4.0dp - 12.0dp - 16.0dp - 3.0dp - 3.0dp - 10.0dp - 28.0dp - 6.0dp - 6.0dp - 16.0dp - 24.0dp - 6.0dp - 6.0dp - 12.0dp - 20.0dp - 4.0dp - 4.0dp - 12.0dp - 16.0dp - 3.0dp - 3.0dp - 10.0dp - 28.0dp - 6.0dp - 6.0dp - 16.0dp - 24.0dp - 6.0dp - 6.0dp - 12.0dp - 20.0dp - 4.0dp - 4.0dp - 12.0dp - 16.0dp - 3.0dp - 3.0dp - 10.0dp - 56.0dp - 98.0dp - 24.0dp - 24.0dp - 24.0dp - 22.0dp - 2.0dp - 8.0dp - 4.0dp - -2.0dp - 48.0dp - 84.0dp - 20.0dp - 20.0dp - 24.0dp - 22.0dp - 2.0dp - 6.0dp - 4.0dp - 40.0dp - 71.0dp - 16.0dp - 16.0dp - 24.0dp - 22.0dp - 2.0dp - 4.0dp - 4.0dp - -2.0dp - 32.0dp - 57.0dp - 12.0dp - 12.0dp - 16.0dp - 16.0dp - 1.0dp - 4.0dp - 2.0dp - 56.0dp - 56.0dp - 16.0dp - 16.0dp - 24.0dp - 22.0dp - 2.0dp - -2.0dp - 48.0dp - 48.0dp - 12.0dp - 12.0dp - 24.0dp - 22.0dp - 2.0dp - 40.0dp - 40.0dp - 8.0dp - 8.0dp - 24.0dp - 22.0dp - 2.0dp - -2.0dp - 32.0dp - 32.0dp - 8.0dp - 8.0dp - 16.0dp - 16.0dp - 1.0dp - 56.0dp - 50.0dp - 0.0dp - 0.0dp - 24.0dp - 22.0dp - 2.0dp - 8.0dp - 48.0dp - 44.0dp - 0.0dp - 0.0dp - 24.0dp - 22.0dp - 2.0dp - 6.0dp - 40.0dp - 39.0dp - 0.0dp - 0.0dp - 24.0dp - 22.0dp - 2.0dp - 4.0dp - 32.0dp - 33.0dp - 0.0dp - 0.0dp - 16.0dp - 16.0dp - 1.0dp - 4.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 6.0dp - 6.0dp - 6.0dp - 6.0dp - 3.0dp - 3.0dp - 3.0dp - 0.0dp - 1.0dp - 1.0dp - 2.0dp - 9.0dp - 12.0dp - 0.0dp - 6.0dp - 2.0dp - 0.0dp - 2.0dp - 12.0dp - 2.0dp - 24.0dp - 24.0dp - 1.0dp - 1.0dp - 1.5dp - 6.0dp - 8.0dp - 0.0dp - 4.0dp - 2.0dp - 0.0dp - 1.0dp - 8.0dp - 2.0dp - 16.0dp - 16.0dp - 36.0dp - 12.0dp - 24.0dp - 10.0dp - 48.0dp - 16.0dp - 16.0dp - 8.0dp - 8.0dp - 24.0dp - 24.0dp - -2.0dp - 40.0dp - 14.0dp - 14.0dp - 6.0dp - 6.0dp - 24.0dp - 24.0dp - 32.0dp - 12.0dp - 12.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - 24.0dp - 10.0dp - 10.0dp - 2.0dp - 2.0dp - 12.0dp - 12.0dp - -4.0dp - 44.0dp - 14.0dp - 12.0dp - 8.0dp - 8.0dp - 24.0dp - 24.0dp - -6.0dp - 36.0dp - 12.0dp - 10.0dp - 6.0dp - 6.0dp - 24.0dp - 24.0dp - -8.0dp - 28.0dp - 10.0dp - 8.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - -6.0dp - 20.0dp - 6.0dp - 6.0dp - 2.0dp - 2.0dp - 12.0dp - 12.0dp - 2.0dp - 2.0dp - 8.0dp - 8.0dp - 2.0dp - 2.0dp - 8.0dp - 8.0dp - 28.0dp - 28.0dp - 10.0dp - 10.0dp - 24.0dp - 24.0dp - 8.0dp - 8.0dp - 20.0dp - 20.0dp - 6.0dp - 6.0dp - 16.0dp - 16.0dp - 4.0dp - 4.0dp - 12.0dp - 12.0dp - 2.0dp - 2.0dp - 1.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 6.0dp - 6.0dp - 4.0dp - 4.0dp - 4.0dp - 182.0dp - 8.0dp - 20.0dp - 8.0dp - 20.0dp - 16.0dp - 3.0dp - 3.0dp - 0.0dp - 1.0dp - 2.0dp - 10.0dp - 10.0dp - 1.0dp - 10.0dp - 2.0dp - 24.0dp - 24.0dp - 1.0dp - 1.5dp - 8.0dp - 8.0dp - 1.0dp - 8.0dp - 2.0dp - 18.0dp - 18.0dp - 12.0dp - 10.0dp - -2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - -2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - 2.0dp - -2.0dp - 102.0dp - 56.0dp - 24.0dp - 24.0dp - 24.0dp - 24.0dp - 6.0dp - 6.0dp - 6.0dp - 86.0dp - 16.0dp - 16.0dp - 88.0dp - 48.0dp - 20.0dp - 20.0dp - 24.0dp - 24.0dp - 4.0dp - 4.0dp - 4.0dp - 72.0dp - 12.0dp - 12.0dp - -2.0dp - 75.0dp - 40.0dp - 16.0dp - 16.0dp - 24.0dp - 24.0dp - 2.0dp - 2.0dp - 2.0dp - 59.0dp - 8.0dp - 8.0dp - 61.0dp - 32.0dp - 12.0dp - 12.0dp - 16.0dp - 16.0dp - 2.0dp - 2.0dp - 2.0dp - 53.0dp - 8.0dp - 8.0dp - 12.0dp - 4.0dp - 44.0dp - 28.0dp - 24.0dp - 24.0dp - 32.0dp - 20.0dp - 16.0dp - 16.0dp - 12.0dp - 4.0dp - 44.0dp - 28.0dp - 24.0dp - 24.0dp - 32.0dp - 20.0dp - 16.0dp - 16.0dp - 12.0dp - 4.0dp - 44.0dp - 28.0dp - 24.0dp - 24.0dp - 32.0dp - 20.0dp - 16.0dp - 16.0dp - 4.0dp - 6.0dp - 6.0dp - 6.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 4.0dp - 4.0dp - 32.0dp - 32.0dp - 16.0dp - 16.0dp - 6.0dp - 6.0dp - 8.0dp - 8.0dp - 6.0dp - 6.0dp - 4.0dp - 4.0dp - 6.0dp - 4.0dp - 2.0dp - -2.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 4.0dp - 6.0dp - 40.0dp - 40.0dp - 24.0dp - 24.0dp - 6.0dp - 6.0dp - 8.0dp - 6.0dp - 4.0dp - 6.0dp - 6.0dp - 4.0dp - 4.0dp - 4.0dp - 4.0dp - 0.0dp - 6.0dp - 6.0dp - 14.0dp - 14.0dp - 12.0dp - 12.0dp - 6.0dp - 8.0dp - 48.0dp - 48.0dp - 24.0dp - 24.0dp - 8.0dp - 8.0dp - 10.0dp - 6.0dp - 6.0dp - 7.0dp - 6.0dp - 4.0dp - 4.0dp - 6.0dp - 6.0dp - 2.0dp - 8.0dp - 8.0dp - 2.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 8.0dp - 10.0dp - 56.0dp - 56.0dp - 24.0dp - 24.0dp - 8.0dp - 8.0dp - 12.0dp - 6.0dp - 6.0dp - 8.0dp - 6.0dp - 4.0dp - 4.0dp - 9.0dp - 9.0dp - 2.0dp - 8.0dp - 8.0dp - 2.0dp - 18.0dp - 2.0dp - 36.0dp - 6.0dp - 6.0dp - 6.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 4.0dp - 4.0dp - 32.0dp - 32.0dp - 16.0dp - 16.0dp - 6.0dp - 6.0dp - 8.0dp - 8.0dp - 6.0dp - 6.0dp - 4.0dp - 4.0dp - 6.0dp - 4.0dp - 2.0dp - -2.0dp - 12.0dp - 12.0dp - 8.0dp - 12.0dp - 12.0dp - 4.0dp - 6.0dp - 40.0dp - 40.0dp - 24.0dp - 24.0dp - 6.0dp - 6.0dp - 8.0dp - 6.0dp - 4.0dp - 6.0dp - 6.0dp - 4.0dp - 4.0dp - 4.0dp - 12.0dp - 0.0dp - 6.0dp - 6.0dp - 14.0dp - 14.0dp - 12.0dp - 12.0dp - 12.0dp - 6.0dp - 8.0dp - 48.0dp - 48.0dp - 24.0dp - 24.0dp - 8.0dp - 8.0dp - 10.0dp - 6.0dp - 6.0dp - 7.0dp - 6.0dp - 4.0dp - 4.0dp - 6.0dp - 12.0dp - 2.0dp - 8.0dp - 8.0dp - 2.0dp - 16.0dp - 16.0dp - 16.0dp - 12.0dp - 12.0dp - 8.0dp - 10.0dp - 56.0dp - 56.0dp - 24.0dp - 24.0dp - 8.0dp - 8.0dp - 12.0dp - 6.0dp - 6.0dp - 8.0dp - 6.0dp - 4.0dp - 4.0dp - 9.0dp - 12.0dp - 2.0dp - 8.0dp - 8.0dp - 16.0dp - -2.0dp - 6.0dp - 14.0dp - 14.0dp - 11.0dp - 11.0dp - 8.0dp - 20.0dp - 8.0dp - 10.0dp - 4.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 6.0dp - 14.0dp - 6.0dp - 9.0dp - 16.0dp - 6.0dp - 16.0dp - 8.0dp - 10.0dp - 12.0dp - 8.0dp - 8.0dp - 32.0dp - 32.0dp - 32.0dp - 32.0dp - 24.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 24.0dp - -2.0dp - 6.0dp - 6.0dp - 6.0dp - 6.0dp - 16.0dp - 4.0dp - 4.0dp - 4.0dp - 4.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 24.0dp - -2.0dp - 14.0dp - 14.0dp - 14.0dp - 14.0dp - 16.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 16.0dp - 24.0dp - 4.0dp - 6.0dp - 6.0dp - 4.0dp - 2.0dp - 8.0dp - 6.0dp - 2.0dp - 6.0dp - 2.0dp - 3.0dp - 4.0dp - 2.0dp - 3.0dp - 8.0dp - 6.0dp - 32.0dp - 8.0dp - 18.0dp - 18.0dp - 20.0dp - 20.0dp - 64.0dp - -2.0dp - 8.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 56.0dp - 8.0dp - 14.0dp - 14.0dp - 12.0dp - 12.0dp - 48.0dp - -2.0dp - 6.0dp - 12.0dp - 12.0dp - 11.0dp - 11.0dp - 40.0dp - 6.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 32.0dp - 8.0dp - 18.0dp - 18.0dp - 16.0dp - 16.0dp - 56.0dp - -2.0dp - 8.0dp - 16.0dp - 16.0dp - 12.0dp - 12.0dp - 48.0dp - 8.0dp - 14.0dp - 14.0dp - 8.0dp - 8.0dp - 40.0dp - -2.0dp - 6.0dp - 12.0dp - 12.0dp - 7.0dp - 7.0dp - 32.0dp - 6.0dp - 8.0dp - 8.0dp - 4.0dp - 4.0dp - 24.0dp - -2.0dp - 8.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 56.0dp - 8.0dp - 14.0dp - 14.0dp - 12.0dp - 12.0dp - 48.0dp - -2.0dp - 6.0dp - 12.0dp - 12.0dp - 11.0dp - 11.0dp - 40.0dp - 6.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 32.0dp - -2.0dp - 8.0dp - 16.0dp - 16.0dp - 12.0dp - 12.0dp - 48.0dp - 8.0dp - 14.0dp - 14.0dp - 8.0dp - 8.0dp - 40.0dp - -2.0dp - 6.0dp - 12.0dp - 12.0dp - 7.0dp - 7.0dp - 32.0dp - 6.0dp - 8.0dp - 8.0dp - 4.0dp - 4.0dp - 24.0dp - 8.0dp - -2.0dp - 200.0dp - 200.0dp - -2.0dp - 160.0dp - 160.0dp - 8.0dp - -2.0dp - 200.0dp - 200.0dp - -2.0dp - 160.0dp - 160.0dp - 4.0dp - 12.0dp - 32.0dp - 10.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - -2.0dp - 14.0dp - 36.0dp - 12.0dp - 14.0dp - 14.0dp - 11.0dp - 11.0dp - 18.0dp - 40.0dp - 16.0dp - 18.0dp - 18.0dp - 14.0dp - 14.0dp - -2.0dp - 20.0dp - 42.0dp - 18.0dp - 20.0dp - 20.0dp - 17.0dp - 17.0dp - -2.0dp - 20.0dp - 52.0dp - 20.0dp - 18.0dp - 18.0dp - 16.0dp - 16.0dp - 18.0dp - 48.0dp - 18.0dp - 18.0dp - 18.0dp - 14.0dp - 14.0dp - -2.0dp - 14.0dp - 36.0dp - 14.0dp - 14.0dp - 14.0dp - 11.0dp - 11.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 12.0dp - 12.0dp - 10.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 10.0dp - -2.0dp - 14.0dp - 14.0dp - 12.0dp - 14.0dp - 14.0dp - 11.0dp - 11.0dp - 12.0dp - 18.0dp - 18.0dp - 16.0dp - 18.0dp - 18.0dp - 14.0dp - 14.0dp - 14.0dp - -2.0dp - 20.0dp - 20.0dp - 18.0dp - 20.0dp - 20.0dp - 17.0dp - 17.0dp - 16.0dp - -2.0dp - 20.0dp - 20.0dp - 20.0dp - 18.0dp - 18.0dp - 16.0dp - 16.0dp - 16.0dp - 18.0dp - 18.0dp - 18.0dp - 18.0dp - 18.0dp - 14.0dp - 14.0dp - 14.0dp - -2.0dp - 14.0dp - 14.0dp - 14.0dp - 14.0dp - 14.0dp - 11.0dp - 11.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 12.0dp - 8.0dp - 8.0dp - 10.0dp - 4.0dp - 20.0dp - 8.0dp - 8.0dp - 8.0dp - 22.0dp - 12.0dp - 11.0dp - 11.0dp - 22.0dp - 14.0dp - 14.0dp - 14.0dp - 22.0dp - 16.0dp - 17.0dp - 17.0dp - 32.0dp - 16.0dp - 16.0dp - 16.0dp - 30.0dp - 14.0dp - 14.0dp - 14.0dp - 22.0dp - 12.0dp - 11.0dp - 11.0dp - 20.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 8.0dp - 10.0dp - 12.0dp - 11.0dp - 11.0dp - 12.0dp - 14.0dp - 14.0dp - 14.0dp - 14.0dp - 16.0dp - 17.0dp - 17.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 16.0dp - 14.0dp - 14.0dp - 14.0dp - 14.0dp - 12.0dp - 11.0dp - 11.0dp - 12.0dp - 8.0dp - 8.0dp - 8.0dp - 10.0dp - 2.0dp - 2.0dp - 4.0dp - 6.0dp - 8.0dp - 10.0dp - 16.0dp - 14.0dp - 12.0dp - 10.0dp - 4.0dp - 6.0dp - 8.0dp - 10.0dp - 16.0dp - 14.0dp - 12.0dp - 10.0dp - 2.0dp - 4.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 8.0dp - 2.0dp - 0.0dp - 44.0dp - 26.0dp - 16.0dp - 12.0dp - 4.0dp - 16.0dp - 24.0dp - 1.0dp - 60.0dp - 36.0dp - 24.0dp - 16.0dp - 8.0dp - 28.0dp - 28.0dp - 1.5dp - 92.0dp - 56.0dp - 36.0dp - 24.0dp - 12.0dp - 36.0dp - 40.0dp - 2.0dp - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionend.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionend.xml deleted file mode 100644 index 6254e9feea..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionend.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionstart.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionstart.xml deleted file mode 100644 index 1b606ccb6d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionclearactionstart.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionend.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionend.xml deleted file mode 100644 index a6365f0a8f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionend.xml +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionstart.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionstart.xml deleted file mode 100644 index 02e5467cd8..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemclearactionstart.xml +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionend.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionend.xml deleted file mode 100644 index 7c81274acc..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionend.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionstart.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionstart.xml deleted file mode 100644 index 8bce75a200..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionitemsolidactionstart.xml +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionend.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionend.xml deleted file mode 100644 index 949a4964a1..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionend.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionstart.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionstart.xml deleted file mode 100644 index 91a6c494a0..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-accordionsolidactionstart.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatar.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatar.xml deleted file mode 100644 index a83f597e1d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatar.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatargroup.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatargroup.xml deleted file mode 100644 index 73e0e14c8a..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-avatargroup.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgeclear.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgeclear.xml deleted file mode 100644 index c86a9c2863..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgeclear.xml +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgesolid.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgesolid.xml deleted file mode 100644 index 5e930c0da2..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgesolid.xml +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgetransparent.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgetransparent.xml deleted file mode 100644 index 2fa59560da..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-badgetransparent.xml +++ /dev/null @@ -1,428 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbutton.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbutton.xml deleted file mode 100644 index 2801353d1b..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbutton.xml +++ /dev/null @@ -1,320 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbuttongroup.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbuttongroup.xml deleted file mode 100644 index cb2622a6a7..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-basicbuttongroup.xml +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-cell.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-cell.xml deleted file mode 100644 index 88584cc298..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-cell.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkbox.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkbox.xml deleted file mode 100644 index 1936d92b8e..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkbox.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkboxgroup.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkboxgroup.xml deleted file mode 100644 index 46bbf75bfa..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-checkboxgroup.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chip.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chip.xml deleted file mode 100644 index 243c88adb5..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chip.xml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupdense.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupdense.xml deleted file mode 100644 index a05c27f22b..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupdense.xml +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupwide.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupwide.xml deleted file mode 100644 index bd9eb057ca..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-chipgroupwide.xml +++ /dev/null @@ -1,210 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-codeinput.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-codeinput.xml deleted file mode 100644 index 7651fb3d60..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-codeinput.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-counter.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-counter.xml deleted file mode 100644 index eac3ee02a2..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-counter.xml +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-divider.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-divider.xml deleted file mode 100644 index c78d78ccf4..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-divider.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemnormal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemnormal.xml deleted file mode 100644 index b8a60c83f7..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemnormal.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemtight.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemtight.xml deleted file mode 100644 index ff37a5ef72..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenuitemtight.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulistnormal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulistnormal.xml deleted file mode 100644 index 02faa41f1d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulistnormal.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulisttight.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulisttight.xml deleted file mode 100644 index dc7b90fae0..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenulisttight.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenunormal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenunormal.xml deleted file mode 100644 index ac67c2ec72..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenunormal.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenutight.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenutight.xml deleted file mode 100644 index ad649677b2..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-dropdownmenutight.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchip.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchip.xml deleted file mode 100644 index cbc54e5398..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchip.xml +++ /dev/null @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupdense.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupdense.xml deleted file mode 100644 index 68bbbe76ce..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupdense.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupwide.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupwide.xml deleted file mode 100644 index 095b2aa85d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-embeddedchipgroupwide.xml +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgeclear.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgeclear.xml deleted file mode 100644 index ac29156970..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgeclear.xml +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgesolid.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgesolid.xml deleted file mode 100644 index ed6996d4da..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgesolid.xml +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgetransparent.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgetransparent.xml deleted file mode 100644 index b4368c81ec..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbadgetransparent.xml +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbutton.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbutton.xml deleted file mode 100644 index 4c4b56d9e1..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbutton.xml +++ /dev/null @@ -1,570 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbuttongroup.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbuttongroup.xml deleted file mode 100644 index ee2c02a8ad..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-iconbuttongroup.xml +++ /dev/null @@ -1,350 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-indicator.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-indicator.xml deleted file mode 100644 index 8668a74f3f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-indicator.xml +++ /dev/null @@ -1,193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-linkbutton.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-linkbutton.xml deleted file mode 100644 index c88413aae7..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-linkbutton.xml +++ /dev/null @@ -1,213 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemnormal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemnormal.xml deleted file mode 100644 index 8bfdc04247..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemnormal.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemtight.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemtight.xml deleted file mode 100644 index 8407794732..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listitemtight.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listnormal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listnormal.xml deleted file mode 100644 index f3503bee0c..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listnormal.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listtight.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listtight.xml deleted file mode 100644 index 41c236a1c5..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-listtight.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-modal.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-modal.xml deleted file mode 100644 index 7c2a49aabd..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-modal.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcompact.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcompact.xml deleted file mode 100644 index 0a6dc88625..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcompact.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcontent.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcontent.xml deleted file mode 100644 index 83bd4d8aac..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationcontent.xml +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationloose.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationloose.xml deleted file mode 100644 index 17a8b18c6c..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-notificationloose.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-popover.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-popover.xml deleted file mode 100644 index 39764225bf..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-popover.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-progressbar.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-progressbar.xml deleted file mode 100644 index 931d2092a7..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-progressbar.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radiobox.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radiobox.xml deleted file mode 100644 index ce0f175ad4..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radiobox.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radioboxgroup.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radioboxgroup.xml deleted file mode 100644 index f2b39f3955..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-radioboxgroup.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-rectskeleton.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-rectskeleton.xml deleted file mode 100644 index b765941df5..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-rectskeleton.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-scrollbar.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-scrollbar.xml deleted file mode 100644 index 26b628890d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-scrollbar.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segment.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segment.xml deleted file mode 100644 index 5aeda6b1c1..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segment.xml +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segmentitem.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segmentitem.xml deleted file mode 100644 index 7c7e01a030..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-segmentitem.xml +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-shadows.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-shadows.xml deleted file mode 100644 index 1624b6b4c8..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-shadows.xml +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - - - - - - - - - - - - - @style/Salute.StylesSalute.ShadowLayer.DownHardSLayer1 - @style/Salute.StylesSalute.ShadowLayer.DownHardSLayer2 - - - - - - - - - - - - - - @style/Salute.StylesSalute.ShadowLayer.UpSoftSLayer1 - @style/Salute.StylesSalute.ShadowLayer.UpSoftSLayer2 - - - - - - - - - - - - - - @style/Salute.StylesSalute.ShadowLayer.UpHardSLayer1 - @style/Salute.StylesSalute.ShadowLayer.UpHardSLayer2 - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-switch.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-switch.xml deleted file mode 100644 index 65de1ba0d6..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-switch.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textarea.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textarea.xml deleted file mode 100644 index 9cf513c267..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textarea.xml +++ /dev/null @@ -1,966 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textfield.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textfield.xml deleted file mode 100644 index 2bd8ce4f8a..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textfield.xml +++ /dev/null @@ -1,1155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textskeleton.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textskeleton.xml deleted file mode 100644 index 18b6f75a89..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-textskeleton.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-toast.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-toast.xml deleted file mode 100644 index a2bb589d57..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-toast.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-tooltip.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-tooltip.xml deleted file mode 100644 index 76839d9056..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/styles-tooltip.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/text-appearances.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/text-appearances.xml deleted file mode 100644 index a382e6dcba..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/text-appearances.xml +++ /dev/null @@ -1,516 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/textarea-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/textarea-attributes.xml deleted file mode 100644 index 6ce968829f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/textarea-attributes.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/textfield-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/textfield-attributes.xml deleted file mode 100644 index c0f3453aae..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/textfield-attributes.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/textskeleton-attributes.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/textskeleton-attributes.xml deleted file mode 100644 index ba13ab568f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/textskeleton-attributes.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/values/theme.xml b/tokens/stylessalute.view/src/main/theme-builder-res/values/theme.xml deleted file mode 100644 index dc007b0dd0..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/values/theme.xml +++ /dev/null @@ -1,3677 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_avatar_background.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_avatar_background.xml deleted file mode 100644 index 15fdebb265..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_avatar_background.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_border_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_border_width.xml deleted file mode 100644 index 148db5bac0..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_border_width.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_height.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_height.xml deleted file mode 100644 index ddbab90126..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_height.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_width.xml deleted file mode 100644 index 04c888db98..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_m_toggle_icon_width.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_border_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_border_width.xml deleted file mode 100644 index 9a95185332..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_border_width.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_height.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_height.xml deleted file mode 100644 index 3a2e03ecec..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_height.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_width.xml deleted file mode 100644 index 38c79e04a1..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_s_toggle_icon_width.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_toggle_border_offset.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_toggle_border_offset.xml deleted file mode 100644 index fe48084e4f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_check_box_toggle_border_offset.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_l_dot_size.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_l_dot_size.xml deleted file mode 100644 index 6c38cb6336..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_l_dot_size.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_m_dot_size.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_m_dot_size.xml deleted file mode 100644 index 0b18d7f3c2..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_m_dot_size.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_s_dot_size.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_s_dot_size.xml deleted file mode 100644 index f187a10ee8..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_code_input_s_dot_size.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_progress_bar_progress_color.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_progress_bar_progress_color.xml deleted file mode 100644 index 307323f688..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_progress_bar_progress_color.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_m_toggle_border_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_m_toggle_border_width.xml deleted file mode 100644 index 338a17e27d..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_m_toggle_border_width.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_s_toggle_border_width.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_s_toggle_border_width.xml deleted file mode 100644 index 18609acb4f..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_s_toggle_border_width.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_toggle_border_offset.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_toggle_border_offset.xml deleted file mode 100644 index dcc18eb925..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_radio_box_toggle_border_offset.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_rect_skeleton_rect_skeleton_shimmer.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_rect_skeleton_rect_skeleton_shimmer.xml deleted file mode 100644 index a3b9a1e396..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_rect_skeleton_rect_skeleton_shimmer.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_text_skeleton_text_skeleton_shimmer.xml b/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_text_skeleton_text_skeleton_shimmer.xml deleted file mode 100644 index a4118b0a9a..0000000000 --- a/tokens/stylessalute.view/src/main/theme-builder-res/xml/salute_text_skeleton_text_skeleton_shimmer.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt deleted file mode 100644 index 6884ac1511..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ThemeUtils.kt +++ /dev/null @@ -1,22 +0,0 @@ -package com.sdds.stylessalute - -import android.view.View -import com.sdds.uikit.fixtures.ComponentScope -import com.sdds.uikit.fixtures.component -import org.hamcrest.Matcher - -internal fun themedComponent( - viewMatcherFactory: ((View) -> Matcher)? = null, - action: ((View) -> Unit)? = null, - skipDefaultCaptureRoboImage: Boolean = false, - factory: ComponentScope.() -> View, -) { - component( - R.style.Salute_StylesSalute_MaterialComponents_DayNight, - R.attr.salute_backgroundDefaultPrimary, - viewMatcherFactory, - action, - skipDefaultCaptureRoboImage, - factory, - ) -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAccordionScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAccordionScreenshotTest.kt deleted file mode 100644 index d471b085fe..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAccordionScreenshotTest.kt +++ /dev/null @@ -1,153 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.AccordionTestCases -import org.hamcrest.core.AllOf.allOf -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemAccordionScreenshotTest( - theme: String, -) : AccordionTestCases(theme) { - - @Test - override fun testAccordionSolidActionEndSizeL() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionCommon(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndL) - } - } - - @Test - override fun testAccordionSolidActionStartSizeMAmountTen() { - themedComponent { - accordionAmountTen(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartM) - } - } - - @Test - override fun testAccordionClearActionEndSizeSHasDivider() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionHasDivider(R.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndS) - } - } - - @Test - override fun testAccordionClearActionStartSizeXs() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionCommon(R.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartXs) - } - } - - @Test - override fun testAccordionSolidActionEndSizeLNoTextNoContent() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionSolidActionEndSizeLNoTextNoContent( - R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndL, - ) - } - } - - @Test - override fun testAccordionSolidActionEndSizeLAmountTen() { - themedComponent { - accordionAmountTen(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndL) - } - } - - @Test - override fun testAccordionClearActionStartSizeH2AmountTen() { - themedComponent { - accordionAmountTen(R.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH2) - } - } - - @Test - override fun testAccordionSolidActionEndSizeH2() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionCommon(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndH2) - } - } - - @Test - override fun testAccordionSolidActionStartSizeH3() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionCommon(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionStartH3) - } - } - - @Test - override fun testAccordionClearActionEndSizeH4HasDivider() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionHasDivider(R.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionEndH4) - } - } - - @Test - override fun testAccordionClearActionStartSizeH5() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionHasDivider(R.style.Salute_StylesSalute_ComponentOverlays_AccordionClearActionStartH5) - } - } - - @Test - override fun testAccordionSolidActionEndSizeLLongText() { - themedComponent( - action = { - onView(allOf(withId(it.id))) - .perform(click()) - }, - ) { - accordionLongText(R.style.Salute_StylesSalute_ComponentOverlays_AccordionSolidActionEndL) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAvatarScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAvatarScreenshotTest.kt deleted file mode 100644 index c3a150d3e3..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemAvatarScreenshotTest.kt +++ /dev/null @@ -1,112 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.AvatarTestCases -import org.junit.Ignore -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemAvatarScreenshotTest( - theme: String, -) : AvatarTestCases(theme) { - - @Test - override fun testAvatarSizeXXL() { - themedComponent { - avatarSizeXXL(R.style.Salute_StylesSalute_ComponentOverlays_AvatarXxl) - } - } - - @Ignore("Avatar picture does not downloads before taking screenshot") - @Test - override fun testAvatarSizeL() { - themedComponent { - avatarSizeL(R.style.Salute_StylesSalute_ComponentOverlays_AvatarL) - } - } - - @Test - override fun testAvatarSizeM() { - themedComponent { - avatarSizeM(R.style.Salute_StylesSalute_ComponentOverlays_AvatarM) - } - } - - @Ignore("Avatar picture does not downloads before taking screenshot") - @Test - override fun testAvatarSizeS() { - themedComponent { - avatarSizeS(R.style.Salute_StylesSalute_ComponentOverlays_AvatarS) - } - } - - @Test - override fun testAvatarGroupSizeS() { - themedComponent { - avatarGroupSizeS(R.style.Salute_StylesSalute_ComponentOverlays_AvatarGroupS) - } - } - - @Test - override fun testAvatarSizeXXLCounterTopStart() { - themedComponent { - avatarSizeXXLCounterTopStart(R.style.Salute_StylesSalute_ComponentOverlays_AvatarXxl) - } - } - - @Test - override fun testAvatarSizeLCounterTopEnd() { - themedComponent { - avatarSizeLCounterTopEnd(R.style.Salute_StylesSalute_ComponentOverlays_AvatarL) - } - } - - @Test - override fun testAvatarSizeMCounterBottomEnd() { - themedComponent { - avatarSizeMCounterBottomEnd(R.style.Salute_StylesSalute_ComponentOverlays_AvatarM) - } - } - - @Test - override fun testAvatarSizeSCounterBottomStart() { - themedComponent { - avatarSizeSCounterBottomStart(R.style.Salute_StylesSalute_ComponentOverlays_AvatarS) - } - } - - @Test - override fun testAvatarSizeXXLBadgeTopStart() { - themedComponent { - avatarSizeXXLBadgeTopStart(R.style.Salute_StylesSalute_ComponentOverlays_AvatarXxl) - } - } - - @Test - override fun testAvatarSizeXXLBadgeBottomEnd() { - themedComponent { - avatarSizeXXLBadgeBottomEnd(R.style.Salute_StylesSalute_ComponentOverlays_AvatarXxl) - } - } - - @Test - override fun testAvatarSizeLBadgeTopEnd() { - themedComponent { - avatarSizeLBadgeTopEnd(R.style.Salute_StylesSalute_ComponentOverlays_AvatarL) - } - } - - @Test - override fun testAvatarSizeMBadgeBottomStart() { - themedComponent { - avatarSizeMBadgeBottomStart(R.style.Salute_StylesSalute_ComponentOverlays_AvatarM) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemBadgeScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemBadgeScreenshotTest.kt deleted file mode 100644 index d6036723df..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemBadgeScreenshotTest.kt +++ /dev/null @@ -1,144 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.BadgeTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemBadgeScreenshotTest( - theme: String, -) : BadgeTestCases(theme) { - - @Test - override fun testBadgeSizeLDefaultContentLeft() { - themedComponent { - badgeSizeLDefaultContentLeft(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLDefault) - } - } - - @Test - override fun testBadgeSizeMAccentContentRight() { - themedComponent { - badgeSizeMAccentContentRight(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMAccent) - } - } - - @Test - override fun testBadgeSizeSPositivePilled() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSPilledPositive) - } - } - - @Test - override fun testBadgeSizeXsWarning() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidXsWarning) - } - } - - @Test - override fun testBadgeSizeLNegative() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidLNegative) - } - } - - @Test - override fun testBadgeSizeMDark() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidMBlack) - } - } - - @Test - override fun testBadgeSizeSLight() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeSolidSWhite) - } - } - - @Test - override fun testBadgeSizeLDefaultClear() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeClearLDefault) - } - } - - @Test - override fun testBadgeSizeLDefaultTransparent() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentLDefault) - } - } - - @Test - override fun testBadgeSizeMNegativeClear() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeClearMNegative) - } - } - - @Test - override fun testBadgeSizeSWarningPilledTransparent() { - themedComponent { - badgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_BadgeTransparentSPilledWarning) - } - } - - @Test - override fun testIconBadgeSizeLDefault() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLDefault) - } - } - - @Test - override fun testIconBadgeSizeMAccentPilled() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMPilledAccent) - } - } - - @Test - override fun testIconBadgeSizeSPositiveClear() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeClearSPositive) - } - } - - @Test - override fun testIconBadgeSizeXsWarningTransparent() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeTransparentXsWarning) - } - } - - @Test - override fun testIconBadgeSizeLNegative() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidLNegative) - } - } - - @Test - override fun testIconBadgeSizeMBlack() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidMBlack) - } - } - - @Test - override fun testIconBadgeSizeSWhite() { - themedComponent { - iconBadgeCommon(R.style.Salute_StylesSalute_ComponentOverlays_IconBadgeSolidSWhite) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemButtonScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemButtonScreenshotTest.kt deleted file mode 100644 index b3aa3b77b6..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemButtonScreenshotTest.kt +++ /dev/null @@ -1,293 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ButtonTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemButtonScreenshotTest( - theme: String, -) : ButtonTestCases(theme) { - - @Test - override fun testButtonSizeLDefault() { - themedComponent { - buttonSizeLDefault(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLDefault) - } - } - - @Test - override fun testButtonSizeMAccent() { - themedComponent { - buttonSizeMAccent(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMAccent) - } - } - - @Test - override fun testButtonSizeSWarning() { - themedComponent { - buttonSizeSWarning(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSWarning) - } - } - - @Test - override fun testButtonSizeXSDark() { - themedComponent { - buttonSizeXSDark(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsDark) - } - } - - @Test - override fun testButtonSizeLIsLoading() { - themedComponent { - buttonSizeLIsLoading(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLDefault) - } - } - - @Test - override fun testButtonSizeLDisabled() { - themedComponent { - buttonSizeLDisabled(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLDefault) - } - } - - @Test - override fun testButtonSizeLSecondary() { - themedComponent { - buttonSizeLSecondary(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLSecondary) - } - } - - @Test - override fun testButtonSizeMSpaceBetween() { - themedComponent { - buttonSizeMSpaceBetween(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonMClear) - } - } - - @Test - override fun testButtonSizeSLongText() { - themedComponent { - buttonSizeSLongText(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonSPositive) - } - } - - @Test - override fun testButtonXSNegative() { - themedComponent { - buttonXSNegative(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonXsNegative) - } - } - - @Test - override fun testButtonLWhite() { - themedComponent { - buttonLWhite(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonLWhite) - } - } - - @Test - override fun testIconButtonLDefault() { - themedComponent { - iconButtonLDefault(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonLDefault) - } - } - - @Test - override fun testIconButtonMAccent() { - themedComponent { - iconButtonMAccent(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonMAccent) - } - } - - @Test - override fun testIconButtonSWarning() { - themedComponent { - iconButtonSWarning(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonSWarning) - } - } - - @Test - override fun testIconButtonXSDark() { - themedComponent { - iconButtonXSDark(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsDark) - } - } - - @Test - override fun testIconButtonLIsLoading() { - themedComponent { - iconButtonLIsLoading(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonLDefault) - } - } - - @Test - override fun testIconButtonDisabled() { - themedComponent { - iconButtonDisabled(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonMDefault) - } - } - - @Test - override fun testIconButtonLPilledSecondary() { - themedComponent { - iconButtonLPilledSecondary(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonLPilledSecondary) - } - } - - @Test - override fun testIconButtonMClear() { - themedComponent { - iconButtonMClear(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonMClear) - } - } - - @Test - override fun testIconButtonSPositive() { - themedComponent { - iconButtonSPositive(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonSPositive) - } - } - - @Test - override fun testIconButtonXSNegative() { - themedComponent { - iconButtonXSNegative(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonXsPilledNegative) - } - } - - @Test - override fun testIconButtonLWhite() { - themedComponent { - iconButtonLWhite(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonLWhite) - } - } - - @Test - override fun testLinkButtonLDefault() { - themedComponent { - linkButtonLDefault(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLDefault) - } - } - - @Test - override fun testLinkButtonIsLoading() { - themedComponent { - linkButtonIsLoading(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLDefault) - } - } - - @Test - override fun testLinkButtonLSecondary() { - themedComponent { - linkButtonLSecondary(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLSecondary) - } - } - - @Test - override fun testLinkButtonMAccent() { - themedComponent { - linkButtonMAccent(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonMAccent) - } - } - - @Test - override fun testLinkButtonDisabled() { - themedComponent { - linkButtonDisabled(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonLDefault) - } - } - - @Test - override fun testLinkButtonSWarning() { - themedComponent { - linkButtonSWarning(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonSWarning) - } - } - - @Test - override fun testLinkButtonXsNegative() { - themedComponent { - linkButtonXsNegative(R.style.Salute_StylesSalute_ComponentOverlays_LinkButtonXsNegative) - } - } - - @Test - override fun testButtonGroupSizeLDefaultNoGap() { - themedComponent { - buttonGroup(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupLNoGapDefault) - } - } - - @Test - override fun testButtonGroupSizeMDefaultDense() { - themedComponent { - buttonGroup(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupMDenseDefault) - } - } - - @Test - override fun testButtonGroupSizeSWideSegmented() { - themedComponent { - buttonGroup(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupSWideSegmented) - } - } - - @Test - override fun testButtonGroupSizeXsDefaultNoGap() { - themedComponent { - buttonGroupVertical(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsNoGapDefault) - } - } - - @Test - override fun testButtonGroupSizeXxsNoGapSegmented() { - themedComponent { - buttonGroupAmountTen(R.style.Salute_StylesSalute_ComponentOverlays_BasicButtonGroupXsNoGapSegmented) - } - } - - @Test - override fun testIconButtonGroupSizeLNoGapDefaultHorizontal() { - themedComponent { - iconButtonGroupHorizontal(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGapDefault) - } - } - - @Test - override fun testIconButtonGroupSizeMDensePilledHorizontal() { - themedComponent { - iconButtonGroupHorizontal(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupMDensePilled) - } - } - - @Test - override fun testIconButtonGroupSizeSWideSegmentedHorizontal() { - themedComponent { - iconButtonGroupHorizontal(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupSWideSegmented) - } - } - - @Test - override fun testIconButtonGroupSizeXsNoGapDefaultVertical() { - themedComponent { - iconButtonGroupVertical(R.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupXsNoGapDefault) - } - } - - @Test - override fun testIconButtonGroupSizeLAmountTenNoGapSegmentedHorizontal() { - themedComponent { - iconButtonGroupHorizontalAmountTen( - R.style.Salute_StylesSalute_ComponentOverlays_IconButtonGroupLNoGapSegmented, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCellScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCellScreenshotTest.kt deleted file mode 100644 index 0bea2b07f4..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCellScreenshotTest.kt +++ /dev/null @@ -1,88 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.CellTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemCellScreenshotTest( - theme: String, -) : CellTestCases(theme) { - - @Test - override fun testCellSizeLAvatarHasDisclosure() { - themedComponent { - cellSizeLAvatarHasDisclosure(R.style.Salute_StylesSalute_ComponentOverlays_CellL) - } - } - - @Test - override fun testCellSizeMTitleAvatar() { - themedComponent { - cellSizeMTitleAvatar(R.style.Salute_StylesSalute_ComponentOverlays_CellM) - } - } - - @Test - override fun testCellSizeSSubtitleHasDisclosure() { - themedComponent { - cellSizeSSubtitleHasDisclosure(R.style.Salute_StylesSalute_ComponentOverlays_CellS) - } - } - - @Test - override fun testCellSizeXSLabelAvatar() { - themedComponent { - cellSizeXSLabelAvatar(R.style.Salute_StylesSalute_ComponentOverlays_CellXs) - } - } - - @Test - override fun testCellSizeLHasDisclosureDisclosureText() { - themedComponent { - cellSizeLHasDisclosureDisclosureText(R.style.Salute_StylesSalute_ComponentOverlays_CellL) - } - } - - @Test - override fun testCellSizeMAvatarIcon() { - themedComponent { - cellSizeMAvatarIcon(R.style.Salute_StylesSalute_ComponentOverlays_CellM) - } - } - - @Test - override fun testCellSizeSIconHasDisclosureDisclosureText() { - themedComponent { - cellSizeSIconHasDisclosureDisclosureText(R.style.Salute_StylesSalute_ComponentOverlays_CellS) - } - } - - @Test - override fun testCellSizeXSRadioBoxAvatar() { - themedComponent { - cellSizeXSRadioBoxAvatar(R.style.Salute_StylesSalute_ComponentOverlays_CellXs) - } - } - - @Test - override fun testCellSizeLSwitchCheckBox() { - themedComponent { - cellSizeLSwitchCheckBox(R.style.Salute_StylesSalute_ComponentOverlays_CellL) - } - } - - @Test - override fun testCellSizeMCheckBoxHasDisclosure() { - themedComponent { - cellSizeMCheckBoxHasDisclosure(R.style.Salute_StylesSalute_ComponentOverlays_CellM) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCheckBoxScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCheckBoxScreenshotTest.kt deleted file mode 100644 index b44914a4c4..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCheckBoxScreenshotTest.kt +++ /dev/null @@ -1,89 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import androidx.test.espresso.matcher.ViewMatchers.withText -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.CheckBoxTestCases -import org.hamcrest.Matchers.allOf -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemCheckBoxScreenshotTest( - theme: String, -) : CheckBoxTestCases(theme) { - - @Test - override fun testCheckBoxSizeM() { - themedComponent { - checkBoxSizeM(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxM) - } - } - - @Test - override fun testCheckBoxSizeSUnchecked() { - themedComponent { - checkBoxSizeSUnchecked(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxS) - } - } - - @Test - override fun testCheckBoxNoLabelAndDesc() { - themedComponent { - checkBoxNoLabelAndDesc(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxM) - } - } - - @Test - override fun testCheckBoxDisabled() { - themedComponent { - checkBoxDisabled(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxS) - } - } - - @Test - override fun testCheckBoxSizeMIndeterminate() { - themedComponent { - checkBoxSizeMIndeterminate(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxM) - } - } - - @Test - override fun testCheckBoxGroupSizeM() { - themedComponent( - action = { - onView(allOf(withId(0), withText("Label"))) - .perform(click()) - }, - ) { - checkBoxGroupSizeM(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxGroupM) - } - } - - @Test - override fun testCheckBoxGroupSizeS() { - themedComponent( - action = { - onView(withId(1)) - .perform(click()) - }, - ) { - checkBoxGroupSizeS(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxGroupS) - } - } - - @Test - override fun testCheckBoxGroupMDisabled() { - themedComponent { - checkBoxGroupMDisabled(R.style.Salute_StylesSalute_ComponentOverlays_CheckBoxGroupM) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemChipScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemChipScreenshotTest.kt deleted file mode 100644 index 183c9093fa..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemChipScreenshotTest.kt +++ /dev/null @@ -1,144 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.stylessalute.colorstate.ChipColorState -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ChipTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemChipScreenshotTest( - theme: String, -) : ChipTestCases(theme) { - - @Test - override fun testChipLDefault() { - themedComponent { - chipLDefault(R.style.Salute_StylesSalute_ComponentOverlays_ChipLDefault) - } - } - - @Test - override fun testChipMSecondary() { - themedComponent { - chipMSecondary(R.style.Salute_StylesSalute_ComponentOverlays_ChipMPilledSecondary) - } - } - - @Test - override fun testChipSAccent() { - themedComponent { - chipSAccent(R.style.Salute_StylesSalute_ComponentOverlays_ChipSAccent) - } - } - - @Test - override fun testChipXsDefault() { - themedComponent { - chipXsDefault(R.style.Salute_StylesSalute_ComponentOverlays_ChipXsDefault) - } - } - - @Test - override fun testChipDisabled() { - themedComponent { - chipDisabled((R.style.Salute_StylesSalute_ComponentOverlays_ChipL)) - } - } - - @Test - override fun testChipGroupLDefault() { - themedComponent { - chipGroupLDefault( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLDefault, - ChipColorState.DEFAULT, - ) - } - } - - @Test - override fun testChipGroupMSecondary() { - themedComponent { - chipGroupMSecondary( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMSecondary, - ChipColorState.SECONDARY, - ) - } - } - - @Test - override fun testChipGroupSAccent() { - themedComponent { - chipGroupSAccent( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseSAccent, - ChipColorState.ACCENT, - ) - } - } - - @Test - override fun testChipGroupXSDefault() { - themedComponent { - chipGroupXSDefault( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseXsDefault, - ChipColorState.DEFAULT, - ) - } - } - - @Test - override fun testChipGroupLPilledSecondaryCheckedStateAccent() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - chipGroupLPilledSecondaryCheckedStateAccent( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLPilledSecondary, - ChipColorState.ACCENT, - ) - } - } - - @Test - override fun testChipGroupMAccentCheckedStateSecondary() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - chipGroupMAccentCheckedStateSecondary( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupWideMAccent, - ChipColorState.SECONDARY, - ) - } - } - - @Test - override fun testChipGroupLSecondaryCheckedStateDefaultMultiple() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - onView(withId(1)) - .perform(click()) - }, - ) { - chipGroupLSecondaryCheckedStateDefaultMultiple( - R.style.Salute_StylesSalute_ComponentOverlays_ChipGroupDenseLSecondary, - ChipColorState.DEFAULT, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCodeInputScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCodeInputScreenshotTest.kt deleted file mode 100644 index 3b54c4847b..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCodeInputScreenshotTest.kt +++ /dev/null @@ -1,138 +0,0 @@ -package com.sdds.stylessalute - -import android.view.KeyEvent -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.action.ViewActions.pressKey -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.CodeInputTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemCodeInputScreenshotTest( - theme: String, -) : CodeInputTestCases(theme) { - - @Test - override fun testCodeInputLCodeLengthFourCaptionLeft() { - themedComponent { - codeInputCodeLengthFourCaptionLeft(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Test - override fun testCodeInputMCodeLengthFiveCaptionCenter() { - themedComponent { - codeInputCodeLengthFiveCaptionCenter(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputM) - } - } - - @Test - override fun testCodeInputSCodeLengthSixCaptionCenter() { - themedComponent { - codeInputCodeLengthSixCaptionCenter(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputS) - } - } - - @Config(qualifiers = "+land") - @Test - override fun testCodeInputLCodeLengthSixNoCaption() { - themedComponent { - codeInputCodeLengthSixNoCaption(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Test - override fun testCodeInputCodeMLengthSixHidden() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - .perform(pressKey(KeyEvent.KEYCODE_1)) - }, - ) { - codeInputCodeLengthSixHidden(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputM) - } - } - - @Config(qualifiers = "+land") - @Test - override fun testCodeInputLCodeLengthSixRemoveSymbol() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - .perform(pressKey(KeyEvent.KEYCODE_Q)) - }, - ) { - codeInputCodeLengthSixRemoveSymbol(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Config(qualifiers = "+land") - @Test - override fun testCodeInputLCodeLengthSixRemoveCode() { - themedComponent( - action = { - onView(withId(it.id)).apply { - repeat(6) { - perform(click()) - perform(pressKey(KeyEvent.KEYCODE_1)) - } - } - }, - ) { - codeInputCodeLengthSixRemoveSymbol(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Config(qualifiers = "+land") - @Test - override fun testCodeInputLCodeLengthSixErrorKeep() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - }, - ) { - codeInputCodeLengthSixCaptionCenter(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Test - override fun testCodeInputLCorrectCode() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - .perform(pressKey(KeyEvent.KEYCODE_1)) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - .perform(pressKey(KeyEvent.KEYCODE_4)) - }, - ) { - codeInputCodeLengthFourCaptionLeft(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } - - @Test - override fun testCodeInputLLongText() { - themedComponent { - codeInputCodeLengthFourCaptionCenter(R.style.Salute_StylesSalute_ComponentOverlays_CodeInputL) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCounterScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCounterScreenshotTest.kt deleted file mode 100644 index 2b3ce72a73..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemCounterScreenshotTest.kt +++ /dev/null @@ -1,67 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.CounterTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemCounterScreenshotTest( - theme: String, -) : CounterTestCases(theme) { - - @Test - override fun testCounterSizeLDefault() { - themedComponent { - counterCommon(R.style.Salute_StylesSalute_ComponentOverlays_CounterLDefault) - } - } - - @Test - override fun testCounterSizeMAccent() { - themedComponent { - counterCommon(R.style.Salute_StylesSalute_ComponentOverlays_CounterMAccent) - } - } - - @Test - override fun testCounterSizeSPositive() { - themedComponent { - counterPositiveLongNumber(R.style.Salute_StylesSalute_ComponentOverlays_CounterSPositive) - } - } - - @Test - override fun testCounterSizeXsWarning() { - themedComponent { - counterCommon(R.style.Salute_StylesSalute_ComponentOverlays_CounterXsWarning) - } - } - - @Test - override fun testCounterSizeXxsNegative() { - themedComponent { - counterCommon(R.style.Salute_StylesSalute_ComponentOverlays_CounterXxsNegative) - } - } - - @Test - override fun testCounterSizeLWhite() { - themedComponent { - counterSizeLWhite(R.style.Salute_StylesSalute_ComponentOverlays_CounterLWhite) - } - } - - @Test - override fun testCounterSizeLDisabled() { - themedComponent { - counterDisabled(R.style.Salute_StylesSalute_ComponentOverlays_CounterLNegative) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemDropDownMenuScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemDropDownMenuScreenshotTest.kt deleted file mode 100644 index ba01d69076..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemDropDownMenuScreenshotTest.kt +++ /dev/null @@ -1,204 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.stylessalute.colorstate.ListItemViewColorState -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.DropDownMenuTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemDropDownMenuScreenshotTest( - theme: String, -) : DropDownMenuTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXlHasLooseStartTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXlHasLooseStartTop( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuLPositiveStrictStartCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuLPositiveStrictStartCenter( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.POSITIVE, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuMNegativeStrictStartBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuMNegativeStrictStartBottom( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalM, - colorState = ListItemViewColorState.NEGATIVE, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuSNoTextNoDisclosureStrictCenterTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuSNoTextNoDisclosureStrictCenterTop( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalS, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXsStrictCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXsStrictCenter( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalXs, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXlAmountTwentyLooseCenterBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXlAmountTwentyLooseCenterBottom( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXlLooseEndTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXlLooseEndTop( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXlStrictEndCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXlStrictEndCenter( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuXlLooseEndBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuXlLooseEndBottom( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuNormalL, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testDropDownMenuTightXsStrictCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - dropDownMenuTightXsStrictCenter( - style = R.style.Salute_StylesSalute_ComponentOverlays_DropdownMenuTightXs, - colorState = ListItemViewColorState.DEFAULT, - ) - } - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemFlowScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemFlowScreenshotTest.kt deleted file mode 100644 index d5b7d9aad9..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemFlowScreenshotTest.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.FlowTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemFlowScreenshotTest( - theme: String, -) : FlowTestCases(theme) { - - @Test - override fun testFlowStartHorizontal() { - themedComponent { - flowStartHorizontal() - } - } - - @Test - override fun testFlowCenterVertical() { - themedComponent { - flowCenterVertical() - } - } - - @Test - override fun testFlowEndHorizontal() { - themedComponent { - flowEndHorizontal() - } - } - - @Test - override fun testFlowSpaceBetweenStartHorizontal() { - themedComponent { - flowSpaceBetweenStartHorizontal() - } - } - - @Test - override fun testFlowSpaceAroundStartHorizontal() { - themedComponent { - flowSpaceAroundStartHorizontal() - } - } - - @Test - override fun testFlowItemsPerLineOne() { - themedComponent { - flowItemsPerLineOne() - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemIndicatorScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemIndicatorScreenshotTest.kt deleted file mode 100644 index 323482e934..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemIndicatorScreenshotTest.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.IndicatorTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemIndicatorScreenshotTest( - theme: String, -) : IndicatorTestCases(theme) { - - @Test - override fun testIndicatorSizeLDefault() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorLDefault) - } - } - - @Test - override fun testIndicatorSizeMAccent() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorMAccent) - } - } - - @Test - override fun testIndicatorSizeSInactive() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorSInactive) - } - } - - @Test - override fun testIndicatorLPositive() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorLPositive) - } - } - - @Test - override fun testIndicatorLWarning() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorLWarning) - } - } - - @Test - override fun testIndicatorLNegative() { - themedComponent { - commonIndicator(R.style.Salute_StylesSalute_ComponentOverlays_IndicatorLNegative) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemListScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemListScreenshotTest.kt deleted file mode 100644 index 39fa51e0e0..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemListScreenshotTest.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ListTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemListViewScreenshotTest( - theme: String, -) : ListTestCases(theme) { - - @Test - override fun testListNormalXlHasDisclosure() { - themedComponent { - listNormalXlHasDisclosure(R.style.Salute_StylesSalute_ComponentOverlays_ListNormalXl) - } - } - - @Test - override fun testListNormalL() { - themedComponent { - listNormalL(R.style.Salute_StylesSalute_ComponentOverlays_ListNormalL) - } - } - - @Test - override fun testListNormalM() { - themedComponent { - listNormalM(R.style.Salute_StylesSalute_ComponentOverlays_ListNormalM) - } - } - - @Test - override fun testListNormalS() { - themedComponent { - listNormalS(R.style.Salute_StylesSalute_ComponentOverlays_ListNormalS) - } - } - - @Test - override fun testListNormalXs() { - themedComponent { - listNormalXs(R.style.Salute_StylesSalute_ComponentOverlays_ListNormalXs) - } - } - - @Test - override fun testListTightXsHasDisclosure() { - themedComponent { - listTightXsHasDisclosure(R.style.Salute_StylesSalute_ComponentOverlays_ListTightXs) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemMaskScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemMaskScreenshotTest.kt deleted file mode 100644 index 71f74a0cc7..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemMaskScreenshotTest.kt +++ /dev/null @@ -1,612 +0,0 @@ -package com.sdds.stylessalute - -import android.view.KeyEvent -import android.widget.EditText -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.clearText -import androidx.test.espresso.action.ViewActions.pressKey -import androidx.test.espresso.action.ViewActions.typeText -import androidx.test.espresso.matcher.ViewMatchers.isAssignableFrom -import androidx.test.espresso.matcher.ViewMatchers.isDescendantOfA -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.stylessalute.colorstate.TextFieldColorState -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.MaskTestCases -import org.hamcrest.CoreMatchers.allOf -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemMaskScreenshotTest( - theme: String, -) : MaskTestCases(theme) { - - @Test - override fun testMaskDefaultLOuterLabelMaskPlaceholderPhone() { - themedComponent { - maskPhoneDisplayAlways( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabel, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskSuccessMOuterLabelMaskPlaceholderPhone() { - themedComponent { - maskPhoneDisplayAlways( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabel, - TextFieldColorState.SUCCESS, - ) - } - } - - @Test - override fun testMaskWarningSRequiredRightPlaceholderPhone() { - themedComponent { - maskPhoneDisplayAlways( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEnd, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testMaskErrorXsRequiredLeftPlaceholderPhone() { - themedComponent { - margins { - maskPhoneDisplayAlways( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabelRequiredStart, - TextFieldColorState.ERROR, - ) - } - } - } - - @Test - override fun testMaskDisabledIconAction() { - themedComponent { - maskDisabledIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskReadOnlyIconAction() { - themedComponent { - maskReadOnlyIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskXlDefaultOuterLabelDateIconAction() { - themedComponent { - maskDateShortDateAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskLSuccessRequiredLeftInnerLabelTimeAlwaysIcon() { - themedComponent { - maskTimeAlwaysIcon( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - TextFieldColorState.SUCCESS, - ) - } - } - - @Test - override fun testMaskMWarningRequiredRightOuterLabelNumberAlwaysAction() { - themedComponent { - maskNumberAlwaysAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabelRequiredEnd, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testMaskErrorSuffixPrefixPhone() { - themedComponent { - maskSuffixPrefixPhone( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSError, - TextFieldColorState.ERROR, - ) - } - } - - @Test - override fun testMaskXsDefaultRequiredLeftPhoneOnInputIconAction() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("9")) - }, - ) { - maskPhoneOnInputIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTypeLettersInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("a")) - }, - ) { - maskPhoneDisplayAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTypeNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("7")) - }, - ) { - maskPhoneDisplayAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTypeAnyOtherNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("495")) - }, - ) { - maskPhoneDisplayAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskDeleteNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("495")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(clearText()) - }, - ) { - maskPhoneDisplayAlwaysIconActionNoPlaceholder( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskInputFullNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("1234567890")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("a")) - }, - ) { - maskPhoneDisplayAlwaysIconActionNoPlaceholder( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskInputLettersAndNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("!w123ф%е45")) - }, - ) { - maskPhoneDisplayAlwaysIconActionNoPlaceholder( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskInputPartiallyFilledNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("123456")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(pressKey(KeyEvent.KEYCODE_W)) - .perform(pressKey(KeyEvent.KEYCODE_1)) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - .perform(pressKey(KeyEvent.KEYCODE_4)) - .perform(pressKey(KeyEvent.KEYCODE_F)) - .perform(pressKey(KeyEvent.KEYCODE_E)) - }, - ) { - maskPhoneDisplayAlwaysIconActionNoPlaceholder( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskInputFullyFilledNumberInTelephone() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("1234567890")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(pressKey(KeyEvent.KEYCODE_W)) - .perform(pressKey(KeyEvent.KEYCODE_1)) - .perform(pressKey(KeyEvent.KEYCODE_2)) - .perform(pressKey(KeyEvent.KEYCODE_3)) - .perform(pressKey(KeyEvent.KEYCODE_F)) - .perform(pressKey(KeyEvent.KEYCODE_E)) - }, - ) { - maskPhoneDisplayAlwaysIconActionNoPlaceholder( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskShortDateInput() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("121212")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskDateShortDateAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskShortDateInputNotFull() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("1212")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskDateShortDateAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskFullDateInput() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("12122012")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskDateMediumDateAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTimeInput() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("1234")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskTimeAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTimeInputStartWithZero() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("0830")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskTimeAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTimeInputMaxNumber() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("9999")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskTimeAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskTimeInputWithLetter() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("12a34")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskTimeAlwaysIconAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskNumberInput() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("12345,00")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskNumberAlwaysAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskNumberInputMaxNumber() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("999999999999999999,99999")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskNumberAlwaysAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskNumberInputOneNumber() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("1")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskNumberAlwaysAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testMaskNumberInputSymbolsAndLetters() { - themedComponent( - action = { - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ).perform(typeText("!w123ф%е45")) - onView( - allOf( - isDescendantOfA(withId(it.id)), - isAssignableFrom(EditText::class.java), - ), - ) - }, - ) { - maskNumberAlwaysAction( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLDefault, - TextFieldColorState.DEFAULT, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemModalScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemModalScreenshotTest.kt deleted file mode 100644 index c49b98aa49..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemModalScreenshotTest.kt +++ /dev/null @@ -1,200 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ModalTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode -import org.robolectric.shadows.ShadowLooper - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemModalScreenshotTest( - theme: String, -) : ModalTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalUseNativeBlackoutHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalUseNativeBlackoutHasClose(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalNoCloseNoBlackout() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalNoValues(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalTopStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalTopStart(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalTopCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalTopCenter(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalTopEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalTopEnd(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalCenterStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalCenterStart(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalCenter(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalCenterEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalCenterEnd(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalBottomStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalBottomStart(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalBottomCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalBottomCenter(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testModalBottomEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - modalBottomEnd(R.style.Salute_StylesSalute_ComponentOverlays_Modal) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationContentScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationContentScreenshotTest.kt deleted file mode 100644 index 9d1169a8fe..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationContentScreenshotTest.kt +++ /dev/null @@ -1,90 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.NotificationContentTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemNotificationContentScreenshotTest( - theme: String, -) : NotificationContentTestCases(theme) { - - @Test - override fun testNotificationContentButtonStretchDefaultTitleTextHasAction() { - themedComponent { - notificationContentButtonStretchDefaultTitleTextHasAction( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchDefault, - ) - } - } - - @Test - override fun testNotificationContentNoTitleButtonStretchIconTopPositive() { - themedComponent { - notificationContentNoTitleButtonStretchIconTopPositive( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopPositive, - ) - } - } - - @Test - override fun testNotificationContentNoTextButtonStretchIconStartNegative() { - themedComponent { - notificationContentNoTextButtonStretchIconStartNegative( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartNegative, - ) - } - } - - @Test - override fun testNotificationContentNoTextTitleButtonStretchIconTopWarning() { - themedComponent { - notificationContentNoTextTitleButtonStretchIconTopWarning( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconTopWarning, - ) - } - } - - @Test - override fun testNotificationContentLongTextButtonStretchIconStartInfo() { - themedComponent { - notificationContentLongTextButtonStretchIconStartInfo( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartInfo, - ) - } - } - - @Test - override fun testNotificationContentNoButtonStretchIconStartDefault() { - themedComponent { - notificationContentNoButtonStretchIconStartDefault( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchIconStartDefault, - ) - } - } - - @Test - override fun testNotificationContentButtonStretchPositive() { - themedComponent { - notificationContentButtonStretchDefaultTitleTextHasAction( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchPositive, - ) - } - } - - @Test - override fun testNotificationContentButtonStretchWarning() { - themedComponent { - notificationContentButtonStretchDefaultTitleTextHasAction( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationContentButtonStretchWarning, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationScreenshotTest.kt deleted file mode 100644 index 0ec93068db..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemNotificationScreenshotTest.kt +++ /dev/null @@ -1,181 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.NotificationTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode -import org.robolectric.shadows.ShadowLooper - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemNotificationScreenshotTest( - theme: String, -) : NotificationTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationCompactLTopStartHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationCompactLTopStartHasClose(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationCompactMTopCenterHasCloseFocusable() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationCompactMTopCenterHasCloseFocusable( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactM, - ) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationCompactSTopEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationCompactSTopEnd(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactS) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationCompactLCenterStartHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationCompactLCenterStartHasClose(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationLooseLCenterHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationLooseLCenterHasClose(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationLooseMCenterEndHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationLooseMCenterEndHasClose(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationLooseSBottomStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationLooseSBottomStart(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationLooseBottomCenterHasCloseFocusable() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationLooseBottomCenterHasCloseFocusable( - R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL, - ) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testNotificationLooseLBottomEndHasClose() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - notificationLooseLBottomEndHasClose(R.style.Salute_StylesSalute_ComponentOverlays_NotificationCompactL) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(100) - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemPopoverScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemPopoverScreenshotTest.kt deleted file mode 100644 index f573a8bfef..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemPopoverScreenshotTest.kt +++ /dev/null @@ -1,158 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.PopoverTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemPopoverScreenshotTest( - theme: String, -) : PopoverTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultStrictBottomEndStartTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultStrictBottomEndStartTop(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMAccentStrictTopCenterStartCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMAccentStrictTopCenterStartCenter(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMAccent) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverSDefaultLooseEndStartBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverSDefaultLooseEndStartBottom(R.style.Salute_StylesSalute_ComponentOverlays_PopoverSDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverSAccentStrictBottomStartCenterTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverSAccentStrictBottomStartCenterTop(R.style.Salute_StylesSalute_ComponentOverlays_PopoverSAccent) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultLooseStartCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultLooseStartCenter(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultLooseStartCenterBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultLooseStartCenterBottom(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultLooseTopEndEndTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultLooseTopEndEndTop(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultLooseStartEndCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultLooseStartEndCenter(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testPopoverMDefaultLooseStartCenterEndBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - popoverMDefaultLooseStartCenterEndBottom(R.style.Salute_StylesSalute_ComponentOverlays_PopoverMDefault) - } - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemProgressScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemProgressScreenshotTest.kt deleted file mode 100644 index 3989319e8a..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemProgressScreenshotTest.kt +++ /dev/null @@ -1,74 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ProgressBarTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemProgressScreenshotTest( - theme: String, -) : ProgressBarTestCases(theme) { - - @Test - override fun testProgressDefault() { - themedComponent { - progressDefault(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarDefault) - } - } - - @Test - override fun testProgressSecondary() { - themedComponent { - progressSecondary(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarSecondary) - } - } - - @Test - override fun testProgressWarning() { - themedComponent { - progressWarning(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarWarning) - } - } - - @Test - override fun testProgressPositive() { - themedComponent { - progressPositive(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarPositive) - } - } - - @Test - override fun testProgressNegative() { - themedComponent { - progressNegative(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarNegative) - } - } - - @Test - override fun testProgressAccent() { - themedComponent { - progressAccent(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarAccent) - } - } - - @Test - override fun testProgressGradientAccent() { - themedComponent { - progressGradientAccent(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarGradient) - } - } - - @Test - override fun testProgressDefaultValueOne() { - themedComponent { - progressDefaultValueOne(R.style.Salute_StylesSalute_ComponentOverlays_ProgressBarDefault) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRadioBoxScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRadioBoxScreenshotTest.kt deleted file mode 100644 index dff5441c73..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRadioBoxScreenshotTest.kt +++ /dev/null @@ -1,98 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.RadioBoxTestCases -import org.hamcrest.core.AllOf.allOf -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemRadioBoxScreenshotTest( - theme: String, -) : RadioBoxTestCases(theme) { - - @Test - override fun testRadioBoxSizeM() { - themedComponent { - radioBoxSizeM(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxM) - } - } - - @Test - override fun testRadioBoxSizeS() { - themedComponent { - radioBoxSizeS(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxS) - } - } - - @Test - override fun testRadioBoxSizeMNoDescription() { - themedComponent { - radioBoxSizeMNoDescription(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxM) - } - } - - @Test - override fun testRadioBoxDisabled() { - themedComponent { - radioBoxDisabled(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxM) - } - } - - @Test - override fun testRadioBoxGroupSizeM() { - themedComponent( - action = { - onView(allOf(withId(0))) - .perform(click()) - }, - ) { - radioBoxGroupSizeM(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupM) - } - } - - @Test - override fun testRadioBoxGroupSizeS() { - themedComponent( - action = { - onView(allOf(withId(1))) - .perform(click()) - }, - ) { - radioBoxGroupSizeS(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupS) - } - } - - @Test - override fun testRadioBoxGroupSizeMDescription() { - themedComponent( - action = { - onView(allOf(withId(0))) - .perform(click()) - }, - ) { - radioBoxGroupSizeMDescription(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupM) - } - } - - @Test - override fun testRadioBoxGroupSizeSLabel() { - themedComponent( - action = { - onView(allOf(withId(1))) - .perform(click()) - }, - ) { - radioBoxGroupSizeSLabel(R.style.Salute_StylesSalute_ComponentOverlays_RadioBoxGroupS) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRectSkeletonScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRectSkeletonScreenshotTest.kt deleted file mode 100644 index 4292064543..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemRectSkeletonScreenshotTest.kt +++ /dev/null @@ -1,42 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.RectSkeletonTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemRectSkeletonScreenshotTest( - theme: String, -) : RectSkeletonTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testRectSkeleton() { - themedComponent( - skipDefaultCaptureRoboImage = true, - ) { - rectSkeletonTest(style = R.style.Salute_StylesSalute_ComponentOverlays_RectSkeletonDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testRectSkeletonLighter() { - themedComponent( - skipDefaultCaptureRoboImage = true, - ) { - rectSkeletonTest(style = R.style.Salute_StylesSalute_ComponentOverlays_RectSkeletonLighter) - } - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemScrollBarScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemScrollBarScreenshotTest.kt deleted file mode 100644 index af9b1af55b..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemScrollBarScreenshotTest.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.swipeUp -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ScrollBarTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemScrollBarScreenshotTest( - theme: String, -) : ScrollBarTestCases(theme) { - - @Test - override fun testScrollBarMHasTrackHoverExpand() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(swipeUp()) - }, - ) { - scrollBarTest(R.style.Salute_StylesSalute_ComponentOverlays_ScrollBarM) - } - } - - @Test - override fun testScrollBarSNoTrackHoverExpand() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(swipeUp()) - }, - ) { - scrollBarTestNoTrack(R.style.Salute_StylesSalute_ComponentOverlays_ScrollBarS) - } - } - - @Test - override fun testScrollBarManyItems() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(swipeUp()) - }, - ) { - scrollBarTestManyItems(R.style.Salute_StylesSalute_ComponentOverlays_ScrollBarM) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSegmentScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSegmentScreenshotTest.kt deleted file mode 100644 index 02b3ca994c..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSegmentScreenshotTest.kt +++ /dev/null @@ -1,147 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.SegmentTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemSegmentScreenshotTest( - theme: String, -) : SegmentTestCases(theme) { - - @Test - override fun testSegmentSizeL() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeL(R.style.Salute_StylesSalute_ComponentOverlays_SegmentLPrimary) - } - } - - @Test - override fun testSegmentSizeMPilled() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeMPilled(R.style.Salute_StylesSalute_ComponentOverlays_SegmentMPilledSecondary) - } - } - - @Test - override fun testSegmentSizeS() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeS(R.style.Salute_StylesSalute_ComponentOverlays_SegmentSPrimary) - } - } - - @Test - override fun testSegmentSizeXS() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeXS(R.style.Salute_StylesSalute_ComponentOverlays_SegmentXsPrimary) - } - } - - @Test - override fun testSegmentOrientationVertical() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentOrientationVertical(R.style.Salute_StylesSalute_ComponentOverlays_SegmentLPrimary) - } - } - - @Test - override fun testSegmentDisabled() { - themedComponent { - segmentDisabled(R.style.Salute_StylesSalute_ComponentOverlays_SegmentLPrimary) - } - } - - @Test - override fun testSegmentSizeSStretch() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeSStretch(R.style.Salute_StylesSalute_ComponentOverlays_SegmentSPrimary) - } - } - - @Test - override fun testSegmentSizeLCounter() { - themedComponent( - action = { - onView(withId(0)) - .perform(click()) - }, - ) { - segmentSizeLCounter(R.style.Salute_StylesSalute_ComponentOverlays_SegmentLPrimary) - } - } - - @Test - override fun testSegmentItemSizeLPrimary() { - themedComponent { - segmentItemSizeLPrimary(R.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPrimary) - } - } - - @Test - override fun testSegmentItemSizeMSecondary() { - themedComponent { - segmentItemSizeMSecondary(R.style.Salute_StylesSalute_ComponentOverlays_SegmentItemMPilledSecondary) - } - } - - @Test - override fun testSegmentItemSizeSDefault() { - themedComponent { - segmentItemSizeSDefault(R.style.Salute_StylesSalute_ComponentOverlays_SegmentItemS) - } - } - - @Test - override fun testSegmentItemSizeXSPrimaryCounter() { - themedComponent { - segmentItemSizeXSPrimaryCounter(R.style.Salute_StylesSalute_ComponentOverlays_SegmentItemXsPilledPrimary) - } - } - - @Test - override fun testSegmentItemDisabled() { - themedComponent { - segmentItemDisabled(R.style.Salute_StylesSalute_ComponentOverlays_SegmentItemLPrimary) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSwitchScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSwitchScreenshotTest.kt deleted file mode 100644 index d8f489386e..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemSwitchScreenshotTest.kt +++ /dev/null @@ -1,60 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.SwitchTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemSwitchScreenshotTest( - theme: String, -) : SwitchTestCases(theme) { - - @Test - override fun testSwitchSizeL() { - themedComponent { - switchSizeL(R.style.Salute_StylesSalute_ComponentOverlays_SwitchL) - } - } - - @Test - override fun testSwitchSizeM() { - themedComponent { - switchSizeM(R.style.Salute_StylesSalute_ComponentOverlays_SwitchM) - } - } - - @Test - override fun testSwitchSizeS() { - themedComponent { - switchSizeS(R.style.Salute_StylesSalute_ComponentOverlays_SwitchS) - } - } - - @Test - override fun testSwitchDisabled() { - themedComponent { - switchDisabled(R.style.Salute_StylesSalute_ComponentOverlays_SwitchM) - } - } - - @Test - override fun testSwitchSizeLToggleS() { - themedComponent { - switchSizeL(R.style.Salute_StylesSalute_ComponentOverlays_SwitchLToggleS) - } - } - - @Test - override fun testSwitchSizeSToggleS() { - themedComponent { - switchToggleOff(R.style.Salute_StylesSalute_ComponentOverlays_SwitchSToggleS) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextAreaScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextAreaScreenshotTest.kt deleted file mode 100644 index c853b7fa27..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextAreaScreenshotTest.kt +++ /dev/null @@ -1,180 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.stylessalute.colorstate.TextAreaColorState -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.TextAreaTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemTextAreaScreenshotTest( - theme: String, -) : TextAreaTestCases(theme) { - - @Test - override fun testTextAreaLDefaultInnerRequiredLeft() { - themedComponent { - textAreaLDefaultInnerRequiredLeft( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStart, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaMDefaultOuter() { - themedComponent { - textAreaMDefaultOuter( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabel, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaSWarningInnerRequiredRight() { - themedComponent { - textAreaSWarningInnerRequiredRight( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - TextAreaColorState.WARNING, - ) - } - } - - @Test - override fun testTextAreaXsError() { - themedComponent { - textAreaXsError( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaXs, - TextAreaColorState.ERROR, - ) - } - } - - @Test - override fun testTextAreaLReadOnly() { - themedComponent { - margins { - textAreaLReadOnly( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaLOuterLabelRequiredStart, - TextAreaColorState.DEFAULT, - ) - } - } - // todo capture container - } - - @Test - override fun testTextAreaMWarningInner() { - themedComponent { - textAreaMWarningInner( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabel, - TextAreaColorState.WARNING, - ) - } - } - - @Test - override fun testTextAreaSDefaultInnerRight() { - themedComponent { - textAreaSDefaultInnerRight( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaXSDefaultOuter() { - themedComponent { - textAreaXSDefaultOuter( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaXsOuterLabel, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaLDisabled() { - themedComponent { - textAreaLDisabled( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredStart, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaMErrorOuter() { - themedComponent { - textAreaMErrorOuter( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaMOuterLabel, - TextAreaColorState.ERROR, - ) - } - } - - @Test - override fun testTextAreaSFocused() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - ) { - textAreaSFocused( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabelRequiredEnd, - TextAreaColorState.WARNING, - ) - } - } - - @Test - override fun testTextAreaMDefaultChipsInner() { - themedComponent { - textAreaMDefaultChipsInner( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaMInnerLabel, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaSDefaultChipsOuterRight() { - themedComponent { - textAreaSDefaultChipsOuterRight( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaSOuterLabelRequiredEnd, - TextAreaColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextAreaTextSLongText() { - themedComponent { - textAreaTextSLongText( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaSInnerLabel, - TextAreaColorState.WARNING, - ) - } - } - - @Test - override fun testTextAreaLDefaultTBTA() { - themedComponent { - textAreaLDefaultTBTA( - R.style.Salute_StylesSalute_ComponentOverlays_TextAreaLInnerLabelRequiredEnd, - TextAreaColorState.DEFAULT, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextFieldScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextFieldScreenshotTest.kt deleted file mode 100644 index b5ae8b8c52..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextFieldScreenshotTest.kt +++ /dev/null @@ -1,214 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.sdds.stylessalute.colorstate.TextFieldColorState -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.TextFieldTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemTextFieldScreenshotTest( - theme: String, -) : TextFieldTestCases(theme) { - - @Test - override fun testTextFieldLDefaultInnerLeft() { - themedComponent { - textFieldLDefaultInnerLeft( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextFieldMSuccessOuterLabel() { - themedComponent { - textFieldMSuccessOuterLabel( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabel, - TextFieldColorState.SUCCESS, - ) - } - } - - @Test - override fun testTextFieldSWarningInnerRight() { - themedComponent { - textFieldSWarningInnerRight( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testTextFieldXsError() { - themedComponent { - textFieldXsError( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldXs, - TextFieldColorState.ERROR, - ) - } - } - - @Test - override fun testTextFieldLSuccessRequiredOuterLabel() { - themedComponent { - margins { - textFieldLSuccessRequiredOuterLabel( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - TextFieldColorState.SUCCESS, - ) - } - } - // TODO capture container - } - - @Test - override fun testTextFieldMWarningInnerLabel() { - themedComponent { - textFieldMWarningInnerLabel( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabel, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testTextFieldSDefaultReadOnly() { - themedComponent { - textFieldSDefaultReadOnly( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextFieldXSSuccessOuterLabel() { - themedComponent { - textFieldXSSuccessOuterLabel( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldXsOuterLabel, - TextFieldColorState.SUCCESS, - ) - } - } - - @Test - override fun testTextFieldLDisabled() { - themedComponent { - textFieldLDisabled( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabelRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextFieldMErrorOuterLabel() { - themedComponent { - textFieldMErrorOuterLabel( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMOuterLabel, - TextFieldColorState.ERROR, - ) - } - } - - @Test - override fun testTextFieldSWarningInnerLabelRightFocused() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - ) { - textFieldSWarningInnerLabelRightFocused( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSInnerLabelRequiredEnd, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testTextFieldMSuccessInnerLabelChips() { - themedComponent { - textFieldMSuccessInnerLabelChips( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldMInnerLabel, - TextFieldColorState.SUCCESS, - ) - } - } - - @Test - override fun testTextFieldSDefaultOuterLabelRightChips() { - themedComponent { - textFieldSDefaultOuterLabelRightChips( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldSOuterLabelRequiredEnd, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextFieldLInputText() { - themedComponent { - textFieldLInputText( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLInnerLabel, - TextFieldColorState.WARNING, - ) - } - } - - @Test - override fun testTextFieldLSuffixPrefix() { - themedComponent { - margins { - textFieldLSuffixPrefix( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - } - - @Test - override fun testTextFieldTBTACyrillic() { - themedComponent { - textFieldTBTACyrillic( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - - @Test - override fun testTextFieldLDisabledOuterLabelStart() { - themedComponent { - margins { - textFieldLDisabledOuterLabelStart( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldLOuterLabelRequiredStart, - TextFieldColorState.DEFAULT, - ) - } - } - } - - @Test - override fun testTextFieldSuffixPrefixNoValue() { - themedComponent { - textFieldLSuffixPrefixNoValue( - R.style.Salute_StylesSalute_ComponentOverlays_TextFieldL, - TextFieldColorState.DEFAULT, - ) - } - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextSkeletonScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextSkeletonScreenshotTest.kt deleted file mode 100644 index 6eb5c06be1..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTextSkeletonScreenshotTest.kt +++ /dev/null @@ -1,57 +0,0 @@ -package com.sdds.stylessalute - -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.TextSkeletonTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemTextSkeletonScreenshotTest( - theme: String, -) : TextSkeletonTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTextSkeletonDefaultNoTextRandom() { - themedComponent( - skipDefaultCaptureRoboImage = true, - ) { - textSkeletonLineCountThreeNoTextRandom(R.style.Salute_StylesSalute_ComponentOverlays_TextSkeletonDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTextSkeletonDefaultFullWidth() { - themedComponent( - skipDefaultCaptureRoboImage = true, - ) { - textSkeletonLineCountTenTextFullWidth(R.style.Salute_StylesSalute_ComponentOverlays_TextSkeletonDefault) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTextSkeletonLighterNoTextRandom() { - themedComponent( - skipDefaultCaptureRoboImage = true, - ) { - textSkeletonLineCountThreeNoTextRandom(R.style.Salute_StylesSalute_ComponentOverlays_TextSkeletonLighter) - } - captureScreenRoboImage() - } - - override fun testTextSkeleton() { - TODO("Not yet implemented") - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemToastScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemToastScreenshotTest.kt deleted file mode 100644 index b25579b786..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemToastScreenshotTest.kt +++ /dev/null @@ -1,177 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.ToastTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode -import org.robolectric.shadows.ShadowLooper - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemToastScreenshotTest( - theme: String, -) : ToastTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedDefaultTopStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedDefaultTopStart(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedNegativeTopCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedNegativeTopCenter(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedPositiveTopEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedPositiveTopEnd(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastPilledDefaultCenterStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastPilledDefaultCenterStart(R.style.Salute_StylesSalute_ComponentOverlays_ToastPilled) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastPilledNegativeCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastPilledNegativeCenter(R.style.Salute_StylesSalute_ComponentOverlays_ToastPilled) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastPilledPositiveCenterEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastPilledPositiveCenterEnd(R.style.Salute_StylesSalute_ComponentOverlays_ToastPilled) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedDefaultBottomStart() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedDefaultBottomStart(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedDefaultBottomCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedDefaultBottomCenter(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testToastRoundedDefaultBottomEnd() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - toastRoundedDefaultBottomEnd(R.style.Salute_StylesSalute_ComponentOverlays_ToastRounded) - } - ShadowLooper.runUiThreadTasksIncludingDelayedTasks() - Thread.sleep(1000) - captureScreenRoboImage() - } -} diff --git a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTooltipScreenshotTest.kt b/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTooltipScreenshotTest.kt deleted file mode 100644 index dd5f05781a..0000000000 --- a/tokens/stylessalute.view/src/test/kotlin/com/sdds/stylessalute/ViewSystemTooltipScreenshotTest.kt +++ /dev/null @@ -1,158 +0,0 @@ -package com.sdds.stylessalute - -import androidx.test.espresso.Espresso.onView -import androidx.test.espresso.action.ViewActions.click -import androidx.test.espresso.matcher.ViewMatchers.withId -import com.github.takahirom.roborazzi.ExperimentalRoborazziApi -import com.github.takahirom.roborazzi.RobolectricDeviceQualifiers -import com.github.takahirom.roborazzi.captureScreenRoboImage -import com.sdds.uikit.fixtures.SDK_NUMBER -import com.sdds.uikit.fixtures.testcases.TooltipTestCases -import org.junit.Test -import org.junit.runner.RunWith -import org.robolectric.ParameterizedRobolectricTestRunner -import org.robolectric.annotation.Config -import org.robolectric.annotation.GraphicsMode - -@RunWith(ParameterizedRobolectricTestRunner::class) -@GraphicsMode(GraphicsMode.Mode.NATIVE) -@Config(sdk = [SDK_NUMBER], qualifiers = RobolectricDeviceQualifiers.Pixel6) -class ViewSystemTooltipScreenshotTest( - theme: String, -) : TooltipTestCases(theme) { - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMStrictBottomEndStartTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMStrictBottomEndStartTop(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMStrictTopCenterStartCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMStrictTopCenterStartCenter(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipSLooseEndStartBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipSLooseEndStartBottom(R.style.Salute_StylesSalute_ComponentOverlays_TooltipS) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipSStrictBottomStartCenterTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipSStrictBottomStartCenterTop(R.style.Salute_StylesSalute_ComponentOverlays_TooltipS) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMLooseStartCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMLooseStartCenter(R.style.Salute_StylesSalute_ComponentOverlays_TooltipS) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMLooseStartCenterBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMLooseStartCenterBottom(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMLooseTopEndEndTop() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMLooseTopEndEndTop(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMLooseStartEndCenter() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMLooseStartEndCenter(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } - - @OptIn(ExperimentalRoborazziApi::class) - @Test - override fun testTooltipMLooseStartCenterEndBottom() { - themedComponent( - action = { - onView(withId(it.id)) - .perform(click()) - }, - skipDefaultCaptureRoboImage = true, - ) { - tooltipMLooseStartCenterEndBottom(R.style.Salute_StylesSalute_ComponentOverlays_TooltipM) - } - captureScreenRoboImage() - } -}